]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
x86: don't open-code max_page calculation nor pfn_to_paddr()
authorJan Beulich <jbeulich@suse.com>
Tue, 19 Dec 2023 12:51:40 +0000 (13:51 +0100)
committerJan Beulich <jbeulich@suse.com>
Tue, 19 Dec 2023 12:51:40 +0000 (13:51 +0100)
As observed by Roger while reviewing a somewhat related change, there's
no need here either to open-code the (largely, i.e. once setup_max_pdx()
was called) fixed relationship between max_pdx and max_page. Further we
can avoid open-coding pfn_to_paddr() here.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/setup.c

index 62f4686cae1dbdfbdece54cacf3a60bab1b83ff9..897b7e92082e2ac9fe33cc3ffcb0e6bba179dfd8 100644 (file)
@@ -1569,7 +1569,7 @@ void asmlinkage __init noreturn __start_xen(unsigned long mbi_p)
                 continue;
             }
             map_e = e;
-            e = (pdx_to_pfn(max_pdx - 1) + 1ULL) << PAGE_SHIFT;
+            e = pfn_to_paddr(max_page);
             printk(XENLOG_WARNING "Ignoring inaccessible memory range"
                                   " %013"PRIx64"-%013"PRIx64"\n",
                    e, map_e);