slow boot with 7fef431be9c9 ("mm/page_alloc: place pages to tail in __free_pages_core()")

Liang, Liang (Leo) Liang.Liang at amd.com
Tue Mar 16 08:00:48 UTC 2021


[AMD Public Use]

Hi Mike,

Thanks for help. The patch works for me and boot time back to normal. So it's a fix, or just WA?

BRs,
Leo
-----Original Message-----
From: Mike Rapoport <rppt at linux.ibm.com> 
Sent: Tuesday, March 16, 2021 2:50 PM
To: Liang, Liang (Leo) <Liang.Liang at amd.com>
Cc: David Hildenbrand <david at redhat.com>; Deucher, Alexander <Alexander.Deucher at amd.com>; linux-kernel at vger.kernel.org; amd-gfx list <amd-gfx at lists.freedesktop.org>; Andrew Morton <akpm at linux-foundation.org>; Huang, Ray <Ray.Huang at amd.com>; Koenig, Christian <Christian.Koenig at amd.com>; Rafael J. Wysocki <rafael at kernel.org>; George Kennedy <george.kennedy at oracle.com>
Subject: Re: slow boot with 7fef431be9c9 ("mm/page_alloc: place pages to tail in __free_pages_core()")

Hi Leo,

On Tue, Mar 16, 2021 at 12:36:29AM +0000, Liang, Liang (Leo) wrote:
> 
> Hi David,
> 
> Sorry for late. If revert 7fef431be9c9 (without 7fef431be9c9), the dmesg attached. And looks the exception as below:
> [  +0.027833] [0x0000000078000000 - 0x00000000783fffff] 20925 MB/s / 
> 25405 MB/s [  +1.363596] [0x0000000100000000 - 0x00000001003fffff] 222 
> MB/s / 222 MB/s [  +1.562192] [0x0000000100400000 - 
> 0x00000001007fffff] 222 MB/s / 222 MB/s [  +1.881332] 
> [0x0000000100800000 - 0x0000000100bfffff] 195 MB/s / 159 MB/s [  
> +1.383388] [0x0000000100c00000 - 0x0000000100ffffff] 219 MB/s / 221 
> MB/s [  +0.029342] [0x0000000101000000 - 0x00000001013fffff] 19807 
> MB/s / 24125 MB/s
> 
> What is the problem here? Do you want to check the acpi tables?

As it seems the first 16M at 0x0000000100000000 are two orders of magnitude slower than the rest of the memory as if there is a different memory device there.

This would explain why with 7fef431be9c9 everything gets slower as we allocate the first (and probably quite critical) data from those 16M.

No idea how this could be related to ACPI and why ACPI initialization causes the huge slowdown on its own.

Can you please try booting with 7fef431be9c9 still applied and with this patch (not even compile tested):

diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index d883176ef2ce..780f11ca14c9 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -778,6 +778,7 @@ void __init setup_arch(char **cmdline_p)
 	 * L1TF its contents can be leaked to user processes.
 	 */
 	memblock_reserve(0, PAGE_SIZE);
+	memblock_reserve(0x0000000100000000, SZ_16M);
 
 	early_reserve_initrd();
 
 
> BRs,
> Leo
> -----Original Message-----
> From: David Hildenbrand <david at redhat.com>
> Sent: Monday, March 15, 2021 9:04 PM
> To: Mike Rapoport <rppt at linux.ibm.com>
> Cc: Liang, Liang (Leo) <Liang.Liang at amd.com>; Deucher, Alexander 
> <Alexander.Deucher at amd.com>; linux-kernel at vger.kernel.org; amd-gfx 
> list <amd-gfx at lists.freedesktop.org>; Andrew Morton 
> <akpm at linux-foundation.org>; Huang, Ray <Ray.Huang at amd.com>; Koenig, 
> Christian <Christian.Koenig at amd.com>; Rafael J. Wysocki 
> <rafael at kernel.org>; George Kennedy <george.kennedy at oracle.com>
> Subject: Re: slow boot with 7fef431be9c9 ("mm/page_alloc: place pages 
> to tail in __free_pages_core()")
> 
> On 13.03.21 14:48, Mike Rapoport wrote:
> > Hi,
> > 
> > On Sat, Mar 13, 2021 at 10:05:23AM +0100, David Hildenbrand wrote:
> >>> Am 13.03.2021 um 05:04 schrieb Liang, Liang (Leo) <Liang.Liang at amd.com>:
> >>>
> >>> Hi David,
> >>>
> >>> Which benchmark tool you prefer? Memtest86+ or else?
> >>
> >> Hi Leo,
> >>
> >> I think you want something that runs under Linux natively.
> >>
> >> I'm planning on coding up a kernel module to walk all 4MB pages in 
> >> the freelists and perform a stream benchmark individually. Then we 
> >> might be able to identify the problematic range - if there is a 
> >> problematic range :)
> > 
> > My wild guess would be that the pages that are now at the head of 
> > free lists have wrong caching enabled. Might be worth checking in 
> > your test module.
> 
> I hacked something up real quick:
> 
> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgith
> ub.com%2Fdavidhildenbrand%2Fkstream&data=04%7C01%7CLiang.Liang%40a
> md.com%7Cb569c2890cd14a555dcd08d8e847cea6%7C3dd8961fe4884e608e11a82d99
> 4e183d%7C0%7C0%7C637514742399803857%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC
> 4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sd
> ata=7Mj%2BBlp%2BDZNg3grEYMnDyx%2FLGkZYu0YPfstiByD6UCk%3D&reserved=
> 0
> 
> Only briefly tested inside a VM. The output looks something like
> 
> [...]
> [ 8396.432225] [0x0000000045800000 - 0x0000000045bfffff] 25322 MB/s /
> 38948 MB/s
> [ 8396.448749] [0x0000000045c00000 - 0x0000000045ffffff] 24481 MB/s /
> 38946 MB/s
> [ 8396.465197] [0x0000000046000000 - 0x00000000463fffff] 24892 MB/s /
> 39170 MB/s
> [ 8396.481552] [0x0000000046400000 - 0x00000000467fffff] 25222 MB/s /
> 39156 MB/s
> [ 8396.498012] [0x0000000046800000 - 0x0000000046bfffff] 24416 MB/s /
> 39159 MB/s
> [ 8396.514397] [0x0000000046c00000 - 0x0000000046ffffff] 25469 MB/s /
> 38940 MB/s
> [ 8396.530849] [0x0000000047000000 - 0x00000000473fffff] 24885 MB/s /
> 38734 MB/s
> [ 8396.547195] [0x0000000047400000 - 0x00000000477fffff] 25458 MB/s /
> 38941 MB/s
> [...]
> 
> The benchmark allocates one 4 MiB chunk at a time and runs a simplified STREAM benchmark a) without flushing caches b) flushing caches before every memory access.
> 
> It would be great if you could run that with the *old behavior* kernel (IOW, without 7fef431be9c9), so we might still be lucky to catch the problematic area in the freelist.
> 
> Let's see if that will indicate anything.
> 
> --
> Thanks,
> 
> David / dhildenb



--
Sincerely yours,
Mike.


More information about the amd-gfx mailing list