diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2023-09-17 22:34:51 +0300 | 
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2023-09-17 22:54:17 +0300 | 
| commit | 0f4d8c0f870dc7276c0a5e4ef9e60f4ba55b88a7 (patch) | |
| tree | f556247f96df961ec1c9f785a15e262d1618fcbb /zebra/interface.c | |
| parent | 8ce68c623d6aea39a9045a87d42fc79a53cc009f (diff) | |
zebra: remove duplicated code
The same thing is done in zebra_if_update_link a couple of lines above.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 12 | 
1 files changed, 2 insertions, 10 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index 9570391c93..92ae8a9dc5 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -2051,6 +2051,8 @@ static void zebra_if_dplane_ifp_handling(struct zebra_dplane_ctx *ctx)  					if_update_to_new_vrf(ifp, vrf_id);  			} +			zif = ifp->info; +  			/* Update interface information. */  			set_ifindex(ifp, ifindex, zns);  			ifp->flags = flags; @@ -2069,16 +2071,6 @@ static void zebra_if_dplane_ifp_handling(struct zebra_dplane_ctx *ctx)  			/* Update link. */  			zebra_if_update_link(ifp, link_ifindex, link_nsid); -			/* -			 * Just set the @link/lower-device ifindex. During -			 * nldump interfaces are not ordered in any fashion so -			 * we may end up getting upper devices before lower -			 * devices. We will setup the real linkage once the dump -			 * is complete. -			 */ -			zif = (struct zebra_if *)ifp->info; -			zif->link_ifindex = link_ifindex; -  			ifp->ll_type = dplane_ctx_get_ifp_zltype(ctx);  			interface_update_hw_addr(ctx, ifp);  | 
