diff options
author | Ido Schimmel <idosch@mellanox.com> | 2017-08-03 14:28:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-04 01:35:59 +0300 |
commit | e3ea973159d53559c5ae9a9dbc824da9aba6cac0 (patch) | |
tree | ab5d466ecd8c66c880b490069e15ba213ede6949 /include/net/ip6_fib.h | |
parent | 1b2a4440858857f2f93bb2ec5bb3a60f4fcc25be (diff) | |
download | linux-e3ea973159d53559c5ae9a9dbc824da9aba6cac0.tar.xz |
ipv6: fib_rules: Check if rule is a default rule
As explained in commit 3c71006d15fd ("ipv4: fib_rules: Check if rule is
a default rule"), drivers supporting IPv6 FIB offload need to be able to
sanitize the rules they don't support and potentially flush their
tables.
Add an IPv6 helper to check if a FIB rule is a default rule.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ip6_fib.h')
-rw-r--r-- | include/net/ip6_fib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index 1a88008cc6f5..6000b0dc51ee 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h @@ -295,6 +295,7 @@ int ipv6_route_open(struct inode *inode, struct file *file); #ifdef CONFIG_IPV6_MULTIPLE_TABLES int fib6_rules_init(void); void fib6_rules_cleanup(void); +bool fib6_rule_default(const struct fib_rule *rule); #else static inline int fib6_rules_init(void) { @@ -304,5 +305,9 @@ static inline void fib6_rules_cleanup(void) { return ; } +static inline bool fib6_rule_default(const struct fib_rule *rule) +{ + return true; +} #endif #endif |