aboutsummaryrefslogtreecommitdiff
path: root/fs/cifs/smbdirect.c
diff options
context:
space:
mode:
authorGravatar Gustavo A. R. Silva <gustavoars@kernel.org> 2020-11-20 12:24:14 -0600
committerGravatar Steve French <stfrench@microsoft.com> 2020-12-13 19:12:07 -0600
commit21ac58f495849844dfb4479cda1427bf42493262 (patch)
tree16012c934293b4a2f0c54730acc83a82cb1c4f7f /fs/cifs/smbdirect.c
parentLinux 5.10 (diff)
downloadlinux-21ac58f495849844dfb4479cda1427bf42493262.tar.gz
linux-21ac58f495849844dfb4479cda1427bf42493262.tar.bz2
linux-21ac58f495849844dfb4479cda1427bf42493262.zip
cifs: Fix fall-through warnings for Clang
In preparation to enable -Wimplicit-fallthrough for Clang, fix multiple warnings by explicitly adding multiple break/goto statements instead of just letting the code fall through to the next case. Link: https://github.com/KSPP/linux/issues/115 Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/smbdirect.c')
-rw-r--r--fs/cifs/smbdirect.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c
index b029ed31ef91..10dfe5006792 100644
--- a/fs/cifs/smbdirect.c
+++ b/fs/cifs/smbdirect.c
@@ -246,6 +246,7 @@ smbd_qp_async_error_upcall(struct ib_event *event, void *context)
case IB_EVENT_CQ_ERR:
case IB_EVENT_QP_FATAL:
smbd_disconnect_rdma_connection(info);
+ break;
default:
break;