diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-11-16 14:23:58 (GMT) |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 05:23:50 (GMT) |
commit | e523a1550e877f8a8ff87a50269b7ee7bfb43464 (patch) | |
tree | 5450113bb3e5994bac06722f1ef39631fc6129e7 /net/dccp | |
parent | 3c6952624a8f600f9a0fbc1f5db5560a7ef9b13e (diff) | |
download | linux-fsl-qoriq-e523a1550e877f8a8ff87a50269b7ee7bfb43464.tar.xz |
[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>
Diffstat (limited to 'net/dccp')
-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 6bca719..a20eb71 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; } |