diff options
author | Eric Dumazet <edumazet@google.com> | 2016-04-29 23:16:49 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-02 23:02:25 +0200 |
commit | 7309f8821fd65e8272ce82e852532b02967812da (patch) | |
tree | dfc6852b16322b00480ee93f6ab563ca6dc79930 /net/dccp/options.c | |
parent | tcp: do not block bh during prequeue processing (diff) | |
download | linux-7309f8821fd65e8272ce82e852532b02967812da.tar.xz 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/options.c')
-rw-r--r-- | net/dccp/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/options.c b/net/dccp/options.c index b82b7ee9a1d2..74d29c56c367 100644 --- a/net/dccp/options.c +++ b/net/dccp/options.c @@ -253,7 +253,7 @@ out_nonsensical_length: return 0; out_invalid_option: - __DCCP_INC_STATS(DCCP_MIB_INVALIDOPT); + DCCP_INC_STATS(DCCP_MIB_INVALIDOPT); rc = DCCP_RESET_CODE_OPTION_ERROR; out_featneg_failed: DCCP_WARN("DCCP(%p): Option %d (len=%d) error=%u\n", sk, opt, len, rc); |