diff options
author | David Ahern <dsahern@gmail.com> | 2017-05-21 19:12:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-22 19:12:19 +0300 |
commit | 6d8422a175ccf2846d9460ed2b6228fe0b12c243 (patch) | |
tree | 896ba9e5cc55020a080c2253a2152cb99431a885 /include/net/ip_fib.h | |
parent | 863483c970e968efd6a119a2118f57977d04cefe (diff) | |
download | linux-6d8422a175ccf2846d9460ed2b6228fe0b12c243.tar.xz |
net: ipv4: 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 'include/net/ip_fib.h')
-rw-r--r-- | include/net/ip_fib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index 6692c5758b33..42e8b8f55f7c 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h @@ -263,7 +263,8 @@ struct fib_table { int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp, struct fib_result *res, int fib_flags); -int fib_table_insert(struct net *, struct fib_table *, struct fib_config *); +int fib_table_insert(struct net *, struct fib_table *, struct fib_config *, + struct netlink_ext_ack *extack); int fib_table_delete(struct net *, struct fib_table *, struct fib_config *); int fib_table_dump(struct fib_table *table, struct sk_buff *skb, struct netlink_callback *cb); |