[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20080530105334.GA7378@ff.dom.local>
Date: Fri, 30 May 2008 10:53:34 +0000
From: Jarek Poplawski <jarkao2@...il.com>
To: Eric Sesterhenn <snakebyte@....de>
Cc: netdev@...r.kernel.org, Patrick McHardy <kaber@...sh.net>
Subject: Re: Inconsistend lock state in inet_frag_find
On 29-05-2008 14:02, Eric Sesterhenn wrote:
> hi,
>
> the following just popped up on my test box with
> tcpsic6 -s ::1 -d ::1 -p 100000 -r 4995
>
> [ 63.616218] =================================
> [ 63.616456] [ INFO: inconsistent lock state ]
> [ 63.616456] 2.6.26-rc4 #5
> [ 63.616456] ---------------------------------
> [ 63.616456] inconsistent {softirq-on-W} -> {in-softirq-R} usage.
> [ 63.616456] tcpsic6/3869 [HC0[0]:SC1[1]:HE1:SE0] takes:
> [ 63.616456] (&f->lock){---?}, at: [<c06be62e>]
> inet_frag_find+0x1e/0x140
...
Hi,
Could you try this patch?
Regards,
Jarek P.
---
net/ipv6/netfilter/nf_conntrack_reasm.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
index 2dccad4..f3c36d6 100644
--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
+++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
@@ -209,7 +209,9 @@ fq_find(__be32 id, struct in6_addr *src, struct in6_addr *dst)
arg.dst = dst;
hash = ip6qhashfn(id, src, dst);
+ local_bh_disable();
q = inet_frag_find(&nf_init_frags, &nf_frags, &arg, hash);
+ local_bh_enable();
if (q == NULL)
goto oom;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists