[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230406195615.80078-1-frank.li@vivo.com>
Date: Fri, 7 Apr 2023 03:56:14 +0800
From: Yangtao Li <frank.li@...o.com>
To: Miklos Szeredi <miklos@...redi.hu>
Cc: Yangtao Li <frank.li@...o.com>, linux-fsdevel@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] fuse: remove unnecessary goto
In this case, the error code can be returned directly.
Signed-off-by: Yangtao Li <frank.li@...o.com>
---
fs/fuse/inode.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index d66070af145d..56efcf160513 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -1921,10 +1921,8 @@ static int fuse_sysfs_init(void)
int err;
fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
- if (!fuse_kobj) {
- err = -ENOMEM;
- goto out_err;
- }
+ if (!fuse_kobj)
+ return -ENOMEM;
err = sysfs_create_mount_point(fuse_kobj, "connections");
if (err)
@@ -1934,7 +1932,6 @@ static int fuse_sysfs_init(void)
out_fuse_unregister:
kobject_put(fuse_kobj);
- out_err:
return err;
}
--
2.35.1
Powered by blists - more mailing lists