linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rbtree: fix the red root
       [not found] <YrcPMrGmYbPe_xgNEV6Q0jqc5XuPYmL2AFSyeNmg1gW531bgZnBGfEUK5_ktqDBaNW37b-NP2VXvlliM7_PsBRhSfB649MaW1Ne7zT9lHc=@protonmail.ch>
@ 2019-01-11 16:51 ` Qian Cai
  2019-01-11 17:17   ` Joey Pabalinas
  2019-01-11 17:31   ` Matthew Wilcox
  0 siblings, 2 replies; 26+ messages in thread
From: Qian Cai @ 2019-01-11 16:51 UTC (permalink / raw)
  To: akpm
  Cc: esploit, jejb, dgilbert, martin.petersen, linux-mm, linux-kernel,
	Qian Cai

A GFP was reported,

kasan: CONFIG_KASAN_INLINE enabled
kasan: GPF could be caused by NULL-ptr deref or user memory access
general protection fault: 0000 [#1] SMP KASAN
        kasan_die_handler.cold.22+0x11/0x31
        notifier_call_chain+0x17b/0x390
        atomic_notifier_call_chain+0xa7/0x1b0
        notify_die+0x1be/0x2e0
        do_general_protection+0x13e/0x330
        general_protection+0x1e/0x30
        rb_insert_color+0x189/0x1480
        create_object+0x785/0xca0
        kmemleak_alloc+0x2f/0x50
        kmem_cache_alloc+0x1b9/0x3c0
        getname_flags+0xdb/0x5d0
        getname+0x1e/0x20
        do_sys_open+0x3a1/0x7d0
        __x64_sys_open+0x7e/0xc0
        do_syscall_64+0x1b3/0x820
        entry_SYSCALL_64_after_hwframe+0x49/0xbe

It turned out,

gparent = rb_red_parent(parent);
tmp = gparent->rb_right; <-- GFP triggered here.

Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
which is red. Otherwise, it will be treated properly a few lines above.

/*
 * If there is a black parent, we are done.
 * Otherwise, take some corrective action as,
 * per 4), we don't want a red root or two
 * consecutive red nodes.
 */
if(rb_is_black(parent))
	break;

Hence, it violates the rule #1 and need a fix up.

Reported-by: Esme <esploit@protonmail.ch>
Signed-off-by: Qian Cai <cai@lca.pw>
---
 lib/rbtree.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/lib/rbtree.c b/lib/rbtree.c
index d3ff682fd4b8..acc969ad8de9 100644
--- a/lib/rbtree.c
+++ b/lib/rbtree.c
@@ -127,6 +127,13 @@ __rb_insert(struct rb_node *node, struct rb_root *root,
 			break;
 
 		gparent = rb_red_parent(parent);
+		if (unlikely(!gparent)) {
+			/*
+			 * The root is red so correct it.
+			 */
+			rb_set_parent_color(parent, NULL, RB_BLACK);
+			break;
+		}
 
 		tmp = gparent->rb_right;
 		if (parent != tmp) {	/* parent == gparent->rb_left */
-- 
2.17.2 (Apple Git-113)


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

* Re: [PATCH] rbtree: fix the red root
  2019-01-11 16:51 ` [PATCH] rbtree: fix the red root Qian Cai
@ 2019-01-11 17:17   ` Joey Pabalinas
  2019-01-11 17:31   ` Matthew Wilcox
  1 sibling, 0 replies; 26+ messages in thread
From: Joey Pabalinas @ 2019-01-11 17:17 UTC (permalink / raw)
  To: Qian Cai
  Cc: akpm, esploit, jejb, dgilbert, martin.petersen, linux-mm,
	linux-kernel, Joey Pabalinas

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

On Fri, Jan 11, 2019 at 11:51:45AM -0500, Qian Cai wrote:
> A GFP was reported,
> 
> kasan: CONFIG_KASAN_INLINE enabled
> kasan: GPF could be caused by NULL-ptr deref or user memory access
> general protection fault: 0000 [#1] SMP KASAN
>         kasan_die_handler.cold.22+0x11/0x31
>         notifier_call_chain+0x17b/0x390
>         atomic_notifier_call_chain+0xa7/0x1b0
>         notify_die+0x1be/0x2e0
>         do_general_protection+0x13e/0x330
>         general_protection+0x1e/0x30
>         rb_insert_color+0x189/0x1480
>         create_object+0x785/0xca0
>         kmemleak_alloc+0x2f/0x50
>         kmem_cache_alloc+0x1b9/0x3c0
>         getname_flags+0xdb/0x5d0
>         getname+0x1e/0x20
>         do_sys_open+0x3a1/0x7d0
>         __x64_sys_open+0x7e/0xc0
>         do_syscall_64+0x1b3/0x820
>         entry_SYSCALL_64_after_hwframe+0x49/0xbe
> 
> It turned out,
> 
> gparent = rb_red_parent(parent);
> tmp = gparent->rb_right; <-- GFP triggered here.
> 
> Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
> which is red. Otherwise, it will be treated properly a few lines above.

Good catch, acked. After thinking through the logic a bit your solution
seems like the simplest fix.

Now, I didn't do _extensive_ testing but a quick compile and bootup of
the patch with CONFIG_KASAN_INLINE enabled has yet to throw any GFPs,
so take that as you will.

Reviewed-by: Joey Pabalinas <joeypabalinas@gmail.com>
Tested-by: Joey Pabalinas <joeypabalinas@gmail.com>

> /*
>  * If there is a black parent, we are done.
>  * Otherwise, take some corrective action as,
>  * per 4), we don't want a red root or two
>  * consecutive red nodes.
>  */
> if(rb_is_black(parent))
> 	break;
> 
> Hence, it violates the rule #1 and need a fix up.
> 
> Reported-by: Esme <esploit@protonmail.ch>
> Signed-off-by: Qian Cai <cai@lca.pw>
> ---
>  lib/rbtree.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/lib/rbtree.c b/lib/rbtree.c
> index d3ff682fd4b8..acc969ad8de9 100644
> --- a/lib/rbtree.c
> +++ b/lib/rbtree.c
> @@ -127,6 +127,13 @@ __rb_insert(struct rb_node *node, struct rb_root *root,
>  			break;
>  
>  		gparent = rb_red_parent(parent);
> +		if (unlikely(!gparent)) {
> +			/*
> +			 * The root is red so correct it.
> +			 */
> +			rb_set_parent_color(parent, NULL, RB_BLACK);
> +			break;
> +		}
>  
>  		tmp = gparent->rb_right;
>  		if (parent != tmp) {	/* parent == gparent->rb_left */
> -- 
> 2.17.2 (Apple Git-113)
> 

-- 
Cheers,
Joey Pabalinas

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] rbtree: fix the red root
  2019-01-11 16:51 ` [PATCH] rbtree: fix the red root Qian Cai
  2019-01-11 17:17   ` Joey Pabalinas
@ 2019-01-11 17:31   ` Matthew Wilcox
  2019-01-11 17:53     ` Joey Pabalinas
  2019-01-11 18:12     ` Qian Cai
  1 sibling, 2 replies; 26+ messages in thread
From: Matthew Wilcox @ 2019-01-11 17:31 UTC (permalink / raw)
  To: Qian Cai
  Cc: akpm, esploit, jejb, dgilbert, martin.petersen, linux-mm, linux-kernel

On Fri, Jan 11, 2019 at 11:51:45AM -0500, Qian Cai wrote:
> Reported-by: Esme <esploit@protonmail.ch>
> Signed-off-by: Qian Cai <cai@lca.pw>

What change introduced this bug?  We need a Fixes: line so the stable
people know how far to backport this fix.

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

* Re: [PATCH] rbtree: fix the red root
  2019-01-11 17:31   ` Matthew Wilcox
@ 2019-01-11 17:53     ` Joey Pabalinas
  2019-01-11 18:12     ` Qian Cai
  1 sibling, 0 replies; 26+ messages in thread
From: Joey Pabalinas @ 2019-01-11 17:53 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: Qian Cai, akpm, esploit, jejb, dgilbert, martin.petersen,
	linux-mm, linux-kernel, Joey Pabalinas

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

On Fri, Jan 11, 2019 at 09:31:32AM -0800, Matthew Wilcox wrote:
> On Fri, Jan 11, 2019 at 11:51:45AM -0500, Qian Cai wrote:
> > Reported-by: Esme <esploit@protonmail.ch>
> > Signed-off-by: Qian Cai <cai@lca.pw>
> 
> What change introduced this bug?  We need a Fixes: line so the stable
> people know how far to backport this fix.
> 

Breaking commit _might_ be 5bc9188aa207dafd47 (rbtree: low level optimizations in rb_insert_color())

I'm thinking that the when `parent = rb_parent(node);` was
moved from the beginning of the loop to the function initialization
only, somehow parent not being reassigned every loop resulted in
the red root node case.

I'm sort of just guessing here admittedly and I'll do some testing after
breakfast, but nothing else in the `git log` or `git blame` changes really
jumps out at me apart from this one commit.

 void rb_insert_color(struct rb_node *node, struct rb_root *root)
 {
-       struct rb_node *parent, *gparent;
+       struct rb_node *parent = rb_red_parent(node), *gparent, *tmp;

        while (true) {
                /*
                 * Loop invariant: node is red
                 *
                 * If there is a black parent, we are done.
                 * Otherwise, take some corrective action as we don't
                 * want a red root or two consecutive red nodes.
                 */
-               parent = rb_parent(node);
                if (!parent) {
-                       rb_set_black(node);
+                       rb_set_parent_color(node, NULL, RB_BLACK);
                        break;
                } else if (rb_is_black(parent))
                        break;

-               gparent = rb_parent(parent);
+               gparent = rb_red_parent(parent);

-- 
Cheers,
Joey Pabalinas

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] rbtree: fix the red root
  2019-01-11 17:31   ` Matthew Wilcox
  2019-01-11 17:53     ` Joey Pabalinas
@ 2019-01-11 18:12     ` Qian Cai
  2019-01-11 18:16       ` Matthew Wilcox
  1 sibling, 1 reply; 26+ messages in thread
From: Qian Cai @ 2019-01-11 18:12 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: akpm, esploit, jejb, dgilbert, martin.petersen, linux-mm,
	linux-kernel, walken, David.Woodhouse

On Fri, 2019-01-11 at 09:31 -0800, Matthew Wilcox wrote:
> On Fri, Jan 11, 2019 at 11:51:45AM -0500, Qian Cai wrote:
> > Reported-by: Esme <esploit@protonmail.ch>
> > Signed-off-by: Qian Cai <cai@lca.pw>
> 
> What change introduced this bug?  We need a Fixes: line so the stable
> people know how far to backport this fix.

It looks like,

Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only when
necessary)

where it no longer always paint the root as black.

Also, copying this fix for the original author and reviewer.

https://lore.kernel.org/lkml/20190111165145.23628-1-cai@lca.pw/

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

* Re: [PATCH] rbtree: fix the red root
  2019-01-11 18:12     ` Qian Cai
@ 2019-01-11 18:16       ` Matthew Wilcox
  2019-01-11 20:58         ` [PATCH v2] " Qian Cai
  0 siblings, 1 reply; 26+ messages in thread
From: Matthew Wilcox @ 2019-01-11 18:16 UTC (permalink / raw)
  To: Qian Cai
  Cc: akpm, esploit, jejb, dgilbert, martin.petersen, linux-mm,
	linux-kernel, walken, David.Woodhouse

On Fri, Jan 11, 2019 at 01:12:36PM -0500, Qian Cai wrote:
> On Fri, 2019-01-11 at 09:31 -0800, Matthew Wilcox wrote:
> > On Fri, Jan 11, 2019 at 11:51:45AM -0500, Qian Cai wrote:
> > > Reported-by: Esme <esploit@protonmail.ch>
> > > Signed-off-by: Qian Cai <cai@lca.pw>
> > 
> > What change introduced this bug?  We need a Fixes: line so the stable
> > people know how far to backport this fix.
> 
> It looks like,
> 
> Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only when
> necessary)
> 
> where it no longer always paint the root as black.
> 
> Also, copying this fix for the original author and reviewer.
> 
> https://lore.kernel.org/lkml/20190111165145.23628-1-cai@lca.pw/

Great, thanks!  We have a test-suite (lib/rbtree_test.c); could you add
a test to it that will reproduce this bug without your patch applied?


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

* [PATCH v2] rbtree: fix the red root
  2019-01-11 18:16       ` Matthew Wilcox
@ 2019-01-11 20:58         ` Qian Cai
  2019-01-11 23:16           ` Matthew Wilcox
  2019-01-11 23:47           ` David Lechner
  0 siblings, 2 replies; 26+ messages in thread
From: Qian Cai @ 2019-01-11 20:58 UTC (permalink / raw)
  To: akpm
  Cc: esploit, jejb, dgilbert, martin.petersen, joeypabalinas, walken,
	linux-mm, linux-kernel, Qian Cai

A GPF was reported,

kasan: CONFIG_KASAN_INLINE enabled
kasan: GPF could be caused by NULL-ptr deref or user memory access
general protection fault: 0000 [#1] SMP KASAN
        kasan_die_handler.cold.22+0x11/0x31
        notifier_call_chain+0x17b/0x390
        atomic_notifier_call_chain+0xa7/0x1b0
        notify_die+0x1be/0x2e0
        do_general_protection+0x13e/0x330
        general_protection+0x1e/0x30
        rb_insert_color+0x189/0x1480
        create_object+0x785/0xca0
        kmemleak_alloc+0x2f/0x50
        kmem_cache_alloc+0x1b9/0x3c0
        getname_flags+0xdb/0x5d0
        getname+0x1e/0x20
        do_sys_open+0x3a1/0x7d0
        __x64_sys_open+0x7e/0xc0
        do_syscall_64+0x1b3/0x820
        entry_SYSCALL_64_after_hwframe+0x49/0xbe

It turned out,

gparent = rb_red_parent(parent);
tmp = gparent->rb_right; <-- GPF was triggered here.

Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
which is red. Otherwise, it will be treated properly a few lines above.

/*
 * If there is a black parent, we are done.
 * Otherwise, take some corrective action as,
 * per 4), we don't want a red root or two
 * consecutive red nodes.
 */
if(rb_is_black(parent))
	break;

Hence, it violates the rule #1 (the root can't be red) and need a fix
up, and also add a regression test for it. This looks like was
introduced by 6d58452dc06 where it no longer always paint the root as
black.

Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
when necessary)
Reported-by: Esme <esploit@protonmail.ch>
Tested-by: Joey Pabalinas <joeypabalinas@gmail.com>
Signed-off-by: Qian Cai <cai@lca.pw>
---

v2: add a regression test.

 lib/rbtree.c      |  7 +++++++
 lib/rbtree_test.c | 11 +++++++++++
 2 files changed, 18 insertions(+)

diff --git a/lib/rbtree.c b/lib/rbtree.c
index d3ff682fd4b8..acc969ad8de9 100644
--- a/lib/rbtree.c
+++ b/lib/rbtree.c
@@ -127,6 +127,13 @@ __rb_insert(struct rb_node *node, struct rb_root *root,
 			break;
 
 		gparent = rb_red_parent(parent);
+		if (unlikely(!gparent)) {
+			/*
+			 * The root is red so correct it.
+			 */
+			rb_set_parent_color(parent, NULL, RB_BLACK);
+			break;
+		}
 
 		tmp = gparent->rb_right;
 		if (parent != tmp) {	/* parent == gparent->rb_left */
diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
index b7055b2a07d3..afad0213a117 100644
--- a/lib/rbtree_test.c
+++ b/lib/rbtree_test.c
@@ -345,6 +345,17 @@ static int __init rbtree_test_init(void)
 		check(0);
 	}
 
+	/*
+	 * a little regression test to catch a bug may be introduced by
+	 * 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only when
+	 * necessary)
+	 */
+	insert(nodes, &root);
+	nodes->rb.__rb_parent_color = RB_RED;
+	insert(nodes + 1, &root);
+	erase(nodes + 1, &root);
+	erase(nodes, &root);
+
 	printk(KERN_ALERT "augmented rbtree testing");
 
 	init();
-- 
2.17.2 (Apple Git-113)


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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-11 20:58         ` [PATCH v2] " Qian Cai
@ 2019-01-11 23:16           ` Matthew Wilcox
  2019-01-12  0:18             ` Qian Cai
  2019-01-11 23:47           ` David Lechner
  1 sibling, 1 reply; 26+ messages in thread
From: Matthew Wilcox @ 2019-01-11 23:16 UTC (permalink / raw)
  To: Qian Cai
  Cc: akpm, esploit, jejb, dgilbert, martin.petersen, joeypabalinas,
	walken, linux-mm, linux-kernel

On Fri, Jan 11, 2019 at 03:58:43PM -0500, Qian Cai wrote:
> diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
> index b7055b2a07d3..afad0213a117 100644
> --- a/lib/rbtree_test.c
> +++ b/lib/rbtree_test.c
> @@ -345,6 +345,17 @@ static int __init rbtree_test_init(void)
>  		check(0);
>  	}
>  
> +	/*
> +	 * a little regression test to catch a bug may be introduced by
> +	 * 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only when
> +	 * necessary)
> +	 */
> +	insert(nodes, &root);
> +	nodes->rb.__rb_parent_color = RB_RED;
> +	insert(nodes + 1, &root);
> +	erase(nodes + 1, &root);
> +	erase(nodes, &root);

That's not a fair test!  You're poking around in the data structure to
create the situation.  This test would have failed before 6d58452dc06 too.
How do we create a tree that has a red parent at root, only using insert()
and erase()?

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-11 20:58         ` [PATCH v2] " Qian Cai
  2019-01-11 23:16           ` Matthew Wilcox
@ 2019-01-11 23:47           ` David Lechner
  2019-01-12  2:58             ` Michel Lespinasse
  1 sibling, 1 reply; 26+ messages in thread
From: David Lechner @ 2019-01-11 23:47 UTC (permalink / raw)
  To: Qian Cai, akpm
  Cc: esploit, jejb, dgilbert, martin.petersen, joeypabalinas, walken,
	linux-mm, linux-kernel

On 1/11/19 2:58 PM, Qian Cai wrote:
> A GPF was reported,
> 
> kasan: CONFIG_KASAN_INLINE enabled
> kasan: GPF could be caused by NULL-ptr deref or user memory access
> general protection fault: 0000 [#1] SMP KASAN
>          kasan_die_handler.cold.22+0x11/0x31
>          notifier_call_chain+0x17b/0x390
>          atomic_notifier_call_chain+0xa7/0x1b0
>          notify_die+0x1be/0x2e0
>          do_general_protection+0x13e/0x330
>          general_protection+0x1e/0x30
>          rb_insert_color+0x189/0x1480
>          create_object+0x785/0xca0
>          kmemleak_alloc+0x2f/0x50
>          kmem_cache_alloc+0x1b9/0x3c0
>          getname_flags+0xdb/0x5d0
>          getname+0x1e/0x20
>          do_sys_open+0x3a1/0x7d0
>          __x64_sys_open+0x7e/0xc0
>          do_syscall_64+0x1b3/0x820
>          entry_SYSCALL_64_after_hwframe+0x49/0xbe
> 
> It turned out,
> 
> gparent = rb_red_parent(parent);
> tmp = gparent->rb_right; <-- GPF was triggered here.
> 
> Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
> which is red. Otherwise, it will be treated properly a few lines above.
> 
> /*
>   * If there is a black parent, we are done.
>   * Otherwise, take some corrective action as,
>   * per 4), we don't want a red root or two
>   * consecutive red nodes.
>   */
> if(rb_is_black(parent))
> 	break;
> 
> Hence, it violates the rule #1 (the root can't be red) and need a fix
> up, and also add a regression test for it. This looks like was
> introduced by 6d58452dc06 where it no longer always paint the root as
> black.
> 
> Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
> when necessary)
> Reported-by: Esme <esploit@protonmail.ch>
> Tested-by: Joey Pabalinas <joeypabalinas@gmail.com>
> Signed-off-by: Qian Cai <cai@lca.pw>
> ---

Tested-by: David Lechner <david@lechnology.com>

FWIW, this fixed the following crash for me:

Unable to handle kernel NULL pointer dereference at virtual address 00000004
pgd = (ptrval)
[00000004] *pgd=00000000
Internal error: Oops: 5 [#1] PREEMPT ARM
Modules linked in:
CPU: 0 PID: 1 Comm: swapper Not tainted 5.0.0-rc1-00126-g27b09b277853 #1360
Hardware name: Generic DA850/OMAP-L138/AM18x
PC is at rb_insert_color+0x1c/0x1a4
LR is at kernfs_link_sibling+0x94/0xcc
pc : [<c04b95ec>]    lr : [<c014bfdc>]    psr: 60000013
sp : c2831b38  ip : 00000000  fp : c06b762c
r10: 00000000  r9 : c06b835c  r8 : 00000000
r7 : c2963f00  r6 : c066b028  r5 : c2016cc0  r4 : 00000000
r3 : 00000000  r2 : c2983010  r1 : c2963f2c  r0 : c2016cd0
Flags: nZCv  IRQs on  FIQs on  Mode SVC_32  ISA ARM  Segment none
Control: 0005317f  Table: c0004000  DAC: 00000053
Process swapper (pid: 1, stack limit = 0x(ptrval))
Stack: (0xc2831b38 to 0xc2832000)
1b20:                                                       00000000 c2016cc0
1b40: c066b028 c014bfdc c2016cc0 c2963f00 c066b028 c014c768 c2963f00 c014c448
1b60: 00000000 c2016cc0 c2963f00 c066b028 c2963f00 c014c860 00000000 00000001
1b80: c0589938 c2b4b408 00000000 c014ec70 00000000 c2b4b408 00000000 c04c4cb0
1ba0: 0000070f 00000000 00000000 9fd04dd9 00000000 c2b4b408 c066b028 00000000
1bc0: c293ac98 c04b58f8 c059081c 00000000 c2b4b408 c066b028 00000000 00000000
1be0: 00000000 c04b5d64 c2831c08 9fd04dd9 c2b4b3c0 c293ac80 c2bd16c0 c2b4b408
1c00: c00d650c c059081c c2bd16c0 c28e3a80 c2b4b3c0 00000000 c2b4b3c0 00000000
1c20: c06b7634 00020000 c06b835c c00d72f8 00000000 c00b0c24 00000000 00000074
1c40: c0590728 00000000 c0590728 c2b4b3c0 00000074 c0590728 00020000 00000000
1c60: c06b762c c00b0958 00000000 00380bc6 00000000 c06bbf1c c2bd9c00 c2bfe000
1c80: c06bbf14 0000000c 00000000 00000000 c2831e0c c00b0a90 00000000 00000000
1ca0: 00000000 00000000 003b2580 c017d6e4 00000000 00000000 00000000 c2bfe000
1cc0: c2bd9c00 00000000 003b2580 00000000 00000000 c01971a0 00001103 00000000
1ce0: c2bd8400 00000400 00000400 9fd04dd9 00000000 0000000a 00000002 00000000
1d00: ffffffff 00000000 ffffffff 00000000 00000000 00000001 00000a04 00000032
1d20: 00000000 0000000c 00000004 c00af550 c2bd9ecc 9fd04dd9 c2404480 c2bd9eb4
1d40: c2bd8400 c2404480 00000002 00000001 00000000 00000000 00000001 00000000
1d60: 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000
1d80: 00380bc6 00000000 003b257f 00000000 00000077 0000ffff 00000200 00000002
1da0: 00000001 0000ffff 00000000 00000401 c2bfe22c 00000000 00000000 00000000
1dc0: 00000000 00000000 c2012400 c24be100 00001000 00000000 c2404480 00000000
1de0: 00004003 9fd04dd9 00000000 c2bd9c00 c2404480 00000083 c24044fc 00008000
1e00: 00000000 00000020 00008000 c00e4d88 c2404480 00000000 00000000 c0190afc
1e20: c2bd0be0 c0692898 c0692898 00000000 00000020 c0190b10 c0194f48 c2bd0be0
1e40: c066b370 c00e568c c29f5000 c01002d4 c29f5000 c2bd0be0 00008000 c0100488
1e60: c0692898 00000000 c066b028 c2bd0be0 c2bd0bc0 c01033ec 00000000 ffffff00
1e80: ffff0a00 c0575ff4 c2bd0be0 c281a010 c2417098 c2bd0be0 0000000a 00000000
1ea0: 0000000a 9fd04dd9 0000000a c2bd0be0 c2bd0bc0 00000000 c0575ff8 00008000
1ec0: c066b028 00008000 c0575ff4 c0104178 00000000 00000000 c2014000 c2014005
1ee0: c0575ff8 c3fb1280 c0652868 c062b1ec 00000000 c01013d8 c24c3558 00000000
1f00: 00000000 00006180 c24c3558 c00f17c4 e10c76ac 0b300002 c2858015 c281a010
1f20: c2415da8 9fd04dd9 00000000 00000002 c06ad310 c066b028 c066da68 00000000
1f40: 00000000 00000000 00000000 c062b478 00000000 c0037200 00306b6c 9fd00000
1f60: c0576098 9fd04dd9 00000002 c06ad310 c0652878 00000000 00000000 00000000
1f80: 00000000 00000000 00000000 c062b5e4 00000000 00000000 00000000 00000000
1fa0: c04c7860 c04c7868 00000000 c00090e0 00000000 00000000 00000000 00000000
1fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
1fe0: 00000000 00000000 00000000 00000000 00000013 00000000 00000000 00000000
[<c04b95ec>] (rb_insert_color) from [<c014bfdc>] (kernfs_link_sibling+0x94/0xcc)
[<c014bfdc>] (kernfs_link_sibling) from [<c014c768>] (kernfs_add_one+0x90/0x140)
[<c014c768>] (kernfs_add_one) from [<c014c860>] (kernfs_create_dir_ns+0x48/0x74)
[<c014c860>] (kernfs_create_dir_ns) from [<c014ec70>] (sysfs_create_dir_ns+0x68/0xd0)
[<c014ec70>] (sysfs_create_dir_ns) from [<c04b58f8>] (kobject_add_internal+0x9c/0x2c4)
[<c04b58f8>] (kobject_add_internal) from [<c04b5d64>] (kobject_init_and_add+0x54/0x94)
[<c04b5d64>] (kobject_init_and_add) from [<c00d650c>] (sysfs_slab_add+0x10c/0x220)
[<c00d650c>] (sysfs_slab_add) from [<c00d72f8>] (__kmem_cache_create+0x1d8/0x338)
[<c00d72f8>] (__kmem_cache_create) from [<c00b0958>] (kmem_cache_create_usercopy+0x180/0x298)
[<c00b0958>] (kmem_cache_create_usercopy) from [<c00b0a90>] (kmem_cache_create+0x20/0x28)
[<c00b0a90>] (kmem_cache_create) from [<c017d6e4>] (ext4_mb_init+0x374/0x44c)
[<c017d6e4>] (ext4_mb_init) from [<c01971a0>] (ext4_fill_super+0x2258/0x2ef0)
[<c01971a0>] (ext4_fill_super) from [<c00e4d88>] (mount_bdev+0x154/0x18c)
[<c00e4d88>] (mount_bdev) from [<c0190b10>] (ext4_mount+0x14/0x20)
[<c0190b10>] (ext4_mount) from [<c00e568c>] (mount_fs+0x14/0xa8)
[<c00e568c>] (mount_fs) from [<c0100488>] (vfs_kern_mount+0x48/0xf0)
[<c0100488>] (vfs_kern_mount) from [<c01033ec>] (do_mount+0x180/0xb9c)
[<c01033ec>] (do_mount) from [<c0104178>] (ksys_mount+0x8c/0xb4)
[<c0104178>] (ksys_mount) from [<c062b1ec>] (mount_block_root+0x128/0x2a4)
[<c062b1ec>] (mount_block_root) from [<c062b478>] (mount_root+0x110/0x154)
[<c062b478>] (mount_root) from [<c062b5e4>] (prepare_namespace+0x128/0x188)
[<c062b5e4>] (prepare_namespace) from [<c04c7868>] (kernel_init+0x8/0xf4)
[<c04c7868>] (kernel_init) from [<c00090e0>] (ret_from_fork+0x14/0x34)
Exception stack(0xc2831fb0 to 0xc2831ff8)
1fa0:                                     00000000 00000000 00000000 00000000
1fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
1fe0: 00000000 00000000 00000000 00000000 00000013 00000000
Code: e5923000 e3130001 1a000054 e92d4070 (e593c004)
---[ end trace 1c5a7737a0eab0f2 ]---
Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b ]---



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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-11 23:16           ` Matthew Wilcox
@ 2019-01-12  0:18             ` Qian Cai
  2019-01-12  0:39               ` Esme
  0 siblings, 1 reply; 26+ messages in thread
From: Qian Cai @ 2019-01-12  0:18 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: akpm, esploit, jejb, dgilbert, martin.petersen, joeypabalinas,
	walken, linux-mm, linux-kernel



On 1/11/19 6:16 PM, Matthew Wilcox wrote:
> On Fri, Jan 11, 2019 at 03:58:43PM -0500, Qian Cai wrote:
>> diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
>> index b7055b2a07d3..afad0213a117 100644
>> --- a/lib/rbtree_test.c
>> +++ b/lib/rbtree_test.c
>> @@ -345,6 +345,17 @@ static int __init rbtree_test_init(void)
>>  		check(0);
>>  	}
>>  
>> +	/*
>> +	 * a little regression test to catch a bug may be introduced by
>> +	 * 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only when
>> +	 * necessary)
>> +	 */
>> +	insert(nodes, &root);
>> +	nodes->rb.__rb_parent_color = RB_RED;
>> +	insert(nodes + 1, &root);
>> +	erase(nodes + 1, &root);
>> +	erase(nodes, &root);
> 
> That's not a fair test!  You're poking around in the data structure to
> create the situation.  This test would have failed before 6d58452dc06 too.
> How do we create a tree that has a red parent at root, only using insert()
> and erase()?
> 

If only I knew how to reproduce this myself, I might be able to figure out how
it ends up with the red root in the first place.

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-12  0:18             ` Qian Cai
@ 2019-01-12  0:39               ` Esme
  0 siblings, 0 replies; 26+ messages in thread
From: Esme @ 2019-01-12  0:39 UTC (permalink / raw)
  To: Qian Cai
  Cc: Matthew Wilcox, akpm, jejb, dgilbert, martin.petersen,
	joeypabalinas, walken, linux-mm, linux-kernel

I've been out today but return home tomorrow and can test any suggested fixes, or with different kernel settings.  Just let me know.

Esme


Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Friday, January 11, 2019 7:18 PM, Qian Cai <cai@lca.pw> wrote:

> On 1/11/19 6:16 PM, Matthew Wilcox wrote:
>
> > On Fri, Jan 11, 2019 at 03:58:43PM -0500, Qian Cai wrote:
> >
> > > diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
> > > index b7055b2a07d3..afad0213a117 100644
> > > --- a/lib/rbtree_test.c
> > > +++ b/lib/rbtree_test.c
> > > @@ -345,6 +345,17 @@ static int __init rbtree_test_init(void)
> > > check(0);
> > > }
> > >
> > > -   /*
> > > -   -   a little regression test to catch a bug may be introduced by
> > > -   -   6d58452dc06 (rbtree: adjust root color in rb_insert_color() only when
> > > -   -   necessary)
> > > -   */
> > > -   insert(nodes, &root);
> > > -   nodes->rb.__rb_parent_color = RB_RED;
> > > -   insert(nodes + 1, &root);
> > > -   erase(nodes + 1, &root);
> > > -   erase(nodes, &root);
> >
> > That's not a fair test! You're poking around in the data structure to
> > create the situation. This test would have failed before 6d58452dc06 too.
> > How do we create a tree that has a red parent at root, only using insert()
> > and erase()?
>
> If only I knew how to reproduce this myself, I might be able to figure out how
> it ends up with the red root in the first place.



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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-11 23:47           ` David Lechner
@ 2019-01-12  2:58             ` Michel Lespinasse
  2019-01-14  2:20               ` David Lechner
  0 siblings, 1 reply; 26+ messages in thread
From: Michel Lespinasse @ 2019-01-12  2:58 UTC (permalink / raw)
  To: David Lechner
  Cc: Qian Cai, Andrew Morton, esploit, jejb, dgilbert,
	martin.petersen, joeypabalinas, linux-mm, LKML

On Fri, Jan 11, 2019 at 3:47 PM David Lechner <david@lechnology.com> wrote:
>
> On 1/11/19 2:58 PM, Qian Cai wrote:
> > A GPF was reported,
> >
> > kasan: CONFIG_KASAN_INLINE enabled
> > kasan: GPF could be caused by NULL-ptr deref or user memory access
> > general protection fault: 0000 [#1] SMP KASAN
> >          kasan_die_handler.cold.22+0x11/0x31
> >          notifier_call_chain+0x17b/0x390
> >          atomic_notifier_call_chain+0xa7/0x1b0
> >          notify_die+0x1be/0x2e0
> >          do_general_protection+0x13e/0x330
> >          general_protection+0x1e/0x30
> >          rb_insert_color+0x189/0x1480
> >          create_object+0x785/0xca0
> >          kmemleak_alloc+0x2f/0x50
> >          kmem_cache_alloc+0x1b9/0x3c0
> >          getname_flags+0xdb/0x5d0
> >          getname+0x1e/0x20
> >          do_sys_open+0x3a1/0x7d0
> >          __x64_sys_open+0x7e/0xc0
> >          do_syscall_64+0x1b3/0x820
> >          entry_SYSCALL_64_after_hwframe+0x49/0xbe
> >
> > It turned out,
> >
> > gparent = rb_red_parent(parent);
> > tmp = gparent->rb_right; <-- GPF was triggered here.
> >
> > Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
> > which is red. Otherwise, it will be treated properly a few lines above.
> >
> > /*
> >   * If there is a black parent, we are done.
> >   * Otherwise, take some corrective action as,
> >   * per 4), we don't want a red root or two
> >   * consecutive red nodes.
> >   */
> > if(rb_is_black(parent))
> >       break;
> >
> > Hence, it violates the rule #1 (the root can't be red) and need a fix
> > up, and also add a regression test for it. This looks like was
> > introduced by 6d58452dc06 where it no longer always paint the root as
> > black.
> >
> > Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
> > when necessary)
> > Reported-by: Esme <esploit@protonmail.ch>
> > Tested-by: Joey Pabalinas <joeypabalinas@gmail.com>
> > Signed-off-by: Qian Cai <cai@lca.pw>
> > ---
>
> Tested-by: David Lechner <david@lechnology.com>
> FWIW, this fixed the following crash for me:
>
> Unable to handle kernel NULL pointer dereference at virtual address 00000004

Just to clarify, do you have a way to reproduce this crash without the fix ?

I don't think the fix is correct, because it just silently ignores a
corrupted rbtree (red root node). But the code that creates this
situation certainly needs to be fixed - having a reproduceable test
case would certainly help here.

Regarding 6d58452dc06, the reasoning was that this code expects to be
called after inserting a new (red) leaf into an rbtree that had all of
its data structure invariants satisfied. So in this context, it should
not be necessary to always reset the root to black, as this should
already be the case...

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-12  2:58             ` Michel Lespinasse
@ 2019-01-14  2:20               ` David Lechner
  2019-01-14  2:33                 ` Qian Cai
  0 siblings, 1 reply; 26+ messages in thread
