From: Gustavo A. R. Silva Date: Tue, 7 Aug 2018 23:13:12 +0000 (-0500) Subject: cxgb4/l2t: Mark expected switch fall-through X-Git-Tag: v4.19-rc1~140^2~94^2~27 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=20e4fb12b146cab4ca9c4f1e10c04fcd67823f43;p=uclinux-h8%2Flinux.git cxgb4/l2t: Mark expected switch fall-through In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Addresses-Coverity-ID: 114910 ("Missing break in switch") Signed-off-by: Gustavo A. R. Silva Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/chelsio/cxgb4/l2t.c b/drivers/net/ethernet/chelsio/cxgb4/l2t.c index 77c2c538b1fd..301c4df8a566 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/l2t.c +++ b/drivers/net/ethernet/chelsio/cxgb4/l2t.c @@ -231,6 +231,7 @@ again: if (e->state == L2T_STATE_STALE) e->state = L2T_STATE_VALID; spin_unlock_bh(&e->lock); + /* fall through */ case L2T_STATE_VALID: /* fast-path, send the packet on */ return t4_ofld_send(adap, skb); case L2T_STATE_RESOLVING: