net: af_unix: mark expected switch fall-through
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Fri, 20 Oct 2017 17:05:30 +0000 (12:05 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sun, 22 Oct 2017 02:07:50 +0000 (03:07 +0100)
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>
net/unix/af_unix.c

index 7f46bab..a9ee634 100644 (file)
@@ -814,6 +814,7 @@ static int unix_create(struct net *net, struct socket *sock, int protocol,
                 */
        case SOCK_RAW:
                sock->type = SOCK_DGRAM;
+               /* fall through */
        case SOCK_DGRAM:
                sock->ops = &unix_dgram_ops;
                break;