Commit a8674f75 authored by Ido Schimmel's avatar Ido Schimmel Committed by David S. Miller

ipv4: Notify newly added route if should be offloaded

When a route is added, it should only be notified in case it is the
first route in the FIB alias list with the given {prefix, prefix length,
table ID}. Otherwise, it is not used in the data path and should not be
considered by switch drivers.

v2:
* Convert to use fib_find_alias() instead of fib_find_first_alias()
Signed-off-by: default avatarIdo Schimmel <idosch@mellanox.com>
Reviewed-by: default avatarDavid Ahern <dsahern@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ee3936d6
...@@ -1295,6 +1295,16 @@ int fib_table_insert(struct net *net, struct fib_table *tb, ...@@ -1295,6 +1295,16 @@ int fib_table_insert(struct net *net, struct fib_table *tb,
if (WARN_ON_ONCE(!l)) if (WARN_ON_ONCE(!l))
goto out_free_new_fa; goto out_free_new_fa;
if (fib_find_alias(&l->leaf, new_fa->fa_slen, 0, 0, tb->tb_id, true) ==
new_fa) {
enum fib_event_type fib_event;
fib_event = FIB_EVENT_ENTRY_REPLACE_TMP;
err = call_fib_entry_notifiers(net, fib_event, key, plen,
new_fa, extack);
if (err)
goto out_remove_new_fa;
}
err = call_fib_entry_notifiers(net, event, key, plen, new_fa, extack); err = call_fib_entry_notifiers(net, event, key, plen, new_fa, extack);
if (err) if (err)
goto out_remove_new_fa; goto out_remove_new_fa;
......
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