aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/sendmsg.c
diff options
context:
space:
mode:
authorGustavo A. R. Silva <garsilva@embeddedor.com>2017-10-19 16:54:48 -0500
committerDavid S. Miller <davem@davemloft.net>2017-10-24 18:27:06 +0900
commite3cf39706b89001fd7f3eba0aa70aa40379eef30 (patch)
tree2cc59c0a471b8c2c50a454231103e6ea8c0c0adb /net/rxrpc/sendmsg.c
parentMerge branch 'ipv6-addrconf-hash-improvements-and-cleanups' (diff)
downloadlinux-dev-e3cf39706b89001fd7f3eba0aa70aa40379eef30.tar.xz
linux-dev-e3cf39706b89001fd7f3eba0aa70aa40379eef30.zip
net: rxrpc: 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 '')
-rw-r--r--net/rxrpc/sendmsg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rxrpc/sendmsg.c b/net/rxrpc/sendmsg.c
index 2d9edc656ca3..7d2595582c09 100644
--- a/net/rxrpc/sendmsg.c
+++ b/net/rxrpc/sendmsg.c
@@ -220,6 +220,7 @@ static void rxrpc_queue_packet(struct rxrpc_sock *rx, struct rxrpc_call *call,
ktime_get_real());
if (!last)
break;
+ /* Fall through */
case RXRPC_CALL_SERVER_SEND_REPLY:
call->state = RXRPC_CALL_SERVER_AWAIT_ACK;
rxrpc_notify_end_tx(rx, call, notify_end_tx);