All of lore.kernel.org
 help / color / mirror / Atom feed
* Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
@ 2021-07-26 19:27 Matt Turner
  2021-07-26 20:06 ` Mike Rapoport
  0 siblings, 1 reply; 11+ messages in thread
From: Matt Turner @ 2021-07-26 19:27 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, linux-kernel

Reply-To:

Hi Mike!

Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
and loading userspace leads to a segfault:

(I didn't notice this for a long time because of other unrelated regressions,
the pandemic, changing jobs, ...)

BUG: Bad page state in process swapper  pfn:2ffc53
page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount  
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
[<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
if that helps.

Any ideas?

Thanks,
Matt

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-26 19:27 Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes) Matt Turner
@ 2021-07-26 20:06 ` Mike Rapoport
  2021-07-26 21:23     ` Matt Turner
  0 siblings, 1 reply; 11+ messages in thread
From: Mike Rapoport @ 2021-07-26 20:06 UTC (permalink / raw)
  To: Matt Turner; +Cc: Michael Cree, linux-mm, linux-alpha, linux-kernel

Hi Matt,

On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> Reply-To:
> 
> Hi Mike!
> 
> Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> and loading userspace leads to a segfault:
> 
> (I didn't notice this for a long time because of other unrelated regressions,
> the pandemic, changing jobs, ...)
 
I suspect there will be more surprises down the road :)

> BUG: Bad page state in process swapper  pfn:2ffc53
> page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> flags: 0x0()
> raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> page dumped because: nonzero mapcount  Modules linked in:
> CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
>        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
>        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
>        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
>        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
>        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
>        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> Trace:
> [<fffffc00011cd148>] bad_page+0x168/0x1b0
> [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> [<fffffc000101001c>] _stext+0x1c/0x20
> 
> I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> if that helps.

If it's reproducible on QEMU I can debug it locally.
 
> Any ideas?

It seems like memory map is not properly initialized. Can you enable
CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
interesting part of the log would be before "Memory: xK/yK available ..."
line.

Hopefully it'll give some clues.

-- 
Sincerely yours,
Mike.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-26 20:06 ` Mike Rapoport
@ 2021-07-26 21:23     ` Matt Turner
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner @ 2021-07-26 21:23 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

[-- Attachment #1: Type: text/plain, Size: 2289 bytes --]

On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
>
> Hi Matt,
>
> On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > Reply-To:
> >
> > Hi Mike!
> >
> > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > and loading userspace leads to a segfault:
> >
> > (I didn't notice this for a long time because of other unrelated regressions,
> > the pandemic, changing jobs, ...)
>
> I suspect there will be more surprises down the road :)
>
> > BUG: Bad page state in process swapper  pfn:2ffc53
> > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > flags: 0x0()
> > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > page dumped because: nonzero mapcount  Modules linked in:
> > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > Trace:
> > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > [<fffffc000101001c>] _stext+0x1c/0x20
> >
> > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > if that helps.
>
> If it's reproducible on QEMU I can debug it locally.
>
> > Any ideas?
>
> It seems like memory map is not properly initialized. Can you enable
> CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> interesting part of the log would be before "Memory: xK/yK available ..."
> line.
>
> Hopefully it'll give some clues.

Sure thing. Please find attached.

[-- Attachment #2: screenlog.0.txt --]
[-- Type: text/plain, Size: 68946 bytes --]

aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
printk: bootconsole [srm0] enabled
Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ 
Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
memcluster 0, usage 1, start        0, end     1984
memcluster 1, usage 0, start     1984, end  1048576
memcluster 2, usage 1, start  2097152, end  2097224
memcluster 3, usage 0, start  2097224, end  3145728
Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
Found an IO7 at PID 0
Initializing IO7 at PID 0
FIXME: disabling master aborts
FIXME: disabling master aborts
FIXME: disabling master aborts
FIXME: disabling master aborts
SMP: 2 CPUs probed -- cpu_present_mask = 3
Zone ranges:
  DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
  node   0: [mem 0x0000000400090000-0x00000005ffffffff]
Initmem setup node 0 [mem 0x0000000000f80000-0x00000005ffffffff]
percpu: Embedded 8 pages/cpu s27648 r8192 d29696 u65536
Built 1 zonelists, mobility grouping on.  Total pages: 2070535
Kernel command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
Dentry cache hash table entries: 2097152 (order: 11, 16777216 bytes, linear)
Inode-cache hash table entries: 1048576 (order: 10, 8388608 bytes, linear)
Sorting __ex_table...
mem auto-init: stack:off, heap alloc:off, heap free:off
BUG: Bad page state in process swapper  pfn:2ffc3f
page:fffffc000ecf0fc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf0fc0
       fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf0fc0
       0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
       fffffc00027da7d0 00000000002ff966 0000000000000000 fffffc0001b5be80
       fffffc00011d1abc fffffc000ecf0fc0 fffffc0002d00000 fffffc0001b5be80
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
[<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

Disabling lock debugging due to kernel taint
BUG: Bad page state in process swapper  pfn:2ffc41
page:fffffc000ecf1040 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1040 fffffc00011cd148 fffffc000ecf1040
       fffffc00019803df fffffc000ecf1040 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1040 fffffc0002d00000 fffffc000ecf2000
       0000000000000001 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc42
page:fffffc000ecf1080 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1080 fffffc00011cd148 fffffc000ecf1080
       fffffc00019803df fffffc000ecf1080 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1080 fffffc0002d00000 fffffc000ecf2000
       0000000000000002 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc43
page:fffffc000ecf10c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf10c0 fffffc00011cd148 fffffc000ecf10c0
       fffffc00019803df fffffc000ecf10c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf10c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000003 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc44
page:fffffc000ecf1100 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1100 fffffc00011cd148 fffffc000ecf1100
       fffffc00019803df fffffc000ecf1100 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1100 fffffc0002d00000 fffffc000ecf2000
       0000000000000004 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc45
page:fffffc000ecf1140 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1140 fffffc00011cd148 fffffc000ecf1140
       fffffc00019803df fffffc000ecf1140 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1140 fffffc0002d00000 fffffc000ecf2000
       0000000000000005 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc46
page:fffffc000ecf1180 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1180 fffffc00011cd148 fffffc000ecf1180
       fffffc00019803df fffffc000ecf1180 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1180 fffffc0002d00000 fffffc000ecf2000
       0000000000000006 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc47
page:fffffc000ecf11c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf11c0 fffffc00011cd148 fffffc000ecf11c0
       fffffc00019803df fffffc000ecf11c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf11c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000007 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc48
page:fffffc000ecf1200 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1200 fffffc00011cd148 fffffc000ecf1200
       fffffc00019803df fffffc000ecf1200 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1200 fffffc0002d00000 fffffc000ecf2000
       0000000000000008 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc49
page:fffffc000ecf1240 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1240 fffffc00011cd148 fffffc000ecf1240
       fffffc00019803df fffffc000ecf1240 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1240 fffffc0002d00000 fffffc000ecf2000
       0000000000000009 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4a
page:fffffc000ecf1280 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1280 fffffc00011cd148 fffffc000ecf1280
       fffffc00019803df fffffc000ecf1280 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1280 fffffc0002d00000 fffffc000ecf2000
       000000000000000a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4b
page:fffffc000ecf12c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf12c0 fffffc00011cd148 fffffc000ecf12c0
       fffffc00019803df fffffc000ecf12c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf12c0 fffffc0002d00000 fffffc000ecf2000
       000000000000000b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4c
page:fffffc000ecf1300 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1300 fffffc00011cd148 fffffc000ecf1300
       fffffc00019803df fffffc000ecf1300 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1300 fffffc0002d00000 fffffc000ecf2000
       000000000000000c fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4d
page:fffffc000ecf1340 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1340 fffffc00011cd148 fffffc000ecf1340
       fffffc00019803df fffffc000ecf1340 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1340 fffffc0002d00000 fffffc000ecf2000
       000000000000000d fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4e
page:fffffc000ecf1380 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1380 fffffc00011cd148 fffffc000ecf1380
       fffffc00019803df fffffc000ecf1380 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1380 fffffc0002d00000 fffffc000ecf2000
       000000000000000e fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4f
page:fffffc000ecf13c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf13c0 fffffc00011cd148 fffffc000ecf13c0
       fffffc00019803df fffffc000ecf13c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf13c0 fffffc0002d00000 fffffc000ecf2000
       000000000000000f fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc50
page:fffffc000ecf1400 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1400 fffffc00011cd148 fffffc000ecf1400
       fffffc00019803df fffffc000ecf1400 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1400 fffffc0002d00000 fffffc000ecf2000
       0000000000000010 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc51
page:fffffc000ecf1440 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1440 fffffc00011cd148 fffffc000ecf1440
       fffffc00019803df fffffc000ecf1440 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1440 fffffc0002d00000 fffffc000ecf2000
       0000000000000011 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc52
page:fffffc000ecf1480 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1480 fffffc00011cd148 fffffc000ecf1480
       fffffc00019803df fffffc000ecf1480 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1480 fffffc0002d00000 fffffc000ecf2000
       0000000000000012 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc53
page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf14c0 fffffc00011cd148 fffffc000ecf14c0
       fffffc00019803df fffffc000ecf14c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf14c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000013 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc54
page:fffffc000ecf1500 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1500 fffffc00011cd148 fffffc000ecf1500
       fffffc00019803df fffffc000ecf1500 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1500 fffffc0002d00000 fffffc000ecf2000
       0000000000000014 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc55
page:fffffc000ecf1540 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1540 fffffc00011cd148 fffffc000ecf1540
       fffffc00019803df fffffc000ecf1540 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1540 fffffc0002d00000 fffffc000ecf2000
       0000000000000015 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc56
page:fffffc000ecf1580 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1580 fffffc00011cd148 fffffc000ecf1580
       fffffc00019803df fffffc000ecf1580 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1580 fffffc0002d00000 fffffc000ecf2000
       0000000000000016 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc57
page:fffffc000ecf15c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf15c0 fffffc00011cd148 fffffc000ecf15c0
       fffffc00019803df fffffc000ecf15c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf15c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000017 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc58
page:fffffc000ecf1600 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1600 fffffc00011cd148 fffffc000ecf1600
       fffffc00019803df fffffc000ecf1600 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1600 fffffc0002d00000 fffffc000ecf2000
       0000000000000018 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc59
page:fffffc000ecf1640 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1640 fffffc00011cd148 fffffc000ecf1640
       fffffc00019803df fffffc000ecf1640 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1640 fffffc0002d00000 fffffc000ecf2000
       0000000000000019 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5a
page:fffffc000ecf1680 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1680 fffffc00011cd148 fffffc000ecf1680
       fffffc00019803df fffffc000ecf1680 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1680 fffffc0002d00000 fffffc000ecf2000
       000000000000001a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5b
page:fffffc000ecf16c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf16c0 fffffc00011cd148 fffffc000ecf16c0
       fffffc00019803df fffffc000ecf16c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf16c0 fffffc0002d00000 fffffc000ecf2000
       000000000000001b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5c
page:fffffc000ecf1700 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1700 fffffc00011cd148 fffffc000ecf1700
       fffffc00019803df fffffc000ecf1700 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1700 fffffc0002d00000 fffffc000ecf2000
       000000000000001c fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5d
page:fffffc000ecf1740 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1740 fffffc00011cd148 fffffc000ecf1740
       fffffc00019803df fffffc000ecf1740 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1740 fffffc0002d00000 fffffc000ecf2000
       000000000000001d fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5e
page:fffffc000ecf1780 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1780 fffffc00011cd148 fffffc000ecf1780
       fffffc00019803df fffffc000ecf1780 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1780 fffffc0002d00000 fffffc000ecf2000
       000000000000001e fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5f
page:fffffc000ecf17c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf17c0 fffffc00011cd148 fffffc000ecf17c0
       fffffc00019803df fffffc000ecf17c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf17c0 fffffc0002d00000 fffffc000ecf2000
       000000000000001f fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc60
page:fffffc000ecf1800 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1800 fffffc00011cd148 fffffc000ecf1800
       fffffc00019803df fffffc000ecf1800 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1800 fffffc0002d00000 fffffc000ecf2000
       0000000000000020 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc61
page:fffffc000ecf1840 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1840 fffffc00011cd148 fffffc000ecf1840
       fffffc00019803df fffffc000ecf1840 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1840 fffffc0002d00000 fffffc000ecf2000
       0000000000000021 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc62
page:fffffc000ecf1880 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1880 fffffc00011cd148 fffffc000ecf1880
       fffffc00019803df fffffc000ecf1880 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1880 fffffc0002d00000 fffffc000ecf2000
       0000000000000022 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc63
page:fffffc000ecf18c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf18c0 fffffc00011cd148 fffffc000ecf18c0
       fffffc00019803df fffffc000ecf18c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf18c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000023 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc64
page:fffffc000ecf1900 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1900 fffffc00011cd148 fffffc000ecf1900
       fffffc00019803df fffffc000ecf1900 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1900 fffffc0002d00000 fffffc000ecf2000
       0000000000000024 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc65
page:fffffc000ecf1940 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1940 fffffc00011cd148 fffffc000ecf1940
       fffffc00019803df fffffc000ecf1940 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1940 fffffc0002d00000 fffffc000ecf2000
       0000000000000025 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc66
page:fffffc000ecf1980 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1980 fffffc00011cd148 fffffc000ecf1980
       fffffc00019803df fffffc000ecf1980 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1980 fffffc0002d00000 fffffc000ecf2000
       0000000000000026 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc67
page:fffffc000ecf19c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf19c0 fffffc00011cd148 fffffc000ecf19c0
       fffffc00019803df fffffc000ecf19c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf19c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000027 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc68
page:fffffc000ecf1a00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1a00 fffffc00011cd148 fffffc000ecf1a00
       fffffc00019803df fffffc000ecf1a00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1a00 fffffc0002d00000 fffffc000ecf2000
       0000000000000028 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc69
page:fffffc000ecf1a40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1a40 fffffc00011cd148 fffffc000ecf1a40
       fffffc00019803df fffffc000ecf1a40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1a40 fffffc0002d00000 fffffc000ecf2000
       0000000000000029 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6a
page:fffffc000ecf1a80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1a80 fffffc00011cd148 fffffc000ecf1a80
       fffffc00019803df fffffc000ecf1a80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1a80 fffffc0002d00000 fffffc000ecf2000
       000000000000002a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6b
page:fffffc000ecf1ac0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1ac0 fffffc00011cd148 fffffc000ecf1ac0
       fffffc00019803df fffffc000ecf1ac0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1ac0 fffffc0002d00000 fffffc000ecf2000
       000000000000002b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6c
page:fffffc000ecf1b00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1b00 fffffc00011cd148 fffffc000ecf1b00
       fffffc00019803df fffffc000ecf1b00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1b00 fffffc0002d00000 fffffc000ecf2000
       000000000000002c fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6d
page:fffffc000ecf1b40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1b40 fffffc00011cd148 fffffc000ecf1b40
       fffffc00019803df fffffc000ecf1b40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1b40 fffffc0002d00000 fffffc000ecf2000
       000000000000002d fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6e
page:fffffc000ecf1b80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1b80 fffffc00011cd148 fffffc000ecf1b80
       fffffc00019803df fffffc000ecf1b80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1b80 fffffc0002d00000 fffffc000ecf2000
       000000000000002e fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6f
page:fffffc000ecf1bc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1bc0 fffffc00011cd148 fffffc000ecf1bc0
       fffffc00019803df fffffc000ecf1bc0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1bc0 fffffc0002d00000 fffffc000ecf2000
       000000000000002f fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc70
page:fffffc000ecf1c00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1c00 fffffc00011cd148 fffffc000ecf1c00
       fffffc00019803df fffffc000ecf1c00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1c00 fffffc0002d00000 fffffc000ecf2000
       0000000000000030 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc71
page:fffffc000ecf1c40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1c40 fffffc00011cd148 fffffc000ecf1c40
       fffffc00019803df fffffc000ecf1c40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1c40 fffffc0002d00000 fffffc000ecf2000
       0000000000000031 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc72
page:fffffc000ecf1c80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1c80 fffffc00011cd148 fffffc000ecf1c80
       fffffc00019803df fffffc000ecf1c80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1c80 fffffc0002d00000 fffffc000ecf2000
       0000000000000032 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc73
page:fffffc000ecf1cc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1cc0 fffffc00011cd148 fffffc000ecf1cc0
       fffffc00019803df fffffc000ecf1cc0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1cc0 fffffc0002d00000 fffffc000ecf2000
       0000000000000033 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc74
page:fffffc000ecf1d00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1d00 fffffc00011cd148 fffffc000ecf1d00
       fffffc00019803df fffffc000ecf1d00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1d00 fffffc0002d00000 fffffc000ecf2000
       0000000000000034 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc75
page:fffffc000ecf1d40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1d40 fffffc00011cd148 fffffc000ecf1d40
       fffffc00019803df fffffc000ecf1d40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1d40 fffffc0002d00000 fffffc000ecf2000
       0000000000000035 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc76
page:fffffc000ecf1d80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1d80 fffffc00011cd148 fffffc000ecf1d80
       fffffc00019803df fffffc000ecf1d80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1d80 fffffc0002d00000 fffffc000ecf2000
       0000000000000036 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc77
page:fffffc000ecf1dc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1dc0 fffffc00011cd148 fffffc000ecf1dc0
       fffffc00019803df fffffc000ecf1dc0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1dc0 fffffc0002d00000 fffffc000ecf2000
       0000000000000037 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc78
page:fffffc000ecf1e00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1e00 fffffc00011cd148 fffffc000ecf1e00
       fffffc00019803df fffffc000ecf1e00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1e00 fffffc0002d00000 fffffc000ecf2000
       0000000000000038 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc79
page:fffffc000ecf1e40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1e40 fffffc00011cd148 fffffc000ecf1e40
       fffffc00019803df fffffc000ecf1e40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1e40 fffffc0002d00000 fffffc000ecf2000
       0000000000000039 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc7a
page:fffffc000ecf1e80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1e80 fffffc00011cd148 fffffc000ecf1e80
       fffffc00019803df fffffc000ecf1e80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1e80 fffffc0002d00000 fffffc000ecf2000
       000000000000003a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc7b
page:fffffc000ecf1ec0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1ec0 fffffc00011cd148 fffffc000ecf1ec0
       fffffc00019803df fffffc000ecf1ec0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1ec0 fffffc0002d00000 fffffc000ecf2000
       000000000000003b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

Memory: 16496504K/16760768K available (8698K kernel code, 12790K rwdata, 2544K rodata, 304K init, 915K bss, 256576K reserved, 0K cma-reserved)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
@ 2021-07-26 21:23     ` Matt Turner
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner @ 2021-07-26 21:23 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

