diff options
author | Gustavo A. R. Silva <garsilva@embeddedor.com> | 2017-10-19 23:28:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-22 03:07:08 +0200 |
commit | f3ae608edb3be2e9a3f668d47aced3553eaf6c14 (patch) | |
tree | bf6dfa58807999b5514ecd285c54d009e4ba2a46 /net/sched/sch_cbq.c | |
parent | net: rose: mark expected switch fall-throughs (diff) | |
download | linux-f3ae608edb3be2e9a3f668d47aced3553eaf6c14.tar.xz linux-f3ae608edb3be2e9a3f668d47aced3553eaf6c14.zip |
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: |