aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fib_rules.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-01-20 16:46:01 -0800
committerDavid S. Miller <davem@davemloft.net>2008-01-28 15:08:13 -0800
commit035923833369e4da5d3c4ad0700bc7c367a0fa37 (patch)
tree2a7e3105e70a543ff2611ffbe7612b4c93ce3bd5 /net/ipv4/fib_rules.c
parent[SCTP]: Correctly initialize error when parameter validation failed. (diff)
downloadlinux-dev-035923833369e4da5d3c4ad0700bc7c367a0fa37.tar.xz
linux-dev-035923833369e4da5d3c4ad0700bc7c367a0fa37.zip
[FIB]: Add netns to fib_rules_ops.
The backward link from FIB rules operations to the network namespace will allow to simplify the API a bit. Signed-off-by: Denis V. Lunev <den@openvz.org> Acked-by: Daniel Lezcano <dlezcano@fr.ibm.com> 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, 2 insertions, 0 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c
index 72232ab4ecb1..8d0ebe7f360d 100644
--- a/net/ipv4/fib_rules.c
+++ b/net/ipv4/fib_rules.c
@@ -315,6 +315,8 @@ int __net_init fib4_rules_init(struct net *net)
if (ops == NULL)
return -ENOMEM;
INIT_LIST_HEAD(&ops->rules_list);
+ ops->fro_net = net;
+
fib_rules_register(net, ops);
err = fib_default_rules_init(ops);