diff options
author | Ido Schimmel <idosch@mellanox.com> | 2017-03-10 08:56:19 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-10 09:45:09 -0800 |
commit | d05f7a7dd470f71dc45c2928dbf76afe2b1c2f07 (patch) | |
tree | 81c1b8da8ec41e107a54db47a10d4fb371bfa3be /net/ipv4/fib_notifier.c | |
parent | c0243892cbb0e48873d6132f673c830602808245 (diff) | |
download | op-kernel-dev-d05f7a7dd470f71dc45c2928dbf76afe2b1c2f07.zip op-kernel-dev-d05f7a7dd470f71dc45c2928dbf76afe2b1c2f07.tar.gz |
ipv4: fib: Remove redundant argument
We always pass the same event type to fib_notify() and
fib_rules_notify(), so we can safely drop this argument.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_notifier.c')
-rw-r--r-- | net/ipv4/fib_notifier.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/fib_notifier.c b/net/ipv4/fib_notifier.c index 91f8f18..e0714d9 100644 --- a/net/ipv4/fib_notifier.c +++ b/net/ipv4/fib_notifier.c @@ -66,8 +66,8 @@ int register_fib_notifier(struct notifier_block *nb, */ rcu_read_lock(); for_each_net_rcu(net) { - fib_rules_notify(net, nb, FIB_EVENT_RULE_ADD); - fib_notify(net, nb, FIB_EVENT_ENTRY_ADD); + fib_rules_notify(net, nb); + fib_notify(net, nb); } rcu_read_unlock(); |