diff options
| author | anlan_cs <vic.lan@pica8.com> | 2022-02-06 23:53:45 -0500 | 
|---|---|---|
| committer | anlan_cs <vic.lan@pica8.com> | 2022-03-08 22:58:22 +0800 | 
| commit | c2fd85a85492d0f562ee06cd3c47e9b841a86463 (patch) | |
| tree | 68916f70f58870ac6bd60252c3f2b5ddbc63c39d /zebra/zebra_evpn_neigh.c | |
| parent | 5e5cd2784f23c5a022d1a0e3c6e9d217abc3ca71 (diff) | |
zebra: remove unnecessary assignment
In `zebra_evpn_neigh_gw_macip_add()`, it sets `mac->flags` to "ZEBRA_MAC_DEF_GW"
for "advertise-default-gw" mode. But this set is redundant because this "mac"
is already set by `zebra_evpn_mac_gw_macip_add()`.
So remove this redundant assignment.
Signed-off-by: anlan_cs <vic.lan@pica8.com>
Diffstat (limited to 'zebra/zebra_evpn_neigh.c')
| -rw-r--r-- | zebra/zebra_evpn_neigh.c | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/zebra/zebra_evpn_neigh.c b/zebra/zebra_evpn_neigh.c index f557e66384..01ac7c227f 100644 --- a/zebra/zebra_evpn_neigh.c +++ b/zebra/zebra_evpn_neigh.c @@ -2203,7 +2203,6 @@ int zebra_evpn_neigh_gw_macip_add(struct interface *ifp,  	/* Only advertise in BGP if the knob is enabled */  	if (advertise_gw_macip_enabled(zevpn)) { -		SET_FLAG(mac->flags, ZEBRA_MAC_DEF_GW);  		SET_FLAG(n->flags, ZEBRA_NEIGH_DEF_GW);  		/* Set Router flag (R-bit) */  		if (ip->ipa_type == IPADDR_V6)  | 
