[PATCH] fuse: remove unnecessary goto

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



In this case, the error code can be returned directly.

Signed-off-by: Yangtao Li <frank.li@xxxxxxxx>
---
 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




[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [NTFS 3]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [NTFS 3]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux