diff options
| -rw-r--r-- | net/unix/af_unix.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 2851d0d15048..63ed69ffad99 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c | |||
| @@ -2193,7 +2193,11 @@ static void __exit af_unix_exit(void) | |||
| 2193 | unregister_pernet_subsys(&unix_net_ops); | 2193 | unregister_pernet_subsys(&unix_net_ops); |
| 2194 | } | 2194 | } |
| 2195 | 2195 | ||
| 2196 | module_init(af_unix_init); | 2196 | /* Earlier than device_initcall() so that other drivers invoking |
| 2197 | request_module() don't end up in a loop when modprobe tries | ||
| 2198 | to use a UNIX socket. But later than subsys_initcall() because | ||
| 2199 | we depend on stuff initialised there */ | ||
| 2200 | fs_initcall(af_unix_init); | ||
| 2197 | module_exit(af_unix_exit); | 2201 | module_exit(af_unix_exit); |
| 2198 | 2202 | ||
| 2199 | MODULE_LICENSE("GPL"); | 2203 | MODULE_LICENSE("GPL"); |
