summaryrefslogtreecommitdiffstats
path: root/net/dccp/input.c
diff options
context:
space:
mode:
authorEric Dumazet2016-04-29 23:16:49 +0200
committerDavid S. Miller2016-05-02 23:02:25 +0200
commit7309f8821fd65e8272ce82e852532b02967812da (patch)
treedfc6852b16322b00480ee93f6ab563ca6dc79930 /net/dccp/input.c
parenttcp: do not block bh during prequeue processing (diff)
downloadkernel-qcow2-linux-7309f8821fd65e8272ce82e852532b02967812da.tar.gz
kernel-qcow2-linux-7309f8821fd65e8272ce82e852532b02967812da.tar.xz
kernel-qcow2-linux-7309f8821fd65e8272ce82e852532b02967812da.zip
dccp: do not assume DCCP code is non preemptible
DCCP uses the generic backlog code, and this will soon be changed to not disable BH when protocol is called back. Signed-off-by: Eric Dumazet <edumazet@google.com> Acked-by: Soheil Hassas Yeganeh <soheil@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/input.c')
-rw-r--r--net/dccp/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/input.c b/net/dccp/input.c
index 2437ecc13b82..ba347184bda9 100644
--- a/net/dccp/input.c
+++ b/net/dccp/input.c
@@ -359,7 +359,7 @@ send_sync:
goto discard;
}
- __DCCP_INC_STATS(DCCP_MIB_INERRS);
+ DCCP_INC_STATS(DCCP_MIB_INERRS);
discard:
__kfree_skb(skb);
return 0;