diff options
author | Gustavo A. R. Silva <[email protected]> | 2017-10-12 11:17:32 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2017-10-18 15:33:11 +0200 |
commit | be7a34f4eda0fd542db5a242a0a197e0db8f5779 (patch) | |
tree | 56cf17e8f0d7b092b109fa6fd3a34c4dbcf7f7aa | |
parent | 6efc6b8a608a1936dd57e9f54e59d684aae1c282 (diff) |
staging: lustre: ldlm: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Signed-off-by: Gustavo A. R. Silva <[email protected]>
Reviewed-by: Andreas Dilger <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/lustre/lustre/ldlm/ldlm_request.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_request.c b/drivers/staging/lustre/lustre/ldlm/ldlm_request.c index f3bf238d0748..69439870d38d 100644 --- a/drivers/staging/lustre/lustre/ldlm/ldlm_request.c +++ b/drivers/staging/lustre/lustre/ldlm/ldlm_request.c @@ -1175,6 +1175,7 @@ ldlm_cancel_no_wait_policy(struct ldlm_namespace *ns, struct ldlm_lock *lock, case LDLM_IBITS: if (ns->ns_cancel && ns->ns_cancel(lock) != 0) break; + /* fall through */ default: result = LDLM_POLICY_SKIP_LOCK; lock_res_and_lock(lock); |