2009-03-03 04:12:42

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Thu, Feb 26, 2009 at 05:03:39PM +0000, Sitsofe Wheeler wrote:
>
> Note that I was able to reproduce it again : )

By the way, here's the theoretical race I was alluding to. ath5k_reset
happens pretty frequently when scanning, and it's possible that the rx
tasklet is run on another cpu after interrupts are turned off, but
it's a small window and I couldn't trigger it with any mdelays.

[PATCH] ath5k: manipulate rxlink and descriptor address under rxbuf lock

Grabbing an ath5k_buf then dropping the lock is racy because the
referenced descriptor can be obtained in another thread and released
before the buffer is handed to the hardware. Likewise, manipulating
sc->rxlink without the lock can lead to having multiple self-linked
hardware descriptors.

Signed-off-by: Bob Copeland <[email protected]>
---
drivers/net/wireless/ath5k/base.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c
index 8d4b11c..0d3adb5 100644
--- a/drivers/net/wireless/ath5k/base.c
+++ b/drivers/net/wireless/ath5k/base.c
@@ -1586,9 +1586,8 @@ ath5k_rx_start(struct ath5k_softc *sc)
ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rxbufsize %u\n",
sc->cachelsz, sc->rxbufsize);

- sc->rxlink = NULL;
-
spin_lock_bh(&sc->rxbuflock);
+ sc->rxlink = NULL;
list_for_each_entry(bf, &sc->rxbuf, list) {
ret = ath5k_rxbuf_setup(sc, bf);
if (ret != 0) {
@@ -1597,9 +1596,9 @@ ath5k_rx_start(struct ath5k_softc *sc)
}
}
bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
+ ath5k_hw_set_rxdp(ah, bf->daddr);
spin_unlock_bh(&sc->rxbuflock);

- ath5k_hw_set_rxdp(ah, bf->daddr);
ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */
ath5k_mode_setup(sc); /* set filters, etc. */
ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */
--
1.6.0.6



--
Bob Copeland %% http://www.bobcopeland.com


2009-03-03 20:04:16

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Mon, Mar 02, 2009 at 11:12:22PM -0500, Bob Copeland wrote:
> On Thu, Feb 26, 2009 at 05:03:39PM +0000, Sitsofe Wheeler wrote:
> >
> > Note that I was able to reproduce it again : )
>
> By the way, here's the theoretical race I was alluding to. ath5k_reset
> happens pretty frequently when scanning, and it's possible that the rx
> tasklet is run on another cpu after interrupts are turned off, but

The machine where this fault happened is a single core non-symmetric
multithreading EeePC 900 with a Celeron M 900 using a voluntary preempt
kernel (so I doubt this is due to tasklets being run on another CPU)...

I am a bit unsure which patches you want me to be testing though...

--
Sitsofe | http://sucs.org/~sits/

2009-03-04 12:08:23

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Tue, Mar 03, 2009 at 08:03:52PM +0000, Sitsofe Wheeler wrote:
> The machine where this fault happened is a single core non-symmetric
> multithreading EeePC 900 with a Celeron M 900 using a voluntary preempt
> kernel (so I doubt this is due to tasklets being run on another CPU)...

This particular one could still happen on UP, provided interrupts were
enabled in ath5k_rx_start (I don't think that's very likely, though.
I tried warning on that case and didn't hit it).

> I am a bit unsure which patches you want me to be testing though...

None. Perhaps it's wishful thinking but a function trace for the few
minutes prior to the poison would be useful. A good replicator might
be to run a sequence of automatic suspend/resume with pm_test, in
parallel with iwlist wlan0 scan (as root, so scans are actually
performed), in parallel with iperf or ping. I didn't personally have
luck with that workload, though.

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-06 09:43:13

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Wed, Mar 04, 2009 at 07:07:59AM -0500, Bob Copeland wrote:
> On Tue, Mar 03, 2009 at 08:03:52PM +0000, Sitsofe Wheeler wrote:
>
> None. Perhaps it's wishful thinking but a function trace for the few
> minutes prior to the poison would be useful. A good replicator might
> be to run a sequence of automatic suspend/resume with pm_test, in
> parallel with iwlist wlan0 scan (as root, so scans are actually
> performed), in parallel with iperf or ping. I didn't personally have
> luck with that workload, though.

Forcing the scans and pings didn't seem to make the issue occur.
Unfortunately I can't quite provide you what you were asking for... I
started the function_tracer feature in /sys/kernel/debug/tracing and put
the buffer size to 153600kb (previously I had set it higher and
successfully OOMd my box : ). Unfortunately I had no filter so this was
not enough for all that long of a log (maybe about 6 seconds). I had a
small script that did the following:

watch -n1 'if `tail -1000 /var/log/kern.log | grep -q Poison`; then echo
0 > /sys/kernel/debug/tracing/tracing_on; cat
/sys/kernel/debug/tracing/trace | gzip > /tmp/trace.txt.gz ; fi'

(the script is obviously flawed but it did the job)

I've put up results on http://sucs.org/~sits/test/eeepc-debug/20090306/
and I think the type that kmalloc notices is 4154504125.579778 . There
is also a pre grepped log of (ieee|ath5k) in that directory.

I'll try and act on your filtering suggestions next time but I didn't
have too much time to get this going...

--
Sitsofe | http://sucs.org/~sits/

2009-03-07 04:47:56

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Fri, Mar 06, 2009 at 09:42:49AM +0000, Sitsofe Wheeler wrote:
> Unfortunately I can't quite provide you what you were asking for...

Well, this is great so far! It'll take some time to dig through it
but it looks useful.

I saw _get_tsf64 in the trace; were you using ad-hoc/ibss mode, or
is that just a weird artifact?

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-07 08:04:38

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Fri, Mar 06, 2009 at 11:47:32PM -0500, Bob Copeland wrote:
>
> Well, this is great so far! It'll take some time to dig through it
> but it looks useful.
>
> I saw _get_tsf64 in the trace; were you using ad-hoc/ibss mode, or
> is that just a weird artifact?

Sounds like a werid artifact - I only (intentionally) connect to access
points.

--
Sitsofe | http://sucs.org/~sits/

2009-03-07 13:35:15

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Sat, Mar 07, 2009 at 08:04:22AM +0000, Sitsofe Wheeler wrote:
> On Fri, Mar 06, 2009 at 11:47:32PM -0500, Bob Copeland wrote:
> > I saw _get_tsf64 in the trace; were you using ad-hoc/ibss mode, or
> > is that just a weird artifact?
>
> Sounds like a werid artifact - I only (intentionally) connect to access
> points.

Ok thanks, nevermind, that is just ath5k_extend_tsf being inlined.

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-08 03:09:48

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Fri, Mar 06, 2009 at 09:42:49AM +0000, Sitsofe Wheeler wrote:
> > parallel with iwlist wlan0 scan (as root, so scans are actually
> > performed), in parallel with iperf or ping. I didn't personally have
> > luck with that workload, though.

So I looked through this log for a few hours today. Sorry to say
that I don't have any answers, but here's a summary of what I saw:

- it didn't seem like there were any obvious race conditions at play;
that is, I didn't see other ath5k_XXX functions being pre-empted
by ath5k_intr, followed by the softirq.

- there were a few errors prior to catching the poison. I don't think
the trace contains enough info to say whether they were phy errors,
unsupported jumbo type errors, or whatever. Anyway there didn't seem
to be any obvious causal pattern, nothing like an error on the
40th previous buffer or a cascading series of errors. Of course,
the error could have happened much earlier compared to when the skbuff
in the freelist got reused.

At this point, I guess the best way forward is to have a special debug
patch for when we pass an skb up the stack, when it gets allocated, and
what is in the descriptors.

Jiri, I really think we should implement that better check for the
self linked descriptor using the rxdp register. bf_last is no longer a
valid marker for the self-linked descriptor at the end of the loop since
we re-add the just-processed descriptor every time through the loop
(or am I missing something?)... If you want I'll cook up a patch for
that too.

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-08 09:28:43

by Jiri Slaby

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On 8.3.2009 04:09, Bob Copeland wrote:
> At this point, I guess the best way forward is to have a special debug
> patch for when we pass an skb up the stack, when it gets allocated, and
> what is in the descriptors.

Yes, I have been thinking about some (ring buffer) array which would
store address-desc_status pairs (even few megs in a vmalloc area) and
pointer (not modulo-ed counter) to this array (index would be modulo-ed,
indeed). From poison output we know the address, so we can then instruct
ath5k to dump the buffer and see what happens :), what was in the status
when we freed the skb.

