diff options
author | Sri Mohana Singamsetty <srimohans@gmail.com> | 2019-03-17 18:41:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-17 18:41:20 +0100 |
commit | 0df93e4d71e2d622a334053caf2b00ca1fa27024 (patch) | |
tree | 1822c76b35d786eaca3a29a60c99a6cb0a1996e4 /zebra | |
parent | Merge pull request #3949 from qlyoung/remove-zlog-newlines (diff) | |
parent | zebra: EVPN DAD trigger was causing zebra to crash (diff) | |
download | frr-0df93e4d71e2d622a334053caf2b00ca1fa27024.tar.xz frr-0df93e4d71e2d622a334053caf2b00ca1fa27024.zip |
Merge pull request #3963 from AnuradhaKaruppiah/dad-fixes
zebra: EVPN DAD trigger was causing zebra to crash
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/zebra_vxlan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 00fc23085..b44c314d5 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -2190,6 +2190,7 @@ static zebra_neigh_t *zvni_neigh_add(zebra_vni_t *zvni, struct ipaddr *ip, memcpy(&n->emac, mac, ETH_ALEN); n->state = ZEBRA_NEIGH_INACTIVE; + n->zvni = zvni; /* Associate the neigh to mac */ zmac = zvni_mac_lookup(zvni, mac); |