Commit 47260ba9 authored by Miaohe Lin's avatar Miaohe Lin Committed by David S. Miller

net: Remove meaningless jump label out_fs

The out_fs jump label has nothing to do but goto out.
Signed-off-by: default avatarMiaohe Lin <linmiaohe@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ce787a5a
...@@ -3063,7 +3063,7 @@ static int __init sock_init(void) ...@@ -3063,7 +3063,7 @@ static int __init sock_init(void)
err = register_filesystem(&sock_fs_type); err = register_filesystem(&sock_fs_type);
if (err) if (err)
goto out_fs; goto out;
sock_mnt = kern_mount(&sock_fs_type); sock_mnt = kern_mount(&sock_fs_type);
if (IS_ERR(sock_mnt)) { if (IS_ERR(sock_mnt)) {
err = PTR_ERR(sock_mnt); err = PTR_ERR(sock_mnt);
...@@ -3086,7 +3086,6 @@ static int __init sock_init(void) ...@@ -3086,7 +3086,6 @@ static int __init sock_init(void)
out_mount: out_mount:
unregister_filesystem(&sock_fs_type); unregister_filesystem(&sock_fs_type);
out_fs:
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment