From: Miaohe Lin Date: Thu, 6 Aug 2020 11:54:19 +0000 (+0800) Subject: net: Remove meaningless jump label out_fs X-Git-Tag: v5.9-rc1~36^2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47260ba937822cd1a57ee8b520b8789bdda5964e;p=thirdparty%2Fkernel%2Flinux.git net: Remove meaningless jump label out_fs The out_fs jump label has nothing to do but goto out. Signed-off-by: Miaohe Lin Signed-off-by: David S. Miller --- diff --git a/net/socket.c b/net/socket.c index e08415b4f9397..c61f036d24f57 100644 --- a/net/socket.c +++ b/net/socket.c @@ -3063,7 +3063,7 @@ static int __init sock_init(void) err = register_filesystem(&sock_fs_type); if (err) - goto out_fs; + goto out; sock_mnt = kern_mount(&sock_fs_type); if (IS_ERR(sock_mnt)) { err = PTR_ERR(sock_mnt); @@ -3086,7 +3086,6 @@ out: out_mount: unregister_filesystem(&sock_fs_type); -out_fs: goto out; }