Commit ae299fc0 authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller

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: default avatarDenis V. Lunev <den@openvz.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 76e6ebfb
...@@ -62,7 +62,7 @@ struct fib_rules_ops ...@@ -62,7 +62,7 @@ struct fib_rules_ops
/* Called after modifications to the rules set, must flush /* Called after modifications to the rules set, must flush
* the route cache if one exists. */ * the route cache if one exists. */
void (*flush_cache)(void); void (*flush_cache)(struct fib_rules_ops *ops);
int nlgroup; int nlgroup;
const struct nla_policy *policy; const struct nla_policy *policy;
......
...@@ -69,7 +69,7 @@ static void rules_ops_put(struct fib_rules_ops *ops) ...@@ -69,7 +69,7 @@ static void rules_ops_put(struct fib_rules_ops *ops)
static void flush_route_cache(struct fib_rules_ops *ops) static void flush_route_cache(struct fib_rules_ops *ops)
{ {
if (ops->flush_cache) if (ops->flush_cache)
ops->flush_cache(); ops->flush_cache(ops);
} }
int fib_rules_register(struct fib_rules_ops *ops) int fib_rules_register(struct fib_rules_ops *ops)
......
...@@ -229,7 +229,7 @@ static u32 dn_fib_rule_default_pref(struct fib_rules_ops *ops) ...@@ -229,7 +229,7 @@ static u32 dn_fib_rule_default_pref(struct fib_rules_ops *ops)
return 0; return 0;
} }
static void dn_fib_rule_flush_cache(void) static void dn_fib_rule_flush_cache(struct fib_rules_ops *ops)
{ {
dn_rt_cache_flush(-1); dn_rt_cache_flush(-1);
} }
......
...@@ -258,9 +258,9 @@ static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule) ...@@ -258,9 +258,9 @@ static size_t fib4_rule_nlmsg_payload(struct fib_rule *rule)
+ nla_total_size(4); /* flow */ + 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 = { static struct fib_rules_ops fib4_rules_ops_template = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment