From a7ddeae652c7b9814597e6bb4f03cd872cd1fd7e Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Tue, 5 Dec 2017 17:22:31 +0100 Subject: [PATCH] x86/mm: drop yet another relic of translated PV domains from new_guest_cr3() The function can be called for PV domains only, which commit 5a0b9fba92 ("x86/mm: drop further relics of translated PV domains") sort of realized, but not fully. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper --- xen/arch/x86/mm.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c index 155e42569b..f61fe2507e 100644 --- a/xen/arch/x86/mm.c +++ b/xen/arch/x86/mm.c @@ -2845,9 +2845,7 @@ int new_guest_cr3(mfn_t mfn) return 0; } - rc = paging_mode_refcounts(d) - ? (get_page_from_mfn(mfn, d) ? 0 : -EINVAL) - : get_page_and_type_from_mfn(mfn, PGT_root_page_table, d, 0, 1); + rc = get_page_and_type_from_mfn(mfn, PGT_root_page_table, d, 0, 1); switch ( rc ) { case 0: -- 2.30.2