From: David Lechner @ 2019-01-14  2:20 UTC (permalink / raw)
  To: Michel Lespinasse
  Cc: Qian Cai, Andrew Morton, esploit, jejb, dgilbert,
	martin.petersen, joeypabalinas, linux-mm, LKML

On 1/11/19 8:58 PM, Michel Lespinasse wrote:
> On Fri, Jan 11, 2019 at 3:47 PM David Lechner <david@lechnology.com> wrote:
>>
>> On 1/11/19 2:58 PM, Qian Cai wrote:
>>> A GPF was reported,
>>>
>>> kasan: CONFIG_KASAN_INLINE enabled
>>> kasan: GPF could be caused by NULL-ptr deref or user memory access
>>> general protection fault: 0000 [#1] SMP KASAN
>>>           kasan_die_handler.cold.22+0x11/0x31
>>>           notifier_call_chain+0x17b/0x390
>>>           atomic_notifier_call_chain+0xa7/0x1b0
>>>           notify_die+0x1be/0x2e0
>>>           do_general_protection+0x13e/0x330
>>>           general_protection+0x1e/0x30
>>>           rb_insert_color+0x189/0x1480
>>>           create_object+0x785/0xca0
>>>           kmemleak_alloc+0x2f/0x50
>>>           kmem_cache_alloc+0x1b9/0x3c0
>>>           getname_flags+0xdb/0x5d0
>>>           getname+0x1e/0x20
>>>           do_sys_open+0x3a1/0x7d0
>>>           __x64_sys_open+0x7e/0xc0
>>>           do_syscall_64+0x1b3/0x820
>>>           entry_SYSCALL_64_after_hwframe+0x49/0xbe
>>>
>>> It turned out,
>>>
>>> gparent = rb_red_parent(parent);
>>> tmp = gparent->rb_right; <-- GPF was triggered here.
>>>
>>> Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
>>> which is red. Otherwise, it will be treated properly a few lines above.
>>>
>>> /*
>>>    * If there is a black parent, we are done.
>>>    * Otherwise, take some corrective action as,
>>>    * per 4), we don't want a red root or two
>>>    * consecutive red nodes.
>>>    */
>>> if(rb_is_black(parent))
>>>        break;
>>>
>>> Hence, it violates the rule #1 (the root can't be red) and need a fix
>>> up, and also add a regression test for it. This looks like was
>>> introduced by 6d58452dc06 where it no longer always paint the root as
>>> black.
>>>
>>> Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
>>> when necessary)
>>> Reported-by: Esme <esploit@protonmail.ch>
>>> Tested-by: Joey Pabalinas <joeypabalinas@gmail.com>
>>> Signed-off-by: Qian Cai <cai@lca.pw>
>>> ---
>>
>> Tested-by: David Lechner <david@lechnology.com>
>> FWIW, this fixed the following crash for me:
>>
>> Unable to handle kernel NULL pointer dereference at virtual address 00000004
> 
> Just to clarify, do you have a way to reproduce this crash without the fix ?

I am starting to suspect that my crash was caused by some new code
in the drm-misc-next tree that might be causing a memory corruption.
It threw me off that the stack trace didn't contain anything related
to drm.

See: https://patchwork.freedesktop.org/patch/276719/

> 
> I don't think the fix is correct, because it just silently ignores a
> corrupted rbtree (red root node). But the code that creates this
> situation certainly needs to be fixed - having a reproduceable test
> case would certainly help here.
> 
> Regarding 6d58452dc06, the reasoning was that this code expects to be
> called after inserting a new (red) leaf into an rbtree that had all of
> its data structure invariants satisfied. So in this context, it should
> not be necessary to always reset the root to black, as this should
> already be the case...
> 


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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  2:20               ` David Lechner
@ 2019-01-14  2:33                 ` Qian Cai
  2019-01-14  3:07                   ` Esme
  0 siblings, 1 reply; 26+ messages in thread
From: Qian Cai @ 2019-01-14  2:33 UTC (permalink / raw)
  To: David Lechner, Michel Lespinasse
  Cc: Andrew Morton, esploit, jejb, dgilbert, martin.petersen,
	joeypabalinas, linux-mm, LKML



On 1/13/19 9:20 PM, David Lechner wrote:
> On 1/11/19 8:58 PM, Michel Lespinasse wrote:
>> On Fri, Jan 11, 2019 at 3:47 PM David Lechner <david@lechnology.com> wrote:
>>>
>>> On 1/11/19 2:58 PM, Qian Cai wrote:
>>>> A GPF was reported,
>>>>
>>>> kasan: CONFIG_KASAN_INLINE enabled
>>>> kasan: GPF could be caused by NULL-ptr deref or user memory access
>>>> general protection fault: 0000 [#1] SMP KASAN
>>>>           kasan_die_handler.cold.22+0x11/0x31
>>>>           notifier_call_chain+0x17b/0x390
>>>>           atomic_notifier_call_chain+0xa7/0x1b0
>>>>           notify_die+0x1be/0x2e0
>>>>           do_general_protection+0x13e/0x330
>>>>           general_protection+0x1e/0x30
>>>>           rb_insert_color+0x189/0x1480
>>>>           create_object+0x785/0xca0
>>>>           kmemleak_alloc+0x2f/0x50
>>>>           kmem_cache_alloc+0x1b9/0x3c0
>>>>           getname_flags+0xdb/0x5d0
>>>>           getname+0x1e/0x20
>>>>           do_sys_open+0x3a1/0x7d0
>>>>           __x64_sys_open+0x7e/0xc0
>>>>           do_syscall_64+0x1b3/0x820
>>>>           entry_SYSCALL_64_after_hwframe+0x49/0xbe
>>>>
>>>> It turned out,
>>>>
>>>> gparent = rb_red_parent(parent);
>>>> tmp = gparent->rb_right; <-- GPF was triggered here.
>>>>
>>>> Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
>>>> which is red. Otherwise, it will be treated properly a few lines above.
>>>>
>>>> /*
>>>>    * If there is a black parent, we are done.
>>>>    * Otherwise, take some corrective action as,
>>>>    * per 4), we don't want a red root or two
>>>>    * consecutive red nodes.
>>>>    */
>>>> if(rb_is_black(parent))
>>>>        break;
>>>>
>>>> Hence, it violates the rule #1 (the root can't be red) and need a fix
>>>> up, and also add a regression test for it. This looks like was
>>>> introduced by 6d58452dc06 where it no longer always paint the root as
>>>> black.
>>>>
>>>> Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
>>>> when necessary)
>>>> Reported-by: Esme <esploit@protonmail.ch>
>>>> Tested-by: Joey Pabalinas <joeypabalinas@gmail.com>
>>>> Signed-off-by: Qian Cai <cai@lca.pw>
>>>> ---
>>>
>>> Tested-by: David Lechner <david@lechnology.com>
>>> FWIW, this fixed the following crash for me:
>>>
>>> Unable to handle kernel NULL pointer dereference at virtual address 00000004
>>
>> Just to clarify, do you have a way to reproduce this crash without the fix ?
> 
> I am starting to suspect that my crash was caused by some new code
> in the drm-misc-next tree that might be causing a memory corruption.
> It threw me off that the stack trace didn't contain anything related
> to drm.
> 
> See: https://patchwork.freedesktop.org/patch/276719/
>

It may be useful for those who could reproduce this issue to turn on those
memory corruption debug options to narrow down a bit.

CONFIG_DEBUG_PAGEALLOC=y
CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
CONFIG_KASAN=y
CONFIG_KASAN_GENERIC=y
CONFIG_SLUB_DEBUG_ON=y

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  2:33                 ` Qian Cai
@ 2019-01-14  3:07                   ` Esme
  2019-01-14  3:52                     ` Douglas Gilbert
  0 siblings, 1 reply; 26+ messages in thread
From: Esme @ 2019-01-14  3:07 UTC (permalink / raw)
  To: Qian Cai
  Cc: David Lechner, Michel Lespinasse, Andrew Morton, jejb, dgilbert,
	martin.petersen, joeypabalinas, linux-mm, LKML

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Sunday, January 13, 2019 9:33 PM, Qian Cai <cai@lca.pw> wrote:

> On 1/13/19 9:20 PM, David Lechner wrote:
>
> > On 1/11/19 8:58 PM, Michel Lespinasse wrote:
> >
> > > On Fri, Jan 11, 2019 at 3:47 PM David Lechner david@lechnology.com wrote:
> > >
> > > > On 1/11/19 2:58 PM, Qian Cai wrote:
> > > >
> > > > > A GPF was reported,
> > > > > kasan: CONFIG_KASAN_INLINE enabled
> > > > > kasan: GPF could be caused by NULL-ptr deref or user memory access
> > > > > general protection fault: 0000 [#1] SMP KASAN
> > > > >           kasan_die_handler.cold.22+0x11/0x31
> > > > >           notifier_call_chain+0x17b/0x390
> > > > >           atomic_notifier_call_chain+0xa7/0x1b0
> > > > >           notify_die+0x1be/0x2e0
> > > > >           do_general_protection+0x13e/0x330
> > > > >           general_protection+0x1e/0x30
> > > > >           rb_insert_color+0x189/0x1480
> > > > >           create_object+0x785/0xca0
> > > > >           kmemleak_alloc+0x2f/0x50
> > > > >           kmem_cache_alloc+0x1b9/0x3c0
> > > > >           getname_flags+0xdb/0x5d0
> > > > >           getname+0x1e/0x20
> > > > >           do_sys_open+0x3a1/0x7d0
> > > > >           __x64_sys_open+0x7e/0xc0
> > > > >           do_syscall_64+0x1b3/0x820
> > > > >           entry_SYSCALL_64_after_hwframe+0x49/0xbe
> > > > > It turned out,
> > > > > gparent = rb_red_parent(parent);
> > > > > tmp = gparent->rb_right; <-- GPF was triggered here.
> > > > > Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
> > > > > which is red. Otherwise, it will be treated properly a few lines above.
> > > > > /*
> > > > >    * If there is a black parent, we are done.
> > > > >    * Otherwise, take some corrective action as,
> > > > >    * per 4), we don't want a red root or two
> > > > >    * consecutive red nodes.
> > > > >    */
> > > > > if(rb_is_black(parent))
> > > > >        break;
> > > > > Hence, it violates the rule #1 (the root can't be red) and need a fix
> > > > > up, and also add a regression test for it. This looks like was
> > > > > introduced by 6d58452dc06 where it no longer always paint the root as
> > > > > black.
> > > > >
> > > > > Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
> > > > > when necessary)
> > > > > Reported-by: Esme esploit@protonmail.ch
> > > > > Tested-by: Joey Pabalinas joeypabalinas@gmail.com
> > > > > Signed-off-by: Qian Cai cai@lca.pw
> > > > >
> > > > > ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> > > >
> > > > Tested-by: David Lechner david@lechnology.com
> > > > FWIW, this fixed the following crash for me:
> > > > Unable to handle kernel NULL pointer dereference at virtual address 00000004
> > >
> > > Just to clarify, do you have a way to reproduce this crash without the fix ?
> >
> > I am starting to suspect that my crash was caused by some new code
> > in the drm-misc-next tree that might be causing a memory corruption.
> > It threw me off that the stack trace didn't contain anything related
> > to drm.
> > See: https://patchwork.freedesktop.org/patch/276719/
>
> It may be useful for those who could reproduce this issue to turn on those
> memory corruption debug options to narrow down a bit.
>
> CONFIG_DEBUG_PAGEALLOC=y
> CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
> CONFIG_KASAN=y
> CONFIG_KASAN_GENERIC=y
> CONFIG_SLUB_DEBUG_ON=y

I have been on SLAB, I configured SLAB DEBUG with a fresh pull from github. Linux syzkaller 5.0.0-rc2 #9 SMP Sun Jan 13 21:57:40 EST 2019 x86_64
...

In an effort to get a different stack into the kernel, I felt that nothing works better than fork bomb? :)

Let me know if that helps.

root@syzkaller:~# gcc -o test3 test3.c
root@syzkaller:~# while : ; do ./test3 & done
[1] 5671
[2] 5672
[3] 5673
[4] 5675
[5] 5677
[6] 5693
[7] 5699
[8] 5701
[9] 5741
[  128.063843] INFO: trying to register non-static key.
[  128.064903] the code is fine but needs lockdep annotation.
[  128.066010] turning off the locking correctness validator.
[  128.067120] CPU: 0 PID: 5719 Comm: modprobe Not tainted 5.0.0-rc2 #9
[  128.068420] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.1-1ubuntu1 04/01/2014
[  128.070236] Call Trace:
[  128.070763]  dump_stack+0x104/0x174
[  128.071467]  register_lock_class+0x598/0x5a0
[  128.072326]  __lock_acquire+0x84/0x16d0
[  128.073090]  ? find_held_lock+0x35/0xa0
[  128.073876]  lock_acquire+0xe7/0x200
[  128.074599]  ? acct_collect+0xd9/0x250
[  128.075352]  _raw_spin_lock_irq+0x49/0x60
[  128.076165]  ? acct_collect+0xd9/0x250
[  128.076931]  acct_collect+0xd9/0x250
[  128.077687]  do_exit+0x430/0x1370
[  128.078373]  ? task_work_run+0xb1/0x110
[  128.079158]  do_group_exit+0x79/0x130
[  128.079904]  __x64_sys_exit_group+0x1c/0x20
[  128.080751]  do_syscall_64+0x99/0x2f0
[  128.081493]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  128.082533] RIP: 0033:0x7f7f37cc7618
[  128.083317] Code: 00 00 be 3c 00 00 00 eb 19 66 0f 1f 84 00 00 00 00 00 48 89 d7 89 f0 0f 05 48 3d 00 f0 ff ff 77 21 f4 48 89 d7 44 89 c0 0f 05 <48> 3d 00 f0 ff ff 76 e0 f7 d8 64 41 89 01 eb
[  128.087116] RSP: 002b:00007ffe905975c8 EFLAGS: 00000246 ORIG_RAX: 00000000000000e7
[  128.088634] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007f7f37cc7618
[  128.090035] RDX: 0000000000000001 RSI: 000000000000003c RDI: 0000000000000001
[  128.091410] RBP: 00007f7f37fa48e0 R08: 00000000000000e7 R09: ffffffffffffff98
[  128.092866] R10: 00007ffe90597548 R11: 0000000000000246 R12: 00007f7f37fa48e0
[  128.094386] R13: 00007f7f37fa9c20 R14: 0000000000000000 R15: 0000000000000000
[  128.130418] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008
[  128.132110] #PF error: [normal kernel read fault]
[  128.133066] PGD 0 P4D 0
[  128.133644] Oops: 0000 [#1] SMP DEBUG_PAGEALLOC
[  128.134575] CPU: 0 PID: 5756 Comm: kworker/u4:6 Not tainted 5.0.0-rc2 #9
[  128.135922] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.1-1ubuntu1 04/01/2014
[  128.137706] RIP: 0010:rb_insert_color+0x18/0x150
[  128.138625] Code: fd c7 43 44 00 00 00 00 e9 3b ff ff ff 90 90 90 90 90 48 8b 07 48 85 c0 0f 84 38 01 00 00 48 8b 10 f6 c2 01 0f 85 34 01 00 00 <48> 8b 4a 08 49 89 d0 48 39 c1 74 4b 48 85 cc
[  128.142347] RSP: 0018:ffffc90001143a68 EFLAGS: 00010046
[  128.143448] RAX: ffff8880607e28a8 RBX: 0000000000000000 RCX: 0000000000000000
[  128.144884] RDX: 0000000000000000 RSI: ffffffff865eb010 RDI: ffff88805baa09e8
[  128.146427] RBP: ffffc90001143ab8 R08: 0000000000000001 R09: 0000000000000001
[  128.147889] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000282
[  128.149375] R13: ffff88805baa09c8 R14: ffff88805baa0988 R15: ffffffff84ee2f50
[  128.150815] FS:  0000000000000000(0000) GS:ffff88807f800000(0000) knlGS:0000000000000000
[  128.152424] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  128.153638] CR2: 0000000000000008 CR3: 000000006026a000 CR4: 00000000000006f0
[  128.155026] Call Trace:
[  128.155536]  ? create_object+0x22d/0x2c0
[  128.156324]  kmemleak_alloc+0x2f/0x50
[  128.157062]  kmem_cache_alloc+0x1b8/0x3d0
[  128.157865]  ? __anon_vma_prepare+0x113/0x1e0
[  128.158738]  __anon_vma_prepare+0x113/0x1e0
[  128.159559]  ? __pte_alloc+0x11e/0x1e0
[  128.160300]  __handle_mm_fault+0x1f8f/0x21d0
[  128.161162]  ? touch_atime+0x5f/0x140
[  128.161917]  handle_mm_fault+0x306/0x5d0
[  128.162719]  ? handle_mm_fault+0x48/0x5d0
[  128.163598]  __get_user_pages+0x53c/0xfa0
[  128.164498]  get_user_pages_remote+0x1e8/0x350
[  128.165525]  copy_strings.isra.28+0x288/0x530
[  128.166485]  copy_strings_kernel+0x56/0x80
[  128.167335]  __do_execve_file.isra.37+0x88e/0x1020
[  128.168316]  ? __do_execve_file.isra.37+0x223/0x1020
[  128.169341]  do_execve+0x4a/0x60
[  128.170030]  call_usermodehelper_exec_async+0x1b8/0x200
[  128.171060]  ? umh_complete+0x80/0x80
[  128.171852]  ret_from_fork+0x24/0x30
[  128.172579] Modules linked in:
[  128.173296] CR2: 0000000000000008
[  128.174000] ---[ end trace 5243d337fc3ae408 ]---
[  128.174952] RIP: 0010:rb_insert_color+0x18/0x150
[  128.175899] Code: fd c7 43 44 00 00 00 00 e9 3b ff ff ff 90 90 90 90 90 48 8b 07 48 85 c0 0f 84 38 01 00 00 48 8b 10 f6 c2 01 0f 85 34 01 00 00 <48> 8b 4a 08 49 89 d0 48 39 c1 74 4b 48 85 c9
[  128.179890] RSP: 0018:ffffc90001143a68 EFLAGS: 00010046
[  128.180957] RAX: ffff8880607e28a8 RBX: 0000000000000000 RCX: 0000000000000000
[  128.182400] RDX: 0000000000000000 RSI: ffffffff865eb010 RDI: ffff88805baa09e8
[  128.183917] RBP: ffffc90001143ab8 R08: 0000000000000001 R09: 0000000000000001
[  128.185373] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000282
[  128.186822] R13: ffff88805baa09c8 R14: ffff88805baa0988 R15: ffffffff84ee2f50
[  128.188247] FS:  0000000000000000(0000) GS:ffff88807f800000(0000) knlGS:0000000000000000
[  128.189875] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  128.191024] CR2: 0000000000000008 CR3: 000000006026a000 CR4: 00000000000006f0
[  128.192455] Kernel panic - not syncing: Fatal exception
[  129.266473] Shutting down cpus with NMI
[  129.272005] Kernel Offset: disabled
[  129.272732] Rebooting in 86400 seconds..



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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  3:07                   ` Esme
@ 2019-01-14  3:52                     ` Douglas Gilbert
  2019-01-14  3:59                       ` Esme
  0 siblings, 1 reply; 26+ messages in thread
From: Douglas Gilbert @ 2019-01-14  3:52 UTC (permalink / raw)
  To: Esme, Qian Cai
  Cc: David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

On 2019-01-13 10:07 p.m., Esme wrote:
> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> On Sunday, January 13, 2019 9:33 PM, Qian Cai <cai@lca.pw> wrote:
> 
>> On 1/13/19 9:20 PM, David Lechner wrote:
>>
>>> On 1/11/19 8:58 PM, Michel Lespinasse wrote:
>>>
>>>> On Fri, Jan 11, 2019 at 3:47 PM David Lechner david@lechnology.com wrote:
>>>>
>>>>> On 1/11/19 2:58 PM, Qian Cai wrote:
>>>>>
>>>>>> A GPF was reported,
>>>>>> kasan: CONFIG_KASAN_INLINE enabled
>>>>>> kasan: GPF could be caused by NULL-ptr deref or user memory access
>>>>>> general protection fault: 0000 [#1] SMP KASAN
>>>>>>            kasan_die_handler.cold.22+0x11/0x31
>>>>>>            notifier_call_chain+0x17b/0x390
>>>>>>            atomic_notifier_call_chain+0xa7/0x1b0
>>>>>>            notify_die+0x1be/0x2e0
>>>>>>            do_general_protection+0x13e/0x330
>>>>>>            general_protection+0x1e/0x30
>>>>>>            rb_insert_color+0x189/0x1480
>>>>>>            create_object+0x785/0xca0
>>>>>>            kmemleak_alloc+0x2f/0x50
>>>>>>            kmem_cache_alloc+0x1b9/0x3c0
>>>>>>            getname_flags+0xdb/0x5d0
>>>>>>            getname+0x1e/0x20
>>>>>>            do_sys_open+0x3a1/0x7d0
>>>>>>            __x64_sys_open+0x7e/0xc0
>>>>>>            do_syscall_64+0x1b3/0x820
>>>>>>            entry_SYSCALL_64_after_hwframe+0x49/0xbe
>>>>>> It turned out,
>>>>>> gparent = rb_red_parent(parent);
>>>>>> tmp = gparent->rb_right; <-- GPF was triggered here.
>>>>>> Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
>>>>>> which is red. Otherwise, it will be treated properly a few lines above.
>>>>>> /*
>>>>>>     * If there is a black parent, we are done.
>>>>>>     * Otherwise, take some corrective action as,
>>>>>>     * per 4), we don't want a red root or two
>>>>>>     * consecutive red nodes.
>>>>>>     */
>>>>>> if(rb_is_black(parent))
>>>>>>         break;
>>>>>> Hence, it violates the rule #1 (the root can't be red) and need a fix
>>>>>> up, and also add a regression test for it. This looks like was
>>>>>> introduced by 6d58452dc06 where it no longer always paint the root as
>>>>>> black.
>>>>>>
>>>>>> Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
>>>>>> when necessary)
>>>>>> Reported-by: Esme esploit@protonmail.ch
>>>>>> Tested-by: Joey Pabalinas joeypabalinas@gmail.com
>>>>>> Signed-off-by: Qian Cai cai@lca.pw
>>>>>>
>>>>>> ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>>>>>
>>>>> Tested-by: David Lechner david@lechnology.com
>>>>> FWIW, this fixed the following crash for me:
>>>>> Unable to handle kernel NULL pointer dereference at virtual address 00000004
>>>>
>>>> Just to clarify, do you have a way to reproduce this crash without the fix ?
>>>
>>> I am starting to suspect that my crash was caused by some new code
>>> in the drm-misc-next tree that might be causing a memory corruption.
>>> It threw me off that the stack trace didn't contain anything related
>>> to drm.
>>> See: https://patchwork.freedesktop.org/patch/276719/
>>
>> It may be useful for those who could reproduce this issue to turn on those
>> memory corruption debug options to narrow down a bit.
>>
>> CONFIG_DEBUG_PAGEALLOC=y
>> CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
>> CONFIG_KASAN=y
>> CONFIG_KASAN_GENERIC=y
>> CONFIG_SLUB_DEBUG_ON=y
> 
> I have been on SLAB, I configured SLAB DEBUG with a fresh pull from github. Linux syzkaller 5.0.0-rc2 #9 SMP Sun Jan 13 21:57:40 EST 2019 x86_64
> ...
> 
> In an effort to get a different stack into the kernel, I felt that nothing works better than fork bomb? :)
> 
> Let me know if that helps.
> 
> root@syzkaller:~# gcc -o test3 test3.c
> root@syzkaller:~# while : ; do ./test3 & done

And is test3 the same multi-threaded program that enters the kernel via
/dev/sg0 and then calls SCSI_IOCTL_SEND_COMMAND which goes to the SCSI
mid-level and thence to the block layer?

And please remind me, does it also fail on lk 4.20.2 ?

Doug Gilbert

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  3:52                     ` Douglas Gilbert
@ 2019-01-14  3:59                       ` Esme
  2019-01-14  4:52                         ` Douglas Gilbert
  0 siblings, 1 reply; 26+ messages in thread
From: Esme @ 2019-01-14  3:59 UTC (permalink / raw)
  To: dgilbert
  Cc: Qian Cai, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Sunday, January 13, 2019 10:52 PM, Douglas Gilbert <dgilbert@interlog.com> wrote:

> On 2019-01-13 10:07 p.m., Esme wrote:
>
> > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> > On Sunday, January 13, 2019 9:33 PM, Qian Cai cai@lca.pw wrote:
> >
> > > On 1/13/19 9:20 PM, David Lechner wrote:
> > >
> > > > On 1/11/19 8:58 PM, Michel Lespinasse wrote:
> > > >
> > > > > On Fri, Jan 11, 2019 at 3:47 PM David Lechner david@lechnology.com wrote:
> > > > >
> > > > > > On 1/11/19 2:58 PM, Qian Cai wrote:
> > > > > >
> > > > > > > A GPF was reported,
> > > > > > > kasan: CONFIG_KASAN_INLINE enabled
> > > > > > > kasan: GPF could be caused by NULL-ptr deref or user memory access
> > > > > > > general protection fault: 0000 [#1] SMP KASAN
> > > > > > >           kasan_die_handler.cold.22+0x11/0x31
> > > > > > >           notifier_call_chain+0x17b/0x390
> > > > > > >           atomic_notifier_call_chain+0xa7/0x1b0
> > > > > > >           notify_die+0x1be/0x2e0
> > > > > > >           do_general_protection+0x13e/0x330
> > > > > > >           general_protection+0x1e/0x30
> > > > > > >           rb_insert_color+0x189/0x1480
> > > > > > >           create_object+0x785/0xca0
> > > > > > >           kmemleak_alloc+0x2f/0x50
> > > > > > >           kmem_cache_alloc+0x1b9/0x3c0
> > > > > > >           getname_flags+0xdb/0x5d0
> > > > > > >           getname+0x1e/0x20
> > > > > > >           do_sys_open+0x3a1/0x7d0
> > > > > > >           __x64_sys_open+0x7e/0xc0
> > > > > > >           do_syscall_64+0x1b3/0x820
> > > > > > >           entry_SYSCALL_64_after_hwframe+0x49/0xbe
> > > > > > > It turned out,
> > > > > > > gparent = rb_red_parent(parent);
> > > > > > > tmp = gparent->rb_right; <-- GPF was triggered here.
> > > > > > > Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
> > > > > > > which is red. Otherwise, it will be treated properly a few lines above.
> > > > > > > /*
> > > > > > >    * If there is a black parent, we are done.
> > > > > > >    * Otherwise, take some corrective action as,
> > > > > > >    * per 4), we don't want a red root or two
> > > > > > >    * consecutive red nodes.
> > > > > > >    */
> > > > > > > if(rb_is_black(parent))
> > > > > > >        break;
> > > > > > > Hence, it violates the rule #1 (the root can't be red) and need a fix
> > > > > > > up, and also add a regression test for it. This looks like was
> > > > > > > introduced by 6d58452dc06 where it no longer always paint the root as
> > > > > > > black.
> > > > > > > Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
> > > > > > > when necessary)
> > > > > > > Reported-by: Esme esploit@protonmail.ch
> > > > > > > Tested-by: Joey Pabalinas joeypabalinas@gmail.com
> > > > > > > Signed-off-by: Qian Cai cai@lca.pw
> > > > > >
> > > > > > Tested-by: David Lechner david@lechnology.com
> > > > > > FWIW, this fixed the following crash for me:
> > > > > > Unable to handle kernel NULL pointer dereference at virtual address 00000004
> > > > >
> > > > > Just to clarify, do you have a way to reproduce this crash without the fix ?
> > > >
> > > > I am starting to suspect that my crash was caused by some new code
> > > > in the drm-misc-next tree that might be causing a memory corruption.
> > > > It threw me off that the stack trace didn't contain anything related
> > > > to drm.
> > > > See: https://patchwork.freedesktop.org/patch/276719/
> > >
> > > It may be useful for those who could reproduce this issue to turn on those
> > > memory corruption debug options to narrow down a bit.
> > > CONFIG_DEBUG_PAGEALLOC=y
> > > CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
> > > CONFIG_KASAN=y
> > > CONFIG_KASAN_GENERIC=y
> > > CONFIG_SLUB_DEBUG_ON=y
> >
> > I have been on SLAB, I configured SLAB DEBUG with a fresh pull from github. Linux syzkaller 5.0.0-rc2 #9 SMP Sun Jan 13 21:57:40 EST 2019 x86_64
> > ...
> > In an effort to get a different stack into the kernel, I felt that nothing works better than fork bomb? :)
> > Let me know if that helps.
> > root@syzkaller:~# gcc -o test3 test3.c
> > root@syzkaller:~# while : ; do ./test3 & done
>
> And is test3 the same multi-threaded program that enters the kernel via
> /dev/sg0 and then calls SCSI_IOCTL_SEND_COMMAND which goes to the SCSI
> mid-level and thence to the block layer?
>
> And please remind me, does it also fail on lk 4.20.2 ?
>
> Doug Gilbert

Yes, the same C repro from the earlier thread.  It was a 4.20.0 kernel where it was first detected.  I can move to 4.20.2 and see if that changes anything.

