diff options
author | Roopa Prabhu <roopa@cumulusnetworks.com> | 2020-04-27 23:56:45 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-04-28 22:50:37 +0300 |
commit | 11dd74b338bf83f8bca70b57bad33a903fedfa6e (patch) | |
tree | 1310ba1a401876dfccf27f098d70ae1db779078c /net/ipv6/addrconf_core.c | |
parent | 2ac757e4152e3322a04a6dfb3d1fa010d3521abf (diff) | |
download | linux-11dd74b338bf83f8bca70b57bad33a903fedfa6e.tar.xz |
net: ipv6: new arg skip_notify to ip6_rt_del
Used in subsequent work to skip route delete
notifications on nexthop deletes.
Suggested-by: David Ahern <dsahern@gmail.com>
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
Reviewed-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf_core.c')
-rw-r--r-- | net/ipv6/addrconf_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/addrconf_core.c b/net/ipv6/addrconf_core.c index ea00ce3d4117..9ebf3fe0d2b1 100644 --- a/net/ipv6/addrconf_core.c +++ b/net/ipv6/addrconf_core.c @@ -185,7 +185,8 @@ static int eafnosupport_fib6_nh_init(struct net *net, struct fib6_nh *fib6_nh, return -EAFNOSUPPORT; } -static int eafnosupport_ip6_del_rt(struct net *net, struct fib6_info *rt) +static int eafnosupport_ip6_del_rt(struct net *net, struct fib6_info *rt, + bool skip_notify) { return -EAFNOSUPPORT; } |