Maybe some additional info may be needed, as you suggest.

> Jiri, I really think we should implement that better check for the
> self linked descriptor using the rxdp register.

As I stated a while ago, definitely!

> bf_last is no longer a
> valid marker for the self-linked descriptor at the end of the loop since
> we re-add the just-processed descriptor every time through the loop
> (or am I missing something?)...

Why? bf_last is snapshotted before the loop. And when we see this bf
while processing, we stop. In the next round we check if bf->next is
done. If yes, we move on.

> If you want I'll cook up a patch for that too.

If you like, feel free to kick it off. Remember to remove bf->flags
completely, so that we save another bunch of memory ;).

2009-03-08 16:11:20

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Sun, Mar 08, 2009 at 10:28:23AM +0100, Jiri Slaby wrote:
>> bf_last is no longer a
>> valid marker for the self-linked descriptor at the end of the loop since
>> we re-add the just-processed descriptor every time through the loop
>> (or am I missing something?)...
>
> Why? bf_last is snapshotted before the loop. And when we see this bf
> while processing, we stop. In the next round we check if bf->next is
> done. If yes, we move on.

I think it works for the first one but doesn't take into account
subsequent self-linked descriptors. E.g. if we start with buffers:

A->B->C

bf_last is 'C'. The hardware sees descriptors:

A'->B'->C'(->C')

After one round, the hardware sees:

B'->C'->A'(->A')

Suppose the hardware does A',B',C' before we process any buffer. So after
we process A, the hardware moves on to A'. It finishes a packet, re-reads
the link and starts overwriting A' again, but for some reason is really
slow to complete this second packet.

Now, the tasklet burns through B and C. On C we do the check if bf->next
(i.e. A) is done, and it is because the hardware wrote one packet to it[1].
However, it's still in the process of writing another frame over A' again.
We skip C, send A to __ieee80211_rx, the skb is freed, but the hardware
is still writing stuff to it.

In the trace Sitsofe posted, I didn't see any tasklets processing more
than a couple of packets, though.

[1] Note, the status is cleared when we hand the buffer to hardware, but
not by the hardware itself when it rewrites the same buffer. That could
explain why status is "martian" for overwritten frames.

>> If you want I'll cook up a patch for that too.
>
> If you like, feel free to kick it off. Remember to remove bf->flags
> completely, so that we save another bunch of memory ;).

Ok, I probably won't get to it until this evening so if you prefer to
do it, go ahead - otherwise I'll tackle it then.

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-10 01:14:59

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Sun, Mar 08, 2009 at 10:28:23AM +0100, Jiri Slaby wrote:
>> If you want I'll cook up a patch for that too.
>
> If you like, feel free to kick it off. Remember to remove bf->flags
> completely, so that we save another bunch of memory ;).

Ok, here's a patch, it survived a few hours of testing with 3 rx buffers.
Sitsofe, it's worth a try applying this one, even though it probably
isn't it :)

From: Bob Copeland <[email protected]>
Date: Mon, 9 Mar 2009 11:29:34 -0400
Subject: [PATCH] ath5k: use rx hw descriptor pointer for self-linked check

This patch simplifies the code used to detect when the
self-linked DMA buffer is still in use by hardware, by
checking the hardware's rxdp register instead of looking
at the software buffer list.

Signed-off-by: Bob Copeland <[email protected]>
---
drivers/net/wireless/ath5k/base.c | 24 ++++--------------------
drivers/net/wireless/ath5k/base.h | 1 -
drivers/net/wireless/ath5k/dma.c | 2 --
3 files changed, 4 insertions(+), 23 deletions(-)

diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c
index 1d77ee9..a4e385b 100644
--- a/drivers/net/wireless/ath5k/base.c
+++ b/drivers/net/wireless/ath5k/base.c
@@ -1677,7 +1677,7 @@ ath5k_tasklet_rx(unsigned long data)
struct sk_buff *skb, *next_skb;
dma_addr_t next_skb_addr;
struct ath5k_softc *sc = (void *)data;
- struct ath5k_buf *bf, *bf_last;
+ struct ath5k_buf *bf;
struct ath5k_desc *ds;
int ret;
int hdrlen;
@@ -1688,7 +1688,6 @@ ath5k_tasklet_rx(unsigned long data)
ATH5K_WARN(sc, "empty rx buf pool\n");
goto unlock;
}
- bf_last = list_entry(sc->rxbuf.prev, struct ath5k_buf, list);
do {
rxs.flag = 0;

@@ -1697,24 +1696,9 @@ ath5k_tasklet_rx(unsigned long data)
skb = bf->skb;
ds = bf->desc;

- /*
- * last buffer must not be freed to ensure proper hardware
- * function. When the hardware finishes also a packet next to
- * it, we are sure, it doesn't use it anymore and we can go on.
- */
- if (bf_last == bf)
- bf->flags |= 1;
- if (bf->flags) {
- struct ath5k_buf *bf_next = list_entry(bf->list.next,
- struct ath5k_buf, list);
- ret = sc->ah->ah_proc_rx_desc(sc->ah, bf_next->desc,
- &rs);
- if (ret)
- break;
- bf->flags &= ~1;
- /* skip the overwritten one (even status is martian) */
- goto next;
- }
+ /* bail if HW is still using self-linked descriptor */
+ if (ath5k_hw_get_rxdp(sc->ah) == bf->daddr)
+ break;

ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs);
if (unlikely(ret == -EINPROGRESS))
diff --git a/drivers/net/wireless/ath5k/base.h b/drivers/net/wireless/ath5k/base.h
index facc60d..ed407cc 100644
--- a/drivers/net/wireless/ath5k/base.h
+++ b/drivers/net/wireless/ath5k/base.h
@@ -56,7 +56,6 @@