Esme




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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  3:59                       ` Esme
@ 2019-01-14  4:52                         ` Douglas Gilbert
  2019-01-14  6:23                           ` Esme
  0 siblings, 1 reply; 26+ messages in thread
From: Douglas Gilbert @ 2019-01-14  4:52 UTC (permalink / raw)
  To: Esme
  Cc: Qian Cai, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

On 2019-01-13 10:59 p.m., Esme wrote:
> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> On Sunday, January 13, 2019 10:52 PM, Douglas Gilbert <dgilbert@interlog.com> wrote:
> 
>> On 2019-01-13 10:07 p.m., Esme wrote:
>>
>>> ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
>>> On Sunday, January 13, 2019 9:33 PM, Qian Cai cai@lca.pw wrote:
>>>
>>>> On 1/13/19 9:20 PM, David Lechner wrote:
>>>>
>>>>> On 1/11/19 8:58 PM, Michel Lespinasse wrote:
>>>>>
>>>>>> On Fri, Jan 11, 2019 at 3:47 PM David Lechner david@lechnology.com wrote:
>>>>>>
>>>>>>> On 1/11/19 2:58 PM, Qian Cai wrote:
>>>>>>>
>>>>>>>> A GPF was reported,
>>>>>>>> kasan: CONFIG_KASAN_INLINE enabled
>>>>>>>> kasan: GPF could be caused by NULL-ptr deref or user memory access
>>>>>>>> general protection fault: 0000 [#1] SMP KASAN
>>>>>>>>            kasan_die_handler.cold.22+0x11/0x31
>>>>>>>>            notifier_call_chain+0x17b/0x390
>>>>>>>>            atomic_notifier_call_chain+0xa7/0x1b0
>>>>>>>>            notify_die+0x1be/0x2e0
>>>>>>>>            do_general_protection+0x13e/0x330
>>>>>>>>            general_protection+0x1e/0x30
>>>>>>>>            rb_insert_color+0x189/0x1480
>>>>>>>>            create_object+0x785/0xca0
>>>>>>>>            kmemleak_alloc+0x2f/0x50
>>>>>>>>            kmem_cache_alloc+0x1b9/0x3c0
>>>>>>>>            getname_flags+0xdb/0x5d0
>>>>>>>>            getname+0x1e/0x20
>>>>>>>>            do_sys_open+0x3a1/0x7d0
>>>>>>>>            __x64_sys_open+0x7e/0xc0
>>>>>>>>            do_syscall_64+0x1b3/0x820
>>>>>>>>            entry_SYSCALL_64_after_hwframe+0x49/0xbe
>>>>>>>> It turned out,
>>>>>>>> gparent = rb_red_parent(parent);
>>>>>>>> tmp = gparent->rb_right; <-- GPF was triggered here.
>>>>>>>> Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
>>>>>>>> which is red. Otherwise, it will be treated properly a few lines above.
>>>>>>>> /*
>>>>>>>>     * If there is a black parent, we are done.
>>>>>>>>     * Otherwise, take some corrective action as,
>>>>>>>>     * per 4), we don't want a red root or two
>>>>>>>>     * consecutive red nodes.
>>>>>>>>     */
>>>>>>>> if(rb_is_black(parent))
>>>>>>>>         break;
>>>>>>>> Hence, it violates the rule #1 (the root can't be red) and need a fix
>>>>>>>> up, and also add a regression test for it. This looks like was
>>>>>>>> introduced by 6d58452dc06 where it no longer always paint the root as
>>>>>>>> black.
>>>>>>>> Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
>>>>>>>> when necessary)
>>>>>>>> Reported-by: Esme esploit@protonmail.ch
>>>>>>>> Tested-by: Joey Pabalinas joeypabalinas@gmail.com
>>>>>>>> Signed-off-by: Qian Cai cai@lca.pw
>>>>>>>
>>>>>>> Tested-by: David Lechner david@lechnology.com
>>>>>>> FWIW, this fixed the following crash for me:
>>>>>>> Unable to handle kernel NULL pointer dereference at virtual address 00000004
>>>>>>
>>>>>> Just to clarify, do you have a way to reproduce this crash without the fix ?
>>>>>
>>>>> I am starting to suspect that my crash was caused by some new code
>>>>> in the drm-misc-next tree that might be causing a memory corruption.
>>>>> It threw me off that the stack trace didn't contain anything related
>>>>> to drm.
>>>>> See: https://patchwork.freedesktop.org/patch/276719/
>>>>
>>>> It may be useful for those who could reproduce this issue to turn on those
>>>> memory corruption debug options to narrow down a bit.
>>>> CONFIG_DEBUG_PAGEALLOC=y
>>>> CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
>>>> CONFIG_KASAN=y
>>>> CONFIG_KASAN_GENERIC=y
>>>> CONFIG_SLUB_DEBUG_ON=y
>>>
>>> I have been on SLAB, I configured SLAB DEBUG with a fresh pull from github. Linux syzkaller 5.0.0-rc2 #9 SMP Sun Jan 13 21:57:40 EST 2019 x86_64
>>> ...
>>> In an effort to get a different stack into the kernel, I felt that nothing works better than fork bomb? :)
>>> Let me know if that helps.
>>> root@syzkaller:~# gcc -o test3 test3.c
>>> root@syzkaller:~# while : ; do ./test3 & done
>>
>> And is test3 the same multi-threaded program that enters the kernel via
>> /dev/sg0 and then calls SCSI_IOCTL_SEND_COMMAND which goes to the SCSI
>> mid-level and thence to the block layer?
>>
>> And please remind me, does it also fail on lk 4.20.2 ?
>>
>> Doug Gilbert
> 
> Yes, the same C repro from the earlier thread.  It was a 4.20.0 kernel where it was first detected.  I can move to 4.20.2 and see if that changes anything.

Hi,
I don't think there is any need to check lk 4.20.2 (as it would
be very surprising if it didn't also have this "feature").

More interesting might be: has "test3" been run on lk 4.19 or
any earlier kernel?

Doug Gilbert


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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  4:52                         ` Douglas Gilbert
@ 2019-01-14  6:23                           ` Esme
  2019-01-14 15:45                             ` Qian Cai
  2019-01-15  5:31                             ` Qian Cai
  0 siblings, 2 replies; 26+ messages in thread
From: Esme @ 2019-01-14  6:23 UTC (permalink / raw)
  To: dgilbert
  Cc: Qian Cai, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Sunday, January 13, 2019 11:52 PM, Douglas Gilbert <dgilbert@interlog.com> wrote:

> On 2019-01-13 10:59 p.m., Esme wrote:
>
> > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> > On Sunday, January 13, 2019 10:52 PM, Douglas Gilbert dgilbert@interlog.com wrote:
> >
> > > On 2019-01-13 10:07 p.m., Esme wrote:
> > >
> > > > ‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
> > > > On Sunday, January 13, 2019 9:33 PM, Qian Cai cai@lca.pw wrote:
> > > >
> > > > > On 1/13/19 9:20 PM, David Lechner wrote:
> > > > >
> > > > > > On 1/11/19 8:58 PM, Michel Lespinasse wrote:
> > > > > >
> > > > > > > On Fri, Jan 11, 2019 at 3:47 PM David Lechner david@lechnology.com wrote:
> > > > > > >
> > > > > > > > On 1/11/19 2:58 PM, Qian Cai wrote:
> > > > > > > >
> > > > > > > > > A GPF was reported,
> > > > > > > > > kasan: CONFIG_KASAN_INLINE enabled
> > > > > > > > > kasan: GPF could be caused by NULL-ptr deref or user memory access
> > > > > > > > > general protection fault: 0000 [#1] SMP KASAN
> > > > > > > > >           kasan_die_handler.cold.22+0x11/0x31
> > > > > > > > >           notifier_call_chain+0x17b/0x390
> > > > > > > > >           atomic_notifier_call_chain+0xa7/0x1b0
> > > > > > > > >           notify_die+0x1be/0x2e0
> > > > > > > > >           do_general_protection+0x13e/0x330
> > > > > > > > >           general_protection+0x1e/0x30
> > > > > > > > >           rb_insert_color+0x189/0x1480
> > > > > > > > >           create_object+0x785/0xca0
> > > > > > > > >           kmemleak_alloc+0x2f/0x50
> > > > > > > > >           kmem_cache_alloc+0x1b9/0x3c0
> > > > > > > > >           getname_flags+0xdb/0x5d0
> > > > > > > > >           getname+0x1e/0x20
> > > > > > > > >           do_sys_open+0x3a1/0x7d0
> > > > > > > > >           __x64_sys_open+0x7e/0xc0
> > > > > > > > >           do_syscall_64+0x1b3/0x820
> > > > > > > > >           entry_SYSCALL_64_after_hwframe+0x49/0xbe
> > > > > > > > > It turned out,
> > > > > > > > > gparent = rb_red_parent(parent);
> > > > > > > > > tmp = gparent->rb_right; <-- GPF was triggered here.
> > > > > > > > > Apparently, "gparent" is NULL which indicates "parent" is rbtree's root
> > > > > > > > > which is red. Otherwise, it will be treated properly a few lines above.
> > > > > > > > > /*
> > > > > > > > >    * If there is a black parent, we are done.
> > > > > > > > >    * Otherwise, take some corrective action as,
> > > > > > > > >    * per 4), we don't want a red root or two
> > > > > > > > >    * consecutive red nodes.
> > > > > > > > >    */
> > > > > > > > > if(rb_is_black(parent))
> > > > > > > > >        break;
> > > > > > > > > Hence, it violates the rule #1 (the root can't be red) and need a fix
> > > > > > > > > up, and also add a regression test for it. This looks like was
> > > > > > > > > introduced by 6d58452dc06 where it no longer always paint the root as
> > > > > > > > > black.
> > > > > > > > > Fixes: 6d58452dc06 (rbtree: adjust root color in rb_insert_color() only
> > > > > > > > > when necessary)
> > > > > > > > > Reported-by: Esme esploit@protonmail.ch
> > > > > > > > > Tested-by: Joey Pabalinas joeypabalinas@gmail.com
> > > > > > > > > Signed-off-by: Qian Cai cai@lca.pw
> > > > > > > >
> > > > > > > > Tested-by: David Lechner david@lechnology.com
> > > > > > > > FWIW, this fixed the following crash for me:
> > > > > > > > Unable to handle kernel NULL pointer dereference at virtual address 00000004
> > > > > > >
> > > > > > > Just to clarify, do you have a way to reproduce this crash without the fix ?
> > > > > >
> > > > > > I am starting to suspect that my crash was caused by some new code
> > > > > > in the drm-misc-next tree that might be causing a memory corruption.
> > > > > > It threw me off that the stack trace didn't contain anything related
> > > > > > to drm.
> > > > > > See: https://patchwork.freedesktop.org/patch/276719/
> > > > >
> > > > > It may be useful for those who could reproduce this issue to turn on those
> > > > > memory corruption debug options to narrow down a bit.
> > > > > CONFIG_DEBUG_PAGEALLOC=y
> > > > > CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
> > > > > CONFIG_KASAN=y
> > > > > CONFIG_KASAN_GENERIC=y
> > > > > CONFIG_SLUB_DEBUG_ON=y
> > > >
> > > > I have been on SLAB, I configured SLAB DEBUG with a fresh pull from github. Linux syzkaller 5.0.0-rc2 #9 SMP Sun Jan 13 21:57:40 EST 2019 x86_64
> > > > ...
> > > > In an effort to get a different stack into the kernel, I felt that nothing works better than fork bomb? :)
> > > > Let me know if that helps.
> > > > root@syzkaller:~# gcc -o test3 test3.c
> > > > root@syzkaller:~# while : ; do ./test3 & done
> > >
> > > And is test3 the same multi-threaded program that enters the kernel via
> > > /dev/sg0 and then calls SCSI_IOCTL_SEND_COMMAND which goes to the SCSI
> > > mid-level and thence to the block layer?
> > > And please remind me, does it also fail on lk 4.20.2 ?
> > > Doug Gilbert
> >
> > Yes, the same C repro from the earlier thread. It was a 4.20.0 kernel where it was first detected. I can move to 4.20.2 and see if that changes anything.
>
> Hi,
> I don't think there is any need to check lk 4.20.2 (as it would
> be very surprising if it didn't also have this "feature").
>
> More interesting might be: has "test3" been run on lk 4.19 or
> any earlier kernel?
>
> Doug Gilbert

I did not yet verify the previous branches but did tune out kmemleak (CONFIG_DEBUG_MEMLEAK no longer set) as it seemed a bit obtrusive in this matter, this is what I see now (note redzone?).
/Esme

  114.826116] =============================================================================
[  114.828121] BUG kmalloc-64 (Tainted: G        W        ): Padding overwritten. 0x000000006913c65d-0x000000006e410492
[  114.830551] -----------------------------------------------------------------------------
[  114.830551]
[  114.832755] INFO: Slab 0x0000000054f47c55 objects=19 used=19 fp=0x          (null) flags=0x1fffc0000010200
[  114.835063] CPU: 0 PID: 6310 Comm: x Tainted: G    B   W         5.0.0-rc2 #15
[  114.836829] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.1-1ubuntu1 04/01/2014
[  114.838847] Call Trace:
[  114.839497]  dump_stack+0x1d8/0x2c6
[  114.840274]  ? dump_stack_print_info.cold.1+0x20/0x20
[  114.841402]  slab_err+0xab/0xcf
[  114.842103]  ? __asan_report_load1_noabort+0x14/0x20
[  114.843244]  ? memchr_inv+0x2c1/0x330
[  114.844059]  slab_pad_check.part.50.cold.87+0x27/0x81
[  114.845123]  ? __request_module+0x434/0xede
[  114.846012]  check_slab+0xb0/0xf0
[  114.846715]  alloc_debug_processing+0x58/0x170
[  114.847648]  ___slab_alloc+0x63e/0x750
[  114.848439]  ? __request_module+0x434/0xede
[  114.849368]  ? trace_hardirqs_on+0x2f0/0x2f0
[  114.850299]  ? check_same_owner+0x340/0x340
[  114.851212]  ? vsnprintf+0x207/0x1b50
[  114.852015]  ? __request_module+0x434/0xede
[  114.852960]  __slab_alloc+0x68/0xc0
[  114.853715]  ? __slab_alloc+0x68/0xc0
[  114.854540]  kmem_cache_alloc_trace+0x2aa/0x330
[  114.855527]  ? __request_module+0x434/0xede
[  114.856416]  __request_module+0x434/0xede
[  114.857271]  ? free_modprobe_argv+0xa0/0xa0
[  114.858159]  ? kasan_check_write+0x14/0x20
[  114.859025]  ? __init_rwsem+0x1cc/0x2a0
[  114.859840]  ? spin_dump.cold.3+0xe7/0xe7
[  114.860690]  ? deactivate_slab.isra.70+0x589/0x5c0
[  114.861699]  ? __sanitizer_cov_trace_cmp4+0x16/0x20
[  114.862801]  ? map_id_range_down+0x1ee/0x430
[  114.863744]  ? __put_user_ns+0x60/0x60
[  114.864571]  ? set_track+0x74/0x120
[  114.865373]  ? init_object+0x79/0x80
[  114.866153]  ? lockdep_init_map+0x105/0x590
[  114.867074]  ? lockdep_init_map+0x105/0x590
[  114.867996]  ? kasan_check_write+0x14/0x20
[  114.868873]  ? inode_init_always+0xae1/0xd80
[  114.869787]  ? lock_acquire+0x1ed/0x510
[  114.870617]  ? new_inode_pseudo+0xcc/0x1a0
[  114.871517]  ? lock_downgrade+0x8f0/0x8f0
[  114.872471]  ? kasan_check_read+0x11/0x20
[  114.873357]  ? do_raw_spin_unlock+0xa7/0x330
[  114.874272]  ? do_raw_spin_trylock+0x270/0x270
[  114.875209]  ? _raw_spin_unlock+0x22/0x30
[  114.876040]  ? prune_icache_sb+0x1c0/0x1c0
[  114.876908]  ? __kasan_slab_free+0x13f/0x170
[  114.877807]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  114.878995]  ? __sock_create+0x23f/0x930
[  114.879840]  __sock_create+0x6e2/0x930
[  114.880647]  ? kernel_sock_ip_overhead+0x570/0x570
[  114.881675]  ? __kasan_slab_free+0x13f/0x170
[  114.882624]  ? putname+0xf2/0x130
[  114.883347]  ? kasan_slab_free+0xe/0x10
[  114.884198]  ? kmem_cache_free+0x2aa/0x330
[  114.885058]  ? putname+0xf7/0x130
[  114.885763]  __sys_socket+0x106/0x260
[  114.886553]  ? move_addr_to_kernel+0x70/0x70
[  114.887506]  ? entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  114.888633]  ? __bpf_trace_preemptirq_template+0x30/0x30
[  114.889743]  __x64_sys_socket+0x73/0xb0
[  114.890548]  do_syscall_64+0x1b3/0x810
[  114.891357]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  114.892487]  ? syscall_return_slowpath+0x5e0/0x5e0
[  114.893531]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  114.894497]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  114.895505]  ? prepare_exit_to_usermode+0x3b0/0x3b0
[  114.896516]  ? prepare_exit_to_usermode+0x291/0x3b0
[  114.897567]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  114.898564]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  114.899670] RIP: 0033:0x7fa123f52229
[  114.900433] Code: 00 f3 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 3f 4c 28
[  114.904409] RSP: 002b:00007ffcd04e76f8 EFLAGS: 00000213 ORIG_RAX: 0000000000000029
[  114.905990] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fa123f52229
[  114.907464] RDX: 0000000000000088 RSI: 0000000000000800 RDI: 000000000000000c
[  114.908913] RBP: 00007ffcd04e7710 R08: 0000000000000000 R09: 000000000000001a
[  114.910348] R10: 000000000000ffff R11: 0000000000000213 R12: 0000560c05dffe30
[  114.911858] R13: 00007ffcd04e7830 R14: 0000000000000000 R15: 0000000000000000
[  114.913404] Padding 000000006913c65d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.915437] Padding 000000002d53f25c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.917390] Padding 0000000078f7d621: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.919402] Padding 0000000063547658: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.921414] Padding 000000001a301f4e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.923364] Padding 0000000046589d24: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.925340] Padding 0000000008fb13da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.927291] Padding 00000000ae5cc298: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.929239] Padding 00000000d49cc239: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.931177] Padding 00000000d66ad6f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.933110] Padding 00000000069ad671: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.934986] Padding 00000000ffaf648c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.936895] Padding 00000000c96d1b58: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.938848] Padding 00000000768e4920: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.940965] Padding 000000000d06b43c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.942890] Padding 00000000af5ae9fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.944790] Padding 000000006b526f1e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.946727] Padding 000000009c8dffe3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.948709] FIX kmalloc-64: Restoring 0x000000006913c65d-0x000000006e410492=0x5a
[  114.948709]
[  114.950620] =============================================================================
[  114.952450] BUG kmalloc-64 (Tainted: G    B   W        ): Redzone overwritten
[  114.953901] -----------------------------------------------------------------------------
[  114.953901]
[  114.955955] INFO: 0x0000000023852d36-0x000000003d7a667f. First byte 0x0 instead of 0xbb
[  114.957662] INFO: Slab 0x0000000054f47c55 objects=19 used=19 fp=0x          (null) flags=0x1fffc0000010200
[  114.959669] INFO: Object 0x00000000a07d3417 @offset=3336 fp=0x          (null)
[  114.959669]
[  114.961491] Redzone 0000000023852d36: 00 00 00 00 00 00 00 00                          ........
[  114.963588] Object 00000000a07d3417: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.965520] Object 000000002b232d06: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.967533] Object 000000000b434529: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.969480] Object 0000000098adb243: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  114.971505] Redzone 0000000026bb1e28: 00 00 00 00 00 00 00 00                          ........
[  114.973502] Padding 00000000e8bc385c: 00 00 00 00 00 00 00 00                          ........
[  114.975687] CPU: 0 PID: 6310 Comm: x Tainted: G    B   W         5.0.0-rc2 #15
[  114.977357] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.1-1ubuntu1 04/01/2014
[  114.979208] Call Trace:
[  114.979755]  dump_stack+0x1d8/0x2c6
[  114.980541]  ? dump_stack_print_info.cold.1+0x20/0x20
[  114.981691]  ? print_section+0x41/0x50
[  114.982565]  print_trailer+0x172/0x17b
[  114.983380]  check_bytes_and_report.cold.86+0x40/0x70
[  114.984695]  check_object+0x16c/0x290
[  114.985547]  ? __request_module+0x434/0xede
[  114.986511]  alloc_debug_processing+0xda/0x170
[  114.987497]  ___slab_alloc+0x63e/0x750
[  114.988291]  ? __request_module+0x434/0xede
[  114.989177]  ? trace_hardirqs_on+0x2f0/0x2f0
[  114.990069]  ? check_same_owner+0x340/0x340
[  114.991005]  ? vsnprintf+0x207/0x1b50
[  114.991786]  ? __request_module+0x434/0xede
[  114.992710]  __slab_alloc+0x68/0xc0
[  114.993440]  ? __slab_alloc+0x68/0xc0
[  114.994216]  kmem_cache_alloc_trace+0x2aa/0x330
[  114.995278]  ? __request_module+0x434/0xede
[  114.996253]  __request_module+0x434/0xede
[  114.997262]  ? free_modprobe_argv+0xa0/0xa0
[  114.998160]  ? kasan_check_write+0x14/0x20
[  114.999033]  ? __init_rwsem+0x1cc/0x2a0
[  114.999842]  ? spin_dump.cold.3+0xe7/0xe7
[  115.000684]  ? deactivate_slab.isra.70+0x589/0x5c0
[  115.001739]  ? __sanitizer_cov_trace_cmp4+0x16/0x20
[  115.002836]  ? map_id_range_down+0x1ee/0x430
[  115.003804]  ? __put_user_ns+0x60/0x60
[  115.004630]  ? set_track+0x74/0x120
[  115.005395]  ? init_object+0x79/0x80
[  115.006185]  ? lockdep_init_map+0x105/0x590
[  115.007082]  ? lockdep_init_map+0x105/0x590
[  115.007957]  ? kasan_check_write+0x14/0x20
[  115.008916]  ? inode_init_always+0xae1/0xd80
[  115.009820]  ? lock_acquire+0x1ed/0x510
[  115.010645]  ? new_inode_pseudo+0xcc/0x1a0
[  115.011513]  ? lock_downgrade+0x8f0/0x8f0
[  115.012421]  ? kasan_check_read+0x11/0x20
[  115.013294]  ? do_raw_spin_unlock+0xa7/0x330
[  115.014229]  ? do_raw_spin_trylock+0x270/0x270
[  115.015180]  ? _raw_spin_unlock+0x22/0x30
[  115.016034]  ? prune_icache_sb+0x1c0/0x1c0
[  115.016918]  ? __kasan_slab_free+0x13f/0x170
[  115.017831]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  115.019010]  ? __sock_create+0x23f/0x930
[  115.019871]  __sock_create+0x6e2/0x930
[  115.020673]  ? kernel_sock_ip_overhead+0x570/0x570
[  115.021703]  ? __kasan_slab_free+0x13f/0x170
[  115.022677]  ? putname+0xf2/0x130
[  115.023383]  ? kasan_slab_free+0xe/0x10
[  115.024193]  ? kmem_cache_free+0x2aa/0x330
[  115.025062]  ? putname+0xf7/0x130
[  115.025771]  __sys_socket+0x106/0x260
[  115.026549]  ? move_addr_to_kernel+0x70/0x70
[  115.027462]  ? entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  115.028560]  ? __bpf_trace_preemptirq_template+0x30/0x30
[  115.029707]  __x64_sys_socket+0x73/0xb0
[  115.030523]  do_syscall_64+0x1b3/0x810
[  115.031319]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  115.032451]  ? syscall_return_slowpath+0x5e0/0x5e0
[  115.033472]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  115.034471]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  115.035503]  ? prepare_exit_to_usermode+0x3b0/0x3b0
[  115.036613]  ? prepare_exit_to_usermode+0x291/0x3b0
[  115.037647]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  115.038645]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  115.039678] RIP: 0033:0x7fa123f52229
[  115.040423] Code: 00 f3 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 3f 4c 2b
[  115.044451] RSP: 002b:00007ffcd04e76f8 EFLAGS: 00000213 ORIG_RAX: 0000000000000029
[  115.046010] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fa123f52229
[  115.047462] RDX: 0000000000000088 RSI: 0000000000000800 RDI: 000000000000000c
[  115.048938] RBP: 00007ffcd04e7710 R08: 0000000000000000 R09: 000000000000001a
[  115.050379] R10: 000000000000ffff R11: 0000000000000213 R12: 0000560c05dffe30
[  115.051849] R13: 00007ffcd04e7830 R14: 0000000000000000 R15: 0000000000000000
[  115.053422] FIX kmalloc-64: Restoring 0x0000000023852d36-0x000000003d7a667f=0xbb
[  115.053422]
[  115.055233] FIX kmalloc-64: Marking all objects used
[12] 6325
[  115.075174] hrtimer: interrupt took 169862 ns
[13] 6362




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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  6:23                           ` Esme
@ 2019-01-14 15:45                             ` Qian Cai
  2019-01-14 15:51                               ` Esme
  2019-01-15  5:31                             ` Qian Cai
  1 sibling, 1 reply; 26+ messages in thread
From: Qian Cai @ 2019-01-14 15:45 UTC (permalink / raw)
  To: Esme, dgilbert
  Cc: David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML



On 1/14/19 1:23 AM, Esme wrote:
> I did not yet verify the previous branches but did tune out kmemleak (CONFIG_DEBUG_MEMLEAK no longer set) as it seemed a bit obtrusive in this matter, this is what I see now (note redzone?).
> /Esme
> 
>   114.826116] =============================================================================
> [  114.828121] BUG kmalloc-64 (Tainted: G        W        ): Padding overwritten. 0x000000006913c65d-0x000000006e410492
> [  114.830551] -----------------------------------------------------------------------------
> [  114.830551]
> [  114.832755] INFO: Slab 0x0000000054f47c55 objects=19 used=19 fp=0x          (null) flags=0x1fffc0000010200
> [  114.835063] CPU: 0 PID: 6310 Comm: x Tainted: G    B   W         5.0.0-rc2 #15
> [  114.836829] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.1-1ubuntu1 04/01/2014
> [  114.838847] Call Trace:
> [  114.839497]  dump_stack+0x1d8/0x2c6
> [  114.840274]  ? dump_stack_print_info.cold.1+0x20/0x20
> [  114.841402]  slab_err+0xab/0xcf
> [  114.842103]  ? __asan_report_load1_noabort+0x14/0x20
> [  114.843244]  ? memchr_inv+0x2c1/0x330
> [  114.844059]  slab_pad_check.part.50.cold.87+0x27/0x81

Confused again. Those slab_pad_check() looks like only with SLUB, but you said
you used SLAB. What else did you change?

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14 15:45                             ` Qian Cai
@ 2019-01-14 15:51                               ` Esme
  2019-01-14 17:58                                 ` Qian Cai
  0 siblings, 1 reply; 26+ messages in thread
From: Esme @ 2019-01-14 15:51 UTC (permalink / raw)
  To: Qian Cai
  Cc: dgilbert, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

Disabled kmemleak options. On mobile, pardon brevity.


Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Monday, January 14, 2019 10:45 AM, Qian Cai <cai@lca.pw> wrote:

> On 1/14/19 1:23 AM, Esme wrote:
>
> > I did not yet verify the previous branches but did tune out kmemleak (CONFIG_DEBUG_MEMLEAK no longer set) as it seemed a bit obtrusive in this matter, this is what I see now (note redzone?).
> > /Esme
> > 114.826116] =============================================================================
> > [ 114.828121] BUG kmalloc-64 (Tainted: G W ): Padding overwritten. 0x000000006913c65d-0x000000006e410492
> > [ 114.830551] -----------------------------------------------------------------------------
> > [ 114.830551]
> > [ 114.832755] INFO: Slab 0x0000000054f47c55 objects=19 used=19 fp=0x (null) flags=0x1fffc0000010200
> > [ 114.835063] CPU: 0 PID: 6310 Comm: x Tainted: G B W 5.0.0-rc2 #15
> > [ 114.836829] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.1-1ubuntu1 04/01/2014
> > [ 114.838847] Call Trace:
> > [ 114.839497] dump_stack+0x1d8/0x2c6
> > [ 114.840274] ? dump_stack_print_info.cold.1+0x20/0x20
> > [ 114.841402] slab_err+0xab/0xcf
> > [ 114.842103] ? __asan_report_load1_noabort+0x14/0x20
> > [ 114.843244] ? memchr_inv+0x2c1/0x330
> > [ 114.844059] slab_pad_check.part.50.cold.87+0x27/0x81
>
> Confused again. Those slab_pad_check() looks like only with SLUB, but you said
> you used SLAB. What else did you change?



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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14 15:51                               ` Esme
@ 2019-01-14 17:58                                 ` Qian Cai
  2019-01-14 18:26                                   ` Douglas Gilbert
  0 siblings, 1 reply; 26+ messages in thread
From: Qian Cai @ 2019-01-14 17:58 UTC (permalink / raw)
  To: Esme
  Cc: dgilbert, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

Unfortunately, I could not trigger any of those here both in a bare-metal and
virtual machines. All I triggered were hung tasks and soft-lockup due to fork bomb.

The only other thing I can think of is to setup kdump to capture a vmcore when
either GPF or BUG() happens, and then share the vmcore somewhere, so I might
pork around to see where the memory corruption looks like.

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14 17:58                                 ` Qian Cai
@ 2019-01-14 18:26                                   ` Douglas Gilbert
  0 siblings, 0 replies; 26+ messages in thread
From: Douglas Gilbert @ 2019-01-14 18:26 UTC (permalink / raw)
  To: Qian Cai, Esme
  Cc: David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

On 2019-01-14 12:58 p.m., Qian Cai wrote:
> Unfortunately, I could not trigger any of those here both in a bare-metal and
> virtual machines. All I triggered were hung tasks and soft-lockup due to fork bomb.
> 
> The only other thing I can think of is to setup kdump to capture a vmcore when
> either GPF or BUG() happens, and then share the vmcore somewhere, so I might
> pork around to see where the memory corruption looks like.

Another question that I forgot to ask, what type of device is /dev/sg0 ?
On a prior occasion (KASAN, throw spaghetti ...) it was a SATA device
and the problem was in libata.

Doug Gilbert


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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-14  6:23                           ` Esme
  2019-01-14 15:45                             ` Qian Cai
@ 2019-01-15  5:31                             ` Qian Cai
  2019-01-16 14:37                               ` Esme
  1 sibling, 1 reply; 26+ messages in thread
From: Qian Cai @ 2019-01-15  5:31 UTC (permalink / raw)
  To: Esme, dgilbert
  Cc: David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML


> [  114.913404] Padding 000000006913c65d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.915437] Padding 000000002d53f25c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.917390] Padding 0000000078f7d621: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.919402] Padding 0000000063547658: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.921414] Padding 000000001a301f4e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.923364] Padding 0000000046589d24: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.925340] Padding 0000000008fb13da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.927291] Padding 00000000ae5cc298: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.929239] Padding 00000000d49cc239: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.931177] Padding 00000000d66ad6f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.933110] Padding 00000000069ad671: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.934986] Padding 00000000ffaf648c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.936895] Padding 00000000c96d1b58: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.938848] Padding 00000000768e4920: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.940965] Padding 000000000d06b43c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.942890] Padding 00000000af5ae9fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.944790] Padding 000000006b526f1e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
> [  114.946727] Padding 000000009c8dffe3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................

Another testing angle,

It might be something is doing __GFP_ZERO and overwriting those slabs. This also
matched the red root corruption, since RB_RED is bit 0.

One thing to try is to enable page_owner=on in the command-line, and then obtain
sorted_page_owner.txt before and after running the reproducer.

$ cd tools/vm
$ make page_owner_sort

$ cat /sys/kernel/debug/page_owner > page_owner_full.txt
$ grep -v ^PFN page_owner_full.txt > page_owner.txt
$ ./page_owner_sort page_owner.txt sorted_page_owner.txt

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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-15  5:31                             ` Qian Cai
@ 2019-01-16 14:37                               ` Esme
  2019-01-18 17:10                                 ` Qian Cai
  0 siblings, 1 reply; 26+ messages in thread
From: Esme @ 2019-01-16 14:37 UTC (permalink / raw)
  To: Qian Cai
  Cc: dgilbert, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML

I have been off but back now, I had fetch'd current again and the diagnostics look a bit different, maybe I just got lucky.  Instead of fork'ng the test case (which is fairly aggressive in any case), interacting from the serial port with sig-int ^C tend's to trigger enough to hit something.  I'll get the page_owner sorted soon.

How I'm running;

qemu-system-x86_64 -kernel /home/files/dl/linux//arch/x86/boot/bzImage -append console=ttyS0 root=/dev/sda debug earlyprintk=serial slub_debug=QUZFP page_owner=on -hda stretch.img -net user,hostfwd=tcp::10021-:22 -net nic -enable-kvm -nographic -m 2G -smp 2

It's somewhat random I guess that in the last two CPU context dump's printed out, we see RAX and CR2 off by 4 from one another.

