search for: do_cn

Displaying 1 result from an estimated 1 matches for "do_cn".

Did you mean: do_cp
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...P_PKT_RESET: break; diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index 825e381e9909..3cf38c0bedf3 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -333,7 +333,7 @@ static int ip_mc_finish_output(struct net *net, struct sock *sk, switch (ret) { case NET_XMIT_CN: do_cn = true; - fallthrough; + break; case NET_XMIT_SUCCESS: break; default: diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c index 97fb6f776114..4844781699d5 100644 --- a/net/netfilter/nf_tables_api.c +++ b/net/netfilter/nf_tables_api.c @@ -8525,7 +8525,7 @@ static int...