diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-10 06:21:09 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:01:24 -0500 |
commit | 61a0265344786a548e8a0b26cb668e78a71f9602 (patch) | |
tree | cebfe266232678baba5b3d48f46b3e0f160bebdb /net/ipv4/fib_hash.c | |
parent | 5fd30ee7c48bf7f9cd16ab44c8a09fa4a57cc21d (diff) |
[NETNS]: Add namespace to API for routing /proc entries creation.
This adds netns parameter to fib_proc_init/exit and replaces __init
specifier with __net_init. After this, we will not yet have these proc
files show info from the specific namespace - this will be done when
these tables become namespaced.
Acked-by: Benjamin Thery <benjamin.thery@bull.net>
Acked-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_hash.c')
-rw-r--r-- | net/ipv4/fib_hash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/fib_hash.c b/net/ipv4/fib_hash.c index ee1ffdb3044f..8de21bc4947a 100644 --- a/net/ipv4/fib_hash.c +++ b/net/ipv4/fib_hash.c | |||
@@ -1041,15 +1041,15 @@ static const struct file_operations fib_seq_fops = { | |||
1041 | .release = seq_release_private, | 1041 | .release = seq_release_private, |
1042 | }; | 1042 | }; |
1043 | 1043 | ||
1044 | int __init fib_proc_init(void) | 1044 | int __net_init fib_proc_init(struct net *net) |
1045 | { | 1045 | { |
1046 | if (!proc_net_fops_create(&init_net, "route", S_IRUGO, &fib_seq_fops)) | 1046 | if (!proc_net_fops_create(net, "route", S_IRUGO, &fib_seq_fops)) |
1047 | return -ENOMEM; | 1047 | return -ENOMEM; |
1048 | return 0; | 1048 | return 0; |
1049 | } | 1049 | } |
1050 | 1050 | ||
1051 | void __init fib_proc_exit(void) | 1051 | void __net_exit fib_proc_exit(struct net *net) |
1052 | { | 1052 | { |
1053 | proc_net_remove(&init_net, "route"); | 1053 | proc_net_remove(net, "route"); |
1054 | } | 1054 | } |
1055 | #endif /* CONFIG_PROC_FS */ | 1055 | #endif /* CONFIG_PROC_FS */ |