diff options
author | John Lo <loj@cisco.com> | 2018-06-11 20:14:49 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-06-14 16:03:42 +0000 |
commit | 8637634d4dbc3e8cc90f78307d2069524b8f8f5e (patch) | |
tree | a0fc3028dc838cecad6179453fdb72c01be47f2a /src/vnet/ip/lookup.c | |
parent | c553ec20fed9715f0b70b71fca23caac42a1226a (diff) |
Use unicast DMAC for IP neighbor pool refresh probes
Change-Id: I12fbebd1d24c37dc77c147773ea522c8a4b7b99d
Signed-off-by: John Lo <loj@cisco.com>
Diffstat (limited to 'src/vnet/ip/lookup.c')
-rw-r--r-- | src/vnet/ip/lookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 0b376812250..e0d1ac06dfb 100644 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -1101,7 +1101,7 @@ ip6_probe_neighbor_wait (vlib_main_t * vm, ip6_address_t * a, u32 sw_if_index, for (i = 0; i < retry_count; i++) { /* The interface may be down, etc. */ - e = ip6_probe_neighbor (vm, a, sw_if_index); + e = ip6_probe_neighbor (vm, a, sw_if_index, 0); if (e) return e; @@ -1153,7 +1153,7 @@ ip4_probe_neighbor_wait (vlib_main_t * vm, ip4_address_t * a, u32 sw_if_index, for (i = 0; i < retry_count; i++) { /* The interface may be down, etc. */ - e = ip4_probe_neighbor (vm, a, sw_if_index); + e = ip4_probe_neighbor (vm, a, sw_if_index, 0); if (e) return e; |