diff options
author | David Ahern <dsahern@gmail.com> | 2017-05-21 18:12:04 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-22 18:12:20 +0200 |
commit | 333c430167c21b96de81a674fa6cbe84b09475dc (patch) | |
tree | 918819b79fe327235119630d5f1c0c0bafcecbb6 /net/ipv6/addrconf.c | |
parent | net: ipv4: Add extack messages for route add failures (diff) | |
download | linux-333c430167c21b96de81a674fa6cbe84b09475dc.tar.xz linux-333c430167c21b96de81a674fa6cbe84b09475dc.zip |
net: ipv6: Plumb extack through route add functions
Plumb extack argument down to route add functions.
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf.c')
-rw-r--r-- | net/ipv6/addrconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 6a4fb1e629fb..25443fd946a8 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -2280,7 +2280,7 @@ addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev, cfg.fc_flags |= RTF_NONEXTHOP; #endif - ip6_route_add(&cfg); + ip6_route_add(&cfg, NULL); } @@ -2335,7 +2335,7 @@ static void addrconf_add_mroute(struct net_device *dev) ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0); - ip6_route_add(&cfg); + ip6_route_add(&cfg, NULL); } static struct inet6_dev *addrconf_add_dev(struct net_device *dev) |