aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fib_rules.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-01-10 06:17:29 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:01:21 -0500
commitf8c26b8d589867aed8251db2935f8aa03aa68717 (patch)
treea96938be9494e60365d10c652cb3e7c9d3dcee18 /net/ipv4/fib_rules.c
parent41a76906b3225997036efd88cbaae69d60b1e947 (diff)
[NETNS]: Add netns parameter to fib_rules_(un)register.
The patch extends the different fib rules API in order to pass the network namespace pointer. That will allow to access the different tables from a namespace relative object. As usual, the pointer to the init_net variable is passed as parameter so we don't break the network. 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_rules.c')
-rw-r--r--net/ipv4/fib_rules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c
index a0ada3a8d8dd..eac3f717ecab 100644
--- a/net/ipv4/fib_rules.c
+++ b/net/ipv4/fib_rules.c
@@ -314,5 +314,5 @@ static int __init fib_default_rules_init(void)
314void __init fib4_rules_init(void) 314void __init fib4_rules_init(void)
315{ 315{
316 BUG_ON(fib_default_rules_init()); 316 BUG_ON(fib_default_rules_init());
317 fib_rules_register(&fib4_rules_ops); 317 fib_rules_register(&init_net, &fib4_rules_ops);
318} 318}