[-- Attachment #1: Type: text/plain, Size: 2289 bytes --]

On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
>
> Hi Matt,
>
> On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > Reply-To:
> >
> > Hi Mike!
> >
> > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > and loading userspace leads to a segfault:
> >
> > (I didn't notice this for a long time because of other unrelated regressions,
> > the pandemic, changing jobs, ...)
>
> I suspect there will be more surprises down the road :)
>
> > BUG: Bad page state in process swapper  pfn:2ffc53
> > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > flags: 0x0()
> > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > page dumped because: nonzero mapcount  Modules linked in:
> > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > Trace:
> > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > [<fffffc000101001c>] _stext+0x1c/0x20
> >
> > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > if that helps.
>
> If it's reproducible on QEMU I can debug it locally.
>
> > Any ideas?
>
> It seems like memory map is not properly initialized. Can you enable
> CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> interesting part of the log would be before "Memory: xK/yK available ..."
> line.
>
> Hopefully it'll give some clues.

Sure thing. Please find attached.

[-- Attachment #2: screenlog.0.txt --]
[-- Type: text/plain, Size: 68946 bytes --]

aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
printk: bootconsole [srm0] enabled
Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ 
Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
memcluster 0, usage 1, start        0, end     1984
memcluster 1, usage 0, start     1984, end  1048576
memcluster 2, usage 1, start  2097152, end  2097224
memcluster 3, usage 0, start  2097224, end  3145728
Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
Found an IO7 at PID 0
Initializing IO7 at PID 0
FIXME: disabling master aborts
FIXME: disabling master aborts
FIXME: disabling master aborts
FIXME: disabling master aborts
SMP: 2 CPUs probed -- cpu_present_mask = 3
Zone ranges:
  DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
  node   0: [mem 0x0000000400090000-0x00000005ffffffff]
Initmem setup node 0 [mem 0x0000000000f80000-0x00000005ffffffff]
percpu: Embedded 8 pages/cpu s27648 r8192 d29696 u65536
Built 1 zonelists, mobility grouping on.  Total pages: 2070535
Kernel command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
Dentry cache hash table entries: 2097152 (order: 11, 16777216 bytes, linear)
Inode-cache hash table entries: 1048576 (order: 10, 8388608 bytes, linear)
Sorting __ex_table...
mem auto-init: stack:off, heap alloc:off, heap free:off
BUG: Bad page state in process swapper  pfn:2ffc3f
page:fffffc000ecf0fc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf0fc0
       fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf0fc0
       0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
       fffffc00027da7d0 00000000002ff966 0000000000000000 fffffc0001b5be80
       fffffc00011d1abc fffffc000ecf0fc0 fffffc0002d00000 fffffc0001b5be80
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
[<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

Disabling lock debugging due to kernel taint
BUG: Bad page state in process swapper  pfn:2ffc41
page:fffffc000ecf1040 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1040 fffffc00011cd148 fffffc000ecf1040
       fffffc00019803df fffffc000ecf1040 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1040 fffffc0002d00000 fffffc000ecf2000
       0000000000000001 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc42
page:fffffc000ecf1080 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1080 fffffc00011cd148 fffffc000ecf1080
       fffffc00019803df fffffc000ecf1080 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1080 fffffc0002d00000 fffffc000ecf2000
       0000000000000002 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc43
page:fffffc000ecf10c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf10c0 fffffc00011cd148 fffffc000ecf10c0
       fffffc00019803df fffffc000ecf10c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf10c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000003 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc44
page:fffffc000ecf1100 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1100 fffffc00011cd148 fffffc000ecf1100
       fffffc00019803df fffffc000ecf1100 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1100 fffffc0002d00000 fffffc000ecf2000
       0000000000000004 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc45
page:fffffc000ecf1140 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1140 fffffc00011cd148 fffffc000ecf1140
       fffffc00019803df fffffc000ecf1140 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1140 fffffc0002d00000 fffffc000ecf2000
       0000000000000005 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc46
page:fffffc000ecf1180 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1180 fffffc00011cd148 fffffc000ecf1180
       fffffc00019803df fffffc000ecf1180 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1180 fffffc0002d00000 fffffc000ecf2000
       0000000000000006 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc47
page:fffffc000ecf11c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf11c0 fffffc00011cd148 fffffc000ecf11c0
       fffffc00019803df fffffc000ecf11c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf11c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000007 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc48
page:fffffc000ecf1200 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1200 fffffc00011cd148 fffffc000ecf1200
       fffffc00019803df fffffc000ecf1200 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1200 fffffc0002d00000 fffffc000ecf2000
       0000000000000008 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc49
page:fffffc000ecf1240 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1240 fffffc00011cd148 fffffc000ecf1240
       fffffc00019803df fffffc000ecf1240 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1240 fffffc0002d00000 fffffc000ecf2000
       0000000000000009 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4a
page:fffffc000ecf1280 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1280 fffffc00011cd148 fffffc000ecf1280
       fffffc00019803df fffffc000ecf1280 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1280 fffffc0002d00000 fffffc000ecf2000
       000000000000000a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4b
page:fffffc000ecf12c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf12c0 fffffc00011cd148 fffffc000ecf12c0
       fffffc00019803df fffffc000ecf12c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf12c0 fffffc0002d00000 fffffc000ecf2000
       000000000000000b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4c
page:fffffc000ecf1300 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1300 fffffc00011cd148 fffffc000ecf1300
       fffffc00019803df fffffc000ecf1300 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1300 fffffc0002d00000 fffffc000ecf2000
       000000000000000c fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4d
page:fffffc000ecf1340 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1340 fffffc00011cd148 fffffc000ecf1340
       fffffc00019803df fffffc000ecf1340 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1340 fffffc0002d00000 fffffc000ecf2000
       000000000000000d fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4e
page:fffffc000ecf1380 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1380 fffffc00011cd148 fffffc000ecf1380
       fffffc00019803df fffffc000ecf1380 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1380 fffffc0002d00000 fffffc000ecf2000
       000000000000000e fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc4f
page:fffffc000ecf13c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf13c0 fffffc00011cd148 fffffc000ecf13c0
       fffffc00019803df fffffc000ecf13c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf13c0 fffffc0002d00000 fffffc000ecf2000
       000000000000000f fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc50
page:fffffc000ecf1400 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1400 fffffc00011cd148 fffffc000ecf1400
       fffffc00019803df fffffc000ecf1400 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1400 fffffc0002d00000 fffffc000ecf2000
       0000000000000010 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc51
page:fffffc000ecf1440 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1440 fffffc00011cd148 fffffc000ecf1440
       fffffc00019803df fffffc000ecf1440 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1440 fffffc0002d00000 fffffc000ecf2000
       0000000000000011 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc52
page:fffffc000ecf1480 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1480 fffffc00011cd148 fffffc000ecf1480
       fffffc00019803df fffffc000ecf1480 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1480 fffffc0002d00000 fffffc000ecf2000
       0000000000000012 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc53
page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf14c0 fffffc00011cd148 fffffc000ecf14c0
       fffffc00019803df fffffc000ecf14c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf14c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000013 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc54
page:fffffc000ecf1500 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1500 fffffc00011cd148 fffffc000ecf1500
       fffffc00019803df fffffc000ecf1500 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1500 fffffc0002d00000 fffffc000ecf2000
       0000000000000014 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc55
page:fffffc000ecf1540 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1540 fffffc00011cd148 fffffc000ecf1540
       fffffc00019803df fffffc000ecf1540 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1540 fffffc0002d00000 fffffc000ecf2000
       0000000000000015 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc56
page:fffffc000ecf1580 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1580 fffffc00011cd148 fffffc000ecf1580
       fffffc00019803df fffffc000ecf1580 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1580 fffffc0002d00000 fffffc000ecf2000
       0000000000000016 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc57
page:fffffc000ecf15c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf15c0 fffffc00011cd148 fffffc000ecf15c0
       fffffc00019803df fffffc000ecf15c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf15c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000017 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc58
page:fffffc000ecf1600 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1600 fffffc00011cd148 fffffc000ecf1600
       fffffc00019803df fffffc000ecf1600 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1600 fffffc0002d00000 fffffc000ecf2000
       0000000000000018 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc59
page:fffffc000ecf1640 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1640 fffffc00011cd148 fffffc000ecf1640
       fffffc00019803df fffffc000ecf1640 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1640 fffffc0002d00000 fffffc000ecf2000
       0000000000000019 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5a
page:fffffc000ecf1680 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1680 fffffc00011cd148 fffffc000ecf1680
       fffffc00019803df fffffc000ecf1680 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1680 fffffc0002d00000 fffffc000ecf2000
       000000000000001a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5b
page:fffffc000ecf16c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf16c0 fffffc00011cd148 fffffc000ecf16c0
       fffffc00019803df fffffc000ecf16c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf16c0 fffffc0002d00000 fffffc000ecf2000
       000000000000001b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5c
page:fffffc000ecf1700 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1700 fffffc00011cd148 fffffc000ecf1700
       fffffc00019803df fffffc000ecf1700 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1700 fffffc0002d00000 fffffc000ecf2000
       000000000000001c fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5d
page:fffffc000ecf1740 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1740 fffffc00011cd148 fffffc000ecf1740
       fffffc00019803df fffffc000ecf1740 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1740 fffffc0002d00000 fffffc000ecf2000
       000000000000001d fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5e
page:fffffc000ecf1780 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1780 fffffc00011cd148 fffffc000ecf1780
       fffffc00019803df fffffc000ecf1780 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1780 fffffc0002d00000 fffffc000ecf2000
       000000000000001e fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc5f
page:fffffc000ecf17c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf17c0 fffffc00011cd148 fffffc000ecf17c0
       fffffc00019803df fffffc000ecf17c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf17c0 fffffc0002d00000 fffffc000ecf2000
       000000000000001f fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc60
page:fffffc000ecf1800 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1800 fffffc00011cd148 fffffc000ecf1800
       fffffc00019803df fffffc000ecf1800 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1800 fffffc0002d00000 fffffc000ecf2000
       0000000000000020 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc61
page:fffffc000ecf1840 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1840 fffffc00011cd148 fffffc000ecf1840
       fffffc00019803df fffffc000ecf1840 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1840 fffffc0002d00000 fffffc000ecf2000
       0000000000000021 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc62
page:fffffc000ecf1880 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1880 fffffc00011cd148 fffffc000ecf1880
       fffffc00019803df fffffc000ecf1880 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1880 fffffc0002d00000 fffffc000ecf2000
       0000000000000022 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc63
page:fffffc000ecf18c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf18c0 fffffc00011cd148 fffffc000ecf18c0
       fffffc00019803df fffffc000ecf18c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf18c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000023 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc64
page:fffffc000ecf1900 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1900 fffffc00011cd148 fffffc000ecf1900
       fffffc00019803df fffffc000ecf1900 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1900 fffffc0002d00000 fffffc000ecf2000
       0000000000000024 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc65
page:fffffc000ecf1940 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1940 fffffc00011cd148 fffffc000ecf1940
       fffffc00019803df fffffc000ecf1940 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1940 fffffc0002d00000 fffffc000ecf2000
       0000000000000025 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc66
page:fffffc000ecf1980 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1980 fffffc00011cd148 fffffc000ecf1980
       fffffc00019803df fffffc000ecf1980 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1980 fffffc0002d00000 fffffc000ecf2000
       0000000000000026 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc67
page:fffffc000ecf19c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf19c0 fffffc00011cd148 fffffc000ecf19c0
       fffffc00019803df fffffc000ecf19c0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf19c0 fffffc0002d00000 fffffc000ecf2000
       0000000000000027 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc68
page:fffffc000ecf1a00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1a00 fffffc00011cd148 fffffc000ecf1a00
       fffffc00019803df fffffc000ecf1a00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1a00 fffffc0002d00000 fffffc000ecf2000
       0000000000000028 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc69
page:fffffc000ecf1a40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1a40 fffffc00011cd148 fffffc000ecf1a40
       fffffc00019803df fffffc000ecf1a40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1a40 fffffc0002d00000 fffffc000ecf2000
       0000000000000029 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6a
page:fffffc000ecf1a80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1a80 fffffc00011cd148 fffffc000ecf1a80
       fffffc00019803df fffffc000ecf1a80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1a80 fffffc0002d00000 fffffc000ecf2000
       000000000000002a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6b
page:fffffc000ecf1ac0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1ac0 fffffc00011cd148 fffffc000ecf1ac0
       fffffc00019803df fffffc000ecf1ac0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1ac0 fffffc0002d00000 fffffc000ecf2000
       000000000000002b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6c
page:fffffc000ecf1b00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1b00 fffffc00011cd148 fffffc000ecf1b00
       fffffc00019803df fffffc000ecf1b00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1b00 fffffc0002d00000 fffffc000ecf2000
       000000000000002c fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6d
page:fffffc000ecf1b40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1b40 fffffc00011cd148 fffffc000ecf1b40
       fffffc00019803df fffffc000ecf1b40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1b40 fffffc0002d00000 fffffc000ecf2000
       000000000000002d fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6e
page:fffffc000ecf1b80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1b80 fffffc00011cd148 fffffc000ecf1b80
       fffffc00019803df fffffc000ecf1b80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1b80 fffffc0002d00000 fffffc000ecf2000
       000000000000002e fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc6f
page:fffffc000ecf1bc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1bc0 fffffc00011cd148 fffffc000ecf1bc0
       fffffc00019803df fffffc000ecf1bc0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1bc0 fffffc0002d00000 fffffc000ecf2000
       000000000000002f fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc70
page:fffffc000ecf1c00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1c00 fffffc00011cd148 fffffc000ecf1c00
       fffffc00019803df fffffc000ecf1c00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1c00 fffffc0002d00000 fffffc000ecf2000
       0000000000000030 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc71
page:fffffc000ecf1c40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1c40 fffffc00011cd148 fffffc000ecf1c40
       fffffc00019803df fffffc000ecf1c40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1c40 fffffc0002d00000 fffffc000ecf2000
       0000000000000031 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc72
page:fffffc000ecf1c80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1c80 fffffc00011cd148 fffffc000ecf1c80
       fffffc00019803df fffffc000ecf1c80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1c80 fffffc0002d00000 fffffc000ecf2000
       0000000000000032 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc73
page:fffffc000ecf1cc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1cc0 fffffc00011cd148 fffffc000ecf1cc0
       fffffc00019803df fffffc000ecf1cc0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1cc0 fffffc0002d00000 fffffc000ecf2000
       0000000000000033 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc74
page:fffffc000ecf1d00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1d00 fffffc00011cd148 fffffc000ecf1d00
       fffffc00019803df fffffc000ecf1d00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1d00 fffffc0002d00000 fffffc000ecf2000
       0000000000000034 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc75
page:fffffc000ecf1d40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1d40 fffffc00011cd148 fffffc000ecf1d40
       fffffc00019803df fffffc000ecf1d40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1d40 fffffc0002d00000 fffffc000ecf2000
       0000000000000035 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc76
page:fffffc000ecf1d80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1d80 fffffc00011cd148 fffffc000ecf1d80
       fffffc00019803df fffffc000ecf1d80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1d80 fffffc0002d00000 fffffc000ecf2000
       0000000000000036 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc77
page:fffffc000ecf1dc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1dc0 fffffc00011cd148 fffffc000ecf1dc0
       fffffc00019803df fffffc000ecf1dc0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1dc0 fffffc0002d00000 fffffc000ecf2000
       0000000000000037 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc78
page:fffffc000ecf1e00 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1e00 fffffc00011cd148 fffffc000ecf1e00
       fffffc00019803df fffffc000ecf1e00 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1e00 fffffc0002d00000 fffffc000ecf2000
       0000000000000038 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc79
page:fffffc000ecf1e40 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1e40 fffffc00011cd148 fffffc000ecf1e40
       fffffc00019803df fffffc000ecf1e40 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1e40 fffffc0002d00000 fffffc000ecf2000
       0000000000000039 fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc7a
page:fffffc000ecf1e80 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1e80 fffffc00011cd148 fffffc000ecf1e80
       fffffc00019803df fffffc000ecf1e80 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1e80 fffffc0002d00000 fffffc000ecf2000
       000000000000003a fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

BUG: Bad page state in process swapper  pfn:2ffc7b
page:fffffc000ecf1ec0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
flags: 0x0()
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
page dumped because: nonzero mapcount
Modules linked in:
CPU: 0 PID: 0 Comm: swapper Tainted: G    B             5.7.0-03841-gfa3354e4ea39-dirty #26
       fffffc0001b5bd58 fffffc000ecf1ec0 fffffc00011cd148 fffffc000ecf1ec0
       fffffc00019803df fffffc000ecf1ec0 fffffc00011cf804 fffffc000ecf1000
       0000000000000006 fffffc000ecf1ec0 fffffc0002d00000 fffffc000ecf2000
       000000000000003b fffffc00027d6618 0000000000000000 00000000002ff966
       fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b5be80
       fffffc0001b482c0 fffffc00027d6618 fffffc00027da7d0 00000000001f76ef
Trace:
[<fffffc00011cd148>] bad_page+0x168/0x1b0
[<fffffc00011cf804>] __free_pages_ok+0x4f4/0x640
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
[<fffffc000101001c>] _stext+0x1c/0x20

Memory: 16496504K/16760768K available (8698K kernel code, 12790K rwdata, 2544K rodata, 304K init, 915K bss, 256576K reserved, 0K cma-reserved)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-26 21:23     ` Matt Turner
  (?)
@ 2021-07-27  6:43     ` Mike Rapoport
  2021-07-27 19:24         ` Matt Turner
  -1 siblings, 1 reply; 11+ messages in thread
From: Mike Rapoport @ 2021-07-27  6:43 UTC (permalink / raw)
  To: Matt Turner; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Mon, Jul 26, 2021 at 02:23:20PM -0700, Matt Turner wrote:
> On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> >
> > Hi Matt,
> >
> > On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > > Reply-To:
> > >
> > > Hi Mike!
> > >
> > > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > > and loading userspace leads to a segfault:
> > >
> > > (I didn't notice this for a long time because of other unrelated regressions,
> > > the pandemic, changing jobs, ...)
> >
> > I suspect there will be more surprises down the road :)
> >
> > > BUG: Bad page state in process swapper  pfn:2ffc53
> > > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > > flags: 0x0()
> > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > page dumped because: nonzero mapcount  Modules linked in:
> > > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> > >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> > >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> > >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> > >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> > >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> > >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > > Trace:
> > > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > [<fffffc000101001c>] _stext+0x1c/0x20
> > >
> > > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > > if that helps.
> >
> > If it's reproducible on QEMU I can debug it locally.
> >
> > > Any ideas?
> >
> > It seems like memory map is not properly initialized. Can you enable
> > CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> > interesting part of the log would be before "Memory: xK/yK available ..."
> > line.
> >
> > Hopefully it'll give some clues.
> 
> Sure thing. Please find attached.

> aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
> aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
> aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
> aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
> aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
> printk: bootconsole [srm0] enabled
> Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
> Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ 
> Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> memcluster 0, usage 1, start        0, end     1984
> memcluster 1, usage 0, start     1984, end  1048576
> memcluster 2, usage 1, start  2097152, end  2097224
> memcluster 3, usage 0, start  2097224, end  3145728
> Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
> Found an IO7 at PID 0
> Initializing IO7 at PID 0
> FIXME: disabling master aborts
> FIXME: disabling master aborts
> FIXME: disabling master aborts
> FIXME: disabling master aborts
> SMP: 2 CPUs probed -- cpu_present_mask = 3
> Zone ranges:
>   DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
>   Normal   empty
> Movable zone start for each node
> Early memory node ranges
>   node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
>   node   0: [mem 0x0000000400090000-0x00000005ffffffff]

I think that the issue is that memory marked as used in memcluster is never
added to memblock and it skews node/zone sizing calculations.

Can you try this patch:

diff --git a/arch/alpha/kernel/setup.c b/arch/alpha/kernel/setup.c
index 7d56c217b235..b4fbbba30aa2 100644
--- a/arch/alpha/kernel/setup.c
+++ b/arch/alpha/kernel/setup.c
@@ -319,18 +319,19 @@ setup_memory(void *kernel_end)
 		       i, cluster->usage, cluster->start_pfn,
 		       cluster->start_pfn + cluster->numpages);
 
-		/* Bit 0 is console/PALcode reserved.  Bit 1 is
-		   non-volatile memory -- we might want to mark
-		   this for later.  */
-		if (cluster->usage & 3)
-			continue;
-
 		end = cluster->start_pfn + cluster->numpages;
 		if (end > max_low_pfn)
 			max_low_pfn = end;
 
 		memblock_add(PFN_PHYS(cluster->start_pfn),
 			     cluster->numpages << PAGE_SHIFT);
+
+		/* Bit 0 is console/PALcode reserved.  Bit 1 is
+		   non-volatile memory -- we might want to mark
+		   this for later.  */
+		if (cluster->usage & 3)
+			memblock_reserve(PFN_PHYS(cluster->start_pfn),
+				         cluster->numpages << PAGE_SHIFT);
 	}
 
 	/*

> Initmem setup node 0 [mem 0x0000000000f80000-0x00000005ffffffff]
> percpu: Embedded 8 pages/cpu s27648 r8192 d29696 u65536
> Built 1 zonelists, mobility grouping on.  Total pages: 2070535
> Kernel command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> Dentry cache hash table entries: 2097152 (order: 11, 16777216 bytes, linear)
> Inode-cache hash table entries: 1048576 (order: 10, 8388608 bytes, linear)
> Sorting __ex_table...
> mem auto-init: stack:off, heap alloc:off, heap free:off
> BUG: Bad page state in process swapper  pfn:2ffc3f
> page:fffffc000ecf0fc0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> flags: 0x0()
> raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> page dumped because: nonzero mapcount
> Modules linked in:
> CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
>        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf0fc0
>        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf0fc0
>        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
>        fffffc00027da7d0 00000000002ff966 0000000000000000 fffffc0001b5be80
>        fffffc00011d1abc fffffc000ecf0fc0 fffffc0002d00000 fffffc0001b5be80
>        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> Trace:
> [<fffffc00011cd148>] bad_page+0x168/0x1b0
> [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> [<fffffc000101001c>] _stext+0x1c/0x20

...

> Memory: 16496504K/16760768K available (8698K kernel code, 12790K rwdata, 2544K rodata, 304K init, 915K bss, 256576K reserved, 0K cma-reserved)


-- 
Sincerely yours,
Mike.

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-27  6:43     ` Mike Rapoport
@ 2021-07-27 19:24         ` Matt Turner
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner @ 2021-07-27 19:24 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Mon, Jul 26, 2021 at 11:43 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
>
> On Mon, Jul 26, 2021 at 02:23:20PM -0700, Matt Turner wrote:
> > On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > >
> > > Hi Matt,
> > >
> > > On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > > > Reply-To:
> > > >
> > > > Hi Mike!
> > > >
> > > > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > > > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > > > and loading userspace leads to a segfault:
> > > >
> > > > (I didn't notice this for a long time because of other unrelated regressions,
> > > > the pandemic, changing jobs, ...)
> > >
> > > I suspect there will be more surprises down the road :)
> > >
> > > > BUG: Bad page state in process swapper  pfn:2ffc53
> > > > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > > > flags: 0x0()
> > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > page dumped because: nonzero mapcount  Modules linked in:
> > > > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> > > >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> > > >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> > > >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> > > >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> > > >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> > > >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > > > Trace:
> > > > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > > > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > > > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > [<fffffc000101001c>] _stext+0x1c/0x20
> > > >
> > > > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > > > if that helps.
> > >
> > > If it's reproducible on QEMU I can debug it locally.
> > >
> > > > Any ideas?
> > >
> > > It seems like memory map is not properly initialized. Can you enable
> > > CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> > > interesting part of the log would be before "Memory: xK/yK available ..."
> > > line.
> > >
> > > Hopefully it'll give some clues.
> >
> > Sure thing. Please find attached.
>
> > aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
> > aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
> > aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
> > aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
> > aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
> > printk: bootconsole [srm0] enabled
> > Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
> > Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ
> > Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > memcluster 0, usage 1, start        0, end     1984
> > memcluster 1, usage 0, start     1984, end  1048576
> > memcluster 2, usage 1, start  2097152, end  2097224
> > memcluster 3, usage 0, start  2097224, end  3145728
> > Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
> > Found an IO7 at PID 0
> > Initializing IO7 at PID 0
> > FIXME: disabling master aborts
> > FIXME: disabling master aborts
> > FIXME: disabling master aborts
> > FIXME: disabling master aborts
> > SMP: 2 CPUs probed -- cpu_present_mask = 3
> > Zone ranges:
> >   DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
> >   Normal   empty
> > Movable zone start for each node
> > Early memory node ranges
> >   node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
> >   node   0: [mem 0x0000000400090000-0x00000005ffffffff]
>
> I think that the issue is that memory marked as used in memcluster is never
> added to memblock and it skews node/zone sizing calculations.

Thanks, this patch fixes it. With the patch applied, I see

Zone ranges:
  DMA      [mem 0x0000000000000000-0x00000fffffffdfff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x0000000000000000-0x00000001ffffffff]
  node   0: [mem 0x0000000400000000-0x00000005ffffffff]
Initmem setup node 0 [mem 0x0000000000000000-0x00000005ffffffff]

If you want to send me this patch with your S-o-b I'll take it through
my alpha git tree.

Thanks Mike!
Matt

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
@ 2021-07-27 19:24         ` Matt Turner
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner @ 2021-07-27 19:24 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Mon, Jul 26, 2021 at 11:43 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
>
> On Mon, Jul 26, 2021 at 02:23:20PM -0700, Matt Turner wrote:
> > On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > >
> > > Hi Matt,
> > >
> > > On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > > > Reply-To:
> > > >
> > > > Hi Mike!
> > > >
> > > > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > > > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > > > and loading userspace leads to a segfault:
> > > >
> > > > (I didn't notice this for a long time because of other unrelated regressions,
> > > > the pandemic, changing jobs, ...)
> > >
> > > I suspect there will be more surprises down the road :)
> > >
> > > > BUG: Bad page state in process swapper  pfn:2ffc53
> > > > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > > > flags: 0x0()
> > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > page dumped because: nonzero mapcount  Modules linked in:
> > > > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> > > >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> > > >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> > > >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> > > >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> > > >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> > > >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > > > Trace:
> > > > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > > > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > > > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > [<fffffc000101001c>] _stext+0x1c/0x20
> > > >
> > > > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > > > if that helps.
> > >
> > > If it's reproducible on QEMU I can debug it locally.
> > >
> > > > Any ideas?
> > >
> > > It seems like memory map is not properly initialized. Can you enable
> > > CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> > > interesting part of the log would be before "Memory: xK/yK available ..."
> > > line.
> > >
> > > Hopefully it'll give some clues.
> >
> > Sure thing. Please find attached.
>
> > aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
> > aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
> > aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
> > aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
> > aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
> > printk: bootconsole [srm0] enabled
> > Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
> > Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ
> > Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > memcluster 0, usage 1, start        0, end     1984
> > memcluster 1, usage 0, start     1984, end  1048576
> > memcluster 2, usage 1, start  2097152, end  2097224
> > memcluster 3, usage 0, start  2097224, end  3145728
> > Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
> > Found an IO7 at PID 0
> > Initializing IO7 at PID 0
> > FIXME: disabling master aborts
> > FIXME: disabling master aborts
> > FIXME: disabling master aborts
> > FIXME: disabling master aborts
> > SMP: 2 CPUs probed -- cpu_present_mask = 3
> > Zone ranges:
> >   DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
> >   Normal   empty
> > Movable zone start for each node
> > Early memory node ranges
> >   node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
> >   node   0: [mem 0x0000000400090000-0x00000005ffffffff]
>
> I think that the issue is that memory marked as used in memcluster is never
> added to memblock and it skews node/zone sizing calculations.

Thanks, this patch fixes it. With the patch applied, I see

Zone ranges:
  DMA      [mem 0x0000000000000000-0x00000fffffffdfff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x0000000000000000-0x00000001ffffffff]
  node   0: [mem 0x0000000400000000-0x00000005ffffffff]
Initmem setup node 0 [mem 0x0000000000000000-0x00000005ffffffff]

If you want to send me this patch with your S-o-b I'll take it through
my alpha git tree.

Thanks Mike!
Matt

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-27 19:24         ` Matt Turner
  (?)
@ 2021-07-27 20:41         ` Mike Rapoport
  2021-07-30 19:53             ` Matt Turner
  -1 siblings, 1 reply; 11+ messages in thread
From: Mike Rapoport @ 2021-07-27 20:41 UTC (permalink / raw)
  To: Matt Turner; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Tue, Jul 27, 2021 at 12:24:26PM -0700, Matt Turner wrote:
> On Mon, Jul 26, 2021 at 11:43 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> >
> > On Mon, Jul 26, 2021 at 02:23:20PM -0700, Matt Turner wrote:
> > > On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > > >
> > > > Hi Matt,
> > > >
> > > > On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > > > > Reply-To:
> > > > >
> > > > > Hi Mike!
> > > > >
> > > > > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > > > > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > > > > and loading userspace leads to a segfault:
> > > > >
> > > > > (I didn't notice this for a long time because of other unrelated regressions,
> > > > > the pandemic, changing jobs, ...)
> > > >
> > > > I suspect there will be more surprises down the road :)
> > > >
> > > > > BUG: Bad page state in process swapper  pfn:2ffc53
> > > > > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > > > > flags: 0x0()
> > > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > > page dumped because: nonzero mapcount  Modules linked in:
> > > > > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> > > > >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> > > > >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> > > > >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> > > > >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> > > > >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> > > > >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > > > > Trace:
> > > > > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > > > > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > > > > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > > [<fffffc000101001c>] _stext+0x1c/0x20
> > > > >
> > > > > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > > > > if that helps.
> > > >
> > > > If it's reproducible on QEMU I can debug it locally.
> > > >
> > > > > Any ideas?
> > > >
> > > > It seems like memory map is not properly initialized. Can you enable
> > > > CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> > > > interesting part of the log would be before "Memory: xK/yK available ..."
> > > > line.
> > > >
> > > > Hopefully it'll give some clues.
> > >
> > > Sure thing. Please find attached.
> >
> > > aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > > aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > > aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
> > > aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
> > > aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
> > > aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
> > > aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > > Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
> > > printk: bootconsole [srm0] enabled
> > > Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
> > > Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ
> > > Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > > memcluster 0, usage 1, start        0, end     1984
> > > memcluster 1, usage 0, start     1984, end  1048576
> > > memcluster 2, usage 1, start  2097152, end  2097224
> > > memcluster 3, usage 0, start  2097224, end  3145728
> > > Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
> > > Found an IO7 at PID 0
> > > Initializing IO7 at PID 0
> > > FIXME: disabling master aborts
> > > FIXME: disabling master aborts
> > > FIXME: disabling master aborts
> > > FIXME: disabling master aborts
> > > SMP: 2 CPUs probed -- cpu_present_mask = 3
> > > Zone ranges:
> > >   DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
> > >   Normal   empty
> > > Movable zone start for each node
> > > Early memory node ranges
> > >   node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
> > >   node   0: [mem 0x0000000400090000-0x00000005ffffffff]
> >
> > I think that the issue is that memory marked as used in memcluster is never
> > added to memblock and it skews node/zone sizing calculations.
> 
> Thanks, this patch fixes it. With the patch applied, I see
> 
> Zone ranges:
>   DMA      [mem 0x0000000000000000-0x00000fffffffdfff]
>   Normal   empty
> Movable zone start for each node
> Early memory node ranges
>   node   0: [mem 0x0000000000000000-0x00000001ffffffff]
>   node   0: [mem 0x0000000400000000-0x00000005ffffffff]
> Initmem setup node 0 [mem 0x0000000000000000-0x00000005ffffffff]
> 
> If you want to send me this patch with your S-o-b I'll take it through
> my alpha git tree.

The patch is on its way :)

Now I'm really curios how commit e7793e53901b ("arc: update comment about
HIGHMEM implementation") will work out.

 
> Thanks Mike!
> Matt

-- 
Sincerely yours,
Mike.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-27 20:41         ` Mike Rapoport
@ 2021-07-30 19:53             ` Matt Turner
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner @ 2021-07-30 19:53 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Tue, Jul 27, 2021 at 1:41 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
>
> On Tue, Jul 27, 2021 at 12:24:26PM -0700, Matt Turner wrote:
> > On Mon, Jul 26, 2021 at 11:43 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > >
> > > On Mon, Jul 26, 2021 at 02:23:20PM -0700, Matt Turner wrote:
> > > > On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > > > >
> > > > > Hi Matt,
> > > > >
> > > > > On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > > > > > Reply-To:
> > > > > >
> > > > > > Hi Mike!
> > > > > >
> > > > > > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > > > > > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > > > > > and loading userspace leads to a segfault:
> > > > > >
> > > > > > (I didn't notice this for a long time because of other unrelated regressions,
> > > > > > the pandemic, changing jobs, ...)
> > > > >
> > > > > I suspect there will be more surprises down the road :)
> > > > >
> > > > > > BUG: Bad page state in process swapper  pfn:2ffc53
> > > > > > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > > > > > flags: 0x0()
> > > > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > > > page dumped because: nonzero mapcount  Modules linked in:
> > > > > > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> > > > > >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> > > > > >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> > > > > >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> > > > > >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> > > > > >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> > > > > >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > > > > > Trace:
> > > > > > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > > > > > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > > > > > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > > > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > > > [<fffffc000101001c>] _stext+0x1c/0x20
> > > > > >
> > > > > > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > > > > > if that helps.
> > > > >
> > > > > If it's reproducible on QEMU I can debug it locally.
> > > > >
> > > > > > Any ideas?
> > > > >
> > > > > It seems like memory map is not properly initialized. Can you enable
> > > > > CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> > > > > interesting part of the log would be before "Memory: xK/yK available ..."
> > > > > line.
> > > > >
> > > > > Hopefully it'll give some clues.
> > > >
> > > > Sure thing. Please find attached.
> > >
> > > > aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > > > aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > > > aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
> > > > aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
> > > > aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
> > > > aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
> > > > aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > > > Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
> > > > printk: bootconsole [srm0] enabled
> > > > Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
> > > > Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ
> > > > Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > > > memcluster 0, usage 1, start        0, end     1984
> > > > memcluster 1, usage 0, start     1984, end  1048576
> > > > memcluster 2, usage 1, start  2097152, end  2097224
> > > > memcluster 3, usage 0, start  2097224, end  3145728
> > > > Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
> > > > Found an IO7 at PID 0
> > > > Initializing IO7 at PID 0
> > > > FIXME: disabling master aborts
> > > > FIXME: disabling master aborts
> > > > FIXME: disabling master aborts
> > > > FIXME: disabling master aborts
> > > > SMP: 2 CPUs probed -- cpu_present_mask = 3
> > > > Zone ranges:
> > > >   DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
> > > >   Normal   empty
> > > > Movable zone start for each node
> > > > Early memory node ranges
> > > >   node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
> > > >   node   0: [mem 0x0000000400090000-0x00000005ffffffff]
> > >
> > > I think that the issue is that memory marked as used in memcluster is never
> > > added to memblock and it skews node/zone sizing calculations.
> >
> > Thanks, this patch fixes it. With the patch applied, I see
> >
> > Zone ranges:
> >   DMA      [mem 0x0000000000000000-0x00000fffffffdfff]
> >   Normal   empty
> > Movable zone start for each node
> > Early memory node ranges
> >   node   0: [mem 0x0000000000000000-0x00000001ffffffff]
> >   node   0: [mem 0x0000000400000000-0x00000005ffffffff]
> > Initmem setup node 0 [mem 0x0000000000000000-0x00000005ffffffff]
> >
> > If you want to send me this patch with your S-o-b I'll take it through
> > my alpha git tree.
>
> The patch is on its way :)

Thanks a bunch, Mike, for the patch and for all you do!

> Now I'm really curios how commit e7793e53901b ("arc: update comment about
> HIGHMEM implementation") will work out.

You probably mean fdb7d9b7acd0 ("alpha: remove DISCONTIGMEM and
NUMA"). Works well so far!

Maybe in some alternative universe where I have infinite free time
(and my own power plant!) I'll get a second AlphaServer ES47 with the
enormous "hose" [1] to link the two and I'll poke you for guidance on
restoring NUMA support :)

Thanks again!

[1] https://www.ebay.com/itm/302471226394

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
@ 2021-07-30 19:53             ` Matt Turner
  0 siblings, 0 replies; 11+ messages in thread
From: Matt Turner @ 2021-07-30 19:53 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Tue, Jul 27, 2021 at 1:41 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
>
> On Tue, Jul 27, 2021 at 12:24:26PM -0700, Matt Turner wrote:
> > On Mon, Jul 26, 2021 at 11:43 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > >
> > > On Mon, Jul 26, 2021 at 02:23:20PM -0700, Matt Turner wrote:
> > > > On Mon, Jul 26, 2021 at 1:06 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > > > >
> > > > > Hi Matt,
> > > > >
> > > > > On Mon, Jul 26, 2021 at 12:27:50PM -0700, Matt Turner wrote:
> > > > > > Reply-To:
> > > > > >
> > > > > > Hi Mike!
> > > > > >
> > > > > > Since commit fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather
> > > > > > than zone sizes), I get the following BUG on Alpha (an AlphaServer ES47 Marvel)
> > > > > > and loading userspace leads to a segfault:
> > > > > >
> > > > > > (I didn't notice this for a long time because of other unrelated regressions,
> > > > > > the pandemic, changing jobs, ...)
> > > > >
> > > > > I suspect there will be more surprises down the road :)
> > > > >
> > > > > > BUG: Bad page state in process swapper  pfn:2ffc53
> > > > > > page:fffffc000ecf14c0 refcount:0 mapcount:1 mapping:0000000000000000 index:0x0
> > > > > > flags: 0x0()
> > > > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > > > raw: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
> > > > > > page dumped because: nonzero mapcount  Modules linked in:
> > > > > > CPU: 0 PID: 0 Comm: swapper Not tainted 5.7.0-03841-gfa3354e4ea39-dirty #26
> > > > > >        fffffc0001b5bd68 fffffc0001b5be80 fffffc00011cd148 fffffc000ecf14c0
> > > > > >        fffffc00019803df fffffc0001b5be80 fffffc00011ce340 fffffc000ecf14c0
> > > > > >        0000000000000000 fffffc0001b5be80 fffffc0001b482c0 fffffc00027d6618
> > > > > >        fffffc00027da7d0 00000000002ff97a 0000000000000000 fffffc0001b5be80
> > > > > >        fffffc00011d1abc fffffc000ecf14c0 fffffc0002d00000 fffffc0001b5be80
> > > > > >        fffffc0001b2350c 0000000000300000 fffffc0001b48298 fffffc0001b482c0
> > > > > > Trace:
> > > > > > [<fffffc00011cd148>] bad_page+0x168/0x1b0
> > > > > > [<fffffc00011ce340>] free_pcp_prepare+0x1e0/0x290
> > > > > > [<fffffc00011d1abc>] free_unref_page+0x2c/0xa0
> > > > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > > > [<fffffc00014ee5f0>] cmp_ex_sort+0x0/0x30
> > > > > > [<fffffc000101001c>] _stext+0x1c/0x20
> > > > > >
> > > > > > I haven't tried reproducing this on other machines or QEMU, but I'd be glad to
> > > > > > if that helps.
> > > > >
> > > > > If it's reproducible on QEMU I can debug it locally.
> > > > >
> > > > > > Any ideas?
> > > > >
> > > > > It seems like memory map is not properly initialized. Can you enable
> > > > > CONFIG_DEBUG_MEMORY_INIT and add mminit_debug=4 to the command line. The
> > > > > interesting part of the log would be before "Memory: xK/yK available ..."
> > > > > line.
> > > > >
> > > > > Hopefully it'll give some clues.
> > > >
> > > > Sure thing. Please find attached.
> > >
> > > > aboot: loading uncompressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > > > aboot: loading compressed vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty...
> > > > aboot: PHDR 0 vaddr 0xfffffc0001010000 offset 0xc0 size 0x17c5ae0
> > > > aboot: bss at 0xfffffc00027d5ae0, size 0xe4ea0
> > > > aboot: zero-filling 937632 bytes at 0xfffffc00027d5ae0
> > > > aboot: loading initrd (5965252 bytes/5825 blocks) at 0xfffffc05ff2cc000
> > > > aboot: starting kernel vmlinuz-5.7.0-03841-gfa3354e4ea39-dirty with arguments ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > > > Linux version 5.7.0-03841-gfa3354e4ea39-dirty (mattst88@ivybridge) (gcc version 11.1.0 (Gentoo 11.1.0-r2 p3), GNU ld (Gentoo 2.36.1 p3) 2.36.1) #26 SMP Sun Jul 25 18:20:06 PDT 2021
> > > > printk: bootconsole [srm0] enabled
> > > > Booting on Marvel variation Marvel/EV7 using machine vector MARVEL/EV7 from SRM
> > > > Major Options: SMP EV67 VERBOSE_MCHECK DEBUG_SPINLOCK MAGIC_SYSRQ
> > > > Command line: ro panic=5 domdadm root=/dev/md1 console=srm  mminit_debug=4
> > > > memcluster 0, usage 1, start        0, end     1984
> > > > memcluster 1, usage 0, start     1984, end  1048576
> > > > memcluster 2, usage 1, start  2097152, end  2097224
> > > > memcluster 3, usage 0, start  2097224, end  3145728
> > > > Initial ramdisk at: 0x(____ptrval____) (5965252 bytes)
> > > > Found an IO7 at PID 0
> > > > Initializing IO7 at PID 0
> > > > FIXME: disabling master aborts
> > > > FIXME: disabling master aborts
> > > > FIXME: disabling master aborts
> > > > FIXME: disabling master aborts
> > > > SMP: 2 CPUs probed -- cpu_present_mask = 3
> > > > Zone ranges:
> > > >   DMA      [mem 0x0000000000f80000-0x00000fffffffdfff]
> > > >   Normal   empty
> > > > Movable zone start for each node
> > > > Early memory node ranges
> > > >   node   0: [mem 0x0000000000f80000-0x00000001ffffffff]
> > > >   node   0: [mem 0x0000000400090000-0x00000005ffffffff]
> > >
> > > I think that the issue is that memory marked as used in memcluster is never
> > > added to memblock and it skews node/zone sizing calculations.
> >
> > Thanks, this patch fixes it. With the patch applied, I see
> >
> > Zone ranges:
> >   DMA      [mem 0x0000000000000000-0x00000fffffffdfff]
> >   Normal   empty
> > Movable zone start for each node
> > Early memory node ranges
> >   node   0: [mem 0x0000000000000000-0x00000001ffffffff]
> >   node   0: [mem 0x0000000400000000-0x00000005ffffffff]
> > Initmem setup node 0 [mem 0x0000000000000000-0x00000005ffffffff]
> >
> > If you want to send me this patch with your S-o-b I'll take it through
> > my alpha git tree.
>
> The patch is on its way :)

