diff options
author | Ido Schimmel <idosch@nvidia.com> | 2020-11-04 16:30:26 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-06 22:28:49 +0300 |
commit | 1ec69d187cb8f564af570df7edf2c500dcb13702 (patch) | |
tree | d270eda199a2e4fd87daba863ef9fa371c610cad /net/ipv4/nexthop.c | |
parent | 5ca474f23454d4231e2e879d4d0daf3f85de582c (diff) | |
download | linux-1ec69d187cb8f564af570df7edf2c500dcb13702.tar.xz |
nexthop: vxlan: Convert to new notification info
Convert the sole listener of the nexthop notification chain (the VXLAN
driver) to the new notification info.
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv4/nexthop.c')
-rw-r--r-- | net/ipv4/nexthop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/nexthop.c b/net/ipv4/nexthop.c index 85a595883222..1d66f2439063 100644 --- a/net/ipv4/nexthop.c +++ b/net/ipv4/nexthop.c @@ -151,7 +151,7 @@ static int call_nexthop_notifiers(struct net *net, } err = blocking_notifier_call_chain(&net->nexthop.notifier_chain, - event_type, nh); + event_type, &info); nh_notifier_info_fini(&info); return notifier_to_errno(err); |