diff options
author | Denis V. Lunev <den@openvz.org> | 2008-07-05 19:00:44 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-05 19:00:44 -0700 |
commit | 76e6ebfb40a2455c18234dcb0f9df37533215461 (patch) | |
tree | f3b435e8b27a297f330fc7d497a0ef44022e7239 /net/ipv4/fib_rules.c | |
parent | f43798c27684ab925adde7d8acc34c78c6e50df8 (diff) | |
download | linux-3.10-76e6ebfb40a2455c18234dcb0f9df37533215461.tar.gz linux-3.10-76e6ebfb40a2455c18234dcb0f9df37533215461.tar.bz2 linux-3.10-76e6ebfb40a2455c18234dcb0f9df37533215461.zip |
netns: add namespace parameter to rt_cache_flush
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c index 1fb56876be5..bc05de41308 100644 --- a/net/ipv4/fib_rules.c +++ b/net/ipv4/fib_rules.c @@ -260,7 +260,7 @@ static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule) static void fib4_rule_flush_cache(void) { - rt_cache_flush(-1); + rt_cache_flush(&init_net, -1); } static struct fib_rules_ops fib4_rules_ops_template = { |