Thanks a bunch, Mike, for the patch and for all you do!

> Now I'm really curios how commit e7793e53901b ("arc: update comment about
> HIGHMEM implementation") will work out.

You probably mean fdb7d9b7acd0 ("alpha: remove DISCONTIGMEM and
NUMA"). Works well so far!

Maybe in some alternative universe where I have infinite free time
(and my own power plant!) I'll get a second AlphaServer ES47 with the
enormous "hose" [1] to link the two and I'll poke you for guidance on
restoring NUMA support :)

Thanks again!

[1] https://www.ebay.com/itm/302471226394

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes)
  2021-07-30 19:53             ` Matt Turner
  (?)
@ 2021-07-31  9:19             ` Mike Rapoport
  -1 siblings, 0 replies; 11+ messages in thread
From: Mike Rapoport @ 2021-07-31  9:19 UTC (permalink / raw)
  To: Matt Turner; +Cc: Michael Cree, linux-mm, linux-alpha, LKML

On Fri, Jul 30, 2021 at 12:53:58PM -0700, Matt Turner wrote:
> On Tue, Jul 27, 2021 at 1:41 PM Mike Rapoport <rppt@linux.ibm.com> wrote:
> > On Tue, Jul 27, 2021 at 12:24:26PM -0700, Matt Turner wrote:
> > >
> > > Thanks, this patch fixes it. With the patch applied, I see
> > >
> > > Zone ranges:
> > >   DMA      [mem 0x0000000000000000-0x00000fffffffdfff]
> > >   Normal   empty
> > > Movable zone start for each node
> > > Early memory node ranges
> > >   node   0: [mem 0x0000000000000000-0x00000001ffffffff]
> > >   node   0: [mem 0x0000000400000000-0x00000005ffffffff]
> > > Initmem setup node 0 [mem 0x0000000000000000-0x00000005ffffffff]
> > >
> > > If you want to send me this patch with your S-o-b I'll take it through
> > > my alpha git tree.
> >
> > The patch is on its way :)
> 
> Thanks a bunch, Mike, for the patch and for all you do!
> 
> > Now I'm really curios how commit e7793e53901b ("arc: update comment about
> > HIGHMEM implementation") will work out.

Oh, sure, I've copied the wrong line from the log :)
 
> You probably mean fdb7d9b7acd0 ("alpha: remove DISCONTIGMEM and
> NUMA"). Works well so far!
> 
> Maybe in some alternative universe where I have infinite free time
> (and my own power plant!) I'll get a second AlphaServer ES47 with the
> enormous "hose" [1] to link the two and I'll poke you for guidance on
> restoring NUMA support :)

Heh, I'm not sure that restoring NUMA on alpha is really good use for free
time even if it were infinite :)
 
-- 
Sincerely yours,
Mike.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-07-31  9:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-26 19:27 Regression bisected to fa3354e4ea39 (mm: free_area_init: use maximal zone PFNs rather than zone sizes) Matt Turner
2021-07-26 20:06 ` Mike Rapoport
2021-07-26 21:23   ` Matt Turner
2021-07-26 21:23     ` Matt Turner
2021-07-27  6:43     ` Mike Rapoport
2021-07-27 19:24       ` Matt Turner
2021-07-27 19:24         ` Matt Turner
2021-07-27 20:41         ` Mike Rapoport
2021-07-30 19:53           ` Matt Turner
2021-07-30 19:53             ` Matt Turner
2021-07-31  9:19             ` Mike Rapoport

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.