diff options
author | Luis Henriques | 2020-08-14 10:38:22 +0100 |
---|---|---|
committer | Ilya Dryomov | 2020-10-12 15:29:26 +0200 |
commit | 1c30c90733879ea197dd29af54450a0f6cdcacb1 (patch) | |
tree | 2ab569c9369ca90706ad5d7dae1da11a2b34e1a0 /fs | |
parent | a33f6432b3a63a4909dbbb0967f7c9df8ff2de91 (diff) |
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')
-rw-r--r-- | fs/ceph/file.c | 2 |
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: |