root@syzkaller:~# gcc -o test3 test3.c
[  392.754148] ata1: lost interrupt (Status 0x50)
[  392.754478] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[  392.759687] ata1.00: failed command: READ DMA
[  392.761902] ata1.00: cmd c8/00:86:00:00:00/00:00:00:00:00/e0 tag 0 dma 68608 out
[  392.761902]          res 40/00:01:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[  392.768541] ata1.00: status: { DRDY }
[  392.769532] ata1: soft resetting link
[  392.937942] ata1.00: configured for MWDMA2
[  392.945624] ata1: EH complete
[  392.964146] =============================================================================
[  392.967762] BUG names_cache (Tainted: G        W        ): Padding overwritten. 0x00000000cc365e80-0x00000000a9622f5d
[  392.970100] -----------------------------------------------------------------------------
[  392.970100]
[  392.972194] INFO: Slab 0x0000000067c0b01f objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010200
[  392.975224] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  392.976982] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  392.979255] Call Trace:
[  392.979789]  dump_stack+0x1d8/0x2c6
[  392.980503]  ? dump_stack_print_info.cold.1+0x20/0x20
[  392.981590]  slab_err+0xab/0xcf
[  392.982306]  ? __asan_report_load1_noabort+0x14/0x20
[  392.983391]  ? memchr_inv+0x2c1/0x330
[  392.984200]  slab_pad_check.part.50.cold.87+0x27/0x81
[  392.985364]  ? getname_flags+0xd0/0x5a0
[  392.986306]  check_slab+0xb0/0xf0
[  392.987135]  alloc_debug_processing+0x58/0x170
[  392.988277]  ___slab_alloc+0x63e/0x750
[  392.989070]  ? getname_flags+0xd0/0x5a0
[  392.989856]  ? trace_hardirqs_on+0x2f0/0x2f0
[  392.990743]  ? check_same_owner+0x340/0x340
[  392.991611]  ? prepare_creds+0xab/0x4d0
[  392.992431]  ? getname_flags+0xd0/0x5a0
[  392.993222]  __slab_alloc+0x68/0xc0
[  392.993955]  ? __slab_alloc+0x68/0xc0
[  392.994712]  ? getname_flags+0xd0/0x5a0
[  392.995512]  kmem_cache_alloc+0x2b1/0x350
[  392.996346]  getname_flags+0xd0/0x5a0
[  392.997114]  user_path_at_empty+0x2d/0x50
[  392.997948]  do_faccessat+0x252/0x820
[  392.998777]  ? __ia32_sys_fallocate+0xf0/0xf0
[  392.999725]  __x64_sys_access+0x59/0x80
[  393.000560]  do_syscall_64+0x1b3/0x810
[  393.001341]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  393.002399]  ? syscall_return_slowpath+0x5e0/0x5e0
[  393.003376]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  393.004313]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  393.005291]  ? prepare_exit_to_usermode+0x291/0x3b0
[  393.006268]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  393.007264]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  393.008338] RIP: 0033:0x7f9485451787
[  393.009083] Code: 83 c4 08 48 3d 01 f0 ff ff 73 01 c3 48 8b 0d 08 d7 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 b8 15 00 8
[  393.012834] RSP: 002b:00007ffe8b64f3e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000015
[  393.014360] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451787
[  393.015806] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000560ec4a1b8a1
[  393.017265] RBP: 00007ffe8b64f530 R08: 0000560ec4a11355 R09: 0000000000000018
[  393.018717] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
[  393.020235] R13: 0000000000000000 R14: 0000560ec57528b0 R15: 0000000000000016
[  393.021742] Padding 00000000cc365e80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.023766] Padding 00000000bf8109db: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.025709] Padding 00000000395207c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.027602] Padding 00000000ebc8bf02: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.029634] Padding 0000000086011152: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.031673] Padding 00000000e3c97bfe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.033755] Padding 00000000b3e39a93: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.035856] Padding 000000007a46e658: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.037774] Padding 0000000054137357: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.039664] Padding 00000000106087a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.041585] Padding 0000000016f10da6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.043594] Padding 00000000e06d5571: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.045482] Padding 00000000510b330b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.047403] Padding 000000002d7efefd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.049325] Padding 00000000f2942471: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.051361] Padding 00000000eb99a631: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.053346] Padding 00000000e39fa799: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.055438] Padding 00000000c8c9d729: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.057458] Padding 000000001ee5d2dc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.059355] Padding 00000000e43fdcbb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.061466] Padding 0000000017f00b28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.063583] Padding 00000000058dbd79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.065665] Padding 00000000078bf17d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.067782] Padding 00000000edb8b8c3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.069837] Padding 0000000010338fb5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.071795] Padding 00000000e9d0593a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.073754] Padding 0000000022270958: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.075709] Padding 000000008be8d238: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.077674] Padding 00000000ad9702e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.079667] Padding 000000008560a6a2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.081635] Padding 00000000061c3d10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.083665] Padding 00000000886ef982: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.085533] Padding 0000000041c0972f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.087394] Padding 00000000d27ca3e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.089358] Padding 000000006b925507: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.091497] Padding 000000000267ca04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.093568] Padding 00000000626730f6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.095547] Padding 00000000af0808b8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.097655] Padding 0000000070272138: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.099837] Padding 0000000068c68a88: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.101850] Padding 00000000f7b78f68: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.103803] Padding 0000000003bb51d4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.105669] Padding 00000000638a7376: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.107515] Padding 00000000a750482f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.109405] Padding 00000000e7cd9a0a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.111302] Padding 000000005ddb976b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.113209] Padding 00000000263f5963: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.115109] Padding 000000005bd8376c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.116967] Padding 00000000de468350: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.118837] Padding 00000000300d4640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.120794] Padding 00000000681f0f2e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.122761] Padding 00000000558bb522: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.124790] Padding 000000008cc5f539: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.126686] Padding 000000003afa9f32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.128615] Padding 00000000af98c711: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.130540] Padding 0000000009529efe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.132522] Padding 00000000d644881f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.134402] Padding 00000000de2e0b6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.136258] Padding 000000004d4718ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.138153] Padding 00000000e7d64b70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.139964] FIX names_cache: Restoring 0x00000000cc365e80-0x00000000a9622f5d=0x5a
[  393.139964]
[  393.141769] =============================================================================
[  393.143386] BUG names_cache (Tainted: G    B   W        ): Redzone overwritten
[  393.144828] -----------------------------------------------------------------------------
[  393.144828]
[  393.146775] INFO: 0x00000000fcd629cc-0x0000000030b44f9c. First byte 0x0 instead of 0xbb
[  393.148385] INFO: Slab 0x0000000067c0b01f objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010200
[  393.150284] INFO: Object 0x00000000c179e7b4 @offset=22784 fp=0x          (null)
[  393.150284]
[  393.152091] Redzone 00000000fcd629cc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.153955] Redzone 00000000edd55e4a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.155842] Redzone 0000000060f686f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.157674] Redzone 00000000819d84f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.159525] Object 00000000c179e7b4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.161373] Object 000000006b3fdad0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.163199] Object 00000000a3720630: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.165089] Object 00000000da60044a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.166952] Object 00000000e9741806: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.168836] Object 000000000dd50d41: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.170712] Object 00000000f28fb594: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.172589] Object 00000000ff46d66e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.174456] Object 000000009308bf6c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.176369] Object 0000000003aa9bb2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.178263] Object 00000000e5605385: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.180236] Object 000000001d29147e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.182098] Object 00000000551be72d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.183979] Object 000000006f07e815: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.185820] Object 00000000804f4a16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.187647] Object 000000000478c1ba: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.189525] Object 0000000038f4c651: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.191385] Object 00000000a07d58ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.193196] Object 0000000008d18c9a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.195025] Object 00000000eb6f8016: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.196812] Object 00000000c7b1b2a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.198651] Object 000000002e2496b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.200462] Object 000000001a96b9a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.202353] Object 000000000cc08fb3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.204218] Object 000000009b49274e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.206072] Object 00000000e06a3525: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.207933] Object 000000002709e8e6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.209791] Object 00000000474d1d22: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.211683] Object 000000007be253c5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.213569] Object 000000009d734cbe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.215527] Object 000000001f5d57f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.217410] Object 0000000038b17b0e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.219299] Object 00000000d9a2f804: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.221116] Object 0000000060271d36: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.222919] Object 0000000058f859c8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.224757] Object 0000000024b8f712: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.226547] Object 0000000022726e86: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.228390] Object 00000000c2e60e01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.230234] Object 0000000048ccded3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.232093] Object 00000000586f32e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.233942] Object 0000000064056a05: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.235769] Object 00000000cec5e18f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.237626] Object 0000000061e5ce57: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.239519] Object 000000008688f632: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.241392] Object 000000001a605918: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.243256] Object 00000000f41b0b4a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.245179] Object 00000000ac3d320f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.247103] Object 00000000e9a4c634: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.249023] Object 000000004bf142d5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.250889] Object 000000004f8d2dcb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.252719] Object 00000000f3a00449: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.254570] Object 000000000234fc8a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.256369] Object 000000001e6fca9c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.258209] Object 00000000a96babd7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.260027] Object 00000000511c936a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.261886] Object 00000000f61e4a6a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.263732] Object 00000000f6cd788f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.265616] Object 00000000e1b4a979: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.267473] Object 00000000f059607f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.269363] Object 00000000c3fea84d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.271191] Object 00000000e633682e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.273069] Object 000000006b2018fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.274968] Object 0000000070d1691a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.276874] Object 00000000fc846362: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.278820] Object 000000002ca163d1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.280673] Object 0000000050b7fdf7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.282504] Object 00000000b72e1383: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.284352] Object 00000000ace9ebec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.286203] Object 00000000605cc8f6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.287991] Object 00000000bf5bb1f3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.289814] Object 00000000da747556: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.291617] Object 0000000056224a2c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.293423] Object 0000000087b3ac12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.295259] Object 00000000d8c271f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.297104] Object 00000000a15721ec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.299030] Object 0000000062bea893: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.300994] Object 0000000033d40821: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.302826] Object 00000000a49d388b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.304685] Object 000000000fd1cdb9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.306485] Object 0000000054e65963: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.308362] Object 00000000e457cf63: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.310215] Object 00000000930c7019: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.312067] Object 0000000091fcbe03: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.313928] Object 0000000008d70c2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.315796] Object 0000000053713ee8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.317653] Object 00000000ba8df18c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.319532] Object 00000000297ef2c6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.321357] Object 000000003d3ef936: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.323214] Object 00000000eb7f27e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.325075] Object 00000000e013efdc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.326874] Object 00000000d1654ee5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.328751] Object 00000000034e174c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.330570] Object 00000000a5a53e0f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.332449] Object 000000007c51fcef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.334327] Object 00000000863e9d52: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.336139] Object 000000006281345e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.337999] Object 0000000085ed77d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.339869] Object 00000000b35ccfe0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.341692] Object 0000000053d9167b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.343505] Object 00000000884ad69c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.345353] Object 000000003f847117: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.347220] Object 00000000162caea2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.349112] Object 00000000011a6aa9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.350980] Object 00000000a69f5863: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.352849] Object 00000000bf445990: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.354670] Object 00000000eb238879: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.356474] Object 0000000049aff417: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.358306] Object 0000000039d3d477: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.360101] Object 00000000d4e45f9c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.361892] Object 00000000e367a460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.363760] Object 00000000dd9a9151: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.365643] Object 00000000cab2ec16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.367475] Object 000000003213ec5b: 0e 80 00 00 0e 80 01 00 0e 80 02 00 0e 80 03 00  ................
[  393.370692] Object 00000000d5fbd7e4: 0e 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.372516] Object 00000000e1565335: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.374387] Object 00000000dcc9ec3a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.376207] Object 0000000079b87f5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.378025] Object 0000000080276f9a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.379877] Object 000000002551877b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.381733] Object 000000001b379739: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.383614] Object 00000000a6c2501f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.385474] Object 000000005cf4e7b1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.387312] Object 000000005bdeb392: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.389145] Object 000000007ae28c98: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.390975] Object 0000000023880536: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.392821] Object 0000000046e43c81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.394724] Object 00000000dc8acdb1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.396569] Object 0000000022b3ea59: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.398447] Object 0000000050bad0cb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.400326] Object 00000000bfea45e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.402181] Object 00000000844b8768: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.404081] Object 0000000014fbd42f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.405882] Object 00000000c1c5ef86: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.407679] Object 0000000011549308: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.409563] Object 000000002b6d9f9f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.411444] Object 000000001335fd8c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.413255] Object 0000000074080f7d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.415120] Object 00000000498adf78: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.417094] Object 00000000e44fa5b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.418964] Object 000000001a20773b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.420775] Object 00000000a1e5a15d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.422627] Object 00000000c42805b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.424460] Object 0000000029b70980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.426298] Object 000000000ce90e87: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.428272] Object 00000000d0602e37: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.430144] Object 000000009feebc45: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.432000] Object 0000000073c84900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.433847] Object 0000000080ae094a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.435720] Object 00000000b3cd9053: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.437535] Object 0000000011ae846b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.439368] Object 00000000c648e2c3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.441192] Object 00000000d585ce12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.442998] Object 0000000048867a65: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.444883] Object 000000005a2fe2ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.446787] Object 000000000690ae2c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.448678] Object 00000000f133c64f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.450550] Object 00000000bc5e4514: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.452531] Object 00000000fa10dc96: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.454401] Object 000000006416a9a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.456301] Object 000000002add86b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.458153] Object 00000000f66c0e2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.459993] Object 000000006e091433: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.461824] Object 00000000f39e872d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.463657] Object 000000004e45fd5f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.465529] Object 0000000083846b0f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.467381] Object 0000000077eba1f1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.469221] Object 00000000ef2d0762: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.471025] Object 00000000df9c9de0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.472831] Object 00000000f76a2297: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.474643] Object 00000000c750fa71: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.476422] Object 0000000057361aa9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.478241] Object 00000000c3e353d3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.480103] Object 000000009df7cd71: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.481970] Object 000000004aef9034: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.483839] Object 00000000a93e6bd5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.485710] Object 000000009068eb59: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.487565] Object 00000000c26694c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.489472] Object 00000000da532c72: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.491256] Object 000000004d267f07: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.493036] Object 000000004b2edb7d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.494870] Object 000000008d24d708: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.496655] Object 0000000061136ed4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.498608] Object 000000006e61592f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.500467] Object 00000000b12fb98e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.502320] Object 00000000ba985e6b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.504201] Object 000000004af63ea1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.506003] Object 000000002cbb10cf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.507795] Object 000000004688292d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.509609] Object 00000000ec6457da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.511395] Object 0000000041a3092f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.513185] Object 00000000f7821c7b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.515021] Object 00000000ca1314ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.516870] Object 00000000127ffd3a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.518758] Object 0000000059fb1ff3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.520587] Object 00000000701e1e9a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.522392] Object 000000003e589b01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.524212] Object 0000000024da24ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.526101] Object 0000000059132e69: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.527937] Object 0000000048242003: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.529806] Object 0000000054cb23df: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.531632] Object 0000000057fe4cac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.533447] Object 00000000cd82bd69: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.535331] Object 000000005959b505: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.537130] Object 000000008bbb244b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.538950] Object 0000000006726517: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.540757] Object 00000000297a4c16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.542552] Object 000000005d975dde: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.544353] Object 00000000bc489759: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.546157] Object 0000000047f714a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.547955] Object 00000000454499c7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.549802] Object 000000001962bcc1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.551645] Object 000000008ad1b48e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.553441] Object 00000000c96b08a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.555279] Object 000000006a5bcd58: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.557141] Object 00000000b6b62cbf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.559051] Object 000000001e1d8ed9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.560918] Object 000000006a9b1a79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.562746] Object 00000000c63a49bb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.564583] Object 00000000efb12112: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.566430] Object 0000000049838f47: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.568307] Object 0000000048fac67f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.570114] Object 000000004f990162: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.571924] Object 00000000e578347a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.573738] Object 000000001c80e757: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.575817] Object 0000000025ef972b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.577622] Object 0000000053b7271c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.579460] Object 000000006ff81c76: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.581302] Object 00000000bf53fce4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.583149] Object 00000000a52a9268: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.585025] Object 00000000319cc979: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.586844] Object 00000000170ed8f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.588684] Object 0000000068b05587: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.590553] Object 0000000068f27659: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.592417] Object 000000005b7a2488: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.594313] Object 00000000451f98c7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.596145] Object 000000004beef364: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.598025] Object 00000000f1a89587: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.599900] Object 000000008eaacd91: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.601728] Object 000000005d089545: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.603543] Object 00000000bb07ae93: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.605362] Object 000000009fcf60a9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.607157] Object 00000000a6d18f29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.609007] Object 00000000428d3150: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.610819] Object 00000000420104f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.612645] Object 00000000c80bcb04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.614478] Object 00000000ca391b13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.616294] Object 000000009d10d93e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.618141] Object 00000000e581314d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.619974] Object 00000000a13ea107: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.621800] Object 00000000bad52213: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.623648] Object 000000008691ec1b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.625483] Object 00000000dc65ffb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.627364] Object 000000000f608b25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.629281] Object 00000000012ecbfa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.631107] Object 000000003c168bf9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.632939] Object 00000000ca55336e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.634753] Redzone 0000000014367ff2: 00 00 00 00 00 00 00 00                          ........
[  393.636423] Padding 00000000d096a2a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.638267] Padding 000000002605a2a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.640096] Padding 000000005f2fd046: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.641916] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  393.643570] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  393.645784] Call Trace:
[  393.646296]  dump_stack+0x1d8/0x2c6
[  393.646999]  ? dump_stack_print_info.cold.1+0x20/0x20
[  393.647997]  ? print_section+0x41/0x50
[  393.648800]  print_trailer+0x172/0x17b
[  393.649559]  check_bytes_and_report.cold.86+0x40/0x70
[  393.650568]  check_object+0x16c/0x290
[  393.651303]  ? getname_flags+0xd0/0x5a0
[  393.652066]  alloc_debug_processing+0xda/0x170
[  393.652949]  ___slab_alloc+0x63e/0x750
[  393.653700]  ? getname_flags+0xd0/0x5a0
[  393.654517]  ? trace_hardirqs_on+0x2f0/0x2f0
[  393.655361]  ? check_same_owner+0x340/0x340
[  393.656210]  ? prepare_creds+0xab/0x4d0
[  393.656983]  ? getname_flags+0xd0/0x5a0
[  393.657764]  __slab_alloc+0x68/0xc0
[  393.658515]  ? __slab_alloc+0x68/0xc0
[  393.659267]  ? getname_flags+0xd0/0x5a0
[  393.660063]  kmem_cache_alloc+0x2b1/0x350
[  393.660869]  getname_flags+0xd0/0x5a0
[  393.661600]  user_path_at_empty+0x2d/0x50
[  393.662417]  do_faccessat+0x252/0x820
[  393.663224]  ? __ia32_sys_fallocate+0xf0/0xf0
[  393.664128]  __x64_sys_access+0x59/0x80
[  393.664908]  do_syscall_64+0x1b3/0x810
[  393.665680]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  393.666734]  ? syscall_return_slowpath+0x5e0/0x5e0
[  393.667691]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  393.668660]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  393.669626]  ? prepare_exit_to_usermode+0x291/0x3b0
[  393.670591]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  393.671537]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  393.672541] RIP: 0033:0x7f9485451787
[  393.673268] Code: 83 c4 08 48 3d 01 f0 ff ff 73 01 c3 48 8b 0d 08 d7 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 b8 15 00 8
[  393.676983] RSP: 002b:00007ffe8b64f3e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000015
[  393.678549] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451787
[  393.679960] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000560ec4a1b8a1
[  393.681376] RBP: 00007ffe8b64f530 R08: 0000560ec4a11355 R09: 0000000000000018
[  393.682781] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
[  393.684216] R13: 0000000000000000 R14: 0000560ec57528b0 R15: 0000000000000016
[  393.685652] FIX names_cache: Restoring 0x00000000fcd629cc-0x0000000030b44f9c=0xbb
[  393.685652]
[  393.687421] FIX names_cache: Marking all objects used
[  393.714581] =============================================================================
[  393.716288] BUG names_cache (Tainted: G    B   W        ): Redzone overwritten
[  393.717895] -----------------------------------------------------------------------------
[  393.717895]
[  393.719949] INFO: 0x0000000072ef5111-0x000000004d5aafe4. First byte 0x0 instead of 0xcc
[  393.721672] INFO: Slab 0x0000000067c0b01f objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  393.723836] INFO: Object 0x00000000fdf62276 @offset=13696 fp=0x          (null)
[  393.723836]
[  393.725609] Redzone 0000000072ef5111: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.727495] Redzone 00000000e2628ade: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.729404] Redzone 000000002f523a1b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.731284] Redzone 00000000151880d5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.733194] Object 00000000fdf62276: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.735121] Object 000000001432d712: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.736918] Object 0000000065059f91: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.738822] Object 00000000c3341942: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.740750] Object 00000000c945f5b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.742679] Object 000000003479aa31: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.744577] Object 00000000ad4b44bc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.746528] Object 000000007c09d741: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.748441] Object 000000000eb6e7b2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.750527] Object 0000000075119816: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.752542] Object 0000000012993e84: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.754587] Object 000000000e13d405: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.756416] Object 0000000052f543e4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.758296] Object 00000000dff48579: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.760358] Object 00000000067cbee4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.762532] Object 000000000a07f57c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.764537] Object 00000000b5e91cd2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.766376] Object 000000002761919c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.768318] Object 00000000b9ce4cd0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.770243] Object 00000000341ced47: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.772165] Object 00000000bba1f7b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.774111] Object 000000005560c572: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.775927] Object 00000000b06a35f4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.777750] Object 00000000d0b18b50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.780705] Object 0000000015282515: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.782630] Object 000000009725efe0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.784566] Object 0000000066872056: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.786414] Object 0000000011f8ad04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.788396] Object 00000000ab99cf5e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.790311] Object 000000006c916516: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.792173] Object 00000000cca23a79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.794065] Object 00000000da677ecc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.795919] Object 00000000a6136951: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.797780] Object 000000007c82659c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.799751] Object 0000000091ab650d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.801867] Object 0000000089abbf7d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.803788] Object 00000000b6b1704b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.805616] Object 0000000076c08781: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.807455] Object 000000004320fc60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.809322] Object 000000003d89e18f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.811146] Object 00000000096dd05b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.812985] Object 000000002621ab07: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.814845] Object 00000000ae34c3c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.816706] Object 00000000c6ff6189: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.818606] Object 0000000092124848: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.820404] Object 00000000bb971dd8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.822228] Object 00000000a5a9b60f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.824070] Object 000000002bae774b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.825909] Object 000000006f644081: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.827883] Object 00000000ee548937: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.829759] Object 0000000048d8db43: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.831630] Object 0000000042de1195: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.833466] Object 00000000239f9b10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.835323] Object 0000000043a422da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.837142] Object 00000000e14001ea: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.838956] Object 00000000e12627f3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.840767] Object 0000000084e8d3c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.842568] Object 00000000947cf9e4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.844466] Object 00000000fa90bc81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.846296] Object 000000008e46da48: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.848180] Object 000000001bb90f81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.850065] Object 00000000b41f7b4e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.851915] Object 000000000f242dbf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.853783] Object 00000000238c66b4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.855615] Object 000000000e4c6843: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.857425] Object 000000006f5e8f28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.859285] Object 00000000521ed412: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.861135] Object 00000000e68bfac1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.862964] Object 0000000070fb7176: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.864825] Object 00000000bdda7484: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.866655] Object 0000000021576a7a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.868507] Object 000000001be79e1a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.870331] Object 00000000d1393b79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.871847] Object 00000000e8c252d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.873363] Object 000000007509a76b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.875119] Object 000000004ae1554d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.876924] Object 000000002f1a4e6a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.878795] Object 00000000168dc812: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.880603] Object 000000002d952f8b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.882424] Object 00000000a3e446b8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.884256] Object 00000000c6444c6d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.886062] Object 000000003744ff01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.887921] Object 00000000a57603af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.889812] Object 000000007976c660: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.891628] Object 0000000060a98fa7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.893427] Object 0000000038a4f378: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.895312] Object 00000000a58fdb16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.897122] Object 000000004855d241: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.899026] Object 00000000ec267c1d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.900873] Object 00000000c65eed20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.902678] Object 0000000090c36247: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.904503] Object 0000000021f9413f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.906309] Object 000000002ae26792: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.908095] Object 000000007a878def: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.910048] Object 000000005a1eb678: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.911998] Object 00000000813ea136: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.913879] Object 0000000058db1a0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.915859] Object 000000004edfdb7f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.917700] Object 000000009ec25543: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.919617] Object 000000004357c0b2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.921524] Object 00000000034cafbf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.923336] Object 00000000dd13ecca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.925143] Object 00000000dc0b96d8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.926942] Object 0000000072941337: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.928846] Object 0000000034c1fb3b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.930705] Object 00000000cbb3dd2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.932546] Object 000000000575755f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.934401] Object 000000002cd8f536: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.936253] Object 00000000aba36fde: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.938024] Object 00000000db5bdf4a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.939910] Object 000000006ccef511: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.941857] Object 00000000c100bb2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.943948] Object 00000000495fea2e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.945776] Object 000000005e88784f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.947596] Object 0000000065a03e12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.949462] Object 00000000d9dc5c95: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.951367] Object 00000000cceeab7a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.953190] Object 00000000989af2c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.955092] Object 000000000ba89b42: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.957021] Object 00000000f60566ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.958971] Object 00000000a09644ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.961007] Object 00000000b2facb3a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.962853] Object 00000000d01563d8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.964765] Object 000000008917d065: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.966613] Object 000000009f755a7f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.968536] Object 000000006a27b8cb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.970455] Object 000000004a492500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.972399] Object 00000000dc1213ee: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.974294] Object 0000000081dcec18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.976154] Object 000000004a2b6c5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.977995] Object 00000000c126aafb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.979859] Object 00000000b83aaa8a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.981821] Object 0000000045644278: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.983864] Object 00000000ac9586e2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.985870] Object 00000000262e83f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.987797] Object 00000000afe93b63: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.989744] Object 000000000ee20220: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.991664] Object 00000000c6f1bacb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.993594] Object 00000000280051f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.995492] Object 0000000064f0a565: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.997339] Object 0000000052bb8b00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  393.999185] Object 0000000087a6c862: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.001003] Object 00000000f4f34175: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.002832] Object 0000000038ccf320: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.004692] Object 000000002743e0a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.006546] Object 00000000f08a2766: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.008431] Object 00000000b672a041: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.010335] Object 00000000e06c7dbe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.012185] Object 00000000091f0ea1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.014034] Object 000000003bce260f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.015865] Object 0000000037153fb4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.017707] Object 00000000689becc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.019487] Object 0000000036523bd1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.021315] Object 000000000bc883aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.023126] Object 00000000f478882f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.024988] Object 00000000acd4ddd1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.026777] Object 0000000059d34e82: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.028623] Object 00000000352f4cca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.030456] Object 00000000fa42313d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.032264] Object 0000000081a815d7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.034116] Object 00000000631a88c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.035989] Object 000000003b1883db: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.037829] Object 00000000d851594e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.039712] Object 00000000728fe84c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.041542] Object 000000009bc2b5bb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.043345] Object 00000000b39b243b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.045225] Object 000000001578f3f9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.047075] Object 00000000c6c94c17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.048929] Object 00000000ba096ced: 0c 80 00 00 0c 80 01 00 0c 80 02 00 0c 80 03 00  ................
[  394.050837] Object 0000000052826edd: 0c 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.052659] Object 000000006b2f9ed3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.054485] Object 000000003c81873a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.056295] Object 0000000061e3feb9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.058157] Object 00000000facb7f29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.059998] Object 00000000f5226920: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.061808] Object 000000003c91c0fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.063606] Object 00000000a215201e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.065434] Object 0000000073801428: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.067337] Object 00000000e5d2c1b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.069202] Object 00000000bfe16589: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.071000] Object 00000000ddeec391: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.072873] Object 00000000c6ba0c35: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.074754] Object 0000000058cbb8e5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.076593] Object 000000003783d60f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.078553] Object 00000000a8e15c3a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.080392] Object 00000000d6266714: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.082245] Object 000000000ef3a25e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.084076] Object 000000006b93975b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.085887] Object 0000000077d66c76: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.087670] Object 00000000702bc1ce: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.089530] Object 0000000087a2eb56: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.091330] Object 000000009f85d19a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.093116] Object 00000000ba275480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.094941] Object 000000001d8baa2f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.096789] Object 0000000017744f95: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.098735] Object 00000000b18ab6fb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.100595] Object 00000000bc94d23b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.102411] Object 0000000059d3099b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.104237] Object 00000000e68686fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.106025] Object 000000001b880c00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.107811] Object 0000000058f830d1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.109653] Object 000000000fc3d58c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.111516] Object 00000000b552ce17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.113479] Object 000000002688e6b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.115569] Object 000000003d4d514f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.117652] Object 00000000b0825e50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.119543] Object 0000000073e3eb78: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.121303] Object 00000000523eebeb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.122955] Object 000000006ae8d833: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.124625] Object 0000000064bd928b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.126381] Object 00000000b8d80a04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.128304] Object 000000004b4018ee: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.130300] Object 00000000b28e72f3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.132365] Object 0000000027942ed2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.134374] Object 00000000ff64b8a9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.136308] Object 00000000dbeb1b75: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.138188] Object 0000000002836b30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.140240] Object 00000000622635a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.142268] Object 00000000d573ba0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.144316] Object 00000000b1565630: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.146268] Object 00000000fca10130: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.148262] Object 00000000e81262e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.150278] Object 0000000030d3eb65: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.152268] Object 000000005226e77c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.154180] Object 00000000b871fc96: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.156029] Object 000000008ae8e283: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.157837] Object 00000000ccf2ce70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.159780] Object 000000006dd34be0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.161709] Object 000000001f750016: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.163704] Object 00000000b4937ec0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.165728] Object 00000000d323d935: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.167697] Object 000000002504060d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.169672] Object 00000000297e54aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.171583] Object 0000000064fcbe0e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.173496] Object 00000000f0db1354: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.175422] Object 0000000051f94035: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.177342] Object 00000000b289ec58: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.179306] Object 00000000951dcfa7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.181128] Object 000000000cdc47d4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.183140] Object 000000005ab50741: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.185188] Object 00000000490bc24d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.187044] Object 00000000913f4ba0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.190400] Object 000000001204aabb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.192304] Object 000000003eb4c556: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.194091] Object 00000000eab4d94c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.195975] Object 00000000548d8ed7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.197749] Object 0000000025ec48a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.199799] Object 000000004f209633: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.201863] Object 00000000a0f50a1e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.203718] Object 000000008bb304c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.205630] Object 00000000b3be2383: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.207705] Object 000000008bbdd5dd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.209832] Object 00000000a85bd7a2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.211955] Object 00000000bc2ba4bc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.214035] Object 000000001da6945c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.216110] Object 00000000ccebf626: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.218166] Redzone 00000000a503f4b3: 00 00 00 00 00 00 00 00                          ........
[  394.219953] Padding 0000000088f4a591: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.221759] Padding 00000000f4a1a192: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.223693] Padding 00000000c2e84dca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.225609] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  394.227231] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  394.229687] Call Trace:
[  394.230212]  dump_stack+0x1d8/0x2c6
[  394.230952]  ? dump_stack_print_info.cold.1+0x20/0x20
[  394.232060]  ? print_section+0x41/0x50
[  394.232922]  print_trailer+0x172/0x17b
[  394.233712]  check_bytes_and_report.cold.86+0x40/0x70
[  394.234850]  check_object+0x16c/0x290
[  394.235638]  free_debug_processing+0x16d/0x2f0
[  394.236508]  ? qlist_free_all+0x36/0xc0
[  394.237302]  ? qlist_free_all+0x36/0xc0
[  394.238159]  __slab_free+0x295/0x530
[  394.238941]  ? trace_hardirqs_on+0xbd/0x2f0
[  394.239828]  ? kasan_check_read+0x11/0x20
[  394.240680]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  394.241809]  ? qlist_free_all+0x36/0xc0
[  394.242628]  ___cache_free+0xbd/0xd0
[  394.243389]  ? qlist_free_all+0x36/0xc0
[  394.244205]  qlist_free_all+0x4b/0xc0
[  394.244989]  ? prepare_creds+0xab/0x4d0
[  394.245806]  quarantine_reduce+0x178/0x1b0
[  394.246679]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  394.247701]  ? prepare_creds+0xab/0x4d0
[  394.248598]  kasan_slab_alloc+0x11/0x20
[  394.249497]  kmem_cache_alloc+0x101/0x350
[  394.250437]  prepare_creds+0xab/0x4d0
[  394.251315]  ? abort_creds+0x2a0/0x2a0
[  394.252141]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  394.253285]  ? trace_hardirqs_off+0xb8/0x2f0
[  394.254248]  ? do_syscall_64+0x6b8/0x810
[  394.255151]  do_faccessat+0xa2/0x820
[  394.256006]  ? do_sys_open+0x3cb/0x7a0
[  394.256876]  ? __ia32_sys_fallocate+0xf0/0xf0
[  394.257901]  __x64_sys_access+0x59/0x80
[  394.258810]  do_syscall_64+0x1b3/0x810
[  394.259580]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  394.260561]  ? syscall_return_slowpath+0x5e0/0x5e0
[  394.261562]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  394.262612]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  394.263705]  ? prepare_exit_to_usermode+0x291/0x3b0
[  394.264835]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  394.265972]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  394.267039] RIP: 0033:0x7f9485451787
[  394.267814] Code: 83 c4 08 48 3d 01 f0 ff ff 73 01 c3 48 8b 0d 08 d7 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 b8 15 00 0
[  394.271654] RSP: 002b:00007ffe8b64d138 EFLAGS: 00000246 ORIG_RAX: 0000000000000015
[  394.273195] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451787
[  394.274734] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000560ec4a1b8a1
[  394.276241] RBP: 00007ffe8b64d280 R08: 0000560ec4a11355 R09: 0000000000000018
[  394.277716] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
[  394.279318] R13: 0000000000000000 R14: 0000560ec57528b0 R15: 0000000000000009
[  394.280753] FIX names_cache: Restoring 0x0000000072ef5111-0x000000004d5aafe4=0xcc
[  394.280753]
[  394.282824] FIX names_cache: Object at 0x00000000fdf62276 not freed
[  394.307444] =============================================================================
[  394.309245] BUG filp (Tainted: G    B   W        ): Padding overwritten. 0x00000000ddba5aa0-0x00000000beebd4d9
[  394.311170] -----------------------------------------------------------------------------
[  394.311170]
[  394.313136] INFO: Slab 0x000000006e66199a objects=18 used=18 fp=0x          (null) flags=0x1fffc0000010201
[  394.315197] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  394.317137] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  394.319623] Call Trace:
[  394.320205]  dump_stack+0x1d8/0x2c6
[  394.321011]  ? dump_stack_print_info.cold.1+0x20/0x20
[  394.322117]  slab_err+0xab/0xcf
[  394.322766]  ? __asan_report_load1_noabort+0x14/0x20
[  394.323751]  ? memchr_inv+0x2c1/0x330
[  394.324446]  ? trace_hardirqs_on+0x2f0/0x2f0
[  394.325312]  slab_pad_check.part.50.cold.87+0x27/0x81
[  394.326445]  ? qlist_free_all+0x36/0xc0
[  394.327338]  check_slab+0xb0/0xf0
[  394.328176]  free_debug_processing+0x1ef/0x2f0
[  394.329245]  ? qlist_free_all+0x36/0xc0
[  394.330063]  ? qlist_free_all+0x36/0xc0
[  394.330840]  __slab_free+0x295/0x530
[  394.331604]  ? trace_hardirqs_on+0xbd/0x2f0
[  394.332448]  ? kasan_check_read+0x11/0x20
[  394.333253]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  394.334327]  ? qlist_free_all+0x36/0xc0
[  394.335102]  ___cache_free+0xbd/0xd0
[  394.335839]  ? qlist_free_all+0x36/0xc0
[  394.336637]  qlist_free_all+0x4b/0xc0
[  394.337416]  ? getname_flags+0xd0/0x5a0
[  394.338247]  quarantine_reduce+0x178/0x1b0
[  394.339117]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  394.340128]  ? getname_flags+0xd0/0x5a0
[  394.340955]  kasan_slab_alloc+0x11/0x20
[  394.341739]  kmem_cache_alloc+0x101/0x350
[  394.342551]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  394.343634]  getname_flags+0xd0/0x5a0
[  394.344375]  do_mkdirat+0xc5/0x310
[  394.345072]  ? __ia32_sys_mknod+0xb0/0xb0
[  394.345889]  __x64_sys_mkdir+0x5c/0x80
[  394.346655]  do_syscall_64+0x1b3/0x810
[  394.347554]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  394.348782]  ? syscall_return_slowpath+0x5e0/0x5e0
[  394.349862]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  394.350831]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  394.351917]  ? prepare_exit_to_usermode+0x291/0x3b0
[  394.352944]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  394.353939]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  394.354998] RIP: 0033:0x7f9485451447
[  394.355769] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 8
[  394.359673] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  394.361168] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  394.362619] RDX: 00007f9485ec23e0 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  394.364057] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  394.365477] R10: 0000000000000080 R11: 0000000000000293 R12: 0000000000000000
[  394.366915] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  394.368490] Padding 00000000ddba5aa0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.370405] Padding 000000003fc3aef3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.372264] Padding 000000001a2db3e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.374123] Padding 000000009257062a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.376034] Padding 000000004ef13de5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.378218] Padding 0000000014e98144: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.380310] Padding 00000000825946b1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.382173] Padding 0000000085108bf6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.384234] Padding 00000000150023a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.386219] Padding 0000000056d958f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.388182] Padding 0000000053c3ba61: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.390128] Padding 00000000f974f42c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.392105] Padding 000000005e39b1ce: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.394340] Padding 00000000b3491fc5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.396340] Padding 0000000049d9d824: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.398474] Padding 00000000224b9af2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.400545] FIX filp: Restoring 0x00000000ddba5aa0-0x00000000beebd4d9=0x5a
[  394.400545]
[  394.402298] =============================================================================
[  394.403923] BUG filp (Tainted: G    B   W        ): Redzone overwritten
[  394.405215] -----------------------------------------------------------------------------
[  394.405215]
[  394.407082] INFO: 0x00000000765bafe9-0x0000000037186196. First byte 0x0 instead of 0xcc
[  394.408747] INFO: Slab 0x000000006e66199a objects=18 used=18 fp=0x          (null) flags=0x1fffc0000010201
[  394.410762] INFO: Object 0x000000004491392a @offset=15296 fp=0x          (null)
[  394.410762]
[  394.412723] Redzone 00000000765bafe9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.414809] Redzone 00000000dd5a7fc8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.416909] Redzone 00000000742c80df: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.419009] Redzone 00000000d57995ef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.421067] Object 000000004491392a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.423084] Object 00000000d6dccb1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.425095] Object 00000000afae6693: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.426977] Object 000000006e7f4cd2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.428964] Object 00000000778a078d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.430933] Object 00000000dcdab439: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.432994] Object 00000000624bfc76: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.435120] Object 00000000ef251986: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.437043] Object 00000000e19cfda8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.438986] Object 0000000052977d5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.440802] Object 000000004e11fc3a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.442694] Object 000000007df26ac8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.444661] Object 000000009979cdd7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.446713] Object 00000000e20cc6f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.448766] Object 00000000f2fcbf41: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.450838] Object 00000000dce69aa1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.452880] Object 00000000f59c7013: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.454873] Object 000000000c7f05d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.457036] Object 00000000cc87f35e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.458986] Object 00000000560af1fd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.460903] Object 00000000b046bddf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.462821] Object 0000000046bf6231: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.464735] Object 00000000e47fab13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.466650] Object 000000001f7d3c22: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.468626] Object 00000000c7b90252: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.470566] Object 000000006357ea0a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.472548] Object 000000008cef88bb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.474621] Object 00000000b55dbd35: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.476493] Object 00000000ae590d17: 00 00 00 00 00 00 00 00                          ........
[  394.478458] Redzone 000000002391c934: 00 00 00 00 00 00 00 00                          ........
[  394.480244] Padding 0000000044b7c6a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.482077] Padding 0000000095861c26: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.483938] Padding 000000004b8b2ba2: 00 00 00 00 00 00 00 00                          ........
[  394.485713] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  394.487477] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  394.489827] Call Trace:
[  394.490365]  dump_stack+0x1d8/0x2c6
[  394.491111]  ? dump_stack_print_info.cold.1+0x20/0x20
[  394.492176]  ? print_section+0x41/0x50
[  394.492977]  print_trailer+0x172/0x17b
[  394.493818]  check_bytes_and_report.cold.86+0x40/0x70
[  394.494989]  check_object+0x16c/0x290
[  394.495803]  free_debug_processing+0x16d/0x2f0
[  394.496793]  ? qlist_free_all+0x36/0xc0
[  394.497708]  ? qlist_free_all+0x36/0xc0
[  394.498560]  __slab_free+0x295/0x530
[  394.499320]  ? trace_hardirqs_on+0xbd/0x2f0
[  394.500183]  ? kasan_check_read+0x11/0x20
[  394.501012]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  394.502186]  ? qlist_free_all+0x36/0xc0
[  394.503013]  ___cache_free+0xbd/0xd0
[  394.503812]  ? qlist_free_all+0x36/0xc0
[  394.504632]  qlist_free_all+0x4b/0xc0
[  394.505421]  ? getname_flags+0xd0/0x5a0
[  394.506235]  quarantine_reduce+0x178/0x1b0
[  394.507105]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  394.508072]  ? getname_flags+0xd0/0x5a0
[  394.508910]  kasan_slab_alloc+0x11/0x20
[  394.509723]  kmem_cache_alloc+0x101/0x350
[  394.510576]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  394.511724]  getname_flags+0xd0/0x5a0
[  394.512560]  do_mkdirat+0xc5/0x310
[  394.513335]  ? __ia32_sys_mknod+0xb0/0xb0
[  394.514301]  __x64_sys_mkdir+0x5c/0x80
[  394.515195]  do_syscall_64+0x1b3/0x810
[  394.516054]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  394.517281]  ? syscall_return_slowpath+0x5e0/0x5e0
[  394.518316]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  394.519320]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  394.520355]  ? prepare_exit_to_usermode+0x291/0x3b0
[  394.521387]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  394.522380]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  394.523438] RIP: 0033:0x7f9485451447
[  394.524205] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 8
[  394.528386] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  394.530053] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  394.531635] RDX: 00007f9485ec23e0 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  394.533189] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  394.534757] R10: 0000000000000080 R11: 0000000000000293 R12: 0000000000000000
[  394.536161] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  394.537571] FIX filp: Restoring 0x00000000765bafe9-0x0000000037186196=0xcc
[  394.537571]
[  394.539355] FIX filp: Object at 0x000000004491392a not freed
[  394.604453] =============================================================================
[  394.607651] BUG names_cache (Tainted: G    B   W        ): Redzone overwritten
[  394.609363] -----------------------------------------------------------------------------
[  394.609363]
[  394.611577] INFO: 0x00000000fa0870fe-0x00000000ffa32a12. First byte 0x0 instead of 0xcc
[  394.613384] INFO: Slab 0x0000000067c0b01f objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  394.615559] INFO: Object 0x000000008ea0ee5d @offset=18240 fp=0x          (null)
[  394.615559]
[  394.617546] Redzone 00000000fa0870fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.619573] Redzone 000000009b99ade2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.621508] Redzone 00000000d4a962e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.623520] Redzone 00000000bc4ef70b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.625588] Object 000000008ea0ee5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.627594] Object 000000008e788248: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.629663] Object 00000000d3182567: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.631742] Object 000000008ab2e554: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.633616] Object 00000000fc460876: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.635486] Object 00000000866a1da1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.637415] Object 000000003dd6b626: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.639376] Object 00000000c34981e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.641308] Object 000000006f6b0267: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.643279] Object 0000000087a0dafb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.645163] Object 0000000044a34037: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.647164] Object 000000009eed22c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.649308] Object 00000000b0b51f14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.651347] Object 00000000092850f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.653260] Object 0000000008814559: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.655163] Object 00000000c778fa2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.657253] Object 00000000c0d9fa56: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.659246] Object 000000004bff4299: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.661213] Object 00000000009b5a0a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.663288] Object 0000000045487197: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.665382] Object 000000000c1c10bc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.667359] Object 000000005ffc42de: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.669373] Object 000000005af2dfd7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.671299] Object 00000000b6b071f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.673227] Object 00000000b9dafbda: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.675171] Object 000000000a0192e6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.677104] Object 00000000edf91806: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.679136] Object 00000000b2f79414: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.681083] Object 0000000052df90bb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.683057] Object 0000000064240047: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.685055] Object 000000000ce5178b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.686864] Object 000000006d0a5cb6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.688853] Object 0000000061c9975a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.690803] Object 00000000c96fe90e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.692684] Object 00000000e330f680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.694550] Object 000000005bb9c007: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.696545] Object 000000003925eafc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.698420] Object 000000004db91fab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.700449] Object 0000000006d704d1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.702314] Object 000000009831d053: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.704113] Object 0000000031b0c3cd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.705934] Object 00000000c417f826: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.707773] Object 00000000e0ea6757: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.709628] Object 000000006b8ed4d1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.711464] Object 0000000025b89adc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.713271] Object 0000000000cdca12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.715101] Object 000000002c093632: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.716924] Object 00000000ff767790: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.718916] Object 0000000062b017c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.720763] Object 00000000fd8209f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.722785] Object 00000000b49ba1cf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.724868] Object 00000000c861f014: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.726972] Object 000000005fcec1f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.729010] Object 00000000d4dfb8de: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.730937] Object 00000000aed5a9b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.732973] Object 000000007a40fd30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.735105] Object 000000006ae64f57: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.736968] Object 00000000d14327b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.738922] Object 000000008eb2d31e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.740852] Object 00000000293caa76: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.742783] Object 00000000340babc2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.744706] Object 000000009fed5717: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.746720] Object 000000000188db60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.748621] Object 0000000013e0fc7e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.750636] Object 00000000c8f6a945: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.752622] Object 00000000a64bd7b2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.754569] Object 00000000e91ad636: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.756500] Object 00000000bdb6f8c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.758487] Object 0000000007da987d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.760421] Object 00000000bca3bb5c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.762351] Object 000000006fe53b53: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.764280] Object 000000001bf5fe01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.766210] Object 000000008818f313: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.768134] Object 00000000852cdefe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.770082] Object 0000000005626d22: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.772014] Object 00000000cd61079d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.773938] Object 00000000b81a0344: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.775869] Object 000000003a8b1a70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.777797] Object 000000007e2d0ab0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.779775] Object 000000002ce7c5ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.781711] Object 0000000049f09448: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.783648] Object 000000008cf5f393: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.785734] Object 00000000c9a2bd97: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.787654] Object 000000005af35475: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.789598] Object 00000000814b023f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.791521] Object 0000000071d46083: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.793445] Object 0000000026bcf8f6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.795537] Object 00000000c2f40bf1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.797611] Object 000000001efa16ee: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.799741] Object 000000004a224917: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.801870] Object 000000000ab7070c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.803755] Object 000000008e2a2ed4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.805685] Object 00000000d98e860b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.807616] Object 0000000071e8b97f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.809579] Object 000000001d2f48cc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.811501] Object 0000000070f2c322: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.813432] Object 00000000bed550a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.815523] Object 000000004d67fdad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.817603] Object 000000007ab6d4b1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.819604] Object 00000000b0fac5ae: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.821530] Object 000000005989ef54: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.823459] Object 000000000a10a3d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.825399] Object 0000000036d15603: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.827491] Object 0000000008cd2545: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.829578] Object 000000001e20b4e6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.831617] Object 00000000e779537b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.833492] Object 00000000a5eb362f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.835340] Object 0000000036e52f35: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.837150] Object 00000000cb21eed7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.839100] Object 00000000aedbae0f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.841037] Object 0000000034c708aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.842969] Object 00000000ab425e39: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.844913] Object 000000008e094f82: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.846951] Object 0000000074346b04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.848844] Object 00000000ead7a7da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.850821] Object 0000000070ee376c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.852787] Object 000000007d753607: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.854719] Object 000000005a7a85f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.856642] Object 00000000ed750b50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.858589] Object 00000000ea8b45bf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.860510] Object 00000000a29f2f87: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.862402] Object 00000000f9237f93: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.864320] Object 00000000061435ac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.866275] Object 00000000346665be: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.868388] Object 000000005bf50017: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.870318] Object 00000000cae99db4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.872262] Object 00000000d1509ce9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.874255] Object 00000000c261bd9f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.876332] Object 00000000b03dbf56: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.878340] Object 000000001344dfa1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.880421] Object 0000000022fa887b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.882484] Object 00000000af4ef77f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.884459] Object 00000000b0868ae3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.886359] Object 00000000f78e91b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.888322] Object 00000000bac43ebf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.890250] Object 000000006a86e08e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.892183] Object 00000000fb7f5d11: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.894119] Object 00000000c3f2c2ed: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.896155] Object 0000000041d22b78: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.898304] Object 000000009aee3bcd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.900345] Object 00000000b4ac0c20: 0d 80 00 00 0d 80 01 00 0d 80 02 00 0d 80 03 00  ................
[  394.902374] Object 00000000f36070d1: 0d 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.904299] Object 000000000bb875f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.906242] Object 00000000ace338db: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.908358] Object 00000000fe6814ac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.910339] Object 0000000033e7de73: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.912247] Object 00000000d47e3a80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.914167] Object 0000000034c18f7a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.916063] Object 0000000012b24f38: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.917937] Object 00000000807495b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.919898] Object 00000000390186b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.921830] Object 00000000f7ac9488: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.923750] Object 000000005a53d40b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.925694] Object 000000000625f089: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.927622] Object 0000000027423caf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.929571] Object 0000000098d22430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.931496] Object 00000000fa610503: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.933420] Object 00000000fd9c1616: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.935345] Object 0000000050193faf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.937430] Object 000000001a8ff84c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.939590] Object 0000000024de8424: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.941668] Object 0000000022839deb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.943758] Object 00000000902d34a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.945978] Object 000000008fdad278: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.948065] Object 000000003167e77e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.950232] Object 00000000d91ae7a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.952283] Object 00000000c4fa2703: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.954222] Object 00000000ba4a16cd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.956195] Object 000000008f188eff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.958124] Object 000000005830f06f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.960093] Object 0000000078d13b41: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.962020] Object 000000002e445901: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.963967] Object 00000000c5b10b7e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.966110] Object 0000000089d8d31e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.968247] Object 00000000039f7b15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.970176] Object 000000007aace93c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.972107] Object 00000000906ba35e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.974124] Object 0000000032c67e77: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.976276] Object 00000000cc5bcf59: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.978537] Object 00000000034a2f69: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.980601] Object 000000002faf80af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.982721] Object 00000000a3d7fa29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.984863] Object 00000000f2c17036: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.986804] Object 00000000e46072fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.988767] Object 000000003da546d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.990713] Object 000000005ff35e72: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.992632] Object 0000000073438922: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.994557] Object 00000000e3943e25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.996479] Object 000000004ef46a10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  394.998981] Object 00000000c7ea9a40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.000918] Object 00000000929c7e94: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.002850] Object 00000000c1d50f9d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.004787] Object 0000000001378db1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.006771] Object 0000000088d668a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.008894] Object 000000001c2147ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.010999] Object 00000000b247f794: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.013109] Object 000000009fa0b2a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.015308] Object 000000009d8c7e17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.017338] Object 000000000e701f48: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.019325] Object 00000000b68587a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.021181] Object 0000000060cef29c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.023205] Object 0000000059265f1f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.025379] Object 000000000ec57a46: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.027522] Object 0000000095ee714b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.029669] Object 00000000ebb4e2ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.031851] Object 00000000df4371d3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.033957] Object 0000000003619df7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.035971] Object 00000000dfc2a850: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.037907] Object 000000002c7babfc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.039861] Object 00000000d738ddfd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.041805] Object 000000005a0d812f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.043793] Object 000000005e3cdf9e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.045944] Object 00000000dc159559: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.048095] Object 00000000ff8e6905: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.050308] Object 000000000a98fef0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.052411] Object 00000000a09ba319: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.054376] Object 00000000947cb1ba: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.056385] Object 00000000a4af087d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.058489] Object 00000000b206b45b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.060596] Object 00000000c5104ed4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.062706] Object 000000009e85fc91: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.064806] Object 00000000e76eadb5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.066688] Object 000000000d42f98f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.068617] Object 000000007fcf728a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.070565] Object 000000006ec933fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.072497] Object 00000000befa3720: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.074440] Object 000000008beda117: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.076380] Object 00000000d7f90f98: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.078427] Object 0000000009e6db77: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.080231] Object 0000000006b44bb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.081916] Object 00000000a0ecdfc8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.083933] Object 0000000025df4bd5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.085956] Object 000000000270ba12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.087918] Object 000000005812e3d1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.089890] Object 000000000ff2a700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.091962] Object 00000000451b2d39: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.094053] Object 00000000519da1a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.096153] Object 0000000037239e61: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.098285] Object 000000004ae931bf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.100221] Object 00000000ddc3d021: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.102113] Object 00000000cd1cd613: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.104043] Object 000000007586723f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.105974] Object 000000004cc44c40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.107903] Object 00000000d4b494aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.109858] Object 000000009a7ea16b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.111791] Object 000000003f60c52f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.113885] Object 0000000077559e99: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.115980] Object 00000000c6b4895f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.118016] Object 00000000c8735df5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.119900] Object 00000000d96c6d6b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.121715] Object 0000000066b39161: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.123550] Object 000000005220e335: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.125570] Object 0000000090100c3a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.127552] Object 000000008b5842cc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.129524] Object 00000000b5428d52: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.131357] Object 000000004a45680b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.133349] Redzone 00000000644639b4: 00 00 00 00 00 00 00 00                          ........
[  395.135288] Padding 00000000554c961a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.137230] Padding 00000000de5bb88f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.139198] Padding 00000000a7ab3d4d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.141147] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  395.142914] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  395.145251] Call Trace:
[  395.145830]  dump_stack+0x1d8/0x2c6
[  395.146637]  ? dump_stack_print_info.cold.1+0x20/0x20
[  395.147794]  ? print_section+0x41/0x50
[  395.148649]  print_trailer+0x172/0x17b
[  395.149490]  check_bytes_and_report.cold.86+0x40/0x70
[  395.150643]  check_object+0x16c/0x290
[  395.151440]  free_debug_processing+0x16d/0x2f0
[  395.152375]  ? qlist_free_all+0x36/0xc0
[  395.153154]  ? qlist_free_all+0x36/0xc0
[  395.153929]  __slab_free+0x295/0x530
[  395.154658]  ? trace_hardirqs_on+0xbd/0x2f0
[  395.155492]  ? kasan_check_read+0x11/0x20
[  395.156299]  ? quarantine_reduce+0x16e/0x1b0
[  395.157161]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  395.158305]  ? qlist_free_all+0x36/0xc0
[  395.159168]  ___cache_free+0xbd/0xd0
[  395.159997]  ? qlist_free_all+0x36/0xc0
[  395.160880]  qlist_free_all+0x4b/0xc0
[  395.161720]  ? getname_flags+0xd0/0x5a0
[  395.162601]  quarantine_reduce+0x178/0x1b0
[  395.163534]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  395.164566]  ? getname_flags+0xd0/0x5a0
[  395.165341]  kasan_slab_alloc+0x11/0x20
[  395.166117]  kmem_cache_alloc+0x101/0x350
[  395.167030]  getname_flags+0xd0/0x5a0
[  395.167867]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  395.169050]  getname+0x19/0x20
[  395.169711]  do_sys_open+0x3a2/0x7a0
[  395.170477]  ? filp_open+0x80/0x80
[  395.171209]  __x64_sys_open+0x7e/0xc0
[  395.171993]  do_syscall_64+0x1b3/0x810
[  395.172796]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  395.173918]  ? syscall_return_slowpath+0x5e0/0x5e0
[  395.174879]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  395.175959]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  395.177036]  ? prepare_exit_to_usermode+0x291/0x3b0
[  395.178028]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  395.179011]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  395.180098] RIP: 0033:0x7f948572583d
[  395.180833] Code: bb 20 00 00 75 10 b8 02 00 00 00 0f 05 48 3d 01 f0 ff ff 73 31 c3 48 83 ec 08 e8 1e f6 ff ff 48 89 04 24 b8 02 00 1
[  395.184621] RSP: 002b:00007ffe8b64cda0 EFLAGS: 00000293 ORIG_RAX: 0000000000000002
[  395.186230] RAX: ffffffffffffffda RBX: 00007ffe8b64d0b0 RCX: 00007f948572583d
[  395.187665] RDX: 00000000000001a0 RSI: 0000000000080042 RDI: 0000560ec575ca10
[  395.189126] RBP: 000000000000000d R08: 0000000000000000 R09: 00000000ffffffff
[  395.190548] R10: 0000000000000000 R11: 0000000000000293 R12: 00000000ffffffff
[  395.192051] R13: 0000560ec574f040 R14: 00007ffe8b64d070 R15: 0000560ec575d930
[  395.193634] FIX names_cache: Restoring 0x00000000fa0870fe-0x00000000ffa32a12=0xcc
[  395.193634]
[  395.195767] FIX names_cache: Object at 0x000000008ea0ee5d not freed
[  395.348149] =============================================================================
[  395.350114] BUG names_cache (Tainted: G    B   W        ): Redzone overwritten
[  395.351816] -----------------------------------------------------------------------------
[  395.351816]
[  395.353717] INFO: 0x00000000ab445d57-0x00000000b5e45f56. First byte 0x0 instead of 0xcc
[  395.355316] INFO: Slab 0x0000000042919e77 objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  395.357283] INFO: Object 0x00000000ee20ef67 @offset=13696 fp=0x          (null)
[  395.357283]
[  395.359227] Redzone 00000000ab445d57: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.361323] Redzone 0000000004dbc2c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.363408] Redzone 00000000b54bbb5a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.365374] Redzone 000000003ea25b03: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.367392] Object 00000000ee20ef67: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.369268] Object 000000009a45d3c7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.371105] Object 000000005bfc48cd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.372911] Object 0000000010fd9890: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.374780] Object 000000003b607a77: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.376802] Object 000000000c8b07db: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.378899] Object 000000007bf6b182: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.380908] Object 00000000ad466cc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.382990] Object 00000000c536a708: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.384860] Object 0000000050f32bb7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.386677] Object 000000006be9c47e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.388727] Object 000000006f90a99b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.390836] Object 0000000028d258e6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.392781] Object 00000000d2c16e2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.394714] Object 00000000caad40d3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.396759] Object 0000000025439cc8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.398883] Object 0000000040ec6cfe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.400993] Object 000000007b4f2cc5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.402966] Object 0000000086a44d8b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.404895] Object 00000000e3560137: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.406824] Object 0000000025993164: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.408796] Object 000000006b955ad2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.410787] Object 00000000c7c61cc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.412823] Object 00000000e6b84bcb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.414814] Object 00000000d888e277: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.416937] Object 0000000096011e5f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.418998] Object 000000002b3b4daf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.420910] Object 00000000b9a2ea4d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.422751] Object 000000002ff78ef4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.424584] Object 000000007b2f6dab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.426440] Object 00000000901d9680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.428572] Object 000000005fe3a2e1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.430607] Object 000000001c509baa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.432714] Object 000000005ec418af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.434815] Object 00000000977925e5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.436752] Object 00000000cd1db85e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.438716] Object 00000000625a3782: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.440580] Object 00000000b5d9a2b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.442464] Object 000000007f7aa3f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.444317] Object 000000007d00ef5a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.446317] Object 00000000b2c77740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.448433] Object 0000000035671cc6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.450461] Object 000000007c6c8bbf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.452420] Object 00000000b9b3863b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.454462] Object 00000000db5e5d1a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.456391] Object 000000005b464222: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.458422] Object 000000002c54c3e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.460512] Object 000000007b426ab0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.462702] Object 000000008cd85878: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.464530] Object 0000000088ae0bd4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.466486] Object 000000002c3b2d49: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.468472] Object 000000004f41a085: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.470276] Object 00000000c39f0877: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.472077] Object 000000009bd28ef5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.473970] Object 00000000b8b3d7f3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.475905] Object 000000004d244b97: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.477837] Object 00000000585fa9dd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.479837] Object 000000001696e6e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.481874] Object 000000002b1db1be: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.483979] Object 000000003fc7403a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.485938] Object 000000006395512f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.487885] Object 0000000032caf8b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.489877] Object 00000000f69b0abc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.491726] Object 00000000be2353e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.493590] Object 00000000637bb5ef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.495502] Object 00000000039bebb6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.497399] Object 0000000064e4a267: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.499470] Object 0000000089a69fc3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.501540] Object 0000000085e60530: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.503473] Object 0000000015639ef3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.505406] Object 0000000094068587: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.507335] Object 000000008ff00f53: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.509290] Object 00000000932752f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.511222] Object 0000000023ac02f4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.513294] Object 00000000fc85c6b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.515331] Object 00000000ff432c14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.517295] Object 00000000aa86c062: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.519335] Object 00000000a903948d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.521275] Object 000000008a040dec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.523208] Object 000000004a2ff0c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.525142] Object 0000000099de3956: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.527072] Object 00000000de018cfa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.529025] Object 00000000351e3484: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.530936] Object 00000000be7d6432: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.532861] Object 000000002561d841: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.534972] Object 00000000ea7ffc5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.536797] Object 00000000b1a7afdc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.538745] Object 000000005e2f4558: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.540666] Object 00000000fa1cf8f1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.542535] Object 00000000f57cf003: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.544392] Object 00000000cd97b1fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.546229] Object 00000000607ff90b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.548069] Object 00000000dba95fee: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.550145] Object 000000008e191158: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.552156] Object 00000000a99a8a44: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.554081] Object 00000000a7c5a4bc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.556009] Object 0000000014b96db4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.557948] Object 00000000dc161e87: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.559904] Object 0000000058f56112: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.561853] Object 0000000098868e43: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.563776] Object 00000000237e2675: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.565704] Object 00000000f3fd2364: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.567632] Object 000000006b39fddc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.569597] Object 0000000067cb28ae: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.571534] Object 00000000626a5565: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.573627] Object 0000000025cdfa32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.575725] Object 00000000196e7d61: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.577900] Object 000000007d73020e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.580010] Object 00000000a66134b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.582088] Object 00000000255fd525: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.584030] Object 000000004ebf1970: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.586022] Object 00000000ec1754f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.587950] Object 0000000060ad33e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.589913] Object 00000000c401f2dc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.591840] Object 000000005f5cb15a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.593764] Object 00000000eb803f4b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.595688] Object 000000002b55022d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.597635] Object 000000007aa0743c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.599723] Object 000000000c51a5ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.601803] Object 00000000ae88511a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.603625] Object 0000000007dff804: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.605433] Object 0000000050feca07: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.607433] Object 00000000b70eff4f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.609569] Object 00000000a4a85517: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.611671] Object 000000009ffe5f6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.613713] Object 00000000cb3c8002: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.615863] Object 0000000082dee2ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.617707] Object 00000000e99b4b6c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.619662] Object 000000001abf9d23: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.621585] Object 000000003bb593c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.623508] Object 000000006745a093: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.625431] Object 0000000046ae964a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.627359] Object 000000009b594a8e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.629412] Object 00000000e9639674: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.631484] Object 0000000072a6e8a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.633575] Object 0000000035180617: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.635585] Object 00000000f882ea8e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.637505] Object 00000000503a9fae: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.639466] Object 00000000ff8054ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.641387] Object 0000000075c1114c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.643308] Object 000000000cb57bf6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.645232] Object 00000000e0cb77a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.647161] Object 000000004e1aefdc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.649157] Object 00000000b700e475: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.651054] Object 00000000bd3d1705: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.652861] Object 00000000690bafb7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.654662] Object 0000000031a30c1f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.656513] Object 000000003a633f68: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.658421] Object 0000000063864e4a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.660252] Object 00000000bb934e43: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.662075] Object 000000005e847465: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.663898] Object 000000003fef42c7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.665730] Object 00000000ed03f61c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.667557] Object 00000000176001b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.669443] Object 00000000a26d2b3f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.671271] Object 00000000292af858: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.673068] Object 000000004435450f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.674864] Object 0000000021e0981f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.676671] Object 000000005197c692: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.678519] Object 0000000095657d22: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.680364] Object 000000001816b044: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.682364] Object 000000009934b772: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.684210] Object 000000001576b3b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.686065] Object 0000000091a219e1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.687910] Object 000000000f69dd1e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.689788] Object 00000000a66bd7ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.691621] Object 0000000042cd6a1e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.693481] Object 000000007ed43d33: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.695328] Object 00000000a16da798: 0e 80 00 00 0e 80 01 00 0e 80 02 00 0e 80 03 00  ................
[  395.697158] Object 0000000077bb89df: 0e 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.699005] Object 000000007c7fac42: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.700839] Object 00000000eda36466: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.702666] Object 0000000088671a7c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.704486] Object 000000004715e5d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.706320] Object 00000000866f682e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.708137] Object 000000002dbf3440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.709989] Object 00000000364e3a78: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.711859] Object 0000000051e124a9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.713732] Object 00000000b66e5a21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.715565] Object 0000000091a89191: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.717429] Object 00000000160ef497: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.719308] Object 00000000fc865a51: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.721129] Object 000000006e25c648: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.723001] Object 00000000b2592f1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.724805] Object 0000000007482486: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.726653] Object 00000000bf9f28e1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.728532] Object 0000000035729fd8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.730414] Object 000000004e2209c6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.732293] Object 0000000040c5415e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.734169] Object 000000007d85a3f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.736120] Object 00000000fe16a69e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.737925] Object 00000000fc5cbe01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.739769] Object 00000000b4f7699d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.741580] Object 00000000c3a2ccfb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.743453] Object 0000000020189035: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.745302] Object 00000000ba7e1ced: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.747193] Object 00000000bb4c3c01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.749053] Object 0000000091462e71: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.750896] Object 00000000e2e0193b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.752725] Object 000000002b1fa666: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.754534] Object 0000000008a66160: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.756503] Object 00000000ace0414b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.758366] Object 00000000363119de: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.760169] Object 000000007b3c789c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.761970] Object 0000000025808b51: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.763780] Object 0000000064eb2ba9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.765628] Object 0000000038e4677b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.767491] Object 00000000b8b4f881: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.769349] Object 00000000937a172f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.771184] Object 000000004a4cdc12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.773043] Object 00000000caa67a71: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.774879] Object 000000009a3c6faa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.776678] Object 00000000dec431ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.778530] Object 00000000fd2e59eb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.780355] Object 00000000848b6a4d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.782229] Object 000000005e9030e6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.784072] Object 00000000bdd2c8fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.785903] Object 000000006e55a76b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.787739] Object 000000000d34fe76: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.789628] Object 0000000050c1ce10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.791507] Object 000000004389e1f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.793431] Object 00000000678450ea: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.795272] Object 0000000020f987c5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.797089] Object 00000000d6b4841a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.801583] Object 000000001fe78f04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.803424] Object 000000008ffe78de: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.805277] Object 00000000d7ac5129: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.807108] Object 00000000702a2288: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.808931] Object 00000000038eff9d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.810757] Object 00000000e14f68f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.812641] Object 00000000dbaed78b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.814496] Object 0000000067017858: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.816385] Object 000000006c6a255d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.818287] Object 0000000051647012: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.820224] Object 0000000024e77103: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.822072] Object 00000000611b25bb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.823947] Object 00000000609696e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.825845] Object 000000002ca42c54: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.827712] Object 0000000042a8303c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.829633] Object 00000000c217d331: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.831530] Object 000000000148b115: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.833415] Object 0000000062cc24a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.835277] Object 00000000b460fe7f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.837134] Object 0000000009b7093f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.839011] Object 0000000036341150: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.840867] Object 00000000fa452c78: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.842693] Object 0000000042b0d4c1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.844533] Object 0000000024e4ca49: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.846410] Object 000000008937106d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.848408] Object 00000000f1271b6a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.850294] Object 00000000eec7f8e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.852208] Object 0000000061e97181: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.854056] Object 00000000a2675a1a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.855965] Object 0000000083cbb54a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.857840] Object 00000000930ce836: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.859755] Object 0000000035fd3c10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.861626] Redzone 00000000e1b44392: 00 00 00 00 00 00 00 00                          ........
[  395.863383] Padding 0000000043dfa7c9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.865283] Padding 00000000b58b4034: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.867230] Padding 0000000007d9c301: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.869169] CPU: 0 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  395.870848] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  395.873063] Call Trace:
[  395.873599]  dump_stack+0x1d8/0x2c6
[  395.874328]  ? dump_stack_print_info.cold.1+0x20/0x20
[  395.875357]  ? print_section+0x41/0x50
[  395.876129]  print_trailer+0x172/0x17b
[  395.876901]  check_bytes_and_report.cold.86+0x40/0x70
[  395.877995]  check_object+0x16c/0x290
[  395.878889]  free_debug_processing+0x16d/0x2f0
[  395.879865]  ? qlist_free_all+0x36/0xc0
[  395.880720]  ? qlist_free_all+0x36/0xc0
[  395.881508]  __slab_free+0x295/0x530
[  395.882254]  ? trace_hardirqs_on+0xbd/0x2f0
[  395.883139]  ? kasan_check_read+0x11/0x20
[  395.884011]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  395.885194]  ? qlist_free_all+0x36/0xc0
[  395.885968]  ___cache_free+0xbd/0xd0
[  395.886692]  ? qlist_free_all+0x36/0xc0
[  395.887458]  qlist_free_all+0x4b/0xc0
[  395.888245]  ? prepare_creds+0xab/0x4d0
[  395.889050]  quarantine_reduce+0x178/0x1b0
[  395.889882]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  395.890849]  ? prepare_creds+0xab/0x4d0
[  395.891631]  kasan_slab_alloc+0x11/0x20
[  395.892416]  kmem_cache_alloc+0x101/0x350
[  395.893236]  prepare_creds+0xab/0x4d0
[  395.894004]  ? __task_pid_nr_ns+0x303/0x640
[  395.894862]  ? abort_creds+0x2a0/0x2a0
[  395.895629]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  395.896726]  ? lock_release+0x9e0/0x9e0
[  395.897601]  ? vfs_read+0x1ce/0x3e0
[  395.898354]  do_faccessat+0xa2/0x820
[  395.899109]  ? __ia32_sys_fallocate+0xf0/0xf0
[  395.900001]  __x64_sys_access+0x59/0x80
[  395.900816]  do_syscall_64+0x1b3/0x810
[  395.901614]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  395.902666]  ? syscall_return_slowpath+0x5e0/0x5e0
[  395.903627]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  395.904566]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  395.905561]  ? prepare_exit_to_usermode+0x291/0x3b0
[  395.906549]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  395.907490]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  395.908530] RIP: 0033:0x7f9485451787
[  395.909258] Code: 83 c4 08 48 3d 01 f0 ff ff 73 01 c3 48 8b 0d 08 d7 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 b8 15 00 8
[  395.912971] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000246 ORIG_RAX: 0000000000000015
[  395.914489] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451787
[  395.915902] RDX: 00007f9485ec23e0 RSI: 0000000000000000 RDI: 0000560ec4a1b8a1
[  395.917343] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  395.918825] R10: 0000000000000080 R11: 0000000000000246 R12: 0000000000000000
[  395.920268] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  395.921733] FIX names_cache: Restoring 0x00000000ab445d57-0x00000000b5e45f56=0xcc
[  395.921733]
[  395.923907] FIX names_cache: Object at 0x00000000ee20ef67 not freed
[  395.931032] =============================================================================
[  395.934643] BUG names_cache (Tainted: G    B   W        ): Redzone overwritten
[  395.937775] -----------------------------------------------------------------------------
[  395.937775]
[  395.941946] INFO: 0x000000005ee4cca3-0x00000000dafc3b52. First byte 0xa instead of 0xcc
[  395.945358] INFO: Slab 0x0000000042919e77 objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  395.949541] INFO: Object 0x00000000cb4db54f @offset=64 fp=0x          (null)
[  395.949541]
[  395.953242] Redzone 000000005ee4cca3: 0a 80 00 00 0a 80 01 00 0a 80 02 00 0a 80 03 00  ................
[  395.956049] Redzone 00000000f8afc32f: 0a 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.957908] Redzone 0000000056d99d15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.959822] Redzone 00000000ba486731: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.961728] Object 00000000cb4db54f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.963656] Object 00000000c5e6f04f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.965609] Object 00000000ad67b28e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.967467] Object 00000000bcb9415f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.969416] Object 000000008d6db96a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.971271] Object 0000000010cf7ba3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.973114] Object 00000000167429e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.974942] Object 00000000346c95df: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.976799] Object 000000009aef45f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.978680] Object 00000000abf40bfe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.980535] Object 0000000031e4a74d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.982456] Object 00000000fef87541: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.984317] Object 00000000e0876575: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.986192] Object 00000000ff37e8f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.988063] Object 00000000053cc33a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.989932] Object 0000000045924211: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.991810] Object 000000003e66ffb2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.993624] Object 00000000e0b8cde7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.995509] Object 00000000324997df: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.997424] Object 000000002b14bed4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  395.999290] Object 000000009ef71dbb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.001119] Object 00000000bdef5b9a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.002944] Object 0000000045561dc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.004757] Object 00000000fb077843: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.006561] Object 00000000ea18b379: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.008443] Object 00000000b3ca02d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.010292] Object 00000000d547b5f1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.012155] Object 000000006613b05b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.014027] Object 000000009b439867: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.015884] Object 000000000776c600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.017742] Object 00000000f0c43774: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.019697] Object 00000000c95ae42f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.021523] Object 000000002eeacb48: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.023366] Object 000000008d63d91a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.025179] Object 00000000d411169a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.026992] Object 000000004fb0ab47: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.028853] Object 0000000010b70434: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.030693] Object 00000000aaee1aa8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.032512] Object 000000004687d108: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.034371] Object 0000000040947942: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.036227] Object 0000000099304dfc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.038055] Object 000000000dfa5051: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.039894] Object 000000007fc2343d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.041703] Object 00000000920d407e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.043511] Object 000000009f1c8954: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.045399] Object 0000000097d24ac0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.047215] Object 00000000a570c0c3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.049050] Object 0000000088a3e272: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.050864] Object 000000003de70ec9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.052712] Object 00000000116df17b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.054546] Object 000000004f708727: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.056360] Object 000000008a538978: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.058164] Object 000000007586e683: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.060010] Object 0000000015d34ec2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.061836] Object 0000000072173833: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.063622] Object 000000003aa23dda: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.065426] Object 0000000050f50869: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.067257] Object 00000000d26cd3df: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.069099] Object 00000000a131e9c8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.070937] Object 00000000413dc983: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.072747] Object 000000005b43bd8b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.074567] Object 00000000977f145a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.076428] Object 00000000dc1fc5ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.078282] Object 00000000313ec8a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.080112] Object 000000008d1af108: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.081965] Object 00000000d4594ad2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.083831] Object 0000000096dddd64: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.085648] Object 00000000f5ec1b71: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.087434] Object 00000000bac61e5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.089265] Object 00000000e2c0fa18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.091040] Object 00000000a5a2aef8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.092831] Object 0000000066209e99: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.094655] Object 0000000000eea79d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.096508] Object 000000001c567565: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.098467] Object 00000000d101a449: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.100310] Object 000000002d9eb83a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.102102] Object 00000000a02050da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.103925] Object 000000005e618fb3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.105726] Object 000000008ceb927d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.107549] Object 00000000524831a3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.109395] Object 00000000b5a7cf11: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.111221] Object 0000000045fba7da: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.113044] Object 00000000de0b0514: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.114881] Object 00000000c31da712: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.116716] Object 00000000b80fc436: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.118562] Object 000000004f8f0ccc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.120361] Object 000000008695b735: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.122141] Object 00000000ae871da0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.123932] Object 00000000669648a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.125723] Object 00000000c97384ac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.127520] Object 00000000b5688748: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.129400] Object 00000000a411a0ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.131250] Object 00000000f372bdeb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.133083] Object 0000000042d9037b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.134892] Object 000000002d12abf7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.136722] Object 00000000653efd7d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.138536] Object 0000000000d4da23: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.140376] Object 000000002d25eed5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.142187] Object 00000000a66627d5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.144061] Object 000000009d0d0d53: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.145881] Object 00000000049a1788: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.147708] Object 0000000082f57fab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.149576] Object 0000000081a203c5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.151404] Object 000000001ab8e1b9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.153185] Object 000000004899932d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.154967] Object 000000005e8ba3a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.156740] Object 00000000f8420fc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.158538] Object 0000000077863d75: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.160332] Object 000000005d16144b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.162163] Object 00000000324e4dc8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.163983] Object 00000000eb84f8a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.165842] Object 00000000a60b9051: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.167677] Object 00000000d1655445: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.169524] Object 0000000076389d01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.171320] Object 00000000dbf1e5b8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.173095] Object 00000000e59efa9c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.174903] Object 000000009496694d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.176714] Object 0000000058671308: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.178568] Object 00000000cdfc368d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.180425] Object 00000000a49dfdbb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.182224] Object 00000000a13fd07f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.184034] Object 00000000499d67c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.185822] Object 0000000049ec7c54: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.187596] Object 000000005c04b08d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.189400] Object 00000000a3b4af15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.191189] Object 0000000033a3a9b1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.192961] Object 000000002a4aa683: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.194764] Object 000000002bb6bcf6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.196600] Object 00000000046b2486: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.198446] Object 000000006ee680e5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.200269] Object 00000000052a3c1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.202113] Object 0000000059449894: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.203900] Object 000000009913a830: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.205672] Object 0000000087662a5a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.207493] Object 000000002f1f6c6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.209356] Object 00000000e488d488: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.211177] Object 0000000089b5f872: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.213012] Object 000000003baaba34: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.214842] Object 00000000416f1461: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.216693] Object 00000000f299466e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.218551] Object 00000000b04d0b69: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.220334] Object 0000000031024115: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.222103] Object 0000000079bb8bcc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.223885] Object 0000000088c9fccb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.225672] Object 00000000d2fa469f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.227464] Object 000000009dff895f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.229297] Object 000000006fb96bd2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.231107] Object 00000000ca33bec5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.232955] Object 0000000026e934ea: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.234806] Object 000000009d3d0b04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.236616] Object 00000000877d0fee: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.238461] Object 000000000c74f247: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.240275] Object 0000000011a32100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.242086] Object 0000000027a10062: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.243924] Object 000000005e81e1a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.245769] Object 00000000294a2201: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.247584] Object 00000000dd433e5e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.249454] Object 000000000195f23a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.251277] Object 00000000dc9c1e91: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.253110] Object 00000000e8454247: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.254878] Object 0000000076187c9d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.256655] Object 000000000774e9cc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.258485] Object 00000000f001a307: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.260282] Object 00000000ba993408: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.262095] Object 000000008157ebf2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.263908] Object 00000000f93b30a4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.265841] Object 00000000f7c8c607: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.267673] Object 00000000e9314f9b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.269545] Object 00000000033a42d5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.271360] Object 0000000071494c6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.273140] Object 0000000016789299: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.274971] Object 00000000e24b896a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.276817] Object 00000000c01c53a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.278684] Object 000000005938edec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.280530] Object 00000000e82eb82d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.282394] Object 000000001873e75a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.284297] Object 00000000c517d968: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.286112] Object 00000000ebd837c6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.287914] Object 00000000e2bfdf29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.289707] Object 000000003995b072: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.291523] Object 00000000235c11fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.293347] Object 000000004d6745a3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.295210] Object 0000000003a73ad3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.297045] Object 000000004a71abd1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.298869] Object 000000006c09766f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.300788] Object 0000000060bc195c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.302624] Object 00000000d55fe437: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.304439] Object 000000003238c5c3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.306251] Object 000000009eecc819: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.308092] Object 000000003898d8d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.309963] Object 00000000a1d5fdfe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.311847] Object 0000000035b83e44: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.313756] Object 000000006a92814f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.315607] Object 000000000aff6bc3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.317496] Object 00000000c184c71e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.319332] Object 00000000e658cf80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.321108] Object 000000009eba9f91: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.322944] Object 000000004567dc92: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.324750] Object 00000000972eb31d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.326586] Object 0000000076e2c798: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.328438] Object 0000000052cf1593: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.330256] Object 00000000997d4e20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.332075] Object 00000000e98a95f9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.333971] Object 00000000bda131ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.335772] Object 000000007348e31b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.337575] Object 00000000ecf97a28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.339378] Object 00000000f25d0bb4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.341134] Object 000000001af963db: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.342899] Object 00000000b0fab83c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.344651] Object 000000002f770b45: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.346416] Object 00000000353f748a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.348176] Object 000000005bee4968: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.350011] Object 000000000dcf0ca4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.351809] Object 00000000029ee3af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.353597] Object 000000005a819620: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.355374] Object 00000000a068cd35: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.357127] Object 00000000c0371d64: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.358914] Object 000000004c48f244: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.360666] Object 00000000f7e8e7d8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.362431] Object 00000000602b4fe2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.364242] Object 00000000024bb6e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.366023] Object 0000000052d0e76a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.367792] Object 000000004eee0cde: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.369593] Object 000000004ad46ff8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.371421] Object 00000000cf4f6561: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.373219] Object 0000000046ca7380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.374972] Object 00000000890b3cd9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.376731] Object 000000001052cca8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.378532] Object 0000000010a82f08: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.380314] Object 00000000ef55ab51: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.382094] Object 000000004f0f9ce5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.383883] Object 000000009d8a632b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.385667] Object 000000004d0ac8e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.387424] Object 00000000ab4018f4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.389226] Object 0000000070e6d433: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.390996] Object 0000000048287110: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.392763] Object 000000007fc1d82f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.394519] Object 00000000ba552236: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.396290] Object 000000001f4fbabd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.398118] Object 0000000070e6ddb7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.399983] Object 00000000f1dfa5b8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.401782] Object 00000000e782473e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.403598] Object 000000003caa8b59: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.405383] Object 000000001e698839: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.407159] Object 00000000c6295ed1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.408954] Object 00000000477c8684: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.410727] Object 00000000e5e9e613: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.412514] Object 00000000b65b2a65: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.414330] Object 00000000dee2228a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.416158] Object 0000000012cffbef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.417971] Object 00000000bb8fe1e1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.419855] Object 000000009222428b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.421618] Object 000000006b351f9b: 0b 80 00 00 0b 80 01 00 0b 80 02 00 0b 80 03 00  ................
[  396.423413] Object 0000000005f8c991: 0b 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.425184] Object 00000000174d926c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.426987] Object 00000000070a9210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.428830] Redzone 0000000048509c69: 00 00 00 00 00 00 00 00                          ........
[  396.430518] Padding 00000000b752dc81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.432351] Padding 000000005ee9b0f9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.434181] Padding 0000000039f40957: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.436085] CPU: 1 PID: 5913 Comm: in:imklog Tainted: G    B   W         5.0.0-rc2+ #19
[  396.437630] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  396.439862] Call Trace:
[  396.440394]  dump_stack+0x1d8/0x2c6
[  396.441107]  ? dump_stack_print_info.cold.1+0x20/0x20
[  396.442110]  ? print_section+0x41/0x50
[  396.442860]  print_trailer+0x172/0x17b
[  396.443626]  check_bytes_and_report.cold.86+0x40/0x70
[  396.444628]  check_object+0x16c/0x290
[  396.445357]  free_debug_processing+0x16d/0x2f0
[  396.446253]  ? qlist_free_all+0x36/0xc0
[  396.447033]  ? qlist_free_all+0x36/0xc0
[  396.447800]  __slab_free+0x295/0x530
[  396.448552]  ? trace_hardirqs_on+0xbd/0x2f0
[  396.449402]  ? kasan_check_read+0x11/0x20
[  396.450213]  ? quarantine_reduce+0x16e/0x1b0
[  396.451075]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  396.452150]  ? qlist_free_all+0x36/0xc0
[  396.452905]  ___cache_free+0xbd/0xd0
[  396.453602]  ? qlist_free_all+0x36/0xc0
[  396.454362]  qlist_free_all+0x4b/0xc0
[  396.455124]  quarantine_reduce+0x178/0x1b0
[  396.455935]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  396.456876]  kasan_slab_alloc+0x11/0x20
[  396.457634]  kmem_cache_alloc_trace+0x102/0x330
[  396.458553]  ? do_syslog+0xbdc/0x1800
[  396.459273]  ? __might_sleep+0x95/0x190
[  396.460047]  do_syslog+0xbdc/0x1800
[  396.460741]  ? aa_file_perm+0x498/0xfc0
[  396.461494]  ? log_buf_vmcoreinfo_setup+0x120/0x120
[  396.462456]  ? aa_path_link+0x4e0/0x4e0
[  396.463210]  kmsg_read+0x8f/0xc0
[  396.463855]  ? kmsg_poll+0xb0/0xb0
[  396.464526]  proc_reg_read+0x2a0/0x3d0
[  396.465271]  ? proc_reg_unlocked_ioctl+0x3c0/0x3c0
[  396.466209]  ? __schedule+0x9ca/0x1e30
[  396.466953]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  396.468003]  __vfs_read+0x110/0xa70
[  396.468719]  ? proc_reg_unlocked_ioctl+0x3c0/0x3c0
[  396.469670]  ? vfs_copy_file_range+0xbc0/0xbc0
[  396.470539]  ? fsnotify+0xef0/0xef0
[  396.471237]  ? security_file_permission+0x2b7/0x320
[  396.472183]  ? rw_verify_area+0x118/0x360
[  396.472965]  vfs_read+0x17f/0x3e0
[  396.473619]  ksys_read+0x101/0x260
[  396.474289]  ? kernel_write+0x120/0x120
[  396.475050]  ? __bpf_trace_preemptirq_template+0x30/0x30
[  396.476102]  __x64_sys_read+0x73/0xb0
[  396.476842]  do_syscall_64+0x1b3/0x810
[  396.477604]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  396.478676]  ? syscall_return_slowpath+0x5e0/0x5e0
[  396.479604]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  396.480521]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  396.481465]  ? prepare_exit_to_usermode+0x291/0x3b0
[  396.482412]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  396.483326]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  396.484306] RIP: 0033:0x7f114e02320d
[  396.485010] Code: c1 20 00 00 75 10 b8 00 00 00 00 0f 05 48 3d 01 f0 ff ff 73 31 c3 48 83 ec 08 e8 4e fc ff ff 48 89 04 24 b8 00 00 0
[  396.488569] RSP: 002b:00007f114b9bf580 EFLAGS: 00000293 ORIG_RAX: 0000000000000000
[  396.490011] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f114e02320d
[  396.491415] RDX: 0000000000001fa0 RSI: 00007f114b9bfda0 RDI: 0000000000000004
[  396.492795] RBP: 0000561d6e2769d0 R08: 0000000000000000 R09: 0000000000000000
[  396.494157] R10: 2ce33e6c02ce33e7 R11: 0000000000000293 R12: 00007f114b9bfda0
[  396.495534] R13: 0000000000001fa0 R14: 0000000000001f9f R15: 00007f114b9c1d3d
[  396.496902] FIX names_cache: Restoring 0x000000005ee4cca3-0x00000000dafc3b52=0xcc
[  396.496902]
[  396.498712] FIX names_cache: Object at 0x00000000cb4db54f not freed
[  396.516473] =============================================================================
[  396.518129] BUG filp (Tainted: G    B   W        ): Redzone overwritten
[  396.519438] -----------------------------------------------------------------------------
[  396.519438]
[  396.521298] INFO: 0x00000000db387f34-0x000000009df3643c. First byte 0x0 instead of 0xcc
[  396.522904] INFO: Slab 0x000000006e66199a objects=18 used=18 fp=0x          (null) flags=0x1fffc0000010201
[  396.524777] INFO: Object 0x00000000de6fc2a6 @offset=10816 fp=0x          (null)
[  396.524777]
[  396.526487] Redzone 00000000db387f34: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.528321] Redzone 0000000070e64dda: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.530145] Redzone 0000000058bfd459: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.531963] Redzone 0000000068cc7fa5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.533818] Object 00000000de6fc2a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.535620] Object 00000000f235ab58: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.537480] Object 00000000a93ce6c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.539410] Object 000000004502b5b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.541243] Object 0000000061c575f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.543104] Object 0000000037b5b394: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.544927] Object 00000000ef2ce2d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.546763] Object 00000000b0851dd3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.548620] Object 00000000b59570e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.550448] Object 00000000494e7e89: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.552255] Object 000000000b9d123d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.554062] Object 0000000072e9c65a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.555883] Object 00000000a53f650c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.557682] Object 000000009b483b04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.559575] Object 0000000049561366: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.561408] Object 00000000d94b589e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.563240] Object 00000000d22a6432: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.565042] Object 00000000562938f5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.566883] Object 000000008834f949: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.568738] Object 000000003efc3a4f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.570555] Object 00000000fadab1c1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.572385] Object 0000000043f3f37a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.574191] Object 00000000f92328b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.576005] Object 000000002b20264f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.577821] Object 000000002d3b9ebc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.579699] Object 00000000f4edfe3d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.581588] Object 00000000f3756b42: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.583444] Object 000000007c5f9d47: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.585270] Object 00000000d6a06d6d: 00 00 00 00 00 00 00 00                          ........
[  396.586931] Redzone 000000007293b8da: 00 00 00 00 00 00 00 00                          ........
[  396.588668] Padding 000000002b7e9157: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.590494] Padding 00000000ec1b8cbb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.592320] Padding 00000000d9e5f455: 00 00 00 00 00 00 00 00                          ........
[  396.594022] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  396.595712] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  396.597908] Call Trace:
[  396.598464]  dump_stack+0x1d8/0x2c6
[  396.599186]  ? dump_stack_print_info.cold.1+0x20/0x20
[  396.600210]  ? print_section+0x41/0x50
[  396.600979]  print_trailer+0x172/0x17b
[  396.601752]  check_bytes_and_report.cold.86+0x40/0x70
[  396.602753]  check_object+0x16c/0x290
[  396.603496]  free_debug_processing+0x16d/0x2f0
[  396.604401]  ? qlist_free_all+0x36/0xc0
[  396.605170]  ? qlist_free_all+0x36/0xc0
[  396.605936]  __slab_free+0x295/0x530
[  396.606665]  ? trace_hardirqs_on+0xbd/0x2f0
[  396.607499]  ? kasan_check_read+0x11/0x20
[  396.608340]  ? quarantine_reduce+0x16e/0x1b0
[  396.609190]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  396.610244]  ? qlist_free_all+0x36/0xc0
[  396.611010]  ___cache_free+0xbd/0xd0
[  396.611726]  ? qlist_free_all+0x36/0xc0
[  396.612485]  qlist_free_all+0x4b/0xc0
[  396.613217]  ? getname_flags+0xd0/0x5a0
[  396.614017]  quarantine_reduce+0x178/0x1b0
[  396.614824]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  396.615773]  ? getname_flags+0xd0/0x5a0
[  396.616596]  kasan_slab_alloc+0x11/0x20
[  396.617381]  kmem_cache_alloc+0x101/0x350
[  396.618199]  getname_flags+0xd0/0x5a0
[  396.618963]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  396.620026]  getname+0x19/0x20
[  396.620660]  do_sys_open+0x3a2/0x7a0
[  396.621389]  ? filp_open+0x80/0x80
[  396.622082]  __x64_sys_open+0x7e/0xc0
[  396.622843]  do_syscall_64+0x1b3/0x810
[  396.623601]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  396.624642]  ? syscall_return_slowpath+0x5e0/0x5e0
[  396.625621]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  396.626559]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  396.627533]  ? prepare_exit_to_usermode+0x291/0x3b0
[  396.628547]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  396.629487]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  396.630501] RIP: 0033:0x7f948572583d
[  396.631248] Code: bb 20 00 00 75 10 b8 02 00 00 00 0f 05 48 3d 01 f0 ff ff 73 31 c3 48 83 ec 08 e8 1e f6 ff ff 48 89 04 24 b8 02 00 1
[  396.634838] RSP: 002b:00007ffe8b64cda0 EFLAGS: 00000293 ORIG_RAX: 0000000000000002
[  396.636336] RAX: ffffffffffffffda RBX: 00007ffe8b64d0b0 RCX: 00007f948572583d
[  396.637739] RDX: 00000000000001a0 RSI: 0000000000080042 RDI: 0000560ec575ca10
[  396.639251] RBP: 000000000000000d R08: 0000000000000000 R09: 00000000ffffffff
[  396.640671] R10: 0000000000000000 R11: 0000000000000293 R12: 00000000ffffffff
[  396.642086] R13: 0000560ec574f040 R14: 00007ffe8b64d070 R15: 0000560ec575d930
[  396.643516] FIX filp: Restoring 0x00000000db387f34-0x000000009df3643c=0xcc
[  396.643516]
[  396.645241] FIX filp: Object at 0x00000000de6fc2a6 not freed
[  396.658436] =============================================================================
[  396.660124] BUG filp (Tainted: G    B   W        ): Redzone overwritten
[  396.661440] -----------------------------------------------------------------------------
[  396.661440]
[  396.663326] INFO: 0x00000000e213fd13-0x00000000db33b4f4. First byte 0x0 instead of 0xcc
[  396.664898] INFO: Slab 0x000000006e66199a objects=18 used=18 fp=0x          (null) flags=0x1fffc0000010201
[  396.666828] INFO: Object 0x00000000b4d239ce @offset=11712 fp=0x          (null)
[  396.666828]
[  396.668588] Redzone 00000000e213fd13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.670415] Redzone 000000007c5d4148: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.672242] Redzone 000000005fd27e8c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.674092] Redzone 0000000021ddc4a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.675870] Object 00000000b4d239ce: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.677724] Object 00000000e40a6b1b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.679561] Object 0000000066177f79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.681390] Object 00000000f7a8db9f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.683207] Object 000000005bcc6a16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.685004] Object 00000000eac3afe8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.686805] Object 000000008aca75e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.688641] Object 0000000057343738: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.690483] Object 000000007ea3eecd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.692279] Object 00000000bd05c804: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.694110] Object 000000009f161098: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.695980] Object 000000008c5ce9c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.697837] Object 0000000061ab627e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.699687] Object 00000000ccbfedd4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.701481] Object 0000000076322ac9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.703255] Object 00000000c8b06cc6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.705041] Object 000000000732ce3f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.706863] Object 000000004f3a13c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.708710] Object 00000000a3087f41: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.710471] Object 0000000096775b61: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.712266] Object 0000000036691c7b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.714036] Object 00000000cfcca52d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.715792] Object 00000000a66438c9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.717618] Object 0000000088f36ebc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.719495] Object 0000000058854e6a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.721312] Object 00000000ff77e798: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.723135] Object 00000000ee149d92: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.724957] Object 000000001386f25e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.726781] Object 00000000810a292a: 00 00 00 00 00 00 00 00                          ........
[  396.728468] Redzone 00000000f9faab95: 00 00 00 00 00 00 00 00                          ........
[  396.730195] Padding 00000000124207b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.732025] Padding 00000000029659c1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.733926] Padding 00000000fa0fd061: 00 00 00 00 00 00 00 00                          ........
[  396.735643] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  396.737268] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  396.739479] Call Trace:
[  396.739990]  dump_stack+0x1d8/0x2c6
[  396.740696]  ? dump_stack_print_info.cold.1+0x20/0x20
[  396.741708]  ? print_section+0x41/0x50
[  396.742468]  print_trailer+0x172/0x17b
[  396.743255]  check_bytes_and_report.cold.86+0x40/0x70
[  396.744301]  check_object+0x16c/0x290
[  396.745042]  free_debug_processing+0x16d/0x2f0
[  396.745948]  ? qlist_free_all+0x36/0xc0
[  396.746722]  ? qlist_free_all+0x36/0xc0
[  396.747498]  __slab_free+0x295/0x530
[  396.748244]  ? trace_hardirqs_on+0xbd/0x2f0
[  396.749090]  ? kasan_check_read+0x11/0x20
[  396.749893]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  396.750957]  ? qlist_free_all+0x36/0xc0
[  396.751738]  ___cache_free+0xbd/0xd0
[  396.752445]  ? qlist_free_all+0x36/0xc0
[  396.753208]  qlist_free_all+0x4b/0xc0
[  396.753932]  ? getname_flags+0xd0/0x5a0
[  396.754701]  quarantine_reduce+0x178/0x1b0
[  396.755521]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  396.756465]  ? getname_flags+0xd0/0x5a0
[  396.757286]  kasan_slab_alloc+0x11/0x20
[  396.758073]  kmem_cache_alloc+0x101/0x350
[  396.758928]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  396.760005]  getname_flags+0xd0/0x5a0
[  396.760770]  do_mkdirat+0xc5/0x310
[  396.761496]  ? __ia32_sys_mknod+0xb0/0xb0
[  396.762341]  __x64_sys_mkdir+0x5c/0x80
[  396.763119]  do_syscall_64+0x1b3/0x810
[  396.763890]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  396.764948]  ? syscall_return_slowpath+0x5e0/0x5e0
[  396.765924]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  396.766885]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  396.767866]  ? prepare_exit_to_usermode+0x291/0x3b0
[  396.768853]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  396.769779]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  396.770771] RIP: 0033:0x7f9485451447
[  396.771489] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 0
[  396.775101] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  396.776584] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  396.778036] RDX: 00007f9485ec23e0 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  396.779578] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  396.780966] R10: 0000000000000080 R11: 0000000000000293 R12: 0000000000000000
[  396.782371] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  396.783796] FIX filp: Restoring 0x00000000e213fd13-0x00000000db33b4f4=0xcc
[  396.783796]
[  396.785606] FIX filp: Object at 0x00000000b4d239ce not freed
[  396.825420] =============================================================================
[  396.827141] BUG names_cache (Tainted: G    B   W        ): Redzone overwritten
[  396.828584] -----------------------------------------------------------------------------
[  396.828584]
[  396.830460] INFO: 0x00000000b190d672-0x0000000031f6e655. First byte 0x0 instead of 0xcc
[  396.832035] INFO: Slab 0x0000000042919e77 objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  396.833960] INFO: Object 0x00000000156d3792 @offset=4608 fp=0x          (null)
[  396.833960]
[  396.835743] Redzone 00000000b190d672: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.837599] Redzone 00000000d1cc8460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.839512] Redzone 00000000eb6a037e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.841355] Redzone 0000000095307a78: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.843199] Object 00000000156d3792: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.845005] Object 00000000f4f37344: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.846809] Object 000000005193ea62: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.848684] Object 0000000059b3e9c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.850623] Object 00000000df012867: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.852435] Object 00000000596f1808: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.854233] Object 00000000cbe77e3b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.856033] Object 000000004e066d7f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.857830] Object 0000000085ad55b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.859654] Object 000000003e516ea9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.861532] Object 000000006d062941: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.863335] Object 0000000022de6ca5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.865151] Object 000000002ff11b39: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.866973] Object 000000000e9611ec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.868812] Object 000000007a1d5f7f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.870657] Object 00000000c96faa14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.872512] Object 00000000812481f1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.874322] Object 00000000c560dc22: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.876139] Object 00000000e0c8ffde: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.877979] Object 00000000e4cbc635: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.879848] Object 000000006082f3cd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.881657] Object 00000000bb795eff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.883473] Object 000000006dfbf5d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.885323] Object 000000006a8ae1c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.887106] Object 00000000da24c9b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.888940] Object 0000000095c9734e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.890812] Object 000000005ee82f3d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.892649] Object 000000004cf1abeb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.894392] Object 00000000ff9b4a37: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.896192] Object 00000000a606d857: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.898007] Object 000000009d506b19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.899955] Object 0000000012819430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.901787] Object 00000000388e1164: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.903598] Object 0000000086d2ad60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.905399] Object 000000008bdf68fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.907234] Object 000000005fdfe2ef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.909113] Object 00000000470635a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.910908] Object 00000000de26615e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.912705] Object 00000000b8873697: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.914528] Object 00000000d39d1702: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.916343] Object 00000000757c41ae: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.918187] Object 000000004359e4e5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.920023] Object 000000003bcd8296: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.921812] Object 00000000fb0e5c74: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.923634] Object 00000000f43611fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.925496] Object 00000000ab8ae5e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.927271] Object 0000000031ecea6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.929107] Object 0000000082fadd1d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.930909] Object 000000004ec93c39: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.932739] Object 0000000029dbc848: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.934564] Object 00000000527c41d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.936397] Object 0000000025f20f1b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.938189] Object 00000000e02bce6c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.940026] Object 000000008ea97cb1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.941817] Object 0000000006c95a34: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.943612] Object 00000000f74bd65d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.945409] Object 00000000af25602e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.947244] Object 00000000a502f1b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.949098] Object 00000000f1dad65d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.950894] Object 00000000558aeec1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.952687] Object 000000008e974797: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.954496] Object 000000006a42e4e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.956257] Object 000000008a65d5d5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.958016] Object 00000000408d66b4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.959839] Object 000000007c2eca82: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.961627] Object 00000000a66671f3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.963409] Object 0000000085d19977: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.965172] Object 000000003cc15ffc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.966963] Object 0000000037a152eb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.968761] Object 00000000b7915ea1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.970554] Object 000000001d36f5ba: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.972354] Object 00000000eab6ccb9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.974147] Object 00000000dad05f67: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.975957] Object 000000007589ffc3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.977760] Object 00000000deed17d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.979614] Object 00000000e82d8d6f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.981405] Object 00000000c85f7b02: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.983287] Object 00000000e8e1759b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.985097] Object 0000000021405db8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.986884] Object 0000000060f10253: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.988710] Object 00000000facb6896: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.990505] Object 00000000f711108d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.992303] Object 00000000a4f2636a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.994101] Object 000000007051627b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.995908] Object 00000000459a9e2f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.997734] Object 00000000c87bca82: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  396.999563] Object 0000000022d96d2f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.001402] Object 00000000bfac1b7d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.003253] Object 00000000a030b0a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.005072] Object 000000003ea439d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.006859] Object 000000001bc42b1a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.008734] Object 00000000c85d17f1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.010554] Object 00000000b5de822f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.012375] Object 00000000090830a4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.014190] Object 00000000786f220a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.015987] Object 000000009b84004f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.017820] Object 000000001aa0cbc7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.019656] Object 00000000516cccd5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.021456] Object 00000000f38d07c8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.023248] Object 00000000ba3db05d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.025065] Object 0000000001fe9e0c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.026843] Object 00000000f1645312: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.028726] Object 00000000109f0bb9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.030539] Object 000000007bb8ed72: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.032405] Object 0000000099407804: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.034225] Object 00000000c4e74e03: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.036015] Object 0000000076d3f403: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.037819] Object 0000000085ea2873: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.039640] Object 000000002850e43d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.041463] Object 000000007ae8d893: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.043265] Object 00000000bab7ffc3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.045081] Object 0000000007fec4c9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.046918] Object 000000000b820172: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.048793] Object 000000003166ccda: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.050640] Object 0000000020a73f58: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.052436] Object 0000000063cd7a97: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.054227] Object 00000000f8e5582d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.056040] Object 0000000036d1a9f9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.057833] Object 000000003470de72: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.059660] Object 00000000f014e1ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.061429] Object 0000000039c5d77f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.063233] Object 000000007e5cc884: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.065023] Object 00000000986a7cf0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.066799] Object 000000009df7ff39: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.068623] Object 000000008998e088: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.070405] Object 000000009a932be9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.072225] Object 000000004a2bc440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.073999] Object 00000000aef1c21e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.075841] Object 000000003eb08275: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.077712] Object 00000000bb7d66fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.079563] Object 000000001d83aa75: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.081411] Object 00000000ecd3d4e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.083206] Object 00000000a18c9323: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.085003] Object 00000000c99b70aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.086817] Object 00000000dbbb52d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.088634] Object 000000009a36c1d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.090445] Object 00000000d447f54e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.092232] Object 00000000d9abf857: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.094027] Object 0000000073dbf96c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.095845] Object 0000000039a0259f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.097699] Object 00000000c3aa741b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.099570] Object 00000000a13d9278: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.101406] Object 000000002b93624e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.103213] Object 000000003fd38ab1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.105040] Object 00000000e745369e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.106895] Object 000000001f829d80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.108717] Object 0000000078539428: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.110513] Object 0000000034d6b7c8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.112312] Object 00000000fae3abb4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.114120] Object 00000000d0be981c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.115957] Object 00000000cf688691: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.117801] Object 000000005c8f0806: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.119656] Object 0000000045687b08: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.121460] Object 0000000009f09b45: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.123246] Object 00000000297a47fc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.125045] Object 00000000882d592b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.126852] Object 00000000d92b9927: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.128722] Object 000000002394e0b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.130556] Object 000000006471d7c5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.132421] Object 00000000e9c6c3fb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.134293] Object 00000000524555a3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.136093] Object 0000000063aa9579: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.137904] Object 000000009de68ead: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.139727] Object 000000005ce613f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.141520] Object 00000000463e5315: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.143320] Object 000000005189fc9d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.145116] Object 00000000e3c84bc1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.146986] Object 000000007bfc65aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.148869] Object 00000000e987f1a2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.150734] Object 000000008025f011: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.152512] Object 000000006e55c927: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.154316] Object 00000000fcae407d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.156084] Object 00000000d5adeb98: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.157888] Object 00000000c2c35774: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.159725] Object 0000000057aa42ac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.161529] Object 000000004f5d6310: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.163334] Object 00000000702c577e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.165159] Object 00000000cc1b51b7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.166945] Object 00000000510dc525: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.168738] Object 0000000002eb0dd2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.170507] Object 000000005b8c60ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.172262] Object 0000000063c23ebe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.174030] Object 0000000015f3c6ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.175828] Object 00000000d41b2732: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.177617] Object 000000003a087584: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.179469] Object 0000000021762f98: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.181300] Object 000000008a595576: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.183226] Object 00000000be2c816a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.185042] Object 00000000c4ddef38: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.186828] Object 000000002c8d4575: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.188611] Object 00000000d1f6674e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.190372] Object 00000000f7334ccf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.192163] Object 00000000655f36ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.193940] Object 00000000fe2d2a7f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.195697] Object 000000008478270a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.197471] Object 00000000ad2950ba: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.199302] Object 00000000016117fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.201145] Object 00000000c75af3f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.202936] Object 00000000b90d4f36: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.204754] Object 0000000039a49a0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.206554] Object 00000000cdf8bd2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.208361] Object 00000000e0c75615: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.210283] Object 0000000093fe66e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.212090] Object 0000000087ce3fda: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.213937] Object 00000000763f2d2e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.215756] Object 000000001e87f42f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.217611] Object 000000008479b450: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.219474] Object 00000000edc9edaa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.221278] Object 00000000ceb7a006: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.223083] Object 00000000619f1d7a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.224893] Object 00000000ae200479: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.226697] Object 0000000035d1c114: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.228553] Object 00000000378b34c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.230388] Object 0000000071ce54e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.232200] Object 00000000f7e9a892: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.234016] Object 00000000182e252d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.235909] Object 00000000d225987b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.237718] Object 000000003b1a7324: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.239514] Object 00000000b78f5ecb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.241309] Object 000000001647916c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.243097] Object 00000000991e0af9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.244910] Object 00000000d79e2259: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.246703] Object 00000000a886e37b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.248514] Object 00000000736fcdcd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.250325] Object 00000000ca24a446: 0c 80 00 00 0c 80 01 00 0c 80 02 00 0c 80 03 00  ................
[  397.252106] Object 00000000d06f5548: 0c 80 04 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.253904] Object 00000000b29bc733: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.255686] Object 00000000fd739586: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.257457] Object 00000000b267f244: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.259274] Object 0000000019e78cae: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.261071] Object 0000000004a76e7e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.262867] Object 00000000a9156c75: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.264639] Object 000000005bbceabe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.266409] Object 0000000029047b02: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.269587] Object 000000006dc28dcf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.271384] Object 0000000092996697: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.273160] Object 000000001f9f212c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.274948] Object 000000005a12035f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.276709] Object 00000000955a276a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.278587] Object 000000006a0b9092: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.280411] Object 00000000d1ce50a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.282220] Object 0000000093931145: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.284029] Object 000000000b243c6c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.285838] Object 00000000cff445cd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.287615] Object 0000000003d3d8d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.289419] Object 00000000c5e4a594: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.291220] Object 00000000d812a554: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.292992] Object 00000000ea4342d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.294827] Object 000000003acde0ea: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.296730] Object 00000000ab393338: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.298561] Object 000000005cd26a94: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.300381] Object 0000000099853cc1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.302202] Object 0000000093dd6668: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.303985] Object 00000000eb4e0fec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.305803] Object 000000001f042ecc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.307565] Object 00000000276a538e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.309400] Redzone 00000000efb7647c: 00 00 00 00 00 00 00 00                          ........
[  397.311068] Padding 0000000034694dab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.312886] Padding 0000000067eebb9d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.314721] Padding 00000000244a860a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.316555] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  397.318233] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  397.320424] Call Trace:
[  397.320927]  dump_stack+0x1d8/0x2c6
[  397.321650]  ? dump_stack_print_info.cold.1+0x20/0x20
[  397.322644]  ? print_section+0x41/0x50
[  397.323386]  print_trailer+0x172/0x17b
[  397.324136]  check_bytes_and_report.cold.86+0x40/0x70
[  397.325188]  check_object+0x16c/0x290
[  397.325973]  free_debug_processing+0x16d/0x2f0
[  397.326858]  ? qlist_free_all+0x36/0xc0
[  397.327622]  ? qlist_free_all+0x36/0xc0
[  397.328424]  __slab_free+0x295/0x530
[  397.329148]  ? trace_hardirqs_on+0xbd/0x2f0
[  397.329977]  ? kasan_check_read+0x11/0x20
[  397.330788]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  397.331871]  ? qlist_free_all+0x36/0xc0
[  397.332635]  ___cache_free+0xbd/0xd0
[  397.333367]  ? qlist_free_all+0x36/0xc0
[  397.334136]  qlist_free_all+0x4b/0xc0
[  397.334876]  ? prepare_creds+0xab/0x4d0
[  397.335665]  quarantine_reduce+0x178/0x1b0
[  397.336474]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  397.337445]  ? prepare_creds+0xab/0x4d0
[  397.338201]  kasan_slab_alloc+0x11/0x20
[  397.338976]  kmem_cache_alloc+0x101/0x350
[  397.339779]  prepare_creds+0xab/0x4d0
[  397.340504]  ? __task_pid_nr_ns+0x303/0x640
[  397.341322]  ? abort_creds+0x2a0/0x2a0
[  397.342072]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  397.343135]  ? lock_release+0x9e0/0x9e0
[  397.343911]  ? trace_hardirqs_off+0xb8/0x2f0
[  397.344765]  ? do_syscall_64+0x6b8/0x810
[  397.345557]  do_faccessat+0xa2/0x820
[  397.346278]  ? __ia32_sys_fallocate+0xf0/0xf0
[  397.347148]  __x64_sys_access+0x59/0x80
[  397.347918]  do_syscall_64+0x1b3/0x810
[  397.348695]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  397.349746]  ? syscall_return_slowpath+0x5e0/0x5e0
[  397.350691]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  397.351621]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  397.352613]  ? prepare_exit_to_usermode+0x291/0x3b0
[  397.353575]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  397.354505]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  397.355502] RIP: 0033:0x7f9485451787
[  397.356204] Code: 83 c4 08 48 3d 01 f0 ff ff 73 01 c3 48 8b 0d 08 d7 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 b8 15 00 8
[  397.359850] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000246 ORIG_RAX: 0000000000000015
[  397.361333] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451787
[  397.362725] RDX: 00007f9485ec23e0 RSI: 0000000000000000 RDI: 0000560ec4a1b8a1
[  397.364158] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  397.365615] R10: 0000000000000080 R11: 0000000000000246 R12: 0000000000000000
[  397.367047] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  397.368498] FIX names_cache: Restoring 0x00000000b190d672-0x0000000031f6e655=0xcc
[  397.368498]
[  397.370403] FIX names_cache: Object at 0x00000000156d3792 not freed
[  397.447269] =============================================================================
[  397.449033] BUG filp (Tainted: G    B   W        ): Redzone overwritten
[  397.450380] -----------------------------------------------------------------------------
[  397.450380]
[  397.452266] INFO: 0x00000000c1695d4a-0x00000000e89ee24e. First byte 0x0 instead of 0xcc
[  397.453813] INFO: Slab 0x000000006e66199a objects=18 used=18 fp=0x          (null) flags=0x1fffc0000010201
[  397.455708] INFO: Object 0x0000000032a4e647 @offset=7232 fp=0x          (null)
[  397.455708]
[  397.457378] Redzone 00000000c1695d4a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.459212] Redzone 00000000315fe5dd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.461092] Redzone 0000000034d662e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.462946] Redzone 00000000140f89e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.464775] Object 0000000032a4e647: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.466601] Object 00000000d5c08b8d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.468445] Object 000000006ca289f6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.470223] Object 00000000386c847e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.472056] Object 00000000d92152a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.473835] Object 00000000a7810ac4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.475624] Object 000000008747b1ac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.477430] Object 00000000251df08d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.479258] Object 000000003e263a7c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.481049] Object 0000000078904985: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.482919] Object 00000000c1ef61c5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.484742] Object 00000000f0a11f4d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.486549] Object 0000000087bb9815: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.488392] Object 00000000d4fb27cb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.490205] Object 000000008774de01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.492004] Object 000000008ed23f1d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.493814] Object 00000000ef85cae3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.495630] Object 000000001af19bf9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.497440] Object 00000000543ce05b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.499307] Object 00000000e6336188: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.501209] Object 00000000e530a45e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.503062] Object 000000007b663915: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.504829] Object 00000000ffbce30e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.506600] Object 00000000ce9d9c49: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.508392] Object 0000000080946c63: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.510162] Object 000000002764b426: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.511971] Object 0000000002ffbe5a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.513783] Object 0000000037d7a7a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.515611] Object 00000000a7de2d30: 00 00 00 00 00 00 00 00                          ........
[  397.517301] Redzone 000000006e6e1f8e: 00 00 00 00 00 00 00 00                          ........
[  397.519016] Padding 000000004bbb343c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.520841] Padding 00000000644fbb4c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.522681] Padding 00000000bab1f8d5: 00 00 00 00 00 00 00 00                          ........
[  397.524371] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  397.526025] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  397.528213] Call Trace:
[  397.528746]  dump_stack+0x1d8/0x2c6
[  397.529459]  ? dump_stack_print_info.cold.1+0x20/0x20
[  397.530464]  ? print_section+0x41/0x50
[  397.531219]  print_trailer+0x172/0x17b
[  397.531969]  check_bytes_and_report.cold.86+0x40/0x70
[  397.532989]  check_object+0x16c/0x290
[  397.533730]  free_debug_processing+0x16d/0x2f0
[  397.534635]  ? qlist_free_all+0x36/0xc0
[  397.535397]  ? qlist_free_all+0x36/0xc0
[  397.536146]  __slab_free+0x295/0x530
[  397.536871]  ? trace_hardirqs_on+0xbd/0x2f0
[  397.537707]  ? kasan_check_read+0x11/0x20
[  397.538523]  ? quarantine_reduce+0x16e/0x1b0
[  397.539365]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  397.540413]  ? qlist_free_all+0x36/0xc0
[  397.541165]  ___cache_free+0xbd/0xd0
[  397.541879]  ? qlist_free_all+0x36/0xc0
[  397.542647]  qlist_free_all+0x4b/0xc0
[  397.543389]  ? getname_flags+0xd0/0x5a0
[  397.544188]  quarantine_reduce+0x178/0x1b0
[  397.545018]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  397.545993]  ? getname_flags+0xd0/0x5a0
[  397.546771]  kasan_slab_alloc+0x11/0x20
[  397.547571]  kmem_cache_alloc+0x101/0x350
[  397.548392]  getname_flags+0xd0/0x5a0
[  397.549136]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  397.550219]  getname+0x19/0x20
[  397.550854]  do_sys_open+0x3a2/0x7a0
[  397.551570]  ? filp_open+0x80/0x80
[  397.552277]  __x64_sys_open+0x7e/0xc0
[  397.553018]  do_syscall_64+0x1b3/0x810
[  397.553774]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  397.554827]  ? syscall_return_slowpath+0x5e0/0x5e0
[  397.555800]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  397.556746]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  397.557720]  ? prepare_exit_to_usermode+0x291/0x3b0
[  397.558732]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  397.559678]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  397.560690] RIP: 0033:0x7f948572583d
[  397.561422] Code: bb 20 00 00 75 10 b8 02 00 00 00 0f 05 48 3d 01 f0 ff ff 73 31 c3 48 83 ec 08 e8 1e f6 ff ff 48 89 04 24 b8 02 00 1
[  397.565137] RSP: 002b:00007ffe8b64cef0 EFLAGS: 00000293 ORIG_RAX: 0000000000000002
[  397.566630] RAX: ffffffffffffffda RBX: 00007ffe8b64d200 RCX: 00007f948572583d
[  397.568020] RDX: 00000000000001a0 RSI: 0000000000080042 RDI: 0000560ec575ca10
[  397.569417] RBP: 000000000000000d R08: 000000000000ffc0 R09: 00000000ffffffff
[  397.570774] R10: 0000000000000000 R11: 0000000000000293 R12: 00000000ffffffff
[  397.572141] R13: 0000560ec574f040 R14: 00007ffe8b64d1c0 R15: 0000560ec575d930
[  397.573511] FIX filp: Restoring 0x00000000c1695d4a-0x00000000e89ee24e=0xcc
[  397.573511]
[  397.575247] FIX filp: Object at 0x0000000032a4e647 not freed
[  397.589458] =============================================================================
[  397.591132] BUG kmalloc-4k (Tainted: G    B   W        ): Padding overwritten. 0x00000000e9f0d8be-0x000000008740b5d6
[  397.593206] -----------------------------------------------------------------------------
[  397.593206]
[  397.595144] INFO: Slab 0x00000000b21ec66a objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  397.597003] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  397.598692] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  397.600913] Call Trace:
[  397.601425]  dump_stack+0x1d8/0x2c6
[  397.602129]  ? dump_stack_print_info.cold.1+0x20/0x20
[  397.603127]  slab_err+0xab/0xcf
[  397.603770]  ? __asan_report_load1_noabort+0x14/0x20
[  397.604733]  ? memchr_inv+0x2c1/0x330
[  397.605445]  ? trace_hardirqs_on+0x2f0/0x2f0
[  397.606270]  slab_pad_check.part.50.cold.87+0x27/0x81
[  397.607247]  ? qlist_free_all+0x36/0xc0
[  397.607989]  check_slab+0xb0/0xf0
[  397.608693]  free_debug_processing+0x1ef/0x2f0
[  397.609559]  ? qlist_free_all+0x36/0xc0
[  397.610322]  ? qlist_free_all+0x36/0xc0
[  397.611098]  __slab_free+0x295/0x530
[  397.611831]  ? trace_hardirqs_on+0xbd/0x2f0
[  397.612686]  ? kasan_check_read+0x11/0x20
[  397.613498]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  397.614593]  ? qlist_free_all+0x36/0xc0
[  397.615377]  ___cache_free+0xbd/0xd0
[  397.616116]  ? qlist_free_all+0x36/0xc0
[  397.616884]  qlist_free_all+0x4b/0xc0
[  397.617626]  ? getname_flags+0xd0/0x5a0
[  397.618450]  quarantine_reduce+0x178/0x1b0
[  397.619270]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  397.620238]  ? getname_flags+0xd0/0x5a0
[  397.621004]  kasan_slab_alloc+0x11/0x20
[  397.621765]  kmem_cache_alloc+0x101/0x350
[  397.622587]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  397.623622]  getname_flags+0xd0/0x5a0
[  397.624358]  do_mkdirat+0xc5/0x310
[  397.625042]  ? __ia32_sys_mknod+0xb0/0xb0
[  397.625866]  __x64_sys_mkdir+0x5c/0x80
[  397.626629]  do_syscall_64+0x1b3/0x810
[  397.627382]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  397.628464]  ? syscall_return_slowpath+0x5e0/0x5e0
[  397.629490]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  397.630463]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  397.631453]  ? prepare_exit_to_usermode+0x291/0x3b0
[  397.632451]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  397.633403]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  397.634441] RIP: 0033:0x7f9485451447
[  397.635168] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 0
[  397.638778] RSP: 002b:00007ffe8b64d0f8 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  397.640230] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  397.641598] RDX: 0000000000000000 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  397.642963] RBP: 00007ffe8b64d130 R08: 0000560ec4a11355 R09: 0000000000000018
[  397.644391] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
[  397.645803] R13: 0000000000000001 R14: 0000560ec57528b0 R15: 0000000000000009
[  397.648444] Padding 00000000e9f0d8be: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.652424] Padding 000000000613eb84: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.656410] Padding 0000000059dec5c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.660635] Padding 00000000f6334189: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.665206] Padding 000000005514f820: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.669747] Padding 00000000f8437e24: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.674088] Padding 0000000085c364ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.678486] Padding 00000000c3d92c3f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.680469] Padding 000000000ba0fa84: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.682466] Padding 00000000fcafa498: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.684630] Padding 00000000f0bbbcb8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.686700] Padding 00000000eea36459: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.688591] Padding 00000000331a5412: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.690563] Padding 000000003541d1cb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.692432] Padding 0000000042956d93: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.694489] Padding 0000000028d47932: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.696373] Padding 00000000aa7610fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.698232] Padding 000000007c3260f4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.700251] Padding 00000000bef9ab0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.702232] Padding 00000000219827af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.704167] Padding 000000004d2d1408: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.706099] Padding 0000000057be5376: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.708055] Padding 00000000224af2e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.710094] Padding 000000007dfc3001: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.712192] Padding 00000000d09d51ce: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.714317] Padding 000000007e399e48: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.716407] Padding 00000000d2f1fcea: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.718593] Padding 0000000036fed283: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.720441] Padding 0000000000208398: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.722540] Padding 000000001ef6bbff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.724640] Padding 000000003d728ef4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.726732] Padding 0000000047dcabb5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.728844] Padding 0000000090fdda0b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.730848] Padding 00000000d3ec2c0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.732892] Padding 00000000b8859ad6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.734745] Padding 000000009d485060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.736697] Padding 00000000b0b0fa35: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.738652] Padding 00000000ad280f5d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.740593] Padding 00000000587f22fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.742528] Padding 0000000039c95cb0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.744467] Padding 00000000f8579f3e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.746406] Padding 000000006671853c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.748455] Padding 0000000073aeaac9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.751907] Padding 00000000648593f3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.755906] Padding 00000000b09ed180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.759079] Padding 000000001e617052: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.760936] Padding 00000000767e4973: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.762887] Padding 00000000e74d90c2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.764779] Padding 00000000467bcea8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.766715] Padding 00000000a86b5694: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.768613] Padding 00000000f5321606: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.770439] Padding 0000000015ab65ae: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.772278] Padding 0000000042af4468: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.774108] Padding 0000000090cd6e8a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.775922] Padding 00000000f484fbdf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.777755] Padding 00000000d5f46f13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.779617] Padding 0000000092c1d277: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.781436] Padding 00000000e4d025af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.783352] Padding 00000000659929e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.785284] Padding 000000002ed3daa8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.787156] Padding 00000000645dd9a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.789128] Padding 00000000600a9de2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.791008] Padding 000000009aff21db: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.792836] Padding 00000000a9c3e468: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.794824] Padding 00000000ece13395: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.796687] Padding 000000005a1641eb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.798620] Padding 00000000ac037fc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.800499] Padding 00000000809e9e61: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.802373] Padding 00000000c4edec15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.804215] Padding 00000000aa8da5a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.806058] Padding 00000000d1fcc309: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.807897] Padding 000000004aa3f764: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.809746] Padding 0000000081e313e4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.811592] Padding 0000000067dcf50d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.813430] Padding 00000000d41a52bf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.815309] Padding 000000009ea7d5f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.817164] Padding 0000000070e2c6a5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.819016] Padding 00000000f3268147: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.820865] Padding 000000005c77d774: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.822713] Padding 00000000f6c6aee6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.824606] Padding 000000005f01fa8e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.826536] Padding 00000000c6c2c481: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.828520] Padding 00000000870bdd19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.830408] Padding 000000002a7465ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.832317] Padding 00000000f64ae83e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.834233] Padding 0000000037f7c773: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.836083] Padding 00000000e3f6fe22: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.837914] Padding 000000005890af63: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.839755] Padding 00000000f494810a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.841596] Padding 00000000c243b2f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.843437] Padding 0000000070d02ab3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.845279] Padding 000000002fa3a6e5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.847133] Padding 000000004ab47854: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.849004] Padding 000000007dc19555: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.850953] Padding 000000005eb6ffc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.852820] Padding 000000005481634c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.854681] Padding 00000000265f9208: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.856531] Padding 000000000c571daf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.858572] Padding 00000000e2ad8f1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.860471] Padding 0000000021b28c91: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.862356] Padding 00000000635402b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.864255] Padding 000000007d4c4f79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.866144] FIX kmalloc-4k: Restoring 0x00000000e9f0d8be-0x000000008740b5d6=0x5a
[  397.866144]
[  397.867954] =============================================================================
[  397.869631] BUG kmalloc-4k (Tainted: G    B   W        ): Redzone overwritten
[  397.871026] -----------------------------------------------------------------------------
[  397.871026]
[  397.872890] INFO: 0x0000000037da059c-0x00000000a9f6b43f. First byte 0x0 instead of 0xcc
[  397.874462] INFO: Slab 0x00000000b21ec66a objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  397.876563] INFO: Object 0x00000000df8c6b96 @offset=26696 fp=0x          (null)
[  397.876563]
[  397.878415] Redzone 0000000037da059c: 00 00 00 00 00 00 00 00                          ........
[  397.880208] Object 00000000df8c6b96: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.882074] Object 00000000112f7ba2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.883949] Object 000000004a2a87fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.885817] Object 00000000212e8376: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.887711] Object 00000000ccccbedf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.889574] Object 000000004b794372: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.891410] Object 000000000ce7b9ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.893235] Object 000000001f442e0e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.895025] Object 000000003f66de6f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.896845] Object 0000000080e1376a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.898722] Object 00000000cc57a10f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.900618] Object 000000005f2650a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.902479] Object 0000000073619f4c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.904292] Object 00000000625d4833: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.906151] Object 000000001f524fec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.908002] Object 000000009896f648: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.909872] Object 0000000023078bfa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.911689] Object 0000000037deab1f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.913552] Object 00000000270a5b9c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.915419] Object 00000000ed56152c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.917327] Object 00000000f8f544d7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.919237] Object 00000000033a0b97: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.921054] Object 00000000bf0d3930: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.922837] Object 0000000015cfaaab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.924802] Object 00000000a86a629e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.926659] Object 00000000af1300f8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.928544] Object 0000000076c84909: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.930405] Object 0000000068cdee25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.932306] Object 00000000e134a69f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.934125] Object 0000000077996992: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.935987] Object 00000000ce503cbe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.937795] Object 00000000005e9e36: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.939653] Object 00000000c69a11c1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.941605] Object 0000000073a3210e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.943435] Object 0000000076a9847f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.945266] Object 00000000fe6297cc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.947151] Object 00000000d295ace3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.949059] Object 00000000083b3fec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.950901] Object 00000000848c1ab2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.952751] Object 00000000d25b5a2f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.954603] Object 000000006c0eb89f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.956460] Object 00000000a9182cfb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.958375] Object 000000002b0ff9c1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.960226] Object 00000000efabcbe1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.962079] Object 0000000003cac216: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.964053] Object 000000005940f95e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.965958] Object 000000003dfbe34f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.967841] Object 00000000bb5848e2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.969695] Object 000000006b7cedf5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.971510] Object 0000000026a398e6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.973341] Object 00000000a5b179ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.975201] Object 000000005e3e5a21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.977032] Object 000000001c1d6db9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.978905] Object 0000000089dee078: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.980744] Object 00000000e9691a8c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.982624] Object 00000000834c838a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.984519] Object 000000009276c327: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.986342] Object 00000000dfbb4154: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.988327] Object 0000000011264555: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.990150] Object 00000000b21c9e1d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.991981] Object 00000000ef3b7902: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.993814] Object 00000000edcd8ddf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.995642] Object 00000000930a0339: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.997522] Object 000000005bb35172: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  397.999403] Object 0000000084efc673: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.001288] Object 00000000023769d3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.003109] Object 00000000579c68fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.005023] Object 00000000cb3bee27: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.006844] Object 000000002c992d57: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.008693] Object 00000000748593b2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.010533] Object 0000000032c961e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.012355] Object 00000000fe568633: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.014201] Object 00000000159c6325: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.016080] Object 00000000488252df: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.017931] Object 000000000f68764f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.019895] Object 0000000004ed4a52: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.021721] Object 000000000bd1ac04: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.023546] Object 00000000f654ba6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.025378] Object 00000000b03114a3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.027201] Object 0000000049bc5aff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.029046] Object 00000000e3f1a39f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.030895] Object 000000003a0f8787: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.032755] Object 0000000060a836d1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.034611] Object 00000000af40a103: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.036516] Object 0000000024f423cc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.038373] Object 00000000c02e2915: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.040209] Object 00000000814f6ee7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.042037] Object 000000001a2b8c05: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.043850] Object 000000004f012865: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.045685] Object 000000001e77220b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.047535] Object 00000000a1e3dcfb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.049436] Object 00000000fd7ed859: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.051283] Object 0000000069731ba5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.053138] Object 00000000be6b313c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.055002] Object 000000005920ec37: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.056843] Object 00000000a78c9424: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.058713] Object 00000000bd1418b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.060557] Object 000000001b66dfa3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.062387] Object 000000001f67079a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.064246] Object 00000000ded8dfb6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.066177] Object 00000000477a98a3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.068044] Object 000000004fc7663e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.069983] Object 0000000026637de7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.071706] Object 000000009c1cb791: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.073454] Object 00000000f58b896a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.075245] Object 0000000071b7bc15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.077020] Object 00000000e70cd061: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.078851] Object 0000000074b91506: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.080677] Object 000000008cfdd3d4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.082543] Object 00000000f84915a9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.084396] Object 00000000cde95d05: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.086242] Object 0000000074bf7228: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.088115] Object 000000002dc7f2b4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.090028] Object 00000000d31cc87c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.091839] Object 00000000de0f4c53: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.093642] Object 0000000090b62461: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.095468] Object 000000001f28b19e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.097307] Object 00000000afb84399: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.099202] Object 000000001a3012a3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.101065] Object 00000000d6545e21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.102941] Object 00000000b61b3c2f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.104783] Object 000000000099c73d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.106642] Object 00000000eac30309: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.108509] Object 00000000cb673cd8: 00 00 00 00 00 00 00 00 09 80 00 00 09 80 01 00  ................
[  398.110303] Object 00000000ba407ded: 09 80 02 00 09 80 03 00 09 80 04 00 00 00 00 00  ................
[  398.112133] Object 0000000052ad9b37: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.113965] Object 00000000801889bd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.115837] Object 00000000d1ba4c00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.117705] Object 0000000032325fc5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.119628] Object 00000000c02e16ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.121438] Object 00000000193994cf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.123245] Object 00000000aed3f85c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.125050] Object 000000002676b0f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.126922] Object 0000000033d7b639: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.128771] Object 0000000096305a32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.130567] Object 00000000a40c2968: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.132406] Object 00000000e35605e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.134279] Object 0000000035bcb6c3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.136130] Object 0000000058a00aef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.137962] Object 00000000fac38a23: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.139869] Object 00000000edf7b3b1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.141690] Object 00000000d672a6e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.143662] Object 00000000cc8ce161: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.145552] Object 000000004650595e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.147477] Object 000000001d3590d7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.149388] Object 000000001070b485: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.151315] Object 00000000e730e7c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.153146] Object 00000000ec5e5fe2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.154989] Object 000000006e3d5f56: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.156797] Object 00000000c333c1e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.158641] Object 00000000144bc9de: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.160481] Object 000000002313ae89: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.162419] Object 00000000b380c864: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.164293] Object 00000000a1058707: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.166190] Object 000000006039003c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.168069] Object 00000000716d3616: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.169941] Object 00000000bb5a1ac0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.171808] Object 0000000075d140d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.173681] Object 00000000fa2ff27f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.175499] Object 0000000048ce1101: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.177320] Object 00000000637b9586: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.179192] Object 0000000021e6e493: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.181112] Object 00000000ed49881f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.182994] Object 000000000351c133: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.184880] Object 0000000013c5c209: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.186710] Object 000000007fa24ba9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.188726] Object 000000001354f295: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.190576] Object 0000000002a26504: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.192426] Object 0000000056879e10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.194266] Object 00000000793271b9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.196166] Object 0000000021838129: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.198042] Object 000000002b0ef0e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.199949] Object 00000000d0417351: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.201869] Object 0000000056e61e79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.203693] Object 0000000002cbfaf1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.205527] Object 00000000e95f7b4e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.207334] Object 00000000c36681d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.209194] Object 000000008a5430f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.211034] Object 000000004cef6b1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.212875] Object 00000000a586e1ce: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.214713] Object 0000000018f81f5a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.216544] Object 0000000066d9b87f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.218395] Object 00000000c552c2c7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.220266] Object 0000000033e3be64: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.222107] Object 00000000b2aa271b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.223971] Object 00000000930e96ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.225825] Object 000000000bb075c7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.227700] Object 00000000c3ecd5f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.229581] Object 0000000099cf3176: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.231443] Object 000000002d500a1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.233304] Object 00000000ccf19b59: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.235143] Object 00000000a58a5350: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.236962] Object 000000001d83ffcd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.238880] Object 000000009572682e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.240760] Object 000000003705794a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.242564] Object 00000000999ab5f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.244370] Object 00000000eaf3bde2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.246257] Object 0000000032e393ef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.248117] Object 000000008f8038ad: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.250036] Object 0000000012807f2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.251990] Object 000000009d680903: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.253801] Object 0000000094fca1dc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.255614] Object 000000009702716c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.257484] Object 00000000b205825c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.259416] Object 0000000036603b0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.261272] Object 000000000b3bf21f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.263129] Object 00000000c840eb57: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.264989] Object 00000000072844ac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.266868] Object 00000000f562fb99: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.268923] Object 00000000af69b454: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.270739] Object 00000000291d7fdc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.272546] Object 00000000a57eb627: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.274412] Object 00000000293fc5d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.276231] Object 0000000032891b3d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.278044] Object 000000002c9443bb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.279944] Object 00000000298c83ec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.281824] Object 00000000f2a50a03: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.283678] Object 00000000fdd58928: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.285590] Object 00000000ab430afa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.287452] Object 000000006a3c1a2d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.289320] Object 000000002fd5210b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.291156] Object 000000008c959ded: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.292998] Object 000000008c16ddbe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.294822] Object 00000000f550c78e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.296622] Object 00000000d9a878e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.298475] Object 00000000426374e3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.300392] Object 000000007ee65b41: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.302254] Object 0000000081d0eb85: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.304126] Object 00000000d4b2defa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.305959] Object 00000000a3e03acd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.307771] Object 00000000b7b2152c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.309624] Object 000000009a960891: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.311436] Object 000000001b15bd81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.313297] Object 00000000a42ea102: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.315112] Object 00000000c7855dd2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.316997] Object 000000004a6f5e86: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.318859] Object 0000000031feefa7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.320671] Object 000000009a269e76: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.322487] Object 0000000081a631d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.324446] Object 0000000078dfa47b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.326334] Object 000000009007e479: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.328249] Object 000000008d28fd8f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.331372] Object 000000000ea17ef7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.335942] Object 00000000d50ecb6c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.340269] Object 00000000b09cee1a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.344552] Object 00000000f469f23c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.349029] Object 0000000089a2316b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.353461] Object 00000000e8e79158: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.357738] Object 000000004848dc6d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.361762] Object 000000003c73ec6c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.365638] Object 000000009d3f506a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.368989] Object 00000000af168022: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.370738] Object 00000000eae730b6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.372460] Object 000000009dcbc53e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.374225] Object 000000005d7a72a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.375962] Object 00000000916972c8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.377594] Redzone 000000005764e4c5: 00 00 00 00 00 00 00 00                          ........
[  398.379240] Padding 0000000033d42424: 00 00 00 00 00 00 00 00                          ........
[  398.380826] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  398.382423] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  398.384603] Call Trace:
[  398.385156]  dump_stack+0x1d8/0x2c6
[  398.385860]  ? dump_stack_print_info.cold.1+0x20/0x20
[  398.386862]  ? print_section+0x41/0x50
[  398.387622]  print_trailer+0x172/0x17b
[  398.388403]  check_bytes_and_report.cold.86+0x40/0x70
[  398.389398]  check_object+0x16c/0x290
[  398.390135]  free_debug_processing+0x16d/0x2f0
[  398.391046]  ? qlist_free_all+0x36/0xc0
[  398.391875]  ? qlist_free_all+0x36/0xc0
[  398.392653]  __slab_free+0x295/0x530
[  398.393396]  ? trace_hardirqs_on+0xbd/0x2f0
[  398.394243]  ? kasan_check_read+0x11/0x20
[  398.395050]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  398.396130]  ? qlist_free_all+0x36/0xc0
[  398.396910]  ___cache_free+0xbd/0xd0
[  398.397641]  ? qlist_free_all+0x36/0xc0
[  398.398454]  qlist_free_all+0x4b/0xc0
[  398.399207]  ? getname_flags+0xd0/0x5a0
[  398.399993]  quarantine_reduce+0x178/0x1b0
[  398.400821]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  398.401768]  ? getname_flags+0xd0/0x5a0
[  398.402557]  kasan_slab_alloc+0x11/0x20
[  398.403349]  kmem_cache_alloc+0x101/0x350
[  398.404138]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  398.405210]  getname_flags+0xd0/0x5a0
[  398.405943]  do_mkdirat+0xc5/0x310
[  398.406634]  ? __ia32_sys_mknod+0xb0/0xb0
[  398.407428]  __x64_sys_mkdir+0x5c/0x80
[  398.408173]  do_syscall_64+0x1b3/0x810
[  398.408947]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  398.409984]  ? syscall_return_slowpath+0x5e0/0x5e0
[  398.410926]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  398.411845]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  398.412803]  ? prepare_exit_to_usermode+0x291/0x3b0
[  398.413787]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  398.414810]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  398.415822] RIP: 0033:0x7f9485451447
[  398.416571] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 8
[  398.420213] RSP: 002b:00007ffe8b64d0f8 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  398.421688] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  398.423084] RDX: 0000000000000000 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  398.424491] RBP: 00007ffe8b64d130 R08: 0000560ec4a11355 R09: 0000000000000018
[  398.425912] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
[  398.427407] R13: 0000000000000001 R14: 0000560ec57528b0 R15: 0000000000000009
[  398.428901] FIX kmalloc-4k: Restoring 0x0000000037da059c-0x00000000a9f6b43f=0xcc
[  398.428901]
[  398.430795] FIX kmalloc-4k: Object at 0x00000000df8c6b96 not freed
[  398.453908] =============================================================================
[  398.455661] BUG kmalloc-4k (Tainted: G    B   W        ): Redzone overwritten
[  398.457063] -----------------------------------------------------------------------------
[  398.457063]
[  398.459024] INFO: 0x000000003c147a31-0x000000007ac72f29. First byte 0x0 instead of 0xcc
[  398.460596] INFO: Slab 0x00000000b21ec66a objects=7 used=7 fp=0x          (null) flags=0x1fffc0000010201
[  398.462595] INFO: Object 0x0000000075c72df2 @offset=4456 fp=0x          (null)
[  398.462595]
[  398.464354] Redzone 000000003c147a31: 00 00 00 00 00 00 00 00                          ........
[  398.466055] Object 0000000075c72df2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.467932] Object 000000009978c054: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.469767] Object 00000000e2f336ba: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.471559] Object 000000009c1e2cda: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.473350] Object 000000003f3dcf9a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.475153] Object 0000000093dae476: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.476950] Object 0000000086daaf68: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.478793] Object 0000000099dda919: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.480584] Object 00000000e89226e4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.482374] Object 00000000b58e84af: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.484238] Object 000000009bc98316: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.486043] Object 0000000019ca00bd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.487876] Object 000000006f4b6cff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.489742] Object 0000000023504920: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.491557] Object 0000000020771067: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.493377] Object 00000000f7859999: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.495208] Object 000000002841896a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.497053] Object 00000000957c2cc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.498908] Object 000000009fe7ecbb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.500794] Object 000000005f2030f4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.502689] Object 00000000667c1b79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.504483] Object 00000000570c7974: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.506303] Object 00000000d8b86f18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.508095] Object 000000006548d7c1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.509951] Object 000000003914a3c9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.511809] Object 000000005d41b7dc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.513678] Object 000000001644d92d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.515515] Object 00000000e7666040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.517377] Object 00000000e75ceb56: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.519238] Object 000000006446dcb6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.521055] Object 0000000008594d5f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.522912] Object 000000007d43cfbc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.524748] Object 00000000b4ca039b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.526547] Object 000000006c17565c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.528420] Object 000000003e78bc69: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.530254] Object 00000000b024fb05: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.532076] Object 00000000e7350295: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.533914] Object 0000000036adabeb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.535718] Object 0000000038bfd5d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.537537] Object 00000000434186d6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.539361] Object 000000001831cb40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.541147] Object 00000000d95520b5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.542937] Object 0000000052a0350d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.544729] Object 0000000081d04442: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.546523] Object 0000000034b113cb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.548348] Object 00000000e213d6a6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.550169] Object 00000000ca5973cb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.552002] Object 0000000094f00066: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.553827] Object 00000000bdc0f6eb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.555663] Object 00000000e29b5e77: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.557504] Object 0000000052cee7bd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.559328] Object 000000007bd3cf54: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.561130] Object 000000007fbd0b63: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.562981] Object 000000009d917c38: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.564857] Object 000000000d02acef: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.566776] Object 0000000033e240ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.568641] Object 00000000a56deca3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.570441] Object 00000000537ce97b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.572268] Object 00000000b19ca25c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.574080] Object 0000000071cbdc65: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.575915] Object 00000000e972cf2c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.577717] Object 00000000416fb414: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.579593] Object 00000000e554ed2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.581467] Object 0000000044440d84: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.583321] Object 000000003b7cd6e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.585206] Object 00000000fc6d9e2c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.587030] Object 000000000aea1d2b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.588859] Object 000000004cc9facf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.590690] Object 000000006349937c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.592514] Object 000000004a781e69: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.594345] Object 00000000908692ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.596163] Object 00000000b1bb933e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.598003] Object 00000000ffcd72d7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.599885] Object 00000000e4ea7a70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.601728] Object 0000000098dc3e34: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.603541] Object 000000007a4eaa71: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.605349] Object 000000000a58cb89: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.607148] Object 00000000b2af6a80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.608969] Object 00000000db0e9407: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.610767] Object 000000008e3a027a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.612563] Object 00000000cab02f40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.614403] Object 00000000f9ada158: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.616238] Object 0000000078564a53: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.618092] Object 000000006f45b8fe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.619948] Object 00000000866e9a07: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.621840] Object 00000000cb066dac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.623644] Object 00000000ba31da2f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.625525] Object 000000002009a07f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.627357] Object 00000000d05ae216: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.629233] Object 00000000df0bcfa2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.631055] Object 0000000096013d8e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.632883] Object 000000002909578d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.634738] Object 00000000615a32e1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.636570] Object 00000000233784a1: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.638395] Object 00000000d6f5c6fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.640213] Object 0000000002fd95e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.642021] Object 00000000b7e29e92: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.643814] Object 00000000d17c8836: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.645722] Object 00000000c5d2dd19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.647574] Object 00000000b92e9e0b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.649492] Object 00000000d3a0069b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.651345] Object 000000008fc71d6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.653215] Object 000000004b726415: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.655023] Object 0000000067f54430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.656836] Object 00000000f15a4f3d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.658717] Object 00000000d233336d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.660557] Object 00000000a76b735c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.662382] Object 000000003a437010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.664205] Object 000000005597901a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.666058] Object 00000000d66cbc81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.667936] Object 00000000c00919f4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.669765] Object 0000000008c0dacb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.671578] Object 000000009ba57614: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.673389] Object 00000000222eb667: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.675218] Object 000000009cfe5ef6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.677077] Object 000000004e943170: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.678947] Object 0000000085e3962c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.680780] Object 0000000024b92685: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.682677] Object 000000005b995f14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.684555] Object 0000000096cb48cd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.686372] Object 00000000ab5833f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.688192] Object 0000000060523213: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.690075] Object 00000000b47e4df9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.691897] Object 00000000d44ece83: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.693750] Object 0000000085793606: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.695645] Object 00000000687093fd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.697472] Object 0000000074f800a7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.699321] Object 00000000f357d501: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.701141] Object 0000000016efc2e4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.702988] Object 000000007570f8aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.704838] Object 0000000050ceba98: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.706659] Object 000000001744ec80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.708499] Object 00000000e944b17d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.710344] Object 00000000cb9bfa0f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.712222] Object 0000000081ff3b52: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.714071] Object 00000000f0d0c0de: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.715976] Object 000000007d3cf778: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.717805] Object 00000000d3e73b2b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.719661] Object 000000004ea8199c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.721475] Object 00000000fd2706ff: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.723355] Object 00000000847c3414: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.725189] Object 00000000f2a451c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.727045] Object 00000000f224c45e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.728963] Object 000000006f0047b2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.730819] Object 000000002cf70e84: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.732685] Object 00000000cf4f605c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.734539] Object 00000000f2a921ab: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.736367] Object 00000000f6407e84: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.738159] Object 00000000f35c2cc0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.740021] Object 0000000055b20958: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.741813] Object 00000000a3dfba98: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.743655] Object 00000000878f9b79: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.745471] Object 000000000fd38a37: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.747331] Object 0000000058a36b26: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.749176] Object 0000000089ef2a2d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.751006] Object 0000000068de19e7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.752847] Object 00000000dd5a2d81: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.754684] Object 0000000067f61f1d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.756536] Object 000000009c683382: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.758420] Object 000000009bfe6c5a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.760274] Object 000000001c369a16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.762135] Object 000000003c9d80a2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.764012] Object 00000000aa3193e8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.765848] Object 00000000bbc43635: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.767700] Object 00000000693d0b89: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.769543] Object 0000000032c272d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.771328] Object 00000000ce986d1c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.773162] Object 000000006484a2e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.774992] Object 0000000093c824aa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.776813] Object 000000009a904372: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.778654] Object 00000000364c551c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.780477] Object 00000000e2872fbc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.782359] Object 000000003a557925: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.784171] Object 00000000e9e1a2dc: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.785991] Object 00000000a21b30ec: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.787809] Object 000000003500d3d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.789654] Object 000000006b2ec185: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.791508] Object 00000000d22bbb35: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.793342] Object 000000008346847b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.795176] Object 00000000a3a4971b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.796996] Object 000000006c0b8954: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.798857] Object 0000000073ec4880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.800697] Object 00000000adaea01a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.802507] Object 0000000081200fd5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.804297] Object 000000003a5e4282: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.806102] Object 000000003d20ae09: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.807890] Object 00000000023cd2f2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.809737] Object 000000002bbb5281: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.811561] Object 00000000b1e4d680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.813392] Object 0000000021f5eb24: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.815228] Object 00000000aaa10e12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.817067] Object 00000000375b8723: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.818936] Object 00000000e3b670a8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.820751] Object 00000000074d96e9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.822528] Object 000000004477fdf5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.824327] Object 000000003606834d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.826143] Object 000000003b3711d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.827982] Object 00000000f29da0f7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.829840] Object 0000000000df0d50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.831643] Object 000000006c9e2725: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.833488] Object 000000008a72f05c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.835302] Object 000000005de5093f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.837099] Object 000000003fcc51be: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.838905] Object 00000000442d8256: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.840711] Object 0000000089a18cdf: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.842528] Object 00000000fdde9572: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.844310] Object 000000002752ecbe: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.846097] Object 000000004a0f3382: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.847890] Object 0000000032c4676c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.849733] Object 00000000ca077901: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.851512] Object 0000000036a1556e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.853306] Object 0000000052ad7934: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.855086] Object 000000003c8d6a6e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.856897] Object 00000000e06aee2d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.860243] Object 0000000022ad8e21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.862074] Object 000000005dc2e3d9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.863905] Object 0000000096c0179a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.865728] Object 00000000f50a0345: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.867557] Object 00000000664716bd: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.869415] Object 00000000f90f1e2a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.871218] Object 00000000ab7d5088: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.873021] Object 00000000c89b1ea5: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.874806] Object 00000000ca9569ca: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.876716] Object 000000007cae22b2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.878605] Object 000000004cea24b3: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.880446] Object 00000000e97ac321: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.882270] Object 00000000e2cc5110: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.884116] Object 00000000d994eb00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.885941] Object 00000000a3984613: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.887806] Object 00000000529f17ba: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.889641] Object 0000000075059ca6: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.891469] Object 00000000a0adaccb: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.893322] Object 000000005673bf85: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.895153] Object 00000000bcfa0ba1: 00 00 00 00 00 00 00 00 04 80 00 00 04 80 01 00  ................
[  398.897036] Object 000000005f0bb3f4: 04 80 02 00 04 80 03 00 04 80 04 00 00 00 00 00  ................
[  398.898906] Object 000000009ac11a25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.900769] Object 00000000084c0cc4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.902587] Object 000000002ff40cf7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.904418] Object 00000000ba5ab4d8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.906217] Object 00000000db760228: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.908028] Object 00000000cd2a095c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.909861] Object 0000000072de418b: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.911694] Object 000000007f962165: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.913542] Object 000000008e6965c4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.915393] Object 000000006c3bbaee: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.917253] Object 000000009dbefdac: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.919138] Object 00000000deecf23c: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.920960] Object 00000000384b9062: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.922879] Object 00000000a107fea9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.924711] Object 00000000e687b966: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.926541] Object 00000000e5c9113f: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.928416] Object 00000000ee387b72: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.930249] Object 00000000422bd76e: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.932115] Object 00000000cacdf541: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.933924] Object 0000000000be72fa: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.935754] Object 0000000062fa5e39: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  398.937555] Redzone 00000000edeec8d5: 00 00 00 00 00 00 00 00                          ........
[  398.939291] Padding 0000000085a38c41: 00 00 00 00 00 00 00 00                          ........
[  398.940979] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  398.942630] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  398.944839] Call Trace:
[  398.945344]  dump_stack+0x1d8/0x2c6
[  398.946045]  ? dump_stack_print_info.cold.1+0x20/0x20
[  398.947059]  ? print_section+0x41/0x50
[  398.947820]  print_trailer+0x172/0x17b
[  398.948618]  check_bytes_and_report.cold.86+0x40/0x70
[  398.949606]  check_object+0x16c/0x290
[  398.950331]  free_debug_processing+0x16d/0x2f0
[  398.951202]  ? qlist_free_all+0x36/0xc0
[  398.951960]  ? qlist_free_all+0x36/0xc0
[  398.952717]  __slab_free+0x295/0x530
[  398.953423]  ? trace_hardirqs_on+0xbd/0x2f0
[  398.954253]  ? kasan_check_read+0x11/0x20
[  398.955090]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  398.956195]  ? qlist_free_all+0x36/0xc0
[  398.956975]  ___cache_free+0xbd/0xd0
[  398.957703]  ? qlist_free_all+0x36/0xc0
[  398.958508]  qlist_free_all+0x4b/0xc0
[  398.959242]  ? getname_flags+0xd0/0x5a0
[  398.960017]  quarantine_reduce+0x178/0x1b0
[  398.960829]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  398.961766]  ? getname_flags+0xd0/0x5a0
[  398.962541]  kasan_slab_alloc+0x11/0x20
[  398.963335]  kmem_cache_alloc+0x101/0x350
[  398.964228]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  398.965375]  getname_flags+0xd0/0x5a0
[  398.966132]  do_mkdirat+0xc5/0x310
[  398.966841]  ? __ia32_sys_mknod+0xb0/0xb0
[  398.967656]  __x64_sys_mkdir+0x5c/0x80
[  398.968447]  do_syscall_64+0x1b3/0x810
[  398.969202]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  398.970235]  ? syscall_return_slowpath+0x5e0/0x5e0
[  398.971184]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  398.972107]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  398.973078]  ? prepare_exit_to_usermode+0x291/0x3b0
[  398.974077]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  398.975022]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  398.976043] RIP: 0033:0x7f9485451447
[  398.976785] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 8
[  398.980483] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  398.981994] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  398.983415] RDX: 00007f9485ec23e0 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  398.984876] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  398.986346] R10: 0000000000000080 R11: 0000000000000293 R12: 0000000000000000
[  398.987734] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  398.989144] FIX kmalloc-4k: Restoring 0x000000003c147a31-0x000000007ac72f29=0xcc
[  398.989144]
[  398.991213] FIX kmalloc-4k: Object at 0x0000000075c72df2 not freed
[  399.044361] =============================================================================
[  399.046075] BUG page->ptl (Tainted: G    B   W        ): Padding overwritten. 0x00000000d94f3210-0x00000000e4a8e223
[  399.048139] -----------------------------------------------------------------------------
[  399.048139]
[  399.050209] INFO: Slab 0x00000000480cf302 objects=20 used=20 fp=0x          (null) flags=0x1fffc0000010201
[  399.052136] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  399.053810] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  399.056012] Call Trace:
[  399.056527]  dump_stack+0x1d8/0x2c6
[  399.057224]  ? dump_stack_print_info.cold.1+0x20/0x20
[  399.058230]  slab_err+0xab/0xcf
[  399.058894]  ? __asan_report_load1_noabort+0x14/0x20
[  399.059885]  ? memchr_inv+0x2c1/0x330
[  399.060626]  ? trace_hardirqs_on+0x2f0/0x2f0
[  399.061480]  slab_pad_check.part.50.cold.87+0x27/0x81
[  399.062483]  ? qlist_free_all+0x36/0xc0
[  399.063250]  check_slab+0xb0/0xf0
[  399.063918]  free_debug_processing+0x1ef/0x2f0
[  399.064809]  ? qlist_free_all+0x36/0xc0
[  399.065568]  ? qlist_free_all+0x36/0xc0
[  399.066351]  __slab_free+0x295/0x530
[  399.067082]  ? trace_hardirqs_on+0xbd/0x2f0
[  399.067927]  ? kasan_check_read+0x11/0x20
[  399.068772]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  399.069889]  ? qlist_free_all+0x36/0xc0
[  399.070687]  ___cache_free+0xbd/0xd0
[  399.071422]  ? qlist_free_all+0x36/0xc0
[  399.072194]  qlist_free_all+0x4b/0xc0
[  399.072935]  ? getname_flags+0xd0/0x5a0
[  399.073711]  quarantine_reduce+0x178/0x1b0
[  399.074542]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  399.075504]  ? getname_flags+0xd0/0x5a0
[  399.076286]  kasan_slab_alloc+0x11/0x20
[  399.077049]  kmem_cache_alloc+0x101/0x350
[  399.077863]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  399.078979]  getname_flags+0xd0/0x5a0
[  399.079738]  do_mkdirat+0xc5/0x310
[  399.080427]  ? __ia32_sys_mknod+0xb0/0xb0
[  399.081230]  __x64_sys_mkdir+0x5c/0x80
[  399.082013]  do_syscall_64+0x1b3/0x810
[  399.082820]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  399.083900]  ? syscall_return_slowpath+0x5e0/0x5e0
[  399.084883]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  399.085825]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  399.086784]  ? prepare_exit_to_usermode+0x291/0x3b0
[  399.087767]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  399.088737]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  399.089760] RIP: 0033:0x7f9485451447
[  399.090491] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 8
[  399.094185] RSP: 002b:00007ffe8b64d0f8 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  399.095710] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  399.097130] RDX: 0000000000000000 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  399.098560] RBP: 00007ffe8b64d130 R08: 0000560ec4a11355 R09: 0000000000000018
[  399.099995] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
[  399.101430] R13: 0000000000000001 R14: 0000560ec57528b0 R15: 0000000000000009
[  399.102878] Padding 00000000d94f3210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.104716] Padding 00000000dc4434f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.106533] FIX page->ptl: Restoring 0x00000000d94f3210-0x00000000e4a8e223=0x5a
[  399.106533]
[  399.108267] =============================================================================
[  399.109895] BUG page->ptl (Tainted: G    B   W        ): Redzone overwritten
[  399.111273] -----------------------------------------------------------------------------
[  399.111273]
[  399.113152] INFO: 0x00000000b2d79244-0x000000008fade110. First byte 0x0 instead of 0xcc
[  399.114749] INFO: Slab 0x00000000480cf302 objects=20 used=20 fp=0x          (null) flags=0x1fffc0000010201
[  399.116662] INFO: Object 0x000000006574aed9 @offset=6536 fp=0x          (null)
[  399.116662]
[  399.118401] Redzone 00000000b2d79244: 00 00 00 00 00 00 00 00                          ........
[  399.120103] Object 000000006574aed9: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.121922] Object 000000004d2358d2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.123760] Object 00000000b784694a: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.125587] Object 00000000fd4ef6df: 00 00 00 00 00 00 00 00                          ........
[  399.127264] Redzone 00000000f2e5a47f: 00 00 00 00 00 00 00 00                          ........
[  399.129006] Padding 000000007e76ef2f: 00 00 00 00 00 00 00 00                          ........
[  399.130745] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  399.132553] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  399.134815] Call Trace:
[  399.135315]  dump_stack+0x1d8/0x2c6
[  399.136001]  ? dump_stack_print_info.cold.1+0x20/0x20
[  399.136978]  ? print_section+0x41/0x50
[  399.137712]  print_trailer+0x172/0x17b
[  399.138508]  check_bytes_and_report.cold.86+0x40/0x70
[  399.139493]  check_object+0x16c/0x290
[  399.140228]  free_debug_processing+0x16d/0x2f0
[  399.141096]  ? qlist_free_all+0x36/0xc0
[  399.141857]  ? qlist_free_all+0x36/0xc0
[  399.142615]  __slab_free+0x295/0x530
[  399.143339]  ? trace_hardirqs_on+0xbd/0x2f0
[  399.144202]  ? kasan_check_read+0x11/0x20
[  399.145026]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  399.146097]  ? qlist_free_all+0x36/0xc0
[  399.146879]  ___cache_free+0xbd/0xd0
[  399.147605]  ? qlist_free_all+0x36/0xc0
[  399.148422]  qlist_free_all+0x4b/0xc0
[  399.149233]  ? getname_flags+0xd0/0x5a0
[  399.150068]  quarantine_reduce+0x178/0x1b0
[  399.150943]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  399.151907]  ? getname_flags+0xd0/0x5a0
[  399.152684]  kasan_slab_alloc+0x11/0x20
[  399.153454]  kmem_cache_alloc+0x101/0x350
[  399.154267]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  399.155351]  getname_flags+0xd0/0x5a0
[  399.156095]  do_mkdirat+0xc5/0x310
[  399.156781]  ? __ia32_sys_mknod+0xb0/0xb0
[  399.157591]  __x64_sys_mkdir+0x5c/0x80
[  399.158382]  do_syscall_64+0x1b3/0x810
[  399.159169]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  399.160229]  ? syscall_return_slowpath+0x5e0/0x5e0
[  399.161235]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  399.162225]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  399.163230]  ? prepare_exit_to_usermode+0x291/0x3b0
[  399.164198]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  399.165216]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  399.166233] RIP: 0033:0x7f9485451447
[  399.166975] Code: 00 b8 ff ff ff ff c3 0f 1f 40 00 48 8b 05 49 da 2b 00 64 c7 00 5f 00 00 00 b8 ff ff ff ff c3 0f 1f 40 00 b8 53 00 0
[  399.170633] RSP: 002b:00007ffe8b64d0f8 EFLAGS: 00000293 ORIG_RAX: 0000000000000053
[  399.172088] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451447
[  399.173449] RDX: 0000000000000000 RSI: 00000000000001ed RDI: 0000560ec57528b0
[  399.174906] RBP: 00007ffe8b64d130 R08: 0000560ec4a11355 R09: 0000000000000018
[  399.176342] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
[  399.177760] R13: 0000000000000001 R14: 0000560ec57528b0 R15: 0000000000000009
[  399.179211] FIX page->ptl: Restoring 0x00000000b2d79244-0x000000008fade110=0xcc
[  399.179211]
[  399.181042] FIX page->ptl: Object at 0x000000006574aed9 not freed
[  399.194826] =============================================================================
[  399.196560] BUG page->ptl (Tainted: G    B   W        ): Redzone overwritten
[  399.198029] -----------------------------------------------------------------------------
[  399.198029]
[  399.199990] INFO: 0x0000000061b4eebd-0x00000000699c9342. First byte 0x0 instead of 0xcc
[  399.201586] INFO: Slab 0x00000000480cf302 objects=20 used=20 fp=0x          (null) flags=0x1fffc0000010201
[  399.203449] INFO: Object 0x00000000e1d048e2 @offset=6128 fp=0x          (null)
[  399.203449]
[  399.205163] Redzone 0000000061b4eebd: 00 00 00 00 00 00 00 00                          ........
[  399.206853] Object 00000000e1d048e2: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.208673] Object 000000005b43dd0d: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.210487] Object 00000000604d2a44: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[  399.212278] Object 000000002a37d801: 00 00 00 00 00 00 00 00                          ........
[  399.213947] Redzone 0000000077bfdda8: 00 00 00 00 00 00 00 00                          ........
[  399.215685] Padding 000000006a4264d9: 00 00 00 00 00 00 00 00                          ........
[  399.217430] CPU: 1 PID: 3891 Comm: systemd-journal Tainted: G    B   W         5.0.0-rc2+ #19
[  399.219144] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  399.221345] Call Trace:
[  399.221850]  dump_stack+0x1d8/0x2c6
[  399.222549]  ? dump_stack_print_info.cold.1+0x20/0x20
[  399.223595]  ? print_section+0x41/0x50
[  399.224382]  print_trailer+0x172/0x17b
[  399.225151]  check_bytes_and_report.cold.86+0x40/0x70
[  399.226147]  check_object+0x16c/0x290
[  399.226893]  free_debug_processing+0x16d/0x2f0
[  399.227811]  ? qlist_free_all+0x36/0xc0
[  399.228606]  ? qlist_free_all+0x36/0xc0
[  399.229389]  __slab_free+0x295/0x530
[  399.230126]  ? trace_hardirqs_on+0xbd/0x2f0
[  399.230978]  ? kasan_check_read+0x11/0x20
[  399.231804]  ? __sanitizer_cov_trace_const_cmp8+0x18/0x20
[  399.232900]  ? qlist_free_all+0x36/0xc0
[  399.233734]  ___cache_free+0xbd/0xd0
[  399.234463]  ? qlist_free_all+0x36/0xc0
[  399.235254]  qlist_free_all+0x4b/0xc0
[  399.235986]  ? prepare_creds+0xab/0x4d0
[  399.236758]  quarantine_reduce+0x178/0x1b0
[  399.237584]  __kasan_kmalloc.constprop.8+0x9c/0xd0
[  399.238587]  ? prepare_creds+0xab/0x4d0
[  399.239377]  kasan_slab_alloc+0x11/0x20
[  399.240203]  kmem_cache_alloc+0x101/0x350
[  399.241044]  prepare_creds+0xab/0x4d0
[  399.241789]  ? __task_pid_nr_ns+0x303/0x640
[  399.242635]  ? abort_creds+0x2a0/0x2a0
[  399.243397]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  399.244488]  ? lock_release+0x9e0/0x9e0
[  399.245280]  ? vfs_read+0x1ce/0x3e0
[  399.245995]  do_faccessat+0xa2/0x820
[  399.246720]  ? __ia32_sys_fallocate+0xf0/0xf0
[  399.247615]  __x64_sys_access+0x59/0x80
[  399.248492]  do_syscall_64+0x1b3/0x810
[  399.249296]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  399.250396]  ? syscall_return_slowpath+0x5e0/0x5e0
[  399.251366]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  399.252308]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  399.253265]  ? prepare_exit_to_usermode+0x291/0x3b0
[  399.254228]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  399.255177]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  399.256175] RIP: 0033:0x7f9485451787
[  399.256913] Code: 83 c4 08 48 3d 01 f0 ff ff 73 01 c3 48 8b 0d 08 d7 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 b8 15 00 4
[  399.260613] RSP: 002b:00007ffe8b64d248 EFLAGS: 00000246 ORIG_RAX: 0000000000000015
[  399.262116] RAX: ffffffffffffffda RBX: 00007ffe8b650150 RCX: 00007f9485451787
[  399.263498] RDX: 00007f9485ec23e0 RSI: 0000000000000000 RDI: 0000560ec4a1b8a1
[  399.264916] RBP: 00007ffe8b64d280 R08: 0000000000000000 R09: 0000000000000000
[  399.266348] R10: 0000000000000080 R11: 0000000000000246 R12: 0000000000000000
[  399.267755] R13: 0000000000000000 R14: 00007ffe8b650150 R15: 0000000000000009
[  399.269238] FIX page->ptl: Restoring 0x0000000061b4eebd-0x00000000699c9342=0xcc
[  399.269238]
[  399.271013] FIX page->ptl: Object at 0x00000000e1d048e2 not freed
[  454.198111] ata1: lost interrupt (Status 0x50)
[  454.200369] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[  454.203452] ata1.00: failed command: READ DMA
[  454.205411] ata1.00: cmd c8/00:86:00:00:00/00:00:00:00:00/e0 tag 0 dma 68608 out
[  454.205411]          res 40/00:01:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[  454.211952] ata1.00: status: { DRDY }
[  454.214280] ata1: soft resetting link
[  454.381679] ata1.00: configured for MWDMA2
[  454.383688] ata1: EH complete
[  515.642343] ata1: lost interrupt (Status 0x50)
[  515.644534] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[  515.647600] ata1.00: failed command: READ DMA
[  515.649550] ata1.00: cmd c8/00:86:00:00:00/00:00:00:00:00/e0 tag 0 dma 68608 out
[  515.649550]          res 40/00:01:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[  515.655976] ata1.00: status: { DRDY }
[  515.657898] ata1: soft resetting link
[  515.825632] ata1.00: configured for MWDMA2
[  515.827591] ata1: EH complete
[  552.588111] BUG: unable to handle kernel NULL pointer dereference at 0000000000000000
[  552.591672] #PF error: [INSTR]
[  552.593014] PGD 0 P4D 0
[  552.594169] Oops: 0010 [#1] SMP DEBUG_PAGEALLOC KASAN
[  552.596417] CPU: 1 PID: 3897 Comm: systemd-udevd Tainted: G    B   W         5.0.0-rc2+ #19
[  552.600008] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
[  552.604940] RIP: 0010:          (null)
[  552.606637] Code: Bad RIP value.
[  552.608075] RSP: 0018:ffff88805fb079d0 EFLAGS: 00010246
[  552.610341] RAX: 1ffff9200006b206 RBX: 000000007fff0000 RCX: ffffffff8188b05a
[  552.613375] RDX: 0000000000000000 RSI: ffffc90000359038 RDI: ffff88805fb07d78
[  552.616471] RBP: ffff88805fb07c20 R08: ffff888060be4840 R09: 0000000000000000
[  552.619515] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8880695ff768
[  552.622577] R13: dffffc0000000000 R14: ffffc90000359000 R15: ffff88805fb07bf8
[  552.625264] FS:  00007f4a614088c0(0000) GS:ffff88806bd00000(0000) knlGS:0000000000000000
[  552.626883] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  552.628060] CR2: ffffffffffffffd6 CR3: 0000000064e36000 CR4: 00000000000006e0
[  552.629491] Call Trace:
[  552.630028]  ? __seccomp_filter+0x1f2/0x1ad0
[  552.630948]  ? seccomp_notify_release+0x270/0x270
[  552.631892]  ? _raw_spin_unlock_irqrestore+0x63/0xc0
[  552.632914]  ? do_timerfd_settime+0x44d/0xff0
[  552.633847]  ? lock_downgrade+0x8f0/0x8f0
[  552.634657]  ? __hrtimer_get_remaining+0x1d0/0x1d0
[  552.635658]  ? hrtimer_init+0x102/0x460
[  552.636460]  ? trace_hardirqs_on+0xbd/0x2f0
[  552.637320]  ? __bpf_trace_preemptirq_template+0x30/0x30
[  552.638450]  ? wake_up_q+0x100/0x100
[  552.639216]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  552.640349]  __secure_computing+0x100/0x370
[  552.641229]  syscall_trace_enter+0x4e2/0x11e0
[  552.642123]  ? __sanitizer_cov_trace_const_cmp4+0x16/0x20
[  552.643191]  ? __fget_light+0x2f7/0x440
[  552.643959]  ? trace_event_raw_event_sys_exit+0x2d0/0x2d0
[  552.645063]  ? trace_hardirqs_off+0xb8/0x2f0
[  552.645928]  ? __x64_sys_timerfd_settime+0x19a/0x240
[  552.646979]  ? do_epoll_wait+0x154/0x200
[  552.647798]  do_syscall_64+0x5fb/0x810
[  552.648576]  ? entry_SYSCALL_64_after_hwframe+0x3e/0xbe
[  552.649677]  ? syscall_return_slowpath+0x5e0/0x5e0
[  552.650672]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  552.651654]  ? trace_hardirqs_on_caller+0x2e0/0x2e0
[  552.652645]  ? prepare_exit_to_usermode+0x291/0x3b0
[  552.653626]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  552.654598]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  552.655653] RIP: 0033:0x7ffd177ce79e
[  552.656389] Code: 83 ff 0f 77 1a b8 01 00 00 00 89 f9 d3 e0 a9 03 08 00 00 74 06 5d e9 51 fe ff ff a8 60 75 0c 48 63 ff b8 e4 00 00 0
[  552.660100] RSP: 002b:00007ffd17753a48 EFLAGS: 00000246 ORIG_RAX: 00000000000000e4
[  552.661614] RAX: ffffffffffffffda RBX: 0000000000000007 RCX: 00007ffd177ce79e
[  552.663048] RDX: 0000000000000000 RSI: 00007ffd17753a70 RDI: 0000000000000007
[  552.664465] RBP: 00007ffd17753a70 R08: 00007ffd177cb0b0 R09: 00007ffd177cb080
[  552.665936] R10: 000000000000714a R11: 0000000000000246 R12: 00007ffd17753aa0
[  552.667380] R13: 0000000000000001 R14: 0000000000000001 R15: 0000000000000000
[  552.668803] Modules linked in:
[  552.669436] CR2: 0000000000000000
[  552.670218] ---[ end trace f9e1b7a75f8375e2 ]---
[  552.671169] RIP: 0010:          (null)
[  552.671938] Code: Bad RIP value.
[  552.672603] RSP: 0018:ffff88805fb079d0 EFLAGS: 00010246
[  552.673658] RAX: 1ffff9200006b206 RBX: 000000007fff0000 RCX: ffffffff8188b05a
[  552.675192] RDX: 0000000000000000 RSI: ffffc90000359038 RDI: ffff88805fb07d78
[  552.676632] RBP: ffff88805fb07c20 R08: ffff888060be4840 R09: 0000000000000000
[  552.678057] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8880695ff768
[  552.679470] R13: dffffc0000000000 R14: ffffc90000359000 R15: ffff88805fb07bf8
[  552.680883] FS:  00007f4a614088c0(0000) GS:ffff88806bd00000(0000) knlGS:0000000000000000
[  552.682513] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  552.683727] CR2: ffffffffffffffd6 CR3: 0000000064e36000 CR4: 00000000000006e0
[  552.685206] Kernel panic - not syncing: Fatal exception
[  552.688318] Kernel Offset: disabled
[  552.689091] Rebooting in 86400 seconds..



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

