aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/file.c
diff options
context:
space:
mode:
authorLuis Henriques <lhenriques@suse.de>2020-08-14 10:38:22 +0100
committerIlya Dryomov <idryomov@gmail.com>2020-10-12 15:29:26 +0200
commit1c30c90733879ea197dd29af54450a0f6cdcacb1 (patch)
tree2ab569c9369ca90706ad5d7dae1da11a2b34e1a0 /fs/ceph/file.c
parentceph: encode inodes' parent/d_name in cap reconnect message (diff)
downloadlinux-dev-1c30c90733879ea197dd29af54450a0f6cdcacb1.tar.xz
linux-dev-1c30c90733879ea197dd29af54450a0f6cdcacb1.zip
ceph: remove unnecessary return in switch statement
Since there's a return immediately after the 'break', there's no need for this extra 'return' in the S_IFDIR case. Signed-off-by: Luis Henriques <lhenriques@suse.de> Reviewed-by: Jeff Layton <jlayton@kernel.org> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph/file.c')
-rw-r--r--fs/ceph/file.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ceph/file.c b/fs/ceph/file.c
index 3f4c993dfc6f..fb3ea715a19d 100644
--- a/fs/ceph/file.c
+++ b/fs/ceph/file.c
@@ -256,8 +256,6 @@ static int ceph_init_file(struct inode *inode, struct file *file, int fmode)
case S_IFDIR:
ret = ceph_init_file_info(inode, file, fmode,
S_ISDIR(inode->i_mode));
- if (ret)
- return ret;
break;
case S_IFLNK: