diff options
Diffstat (limited to 'net/netlink')
-rw-r--r-- | net/netlink/af_netlink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 46eb5ea1fbd7..3ef32825da71 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c | |||
@@ -1924,7 +1924,7 @@ static struct net_proto_family netlink_family_ops = { | |||
1924 | .owner = THIS_MODULE, /* for consistency 8) */ | 1924 | .owner = THIS_MODULE, /* for consistency 8) */ |
1925 | }; | 1925 | }; |
1926 | 1926 | ||
1927 | static int netlink_net_init(struct net *net) | 1927 | static int __net_init netlink_net_init(struct net *net) |
1928 | { | 1928 | { |
1929 | #ifdef CONFIG_PROC_FS | 1929 | #ifdef CONFIG_PROC_FS |
1930 | if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops)) | 1930 | if (!proc_net_fops_create(net, "netlink", 0, &netlink_seq_fops)) |
@@ -1933,14 +1933,14 @@ static int netlink_net_init(struct net *net) | |||
1933 | return 0; | 1933 | return 0; |
1934 | } | 1934 | } |
1935 | 1935 | ||
1936 | static void netlink_net_exit(struct net *net) | 1936 | static void __net_exit netlink_net_exit(struct net *net) |
1937 | { | 1937 | { |
1938 | #ifdef CONFIG_PROC_FS | 1938 | #ifdef CONFIG_PROC_FS |
1939 | proc_net_remove(net, "netlink"); | 1939 | proc_net_remove(net, "netlink"); |
1940 | #endif | 1940 | #endif |
1941 | } | 1941 | } |
1942 | 1942 | ||
1943 | static struct pernet_operations netlink_net_ops = { | 1943 | static struct pernet_operations __net_initdata netlink_net_ops = { |
1944 | .init = netlink_net_init, | 1944 | .init = netlink_net_init, |
1945 | .exit = netlink_net_exit, | 1945 | .exit = netlink_net_exit, |
1946 | }; | 1946 | }; |