diff options
author | David S. Miller <davem@davemloft.net> | 2008-03-28 17:30:18 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-28 17:30:18 -0700 |
commit | e8e16b706e8406f1ab3bccab16932ebc513896d8 (patch) | |
tree | 75b52bb42601756995a1ffba206608f3f97b6df5 /net/ipv6 | |
parent | 0ef4730927c54cac5006759fa0cf50fbeff9d191 (diff) |
[INET]: inet_frag_evictor() must run with BH disabled
Based upon a lockdep trace from Dave Jones.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | 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 2a0d698b24d..24c0d03095b 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c @@ -171,7 +171,9 @@ static __inline__ void fq_kill(struct nf_ct_frag6_queue *fq) static void nf_ct_frag6_evictor(void) { + local_bh_disable(); inet_frag_evictor(&nf_init_frags, &nf_frags); + local_bh_enable(); } static void nf_ct_frag6_expire(unsigned long data) |