We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce787a5 commit 47260baCopy full SHA for 47260ba
net/socket.c
@@ -3063,7 +3063,7 @@ static int __init sock_init(void)
3063
3064
err = register_filesystem(&sock_fs_type);
3065
if (err)
3066
- goto out_fs;
+ goto out;
3067
sock_mnt = kern_mount(&sock_fs_type);
3068
if (IS_ERR(sock_mnt)) {
3069
err = PTR_ERR(sock_mnt);
@@ -3086,7 +3086,6 @@ static int __init sock_init(void)
3086
3087
out_mount:
3088
unregister_filesystem(&sock_fs_type);
3089
-out_fs:
3090
goto out;
3091
}
3092
0 commit comments