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>
                        ret = 0;
                        break;
                }
+               /* Fall through */
        default:
                ret = -EBUSY;
                break;
                        m->msg_name = &rx->connect_srx;
                        m->msg_namelen = sizeof(rx->connect_srx);
                }
+               /* Fall through */
        case RXRPC_SERVER_BOUND:
        case RXRPC_SERVER_LISTENING:
                ret = rxrpc_do_sendmsg(rx, m, len);
 
        case RXRPC_PACKET_TYPE_BUSY:
                if (sp->hdr.flags & RXRPC_CLIENT_INITIATED)
                        goto discard;
+               /* Fall through */
 
        case RXRPC_PACKET_TYPE_DATA:
                if (sp->hdr.callNumber == 0)
 
                                          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);