[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/mm: drop yet another relic of translated PV domains from new_guest_cr3()
commit a7ddeae652c7b9814597e6bb4f03cd872cd1fd7e Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Tue Dec 5 17:22:31 2017 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Dec 5 17:22:31 2017 +0100 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 <jbeulich@xxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- 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 155e425..f61fe25 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: -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |