search for: op_glob

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

Did you mean: bo_glob
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...vents_filter.c index 78a678eeb140..52df27e45843 100644 --- a/kernel/trace/trace_events_filter.c +++ b/kernel/trace/trace_events_filter.c @@ -1273,7 +1273,7 @@ static int parse_pred(const char *str, void *data, switch (op) { case OP_NE: pred->not = 1; - fallthrough; + break; case OP_GLOB: case OP_EQ: break; diff --git a/net/dccp/output.c b/net/dccp/output.c index 50e6d5699bb2..5a4dbd7cee32 100644 --- a/net/dccp/output.c +++ b/net/dccp/output.c @@ -62,7 +62,7 @@ static int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb) switch (dcb->dccpd_type) { case DCCP_PK...