diff options
| author | Patrick Ruddy <pat@voltanet.io> | 2021-03-02 10:44:43 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-02 10:44:43 +0000 |
| commit | e1cfd75ffb7c465ad3aed6dd5e4aa4eca75d6857 (patch) | |
| tree | 97787f9c7bfba298a698cad6b348c30c1008db21 | |
| parent | 11b5777f1371f5ab27fa843ed676c6e8f3f48f8c (diff) | |
| parent | 736475cdf6be530b03b14c49cfc9be5a2a9d245c (diff) | |
Merge pull request #8021 from AnuradhaKaruppiah/evpn-weak-override-fix
zebra: disable setting weak override flag in neigh updates
| -rw-r--r-- | zebra/rt_netlink.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c index 46a751ce69..99cb82e224 100644 --- a/zebra/rt_netlink.c +++ b/zebra/rt_netlink.c @@ -3695,14 +3695,6 @@ static ssize_t netlink_neigh_update_ctx(const struct zebra_dplane_ctx *ctx, /* local neigh */ if (update_flags & DPLANE_NEIGH_SET_STATIC) ext_flags |= NTF_E_MH_PEER_SYNC; - - /* the ndm_state set for local entries can be REACHABLE or - * STALE. if the dataplane has already establish reachability - * (in the meantime) FRR must not over-write it with STALE. - * this accidental race/over-write is avoided by using the - * WEAK_OVERRIDE_STATE - */ - ext_flags |= NTF_E_WEAK_OVERRIDE_STATE; } if (IS_ZEBRA_DEBUG_KERNEL) { char buf[INET6_ADDRSTRLEN]; |