* Re: [PATCH v2] rbtree: fix the red root
  2019-01-16 14:37                               ` Esme
@ 2019-01-18 17:10                                 ` Qian Cai
  0 siblings, 0 replies; 26+ messages in thread
From: Qian Cai @ 2019-01-18 17:10 UTC (permalink / raw)
  To: Esme
  Cc: dgilbert, David Lechner, Michel Lespinasse, Andrew Morton, jejb,
	martin.petersen, joeypabalinas, linux-mm, LKML



On 1/16/19 9:37 AM, Esme wrote:
> I have been off but back now, I had fetch'd current again and the diagnostics look a bit different, maybe I just got lucky.  Instead of fork'ng the test case (which is fairly aggressive in any case), interacting from the serial port with sig-int ^C tend's to trigger enough to hit something.  I'll get the page_owner sorted soon.
> 
> How I'm running;
> 
> qemu-system-x86_64 -kernel /home/files/dl/linux//arch/x86/boot/bzImage -append console=ttyS0 root=/dev/sda debug earlyprintk=serial slub_debug=QUZFP page_owner=on -hda stretch.img -net user,hostfwd=tcp::10021-:22 -net nic -enable-kvm -nographic -m 2G -smp 2
> 
> It's somewhat random I guess that in the last two CPU context dump's printed out, we see RAX and CR2 off by 4 from one another.
> 
> root@syzkaller:~# gcc -o test3 test3.c
> [  392.754148] ata1: lost interrupt (Status 0x50)
> [  392.754478] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
> [  392.759687] ata1.00: failed command: READ DMA
> [  392.761902] ata1.00: cmd c8/00:86:00:00:00/00:00:00:00:00/e0 tag 0 dma 68608 out
> [  392.761902]          res 40/00:01:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
> [  392.768541] ata1.00: status: { DRDY }
> [  392.769532] ata1: soft resetting link
> [  392.937942] ata1.00: configured for MWDMA2
> [  392.945624] ata1: EH complete

