aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4file.c
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavo@embeddedor.com>2018-07-31 21:18:44 -0500
committerAnna Schumaker <Anna.Schumaker@Netapp.com>2018-08-08 16:50:02 -0400
commit01e03bdc745bf2b86fadfc44e57512fd39f9d54f (patch)
tree12e75864acd588be1411a0f518c6bde22c88426c /fs/nfs/nfs4file.c
parentNFSv4: Mark the inode change attribute up to date in update_changeattr() (diff)
downloadlinux-dev-01e03bdc745bf2b86fadfc44e57512fd39f9d54f.tar.xz
linux-dev-01e03bdc745bf2b86fadfc44e57512fd39f9d54f.zip
NFS: Mark expected switch fall-throughs
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Warning level 2 was used: -Wimplicit-fallthrough=2 Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to '')
-rw-r--r--fs/nfs/nfs4file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/nfs4file.c b/fs/nfs/nfs4file.c
index 6b3b372b59b9..6c03d6b570b2 100644
--- a/fs/nfs/nfs4file.c
+++ b/fs/nfs/nfs4file.c
@@ -149,6 +149,7 @@ static loff_t nfs4_file_llseek(struct file *filep, loff_t offset, int whence)
ret = nfs42_proc_llseek(filep, offset, whence);
if (ret != -ENOTSUPP)
return ret;
+ /* Fall through */
default:
return nfs_file_llseek(filep, offset, whence);
}