summaryrefslogtreecommitdiffstats
path: root/fs/orangefs/super.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2021-09-10 13:25:34 +0100
committerMike Marshall <hubcap@omnibond.com>2021-10-11 14:25:21 -0400
commit507874c08f633e05f3043c618af0705e0a750e4c (patch)
tree9d458bebdb413014ddafea57cf5914f173e1bbc3 /fs/orangefs/super.c
parent64570fbc14f8d7cb3fe3995f20e26bc25ce4b2cc (diff)
downloadlinux-507874c08f633e05f3043c618af0705e0a750e4c.tar.gz
linux-507874c08f633e05f3043c618af0705e0a750e4c.tar.bz2
linux-507874c08f633e05f3043c618af0705e0a750e4c.zip
orangefs: Remove redundant initialization of variable ret
The variable ret is being initialized with a value that is never read, it is being updated later on. The assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/super.c')
-rw-r--r--fs/orangefs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/super.c b/fs/orangefs/super.c
index 2f2e430461b2..897fb6c3f161 100644
--- a/fs/orangefs/super.c
+++ b/fs/orangefs/super.c
@@ -475,7 +475,7 @@ struct dentry *orangefs_mount(struct file_system_type *fst,
const char *devname,
void *data)
{
- int ret = -EINVAL;
+ int ret;
struct super_block *sb = ERR_PTR(-EINVAL);
struct orangefs_kernel_op_s *new_op;
struct dentry *d = ERR_PTR(-EINVAL);