diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-11-16 12:23:58 -0200 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:23:50 -0800 |
commit | e523a1550e877f8a8ff87a50269b7ee7bfb43464 (patch) | |
tree | 5450113bb3e5994bac06722f1ef39631fc6129e7 | |
parent | 3c6952624a8f600f9a0fbc1f5db5560a7ef9b13e (diff) | |
download | linux-3.10-e523a1550e877f8a8ff87a50269b7ee7bfb43464.tar.gz linux-3.10-e523a1550e877f8a8ff87a50269b7ee7bfb43464.tar.bz2 linux-3.10-e523a1550e877f8a8ff87a50269b7ee7bfb43464.zip |
[DCCP]: One NET_INC_STATS() could be NET_INC_STATS_BH in dccp_v4_err()
Spotted by Eric Dumazet in tcp_v4_rcv().
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
-rw-r--r-- | net/dccp/ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 6bca71929de..a20eb71d45d 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c @@ -244,7 +244,7 @@ static void dccp_v4_err(struct sk_buff *skb, u32 info) seq = dccp_hdr_seq(skb); if (sk->sk_state != DCCP_LISTEN && !between48(seq, dp->dccps_swl, dp->dccps_swh)) { - NET_INC_STATS(LINUX_MIB_OUTOFWINDOWICMPS); + NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS); goto out; } |