diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-07-07 12:21:38 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-07 15:47:46 -0700 |
commit | 964201de695b8afca80652f048a95dc2cb68fcb7 (patch) | |
tree | 6017e5b08ea2c376a05e060c516be2ff36f7cad7 /net/sched/sch_fq_codel.c | |
parent | 535094a0c9c4908a31f3158a647e203ceeecf277 (diff) | |
download | linux-964201de695b8afca80652f048a95dc2cb68fcb7.tar.gz linux-964201de695b8afca80652f048a95dc2cb68fcb7.tar.bz2 linux-964201de695b8afca80652f048a95dc2cb68fcb7.zip |
net/sched: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary
fall-through markings when it is the case.
[1] https://www.kernel.org/doc/html/latest/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_fq_codel.c')
-rw-r--r-- | net/sched/sch_fq_codel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/sch_fq_codel.c b/net/sched/sch_fq_codel.c index 6bf979f95509..bca016ffc069 100644 --- a/net/sched/sch_fq_codel.c +++ b/net/sched/sch_fq_codel.c @@ -99,7 +99,7 @@ static unsigned int fq_codel_classify(struct sk_buff *skb, struct Qdisc *sch, case TC_ACT_QUEUED: case TC_ACT_TRAP: *qerr = NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; - /* fall through */ + fallthrough; case TC_ACT_SHOT: return 0; } |