From: Jan Beulich Date: Tue, 29 Jun 2021 09:03:29 +0000 (+0200) Subject: x86/mm: pull a sanity check earlier in xenmem_add_to_physmap_one() X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~380 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f8582da0417660269bec69e399f8667f761e886b;p=xen.git x86/mm: pull a sanity check earlier in xenmem_add_to_physmap_one() We should try to limit the failure reasons after we've started making changes. Signed-off-by: Jan Beulich Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/mm/p2m.c b/xen/arch/x86/mm/p2m.c index dbb1cbeb59..7b3cf7e9fc 100644 --- a/xen/arch/x86/mm/p2m.c +++ b/xen/arch/x86/mm/p2m.c @@ -2756,6 +2756,15 @@ int xenmem_add_to_physmap_one( goto put_both; } + /* XENMAPSPACE_gmfn: Check if the MFN is associated with another GFN. */ + old_gpfn = get_gpfn_from_mfn(mfn_x(mfn)); + ASSERT(!SHARED_M2P(old_gpfn)); + if ( space == XENMAPSPACE_gmfn && old_gpfn != gfn ) + { + rc = -EXDEV; + goto put_both; + } + /* Remove previously mapped page if it was present. */ prev_mfn = get_gfn(d, gfn_x(gpfn), &p2mt); if ( mfn_valid(prev_mfn) ) @@ -2774,13 +2783,6 @@ int xenmem_add_to_physmap_one( goto put_both; /* Unmap from old location, if any. */ - old_gpfn = get_gpfn_from_mfn(mfn_x(mfn)); - ASSERT(!SHARED_M2P(old_gpfn)); - if ( space == XENMAPSPACE_gmfn && old_gpfn != gfn ) - { - rc = -EXDEV; - goto put_both; - } if ( old_gpfn != INVALID_M2P_ENTRY ) rc = guest_physmap_remove_page(d, _gfn(old_gpfn), mfn, PAGE_ORDER_4K);