aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/fib_rules.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-07-05 19:01:28 -0700
committerDavid S. Miller <davem@davemloft.net>2008-07-05 19:01:28 -0700
commitae299fc051aa68ca6ef1807c37bb92d9b6ff817c (patch)
treeff627bdee8efd3018f0e5ae9a35fe48a2f91a8ca /net/ipv4/fib_rules.c
parent76e6ebfb40a2455c18234dcb0f9df37533215461 (diff)
downloadkernel_samsung_smdk4412-ae299fc051aa68ca6ef1807c37bb92d9b6ff817c.zip
kernel_samsung_smdk4412-ae299fc051aa68ca6ef1807c37bb92d9b6ff817c.tar.gz
kernel_samsung_smdk4412-ae299fc051aa68ca6ef1807c37bb92d9b6ff817c.tar.bz2
net: add fib_rules_ops to flush_cache method
This is required to pass namespace context into rt_cache_flush called from ->flush_cache. 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c
index bc05de4..6080d71 100644
--- a/net/ipv4/fib_rules.c
+++ b/net/ipv4/fib_rules.c
@@ -258,9 +258,9 @@ static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
+ nla_total_size(4); /* flow */
}
-static void fib4_rule_flush_cache(void)
+static void fib4_rule_flush_cache(struct fib_rules_ops *ops)
{
- rt_cache_flush(&init_net, -1);
+ rt_cache_flush(ops->fro_net, -1);
}
static struct fib_rules_ops fib4_rules_ops_template = {