From: Dan Carpenter Date: Wed, 26 Aug 2020 11:32:14 +0000 (+0300) Subject: afs: Remove erroneous fallthough annotation X-Git-Tag: v5.9-rc3~11^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=210e799ed275488bcae16f1acd3d259043ec6c68;p=thirdparty%2Fkernel%2Flinux.git afs: Remove erroneous fallthough annotation The fall through annotation comes after a return statement so it's not reachable. Signed-off-by: Dan Carpenter Signed-off-by: Gustavo A. R. Silva --- diff --git a/fs/afs/flock.c b/fs/afs/flock.c index eff82a6839e4c..cb3054c7843ea 100644 --- a/fs/afs/flock.c +++ b/fs/afs/flock.c @@ -376,7 +376,6 @@ again: spin_unlock(&vnode->lock); return; - fallthrough; default: /* Looks like a lock request was withdrawn. */ spin_unlock(&vnode->lock);