diff options
author | Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> | 2018-01-11 17:22:06 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-15 19:56:13 +0100 |
commit | 37f47bc90c7481e7959703ad1defc4fc9f5d85e3 (patch) | |
tree | 0288229f24894e19819f189e760cb39bfe63594c /net/sctp/ipv6.c | |
parent | net: ipv4: Make "ip route get" match iif lo rules again. (diff) | |
download | linux-37f47bc90c7481e7959703ad1defc4fc9f5d85e3.tar.xz linux-37f47bc90c7481e7959703ad1defc4fc9f5d85e3.zip |
sctp: avoid compiler warning on implicit fallthru
These fall-through are expected.
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Reviewed-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/ipv6.c')
-rw-r--r-- | net/sctp/ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sctp/ipv6.c b/net/sctp/ipv6.c index 3b18085e3b10..5d4c15bf66d2 100644 --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c @@ -826,6 +826,7 @@ static int sctp_inet6_af_supported(sa_family_t family, struct sctp_sock *sp) case AF_INET: if (!__ipv6_only_sock(sctp_opt2sk(sp))) return 1; + /* fallthru */ default: return 0; } |