struct ath5k_buf {
struct list_head list;
- unsigned int flags; /* rx descriptor flags */
struct ath5k_desc *desc; /* virtual addr of desc */
dma_addr_t daddr; /* physical addr of desc */
struct sk_buff *skb; /* skbuff for buf */
diff --git a/drivers/net/wireless/ath5k/dma.c b/drivers/net/wireless/ath5k/dma.c
index b65b4fe..941b511 100644
--- a/drivers/net/wireless/ath5k/dma.c
+++ b/drivers/net/wireless/ath5k/dma.c
@@ -80,8 +80,6 @@ int ath5k_hw_stop_rx_dma(struct ath5k_hw *ah)
* ath5k_hw_get_rxdp - Get RX Descriptor's address
*
* @ah: The &struct ath5k_hw
- *
- * XXX: Is RXDP read and clear ?
*/
u32 ath5k_hw_get_rxdp(struct ath5k_hw *ah)
{
--
1.6.0.6


--
Bob Copeland %% http://www.bobcopeland.com

2009-03-10 08:19:42

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Mon, Mar 09, 2009 at 08:43:44PM -0400, Bob Copeland wrote:
> Ok, here's a patch, it survived a few hours of testing with 3 rx buffers.
> Sitsofe, it's worth a try applying this one, even though it probably
> isn't it :)

Understood. It could be a few days before I can back to you as to
whether it had an effect though.

--
Sitsofe | http://sucs.org/~sits/

2009-03-12 06:11:14

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Mon, Mar 09, 2009 at 08:43:44PM -0400, Bob Copeland wrote:
>
> Ok, here's a patch, it survived a few hours of testing with 3 rx buffers.
> Sitsofe, it's worth a try applying this one, even though it probably
> isn't it :)

I applied it yesterday and all seemed well for a few hours (suspending
and resuming a fair bit too) so I left it overnight but when I looked
this morning this is what I found:

[24438.927600] ath5k phy0: unsupported jumbo
[27478.224940] ath5k phy0: unsupported jumbo
[29510.551614] ath5k phy0: unsupported jumbo
[29733.774249] ath5k phy0: unsupported jumbo
[30094.270082] ath5k phy0: unsupported jumbo
[30865.730585] ath5k phy0: unsupported jumbo
[34971.026519] ath5k phy0: unsupported jumbo
[35324.590673] ath5k phy0: unsupported jumbo
[41907.927944] =============================================================================
[41907.927956] BUG kmalloc-4096: Poison overwritten
[41907.927961] -----------------------------------------------------------------------------
[41907.927964]
[41907.927969] INFO: 0xeacd9040-0xeacd9083. First byte 0x80 instead of 0x6b
[41907.927984] INFO: Allocated in dev_alloc_skb+0x21/0x40 age=4198 cpu=0 pid=0
[41907.927993] INFO: Freed in skb_release_data+0x5e/0x90 age=102 cpu=0 pid=508
[41907.928000] INFO: Slab 0xc1559b00 objects=7 used=3 fp=0xeacd9030 flags=0x400020c3
[41907.928006] INFO: Object 0xeacd9030 @offset=4144 fp=0xeacdb090
[41907.928008]
[41907.928012] Bytes b4 0xeacd9020: fc 01 00 00 f8 de 7a 02 5a 5a 5a 5a 5a 5a 5a 5a ?...??z.ZZZZZZZZ
[41907.928042] Object 0xeacd9030: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928070] Object 0xeacd9040: 80 00 00 00 ff ff ff ff ff ff 00 30 ab 1a 32 3f ....??????.0?.2?
[41907.928099] Object 0xeacd9050: 00 30 ab 1a 32 3f 60 c7 4c 42 03 4d 06 00 00 00 .0?.2?`?LB.M....
[41907.928127] Object 0xeacd9060: 64 00 31 00 00 08 57 69 72 65 6c 65 73 73 01 04 d.1...Wireless..
[41907.928155] Object 0xeacd9070: 82 84 8b 96 03 01 06 05 04 01 02 00 00 99 fc 3d ..............?=
[41907.928183] Object 0xeacd9080: 47 99 fc 47 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b G.?Gkkkkkkkkkkkk
[41907.928211] Object 0xeacd9090: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928239] Object 0xeacd90a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928267] Object 0xeacd90b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928295] Object 0xeacd90c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928323] Object 0xeacd90d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928352] Object 0xeacd90e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928380] Object 0xeacd90f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928408] Object 0xeacd9100: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928436] Object 0xeacd9110: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928464] Object 0xeacd9120: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928492] Object 0xeacd9130: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928520] Object 0xeacd9140: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928548] Object 0xeacd9150: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928576] Object 0xeacd9160: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928605] Object 0xeacd9170: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928633] Object 0xeacd9180: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928661] Object 0xeacd9190: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928689] Object 0xeacd91a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928717] Object 0xeacd91b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928745] Object 0xeacd91c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928773] Object 0xeacd91d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928801] Object 0xeacd91e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928829] Object 0xeacd91f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928858] Object 0xeacd9200: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928886] Object 0xeacd9210: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9220: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9230: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9240: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9250: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9260: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9270: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9280: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9290: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd92a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd92b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd92c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd92d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd92e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd92f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9300: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9310: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9320: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9330: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9340: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9350: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9360: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9370: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9380: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9390: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd93a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd93b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd93c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd93d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd93e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd93f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9400: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9410: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9420: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9430: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9440: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9450: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9460: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9470: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9480: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9490: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd94a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd94b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd94c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd94d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd94e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd94f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9500: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9510: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9520: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9530: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9540: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9550: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9560: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9570: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9580: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9590: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd95a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd95b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd95c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd95d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd95e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd95f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9600: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9610: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9620: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9630: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9640: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9650: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9660: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9670: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9680: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9690: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd96a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd96b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd96c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd96d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd96e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd96f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9700: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9710: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9720: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9730: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9740: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9750: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9760: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9770: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9780: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9790: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd97a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd97b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd97c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd97d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd97e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd97f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9800: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9810: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9820: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9830: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9840: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9850: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9860: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9870: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9880: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9890: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd98a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd98b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd98c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd98d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd98e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd98f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9900: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9910: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9920: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9930: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9940: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9950: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9960: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9970: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9980: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9990: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd99a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd99b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd99c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd99d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd99e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd99f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9a90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9aa0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ab0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ac0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ad0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ae0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9af0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9b90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ba0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9bb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9bc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9bd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9be0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9bf0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9c90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ca0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9cb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9cc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9cd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ce0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9cf0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9d90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9da0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9db0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9dc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9dd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9de0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9df0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9e90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ea0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9eb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ec0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ed0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ee0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ef0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9f90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9fa0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9fb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9fc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9fd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9fe0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacd9ff0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacda000: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacda010: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[41907.928896] Object 0xeacda020: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5 kkkkkkkkkkkkkkk?
[41907.928896] Redzone 0xeacda030: bb bb bb bb ????
[41907.928896] Padding 0xeacda058: 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZ
[41907.928896] Pid: 0, comm: swapper Tainted: G W 2.6.29-rc7-dirty #119
[41907.928896] Call Trace:
[41907.928896] [<c0181654>] print_trailer+0xb4/0xf0
[41907.928896] [<c0181737>] check_bytes_and_report+0xa7/0xd0
[41907.928896] [<c01824ce>] check_object+0x1ae/0x1f0
[41907.928896] [<c01832ff>] __slab_alloc+0x46f/0x510
[41907.928896] [<c01842e7>] __kmalloc_track_caller+0x127/0x130
[41907.928896] [<c0387491>] ? dev_alloc_skb+0x21/0x40
[41907.928896] [<c0387491>] ? dev_alloc_skb+0x21/0x40
[41907.928896] [<c0386e0e>] __alloc_skb+0x4e/0x100
[41907.928896] [<c0387491>] dev_alloc_skb+0x21/0x40
[41907.928896] [<c02e47c8>] ath5k_rx_skb_alloc+0x28/0x180
[41907.928896] [<c04077fe>] ? _spin_lock+0x3e/0x50
[41907.928896] [<c02e6082>] ath5k_tasklet_rx+0x1e2/0x6a0
[41907.928896] [<c0148a0b>] ? trace_hardirqs_off+0xb/0x10
[41907.928896] [<c0407ccc>] ? _spin_unlock_irqrestore+0x3c/0x60
[41907.928896] [<c0144000>] ? clocksource_get_next+0x40/0x50
[41907.928896] [<c02dce8b>] ? ath5k_hw_get_isr+0x6b/0x3d0
[41907.928896] [<c0116a62>] ? read_hpet+0x12/0x20
[41907.928896] [<c02dd217>] ? ath5k_hw_is_intr_pending+0x27/0x60
[41907.928896] [<c012d4d4>] tasklet_action+0x44/0x90
[41907.928896] [<c012d035>] __do_softirq+0x65/0x110
[41907.928896] [<c012d135>] do_softirq+0x55/0x60
[41907.928896] [<c012d41c>] irq_exit+0x6c/0x80
[41907.928896] [<c01051d7>] do_IRQ+0x57/0xb0
[41907.928896] [<c010396c>] common_interrupt+0x2c/0x34
[41907.928896] [<c0279444>] ? acpi_idle_enter_bm+0x1ec/0x21d
[41907.928896] [<c0354a0c>] cpuidle_idle_call+0x6c/0xc0
[41907.928896] [<c0101ebb>] cpu_idle+0x4b/0x70
[41907.928896] [<c03fc215>] rest_init+0x55/0x60
[41907.928896] FIX kmalloc-4096: Restoring 0xeacd9040-0xeacd9083=0x6b
[41907.928896]
[41907.928896] FIX kmalloc-4096: Marking all objects used
[42365.768380] =============================================================================
[42365.768392] BUG kmalloc-4096: Poison overwritten
[42365.768396] -----------------------------------------------------------------------------
[42365.768399]
[42365.768405] INFO: 0xecca8010-0xecca8053. First byte 0x80 instead of 0x6b
[42365.768420] INFO: Allocated in dev_alloc_skb+0x21/0x40 age=4711 cpu=0 pid=0
[42365.768429] INFO: Freed in skb_release_data+0x5e/0x90 age=614 cpu=0 pid=508
[42365.768436] INFO: Slab 0xc1599500 objects=7 used=3 fp=0xecca8000 flags=0x400020c3
[42365.768442] INFO: Object 0xecca8000 @offset=0 fp=0xeccad0f0
[42365.768444]
[42365.768448] Object 0xecca8000: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768477] Object 0xecca8010: 80 00 00 00 ff ff ff ff ff ff 00 30 ab 1a 32 3f ....??????.0?.2?
[42365.768506] Object 0xecca8020: 00 30 ab 1a 32 3f 30 ec 4c 62 45 68 06 00 00 00 .0?.2?0?LbEh....
[42365.768534] Object 0xecca8030: 64 00 31 00 00 08 57 69 72 65 6c 65 73 73 01 04 d.1...Wireless..
[42365.768562] Object 0xecca8040: 82 84 8b 96 03 01 06 05 04 00 02 00 00 97 1b 2b ...............+
[42365.768590] Object 0xecca8050: 84 97 1b 84 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b ....kkkkkkkkkkkk
[42365.768618] Object 0xecca8060: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768646] Object 0xecca8070: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768675] Object 0xecca8080: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768703] Object 0xecca8090: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768731] Object 0xecca80a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768759] Object 0xecca80b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768787] Object 0xecca80c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768815] Object 0xecca80d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768843] Object 0xecca80e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768871] Object 0xecca80f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768899] Object 0xecca8100: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768928] Object 0xecca8110: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768956] Object 0xecca8120: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.768984] Object 0xecca8130: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769012] Object 0xecca8140: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769040] Object 0xecca8150: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769068] Object 0xecca8160: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769096] Object 0xecca8170: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769124] Object 0xecca8180: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769152] Object 0xecca8190: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769181] Object 0xecca81a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769209] Object 0xecca81b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769237] Object 0xecca81c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769265] Object 0xecca81d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769293] Object 0xecca81e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769321] Object 0xecca81f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8200: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8210: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8220: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8230: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8240: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8250: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8260: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8270: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8280: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8290: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca82a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca82b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca82c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca82d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca82e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca82f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8300: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8310: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8320: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8330: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8340: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8350: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8360: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8370: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8380: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8390: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca83a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca83b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca83c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca83d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca83e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca83f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8400: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8410: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8420: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8430: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8440: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8450: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8460: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8470: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8480: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8490: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca84a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca84b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca84c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca84d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca84e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca84f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8500: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8510: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8520: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8530: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8540: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8550: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8560: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8570: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8580: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8590: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca85a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca85b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca85c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca85d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca85e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca85f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8600: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8610: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8620: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8630: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8640: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8650: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8660: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8670: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8680: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8690: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca86a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca86b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca86c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca86d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca86e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca86f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8700: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8710: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8720: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8730: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8740: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8750: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8760: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8770: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8780: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8790: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca87a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca87b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca87c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca87d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca87e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca87f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8800: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8810: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8820: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8830: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8840: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8850: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8860: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8870: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8880: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8890: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca88a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca88b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca88c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca88d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca88e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca88f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8900: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8910: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8920: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8930: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8940: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8950: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8960: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8970: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8980: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8990: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca89a0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca89b0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca89c0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca89d0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca89e0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca89f0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8a90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8aa0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ab0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ac0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ad0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ae0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8af0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8b90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ba0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8bb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8bc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8bd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8be0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8bf0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8c90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ca0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8cb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8cc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8cd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ce0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8cf0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8d90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8da0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8db0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8dc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8dd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8de0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8df0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8e90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ea0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8eb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ec0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ed0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ee0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ef0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f00: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f10: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f20: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f30: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f40: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f50: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f60: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f70: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f80: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8f90: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8fa0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8fb0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8fc0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8fd0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8fe0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b kkkkkkkkkkkkkkkk
[42365.769324] Object 0xecca8ff0: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5 kkkkkkkkkkkkkkk?
[42365.769324] Redzone 0xecca9000: bb bb bb bb ????
[42365.769324] Padding 0xecca9028: 5a 5a 5a 5a 5a 5a 5a 5a ZZZZZZZZ
[42365.769324] Pid: 0, comm: swapper Tainted: G W 2.6.29-rc7-dirty #119
[42365.769324] Call Trace:
[42365.769324] [<c0181654>] print_trailer+0xb4/0xf0
[42365.769324] [<c0181737>] check_bytes_and_report+0xa7/0xd0
[42365.769324] [<c01824ce>] check_object+0x1ae/0x1f0
[42365.769324] [<c01832ff>] __slab_alloc+0x46f/0x510
[42365.769324] [<c01842e7>] __kmalloc_track_caller+0x127/0x130
[42365.769324] [<c0387491>] ? dev_alloc_skb+0x21/0x40
[42365.769324] [<c0387491>] ? dev_alloc_skb+0x21/0x40
[42365.769324] [<c0386e0e>] __alloc_skb+0x4e/0x100
[42365.769324] [<c0387491>] dev_alloc_skb+0x21/0x40
[42365.769324] [<c02e47c8>] ath5k_rx_skb_alloc+0x28/0x180
[42365.769324] [<c04077fe>] ? _spin_lock+0x3e/0x50
[42365.769324] [<c02e6082>] ath5k_tasklet_rx+0x1e2/0x6a0
[42365.769324] [<c0148a0b>] ? trace_hardirqs_off+0xb/0x10
[42365.769324] [<c0407ccc>] ? _spin_unlock_irqrestore+0x3c/0x60
[42365.769324] [<c0144000>] ? clocksource_get_next+0x40/0x50
[42365.769324] [<c02dce8b>] ? ath5k_hw_get_isr+0x6b/0x3d0
[42365.769324] [<c0116a62>] ? read_hpet+0x12/0x20
[42365.769324] [<c02dd217>] ? ath5k_hw_is_intr_pending+0x27/0x60
[42365.769324] [<c012d4d4>] tasklet_action+0x44/0x90
[42365.769324] [<c012d035>] __do_softirq+0x65/0x110
[42365.769324] [<c012d135>] do_softirq+0x55/0x60
[42365.769324] [<c012d41c>] irq_exit+0x6c/0x80
[42365.769324] [<c01051d7>] do_IRQ+0x57/0xb0
[42365.769324] [<c010396c>] common_interrupt+0x2c/0x34
[42365.769324] [<c0279444>] ? acpi_idle_enter_bm+0x1ec/0x21d
[42365.769324] [<c0354a0c>] cpuidle_idle_call+0x6c/0xc0
[42365.769324] [<c0101ebb>] cpu_idle+0x4b/0x70
[42365.769324] [<c03fc215>] rest_init+0x55/0x60
[42365.769324] FIX kmalloc-4096: Restoring 0xecca8010-0xecca8053=0x6b
[42365.769324]
[42365.769324] FIX kmalloc-4096: Marking all objects used
[48070.015841] ath5k phy0: unsupported jumbo
[48214.117742] ath5k phy0: unsupported jumbo

The following are also in dmesg but long before a bunch of
suspend/resumes were done:

[ 3454.987987] ath5k phy0: unsupported jumbo
[ 3563.569499] ath5k phy0: noise floor calibration timeout (2447MHz)
[ 9251.877173] ath5k phy0: unsupported jumbo

Alas, while I did have ftrace going I accidentally killed off my script
that would stop it on a BUG before I went to bed so I don't have
anything else to report...

Just a quick heads up - I will probably lose the ability to "easily"
test this problem by the end of this month...

--
Sitsofe | http://sucs.org/~sits/

2009-03-13 09:52:30

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Thu, Mar 12, 2009 at 06:10:48AM +0000, Sitsofe Wheeler wrote:
> On Mon, Mar 09, 2009 at 08:43:44PM -0400, Bob Copeland wrote:
> >
> > Ok, here's a patch, it survived a few hours of testing with 3 rx buffers.
> > Sitsofe, it's worth a try applying this one, even though it probably
> > isn't it :)
>
> I applied it yesterday and all seemed well for a few hours (suspending
> and resuming a fair bit too) so I left it overnight but when I looked
> this morning this is what I found:
>
> Just a quick heads up - I will probably lose the ability to "easily"
> test this problem by the end of this month...

OK I left things overnight and this happened again with the again with
the patch installed. This time I had an ftrace filter in place and I
think the function trace goes back around 27 minutes. The dmesg doesn't
report any jumbo frame errors but it does mention ath5k phy0: noise
floor calibration timeout about two hours before the poison is
overwritten.

The dmesg and trace can be found on
http://sucs.org/~sits/test/eeepc-debug/20090313/ .

The one I'll note is that every time this issue has occurred I've been
connected to encrypted networks (both WPA and WEP).

--
Sitsofe | http://sucs.org/~sits/

2009-03-13 12:29:08

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Fri, Mar 13, 2009 at 09:52:13AM +0000, Sitsofe Wheeler wrote:
> The dmesg and trace can be found on
> http://sucs.org/~sits/test/eeepc-debug/20090313/ .
>
> The one I'll note is that every time this issue has occurred I've been
> connected to encrypted networks (both WPA and WEP).

Awesome, thanks for the great debugging help!

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-20 13:45:16

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Fri, Mar 13, 2009 at 09:52:13AM +0000, Sitsofe Wheeler wrote:
> The dmesg and trace can be found on
> http://sucs.org/~sits/test/eeepc-debug/20090313/ .

Looks like the skb was reused right after it was freed by the mac80211
workqueue so that seems inline with the idea that the list is getting
corrupted somehow. On top of the last patch, would you mind running
this overnight? It'll dump a lot of debug info, I'm really only
interested in the last 5 invocations of ath5k_debug_printrxbuffs or so
before the poison. During a scan you'll see lots of rx_start/rx_stop.

Hmm, I can think of another scenario that could break: if the hw updated
rxdp before DMA completes, then we should check next packet's status too
in case 'current' packet's status is clobbered.

Someone suggested dumping the self links and deal with RXEOL, maybe a
good idea :)

diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c
index a4e385b..e21705c 100644
--- a/drivers/net/wireless/ath5k/base.c
+++ b/drivers/net/wireless/ath5k/base.c
@@ -1143,8 +1143,10 @@ ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)

if (!skb) {
skb = ath5k_rx_skb_alloc(sc, &bf->skbaddr);
- if (!skb)
+ if (!skb) {
+ printk(KERN_DEBUG "ath5k: error exit from rxbuf_setup\n");
return -ENOMEM;
+ }
bf->skb = skb;
}

@@ -1561,6 +1563,8 @@ ath5k_rx_start(struct ath5k_softc *sc)
ath5k_mode_setup(sc); /* set filters, etc. */
ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */

+ printk(KERN_DEBUG "ath5k: rx_start\n");
+
return 0;
err:
return ret;
@@ -1578,8 +1582,7 @@ ath5k_rx_stop(struct ath5k_softc *sc)
ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */
ath5k_hw_stop_rx_dma(ah); /* disable DMA engine */

- ath5k_debug_printrxbuffs(sc, ah);
-
+ printk(KERN_DEBUG "ath5k: rx_stop\n");
sc->rxlink = NULL; /* just in case */
}

@@ -1682,6 +1685,7 @@ ath5k_tasklet_rx(unsigned long data)
int ret;
int hdrlen;
int padsize;
+ static int foo=0;

spin_lock(&sc->rxbuflock);
if (list_empty(&sc->rxbuf)) {
@@ -1689,6 +1693,10 @@ ath5k_tasklet_rx(unsigned long data)
goto unlock;
}
do {
+ /* dump list state every 8 pkts */
+ if (!(foo++ & 7))
+ ath5k_debug_printrxbuffs(sc, sc->ah);
+
rxs.flag = 0;

bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
@@ -2308,6 +2316,8 @@ ath5k_stop_locked(struct ath5k_softc *sc)
} else
sc->rxlink = NULL;

+ printk(KERN_DEBUG "ath5k: rx_stop_locked\n");
+
return 0;
}

@@ -2430,6 +2440,8 @@ ath5k_intr(int irq, void *dev_id)
* least on older hardware revs.
*/
sc->rxlink = NULL;
+ printk(KERN_DEBUG "ath5k: RXEOL\n");
+
}
if (status & AR5K_INT_TXURN) {
/* bump tx trigger level */
diff --git a/drivers/net/wireless/ath5k/debug.c b/drivers/net/wireless/ath5k/debug.c
index ccaeb5c..c544da5 100644
--- a/drivers/net/wireless/ath5k/debug.c
+++ b/drivers/net/wireless/ath5k/debug.c
@@ -505,7 +505,8 @@ ath5k_debug_printrxbuf(struct ath5k_buf *bf, int done,
struct ath5k_desc *ds = bf->desc;
struct ath5k_hw_all_rx_desc *rd = &ds->ud.ds_rx;

- printk(KERN_DEBUG "R (%p %llx) %08x %08x %08x %08x %08x %08x %c\n",
+ printk(KERN_DEBUG "R %p (%p %llx) %08x %08x %08x %08x %08x %08x %c\n",
+ bf,
ds, (unsigned long long)bf->daddr,
ds->ds_link, ds->ds_data,
rd->rx_ctl.rx_control_0, rd->rx_ctl.rx_control_1,
@@ -518,23 +519,18 @@ ath5k_debug_printrxbuffs(struct ath5k_softc *sc, struct ath5k_hw *ah)
{
struct ath5k_desc *ds;
struct ath5k_buf *bf;
- struct ath5k_rx_status rs = {};
+ struct ath5k_rx_status rs;
int status;

- if (likely(!(sc->debug.level & ATH5K_DEBUG_RESET)))
- return;
-
printk(KERN_DEBUG "rx queue %x, link %p\n",
ath5k_hw_get_rxdp(ah), sc->rxlink);

- spin_lock_bh(&sc->rxbuflock);
list_for_each_entry(bf, &sc->rxbuf, list) {
ds = bf->desc;
+ memset(&rs, 0, sizeof(struct ath5k_rx_status));
status = ah->ah_proc_rx_desc(ah, ds, &rs);
- if (!status)
- ath5k_debug_printrxbuf(bf, status == 0, &rs);
+ ath5k_debug_printrxbuf(bf, status == 0, &rs);
}
- spin_unlock_bh(&sc->rxbuflock);
}

void

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-29 14:24:48

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Fri, Mar 20, 2009 at 09:14:37AM -0400, Bob Copeland wrote:
>
> Looks like the skb was reused right after it was freed by the mac80211
> workqueue so that seems inline with the idea that the list is getting
> corrupted somehow. On top of the last patch, would you mind running
> this overnight? It'll dump a lot of debug info, I'm really only
> interested in the last 5 invocations of ath5k_debug_printrxbuffs or so
> before the poison. During a scan you'll see lots of rx_start/rx_stop.

I've been away travelling for the past week and I move house on the 1st
April (which will make testing this much harder from then on) but I'll
try to get one final test in before the move.

Do you need an ftrace in addition to dmesg for this? If so is it better
to leave ieee calls out of the ftrace?

--
Sitsofe | http://sucs.org/~sits/

2009-03-29 15:14:26

by Bob Copeland

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Sun, Mar 29, 2009 at 03:24:32PM +0100, Sitsofe Wheeler wrote:
> I've been away travelling for the past week and I move house on the 1st
> April (which will make testing this much harder from then on) but I'll
> try to get one final test in before the move.
>
> Do you need an ftrace in addition to dmesg for this? If so is it better
> to leave ieee calls out of the ftrace?

No, thanks - the debug output will be plenty verbose already and should
tell everything we need to know.

--
Bob Copeland %% http://www.bobcopeland.com

2009-03-31 08:31:09

by Sitsofe Wheeler

[permalink] [raw]
Subject: Re: [TIP] BUG kmalloc-4096: Poison overwritten (ath5k_rx_skb_alloc)

On Sun, Mar 29, 2009 at 11:14:01AM -0400, Bob Copeland wrote:
>
> No, thanks - the debug output will be plenty verbose already and should
> tell everything we need to know.

Frustratingly despite leaving the machine on for two nights, the slab
poison message has not reappeared while debugging was on. Unfortunately
the debug messages rapidly fill up the SSD so I resorted to stopping
syslogd, upping the size of the kernel message buffer and using scripts
like the following:

touch /tmp/kmsg
watch -n1 'if ! `grep -i poison /tmp/kmsg`; then mv /tmp/kmsg /tmp/kmsg.1; dmesg > /tmp/kmsg; fi'
watch -n2 'if `grep -qi "ath5k phy" /tmp/kmsg`; then grep -B20 -i "ath5k phy" /tmp/kmsg* >> /tmp/ath5k.txt; fi'

There was only one unsupported jumbo message recorded (apparently). As
it happens syslog decided to start itself this morning so I will post
the debug output in the lead up to the latest unsupported jumbo message:

[43598.870727] rx queue 31dd41a0, link f1dd4160
[43598.870739] R f1dd6120 (f1dd4180 31dd4180) 31dd41a0 1e086140 00000000 00000a60 134d8041 134d8041 *
[43598.870747] R f1dd6138 (f1dd41a0 31dd41a0) 31dd41c0 1e080040 00000000 00000a40 00000000 00000000
[43598.870754] R f1dd6150 (f1dd41c0 31dd41c0) 31dd41e0 1e0830c0 00000000 00000a50 00000000 00000000
[43598.870762] R f1dd6168 (f1dd41e0 31dd41e0) 31dd4200 1e0c5100 00000000 00000a70 00000000 00000000
[43598.870769] R f1dd6180 (f1dd4200 31dd4200) 31dd4220 1e0c2080 00000000 00000a60 00000000 00000000
[43598.870777] R f1dd6198 (f1dd4220 31dd4220) 31dd4240 1e0c1040 00000000 00000a70 00000000 00000000
[43598.870784] R f1dd61b0 (f1dd4240 31dd4240) 31dd4260 1e0c30c0 00000000 00000a50 00000000 00000000
[43598.870792] R f1dd61c8 (f1dd4260 31dd4260) 31dd4280 1e0c0040 00000000 00000a40 00000000 00000000
[43598.870799] R f1dd61e0 (f1dd4280 31dd4280) 31dd42a0 1e0c6140 00000000 00000a60 00000000 00000000
[43598.870807] R f1dd61f8 (f1dd42a0 31dd42a0) 31dd42c0 1e0c4100 00000000 00000a40 00000000 00000000
[43598.870815] R f1dd6210 (f1dd42c0 31dd42c0) 31dd42e0 1e0f30c0 00000000 00000a50 00000000 00000000
[43598.870822] R f1dd6228 (f1dd42e0 31dd42e0) 31dd4300 1e0f4100 00000000 00000a40 00000000 00000000
[43598.870830] R f1dd6240 (f1dd4300 31dd4300) 31dd4320 1e0f0040 00000000 00000a40 00000000 00000000
[43598.870837] R f1dd6258 (f1dd4320 31dd4320) 31dd4340 1e0f2080 00000000 00000a60 00000000 00000000
[43598.870845] R f1dd6270 (f1dd4340 31dd4340) 31dd4360 1e0f1040 00000000 00000a70 00000000 00000000
[43598.870852] R f1dd6288 (f1dd4360 31dd4360) 31dd4380 1e0f6140 00000000 00000a60 00000000 00000000
[43598.870860] R f1dd62a0 (f1dd4380 31dd4380) 31dd43a0 1e07d100 00000000 00000a70 00000000 00000000
[43598.870868] R f1dd62b8 (f1dd43a0 31dd43a0) 31dd43c0 1e1bd100 00000000 00000a70 00000000 00000000
[43598.870875] R f1dd62d0 (f1dd43c0 31dd43c0) 31dd43e0 1e1bb0c0 00000000 00000a50 00000000 00000000
[43598.870883] R f1dd62e8 (f1dd43e0 31dd43e0) 31dd4400 1e1be140 00000000 00000a60 00000000 00000000
[43598.870890] R f1dd6300 (f1dd4400 31dd4400) 31dd4420 1e1ba080 00000000 00000a60 00000000 00000000
[43598.870898] R f1dd6318 (f1dd4420 31dd4420) 31dd4440 1e1bc100 00000000 00000a40 00000000 00000000
[43598.870905] R f1dd6330 (f1dd4440 31dd4440) 31dd4460 1e1b8040 00000000 00000a40 00000000 00000000
[43598.870913] R f1dd6348 (f1dd4460 31dd4460) 31dd4480 34c36140 00000000 00000a60 00000000 00000000
[43598.870920] R f1dd6360 (f1dd4480 31dd4480) 31dd44a0 1e082080 00000000 00000a60 00000000 00000000
[43598.870928] R f1dd6378 (f1dd44a0 31dd44a0) 31dd44c0 1e079040 00000000 00000a70 00000000 00000000
[43598.870935] R f1dd6390 (f1dd44c0 31dd44c0) 31dd44e0 1e07e140 00000000 00000a60 00000000 00000000
[43598.870943] R f1dd63a8 (f1dd44e0 31dd44e0) 31dd4000 1e078040 00000000 00000a40 00000000 00000000
[43598.870951] R f1dd6000 (f1dd4000 31dd4000) 31dd4020 1e07b0c0 00000000 00000a50 00000000 00000000
[43598.870958] R f1dd6018 (f1dd4020 31dd4020) 31dd4040 1e07c100 00000000 00000a40 00000000 00000000
[43598.870966] R f1dd6030 (f1dd4040 31dd4040) 31dd4060 1e07a080 00000000 00000a60 00000000 00000000
[43598.870973] R f1dd6048 (f1dd4060 31dd4060) 31dd4080 1e1b9040 00000000 00000a70 00000000 00000000
[43598.870981] R f1dd6060 (f1dd4080 31dd4080) 31dd40a0 1e0f5100 00000000 00000a70 00000000 00000000
[43598.870989] R f1dd6078 (f1dd40a0 31dd40a0) 31dd40c0 34c35100 00000000 00000a70 00000000 00000000
[43598.870996] R f1dd6090 (f1dd40c0 31dd40c0) 31dd40e0 34c34100 00000000 00000a40 00000000 00000000
[43598.871331] R f1dd60a8 (f1dd40e0 31dd40e0) 31dd4100 34c32080 00000000 00000a60 00000000 00000000
[43598.871338] R f1dd60c0 (f1dd4100 31dd4100) 31dd4120 31e8b0c0 00000000 00000a50 00000000 00000000
[43598.871346] R f1dd60d8 (f1dd4120 31dd4120) 31dd4140 31e8d100 00000000 00000a70 00000000 00000000
[43598.871353] R f1dd60f0 (f1dd4140 31dd4140) 31dd4160 31e88040 00000000 00000a40 00000000 00000000
[43598.871361] R f1dd6108 (f1dd4160 31dd4160) 31dd4160 31e8c100 00000000 00000a40 00000000 00000000
[43599.280500] rx queue 31dd4220, link f1dd41e0
[43599.280511] R f1dd6180 (f1dd4200 31dd4200) 31dd4220 1e0c2080 00000000 00000a60 134d8041 134d8041 *
[43599.280519] R f1dd6198 (f1dd4220 31dd4220) 31dd4240 1e0c1040 00000000 00000a70 00000000 00000000
[43599.280527] R f1dd61b0 (f1dd4240 31dd4240) 31dd4260 1e0c30c0 00000000 00000a50 00000000 00000000
[43599.280534] R f1dd61c8 (f1dd4260 31dd4260) 31dd4280 1e0c0040 00000000 00000a40 00000000 00000000
[43599.280542] R f1dd61e0 (f1dd4280 31dd4280) 31dd42a0 1e0c6140 00000000 00000a60 00000000 00000000
[43599.280549] R f1dd61f8 (f1dd42a0 31dd42a0) 31dd42c0 1e0c4100 00000000 00000a40 00000000 00000000
[43599.280557] R f1dd6210 (f1dd42c0 31dd42c0) 31dd42e0 1e0f30c0 00000000 00000a50 00000000 00000000
[43599.280564] R f1dd6228 (f1dd42e0 31dd42e0) 31dd4300 1e0f4100 00000000 00000a40 00000000 00000000
[43599.280572] R f1dd6240 (f1dd4300 31dd4300) 31dd4320 1e0f0040 00000000 00000a40 00000000 00000000
[43599.280580] R f1dd6258 (f1dd4320 31dd4320) 31dd4340 1e0f2080 00000000 00000a60 00000000 00000000
[43599.280587] R f1dd6270 (f1dd4340 31dd4340) 31dd4360 1e0f1040 00000000 00000a70 00000000 00000000
[43599.280595] R f1dd6288 (f1dd4360 31dd4360) 31dd4380 1e0f6140 00000000 00000a60 00000000 00000000
[43599.280602] R f1dd62a0 (f1dd4380 31dd4380) 31dd43a0 1e07d100 00000000 00000a70 00000000 00000000
[43599.280610] R f1dd62b8 (f1dd43a0 31dd43a0) 31dd43c0 1e1bd100 00000000 00000a70 00000000 00000000
[43599.280617] R f1dd62d0 (f1dd43c0 31dd43c0) 31dd43e0 1e1bb0c0 00000000 00000a50 00000000 00000000
[43599.280625] R f1dd62e8 (f1dd43e0 31dd43e0) 31dd4400 1e1be140 00000000 00000a60 00000000 00000000
[43599.280633] R f1dd6300 (f1dd4400 31dd4400) 31dd4420 1e1ba080 00000000 00000a60 00000000 00000000
[43599.280640] R f1dd6318 (f1dd4420 31dd4420) 31dd4440 1e1bc100 00000000 00000a40 00000000 00000000
[43599.280648] R f1dd6330 (f1dd4440 31dd4440) 31dd4460 1e1b8040 00000000 00000a40 00000000 00000000
[43599.280655] R f1dd6348 (f1dd4460 31dd4460) 31dd4480 34c36140 00000000 00000a60 00000000 00000000
[43599.280663] R f1dd6360 (f1dd4480 31dd4480) 31dd44a0 1e082080 00000000 00000a60 00000000 00000000
[43599.280670] R f1dd6378 (f1dd44a0 31dd44a0) 31dd44c0 1e079040 00000000 00000a70 00000000 00000000
[43599.280678] R f1dd6390 (f1dd44c0 31dd44c0) 31dd44e0 1e07e140 00000000 00000a60 00000000 00000000
[43599.280685] R f1dd63a8 (f1dd44e0 31dd44e0) 31dd4000 1e078040 00000000 00000a40 00000000 00000000
[43599.280693] R f1dd6000 (f1dd4000 31dd4000) 31dd4020 1e07b0c0 00000000 00000a50 00000000 00000000
[43599.280701] R f1dd6018 (f1dd4020 31dd4020) 31dd4040 1e07c100 00000000 00000a40 00000000 00000000
[43599.280708] R f1dd6030 (f1dd4040 31dd4040) 31dd4060 1e07a080 00000000 00000a60 00000000 00000000
[43599.280716] R f1dd6048 (f1dd4060 31dd4060) 31dd4080 1e1b9040 00000000 00000a70 00000000 00000000
[43599.280723] R f1dd6060 (f1dd4080 31dd4080) 31dd40a0 1e0f5100 00000000 00000a70 00000000 00000000
[43599.280731] R f1dd6078 (f1dd40a0 31dd40a0) 31dd40c0 34c35100 00000000 00000a70 00000000 00000000
[43599.280739] R f1dd6090 (f1dd40c0 31dd40c0) 31dd40e0 34c34100 00000000 00000a40 00000000 00000000
[43599.280746] R f1dd60a8 (f1dd40e0 31dd40e0) 31dd4100 34c32080 00000000 00000a60 00000000 00000000
[43599.280754] R f1dd60c0 (f1dd4100 31dd4100) 31dd4120 31e8b0c0 00000000 00000a50 00000000 00000000
[43599.280761] R f1dd60d8 (f1dd4120 31dd4120) 31dd4140 31e8d100 00000000 00000a70 00000000 00000000
[43599.280769] R f1dd60f0 (f1dd4140 31dd4140) 31dd4160 31e88040 00000000 00000a40 00000000 00000000
[43599.280776] R f1dd6108 (f1dd4160 31dd4160) 31dd4180 31e8c100 00000000 00000a40 00000000 00000000
[43599.280784] R f1dd6120 (f1dd4180 31dd4180) 31dd41a0 31e89040 00000000 00000a70 00000000 00000000
[43599.280792] R f1dd6138 (f1dd41a0 31dd41a0) 31dd41c0 1e086140 00000000 00000a60 00000000 00000000
[43599.280799] R f1dd6150 (f1dd41c0 31dd41c0) 31dd41e0 1e080040 00000000 00000a40 00000000 00000000
[43599.280807] R f1dd6168 (f1dd41e0 31dd41e0) 31dd41e0 1e0830c0 00000000 00000a50 00000000 00000000
[43599.690267] rx queue 31dd42a0, link f1dd4260
[43599.690278] R f1dd61e0 (f1dd4280 31dd4280) 31dd42a0 1e0c6140 00000000 00000a60 134d8041 134d8041 *
[43599.690286] R f1dd61f8 (f1dd42a0 31dd42a0) 31dd42c0 1e0c4100 00000000 00000a40 00000000 00000000
[43599.690293] R f1dd6210 (f1dd42c0 31dd42c0) 31dd42e0 1e0f30c0 00000000 00000a50 00000000 00000000
[43599.690301] R f1dd6228 (f1dd42e0 31dd42e0) 31dd4300 1e0f4100 00000000 00000a40 00000000 00000000
[43599.690308] R f1dd6240 (f1dd4300 31dd4300) 31dd4320 1e0f0040 00000000 00000a40 00000000 00000000
[43599.690316] R f1dd6258 (f1dd4320 31dd4320) 31dd4340 1e0f2080 00000000 00000a60 00000000 00000000
[43599.690323] R f1dd6270 (f1dd4340 31dd4340) 31dd4360 1e0f1040 00000000 00000a70 00000000 00000000
[43599.690331] R f1dd6288 (f1dd4360 31dd4360) 31dd4380 1e0f6140 00000000 00000a60 00000000 00000000
[43599.690338] R f1dd62a0 (f1dd4380 31dd4380) 31dd43a0 1e07d100 00000000 00000a70 00000000 00000000
[43599.690346] R f1dd62b8 (f1dd43a0 31dd43a0) 31dd43c0 1e1bd100 00000000 00000a70 00000000 00000000
[43599.690354] R f1dd62d0 (f1dd43c0 31dd43c0) 31dd43e0 1e1bb0c0 00000000 00000a50 00000000 00000000
[43599.690361] R f1dd62e8 (f1dd43e0 31dd43e0) 31dd4400 1e1be140 00000000 00000a60 00000000 00000000
[43599.690369] R f1dd6300 (f1dd4400 31dd4400) 31dd4420 1e1ba080 00000000 00000a60 00000000 00000000
[43599.690376] R f1dd6318 (f1dd4420 31dd4420) 31dd4440 1e1bc100 00000000 00000a40 00000000 00000000
[43599.690384] R f1dd6330 (f1dd4440 31dd4440) 31dd4460 1e1b8040 00000000 00000a40 00000000 00000000
[43599.690391] R f1dd6348 (f1dd4460 31dd4460) 31dd4480 34c36140 00000000 00000a60 00000000 00000000
[43599.690399] R f1dd6360 (f1dd4480 31dd4480) 31dd44a0 1e082080 00000000 00000a60 00000000 00000000
[43599.690406] R f1dd6378 (f1dd44a0 31dd44a0) 31dd44c0 1e079040 00000000 00000a70 00000000 00000000
[43599.690414] R f1dd6390 (f1dd44c0 31dd44c0) 31dd44e0 1e07e140 00000000 00000a60 00000000 00000000
[43599.690421] R f1dd63a8 (f1dd44e0 31dd44e0) 31dd4000 1e078040 00000000 00000a40 00000000 00000000
[43599.690429] R f1dd6000 (f1dd4000 31dd4000) 31dd4020 1e07b0c0 00000000 00000a50 00000000 00000000
[43599.690437] R f1dd6018 (f1dd4020 31dd4020) 31dd4040 1e07c100 00000000 00000a40 00000000 00000000
[43599.690444] R f1dd6030 (f1dd4040 31dd4040) 31dd4060 1e07a080 00000000 00000a60 00000000 00000000
[43599.690452] R f1dd6048 (f1dd4060 31dd4060) 31dd4080 1e1b9040 00000000 00000a70 00000000 00000000
[43599.690459] R f1dd6060 (f1dd4080 31dd4080) 31dd40a0 1e0f5100 00000000 00000a70 00000000 00000000
[43599.690467] R f1dd6078 (f1dd40a0 31dd40a0) 31dd40c0 34c35100 00000000 00000a70 00000000 00000000
[43599.690474] R f1dd6090 (f1dd40c0 31dd40c0) 31dd40e0 34c34100 00000000 00000a40 00000000 00000000
[43599.690482] R f1dd60a8 (f1dd40e0 31dd40e0) 31dd4100 34c32080 00000000 00000a60 00000000 00000000
[43599.690489] R f1dd60c0 (f1dd4100 31dd4100) 31dd4120 31e8b0c0 00000000 00000a50 00000000 00000000
[43599.690497] R f1dd60d8 (f1dd4120 31dd4120) 31dd4140 31e8d100 00000000 00000a70 00000000 00000000
[43599.690504] R f1dd60f0 (f1dd4140 31dd4140) 31dd4160 31e88040 00000000 00000a40 00000000 00000000
[43599.690512] R f1dd6108 (f1dd4160 31dd4160) 31dd4180 31e8c100 00000000 00000a40 00000000 00000000
[43599.690519] R f1dd6120 (f1dd4180 31dd4180) 31dd41a0 31e89040 00000000 00000a70 00000000 00000000
[43599.690527] R f1dd6138 (f1dd41a0 31dd41a0) 31dd41c0 1e086140 00000000 00000a60 00000000 00000000
[43599.690534] R f1dd6150 (f1dd41c0 31dd41c0) 31dd41e0 1e080040 00000000 00000a40 00000000 00000000
[43599.690542] R f1dd6168 (f1dd41e0 31dd41e0) 31dd4200 1e0830c0 00000000 00000a50 00000000 00000000
[43599.690550] R f1dd6180 (f1dd4200 31dd4200) 31dd4220 1e081040 00000000 00000a70 00000000 00000000
[43599.690557] R f1dd6198 (f1dd4220 31dd4220) 31dd4240 1e084100 00000000 00000a40 00000000 00000000
[43599.690565] R f1dd61b0 (f1dd4240 31dd4240) 31dd4260 1e085100 00000000 00000a70 00000000 00000000
[43599.690572] R f1dd61c8 (f1dd4260 31dd4260) 31dd4260 1e0c30c0 00000000 00000a50 00000000 00000000
[43600.099612] rx queue 31dd4320, link f1dd42e0
[43600.099623] R f1dd6240 (f1dd4300 31dd4300) 31dd4320 1e0f0040 00000000 00000a40 133d8041 133d8041 *
[43600.099631] R f1dd6258 (f1dd4320 31dd4320) 31dd4340 1e0f2080 00000000 00000a60 00000000 00000000
[43600.099639] R f1dd6270 (f1dd4340 31dd4340) 31dd4360 1e0f1040 00000000 00000a70 00000000 00000000
[43600.099646] R f1dd6288 (f1dd4360 31dd4360) 31dd4380 1e0f6140 00000000 00000a60 00000000 00000000
[43600.099654] R f1dd62a0 (f1dd4380 31dd4380) 31dd43a0 1e07d100 00000000 00000a70 00000000 00000000
[43600.099661] R f1dd62b8 (f1dd43a0 31dd43a0) 31dd43c0 1e1bd100 00000000 00000a70 00000000 00000000
[43600.099669] R f1dd62d0 (f1dd43c0 31dd43c0) 31dd43e0 1e1bb0c0 00000000 00000a50 00000000 00000000
[43600.099676] R f1dd62e8 (f1dd43e0 31dd43e0) 31dd4400 1e1be140 00000000 00000a60 00000000 00000000
[43600.099684] R f1dd6300 (f1dd4400 31dd4400) 31dd4420 1e1ba080 00000000 00000a60 00000000 00000000
[43600.099691] R f1dd6318 (f1dd4420 31dd4420) 31dd4440 1e1bc100 00000000 00000a40 00000000 00000000
[43600.099699] R f1dd6330 (f1dd4440 31dd4440) 31dd4460 1e1b8040 00000000 00000a40 00000000 00000000
[43600.099706] R f1dd6348 (f1dd4460 31dd4460) 31dd4480 34c36140 00000000 00000a60 00000000 00000000
[43600.099714] R f1dd6360 (f1dd4480 31dd4480) 31dd44a0 1e082080 00000000 00000a60 00000000 00000000
[43600.099721] R f1dd6378 (f1dd44a0 31dd44a0) 31dd44c0 1e079040 00000000 00000a70 00000000 00000000
[43600.099729] R f1dd6390 (f1dd44c0 31dd44c0) 31dd44e0 1e07e140 00000000 00000a60 00000000 00000000
[43600.099736] R f1dd63a8 (f1dd44e0 31dd44e0) 31dd4000 1e078040 00000000 00000a40 00000000 00000000
[43600.099744] R f1dd6000 (f1dd4000 31dd4000) 31dd4020 1e07b0c0 00000000 00000a50 00000000 00000000
[43600.099751] R f1dd6018 (f1dd4020 31dd4020) 31dd4040 1e07c100 00000000 00000a40 00000000 00000000
[43600.099759] R f1dd6030 (f1dd4040 31dd4040) 31dd4060 1e07a080 00000000 00000a60 00000000 00000000
[43600.099766] R f1dd6048 (f1dd4060 31dd4060) 31dd4080 1e1b9040 00000000 00000a70 00000000 00000000
[43600.099774] R f1dd6060 (f1dd4080 31dd4080) 31dd40a0 1e0f5100 00000000 00000a70 00000000 00000000
[43600.099781] R f1dd6078 (f1dd40a0 31dd40a0) 31dd40c0 34c35100 00000000 00000a70 00000000 00000000
[43600.099789] R f1dd6090 (f1dd40c0 31dd40c0) 31dd40e0 34c34100 00000000 00000a40 00000000 00000000
[43600.099796] R f1dd60a8 (f1dd40e0 31dd40e0) 31dd4100 34c32080 00000000 00000a60 00000000 00000000
[43600.099804] R f1dd60c0 (f1dd4100 31dd4100) 31dd4120 31e8b0c0 00000000 00000a50 00000000 00000000
[43600.099811] R f1dd60d8 (f1dd4120 31dd4120) 31dd4140 31e8d100 00000000 00000a70 00000000 00000000
[43600.099819] R f1dd60f0 (f1dd4140 31dd4140) 31dd4160 31e88040 00000000 00000a40 00000000 00000000
[43600.099826] R f1dd6108 (f1dd4160 31dd4160) 31dd4180 31e8c100 00000000 00000a40 00000000 00000000
[43600.099834] R f1dd6120 (f1dd4180 31dd4180) 31dd41a0 31e89040 00000000 00000a70 00000000 00000000
[43600.099841] R f1dd6138 (f1dd41a0 31dd41a0) 31dd41c0 1e086140 00000000 00000a60 00000000 00000000
[43600.099849] R f1dd6150 (f1dd41c0 31dd41c0) 31dd41e0 1e080040 00000000 00000a40 00000000 00000000
[43600.099856] R f1dd6168 (f1dd41e0 31dd41e0) 31dd4200 1e0830c0 00000000 00000a50 00000000 00000000
[43600.099864] R f1dd6180 (f1dd4200 31dd4200) 31dd4220 1e081040 00000000 00000a70 00000000 00000000
[43600.099871] R f1dd6198 (f1dd4220 31dd4220) 31dd4240 1e084100 00000000 00000a40 00000000 00000000
[43600.099879] R f1dd61b0 (f1dd4240 31dd4240) 31dd4260 1e085100 00000000 00000a70 00000000 00000000
[43600.099886] R f1dd61c8 (f1dd4260 31dd4260) 31dd4280 1e0c30c0 00000000 00000a50 00000000 00000000
[43600.099894] R f1dd61e0 (f1dd4280 31dd4280) 31dd42a0 1e0c0040 00000000 00000a40 00000000 00000000
[43600.099901] R f1dd61f8 (f1dd42a0 31dd42a0) 31dd42c0 1e0c6140 00000000 00000a60 00000000 00000000
[43600.099908] R f1dd6210 (f1dd42c0 31dd42c0) 31dd42e0 1e0c4100 00000000 00000a40 00000000 00000000
[43600.099916] R f1dd6228 (f1dd42e0 31dd42e0) 31dd42e0 1e0c1040 00000000 00000a70 00000000 00000000
[43600.112367] ath5k phy0: unsupported jumbo
[43600.304545] rx queue 31dd43a0, link f1dd4380

Is there anything out of the ordinary in the above?

--
Sitsofe | http://sucs.org/~sits/