While you are gathering page_owner (or kdump), it might be useful to use virtio
storage driver instead of legacy IDE here, as looks like this ATA was busted.

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

end of thread, other threads:[~2019-01-18 17:10 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <YrcPMrGmYbPe_xgNEV6Q0jqc5XuPYmL2AFSyeNmg1gW531bgZnBGfEUK5_ktqDBaNW37b-NP2VXvlliM7_PsBRhSfB649MaW1Ne7zT9lHc=@protonmail.ch>
2019-01-11 16:51 ` [PATCH] rbtree: fix the red root Qian Cai
2019-01-11 17:17   ` Joey Pabalinas
2019-01-11 17:31   ` Matthew Wilcox
2019-01-11 17:53     ` Joey Pabalinas
2019-01-11 18:12     ` Qian Cai
2019-01-11 18:16       ` Matthew Wilcox
2019-01-11 20:58         ` [PATCH v2] " Qian Cai
2019-01-11 23:16           ` Matthew Wilcox
2019-01-12  0:18             ` Qian Cai
2019-01-12  0:39               ` Esme
2019-01-11 23:47           ` David Lechner
2019-01-12  2:58             ` Michel Lespinasse
2019-01-14  2:20               ` David Lechner
2019-01-14  2:33                 ` Qian Cai
2019-01-14  3:07                   ` Esme
2019-01-14  3:52                     ` Douglas Gilbert
2019-01-14  3:59                       ` Esme
2019-01-14  4:52                         ` Douglas Gilbert
2019-01-14  6:23                           ` Esme
2019-01-14 15:45                             ` Qian Cai
2019-01-14 15:51                               ` Esme
2019-01-14 17:58                                 ` Qian Cai
2019-01-14 18:26                                   ` Douglas Gilbert
2019-01-15  5:31                             ` Qian Cai
2019-01-16 14:37                               ` Esme
2019-01-18 17:10                                 ` Qian Cai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).