aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre
diff options
context:
space:
mode:
authorGustavo A. R. Silva <garsilva@embeddedor.com>2017-10-12 11:17:36 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-10-18 15:33:11 +0200
commite2c32387691cc2a28d5a483c9cdd3cdb41c6928d (patch)
tree572ae8bc8bf43209597891d1f2a74a6b6ac4fbfe /drivers/staging/lustre/lustre
parentstaging: lustre: ldlm: mark expected switch fall-through (diff)
downloadlinux-dev-e2c32387691cc2a28d5a483c9cdd3cdb41c6928d.tar.xz
linux-dev-e2c32387691cc2a28d5a483c9cdd3cdb41c6928d.zip
staging: lustre: osc: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Addresses-Coverity-ID: 1077598 Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Reviewed-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre')
-rw-r--r--drivers/staging/lustre/lustre/osc/osc_cache.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lustre/osc/osc_cache.c b/drivers/staging/lustre/lustre/osc/osc_cache.c
index e1207c227b79..eab7759f57cd 100644
--- a/drivers/staging/lustre/lustre/osc/osc_cache.c
+++ b/drivers/staging/lustre/lustre/osc/osc_cache.c
@@ -227,6 +227,7 @@ static int osc_extent_sanity_check0(struct osc_extent *ext,
rc = 65;
goto out;
}
+ /* fall through */
default:
if (atomic_read(&ext->oe_users) > 0) {
rc = 70;