diff options
author | Gustavo A. R. Silva <garsilva@embeddedor.com> | 2017-10-19 16:28:24 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-22 02:07:08 +0100 |
commit | f3ae608edb3be2e9a3f668d47aced3553eaf6c14 (patch) | |
tree | bf6dfa58807999b5514ecd285c54d009e4ba2a46 /net/sched/sch_cbq.c | |
parent | a05b8c43ac3cc156600a60bf6dcd30109bd42a73 (diff) |
net: sched: mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_cbq.c')
-rw-r--r-- | net/sched/sch_cbq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/sch_cbq.c b/net/sched/sch_cbq.c index c3b92d62190e..6361be7881f1 100644 --- a/net/sched/sch_cbq.c +++ b/net/sched/sch_cbq.c @@ -255,6 +255,7 @@ cbq_classify(struct sk_buff *skb, struct Qdisc *sch, int *qerr) case TC_ACT_STOLEN: case TC_ACT_TRAP: *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; + /* fall through */ case TC_ACT_SHOT: return NULL; case TC_ACT_RECLASSIFY: |