diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-02-02 19:11:25 +0300 | 
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-02-02 19:11:25 +0300 | 
| commit | 1ac88792c0cb306bdb05f977f88f449fe7a1a1ea (patch) | |
| tree | c84b03a39dcb1ad4ba525fc271d71354fd2ea931 /pimd/pim_vxlan.c | |
| parent | cc73a06499cc31b29e96e6b04ab6e7b181f09e28 (diff) | |
*: fix all backets
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'pimd/pim_vxlan.c')
| -rw-r--r-- | pimd/pim_vxlan.c | 22 | 
1 files changed, 11 insertions, 11 deletions
diff --git a/pimd/pim_vxlan.c b/pimd/pim_vxlan.c index 380c97a97c..6a12c7fb13 100644 --- a/pimd/pim_vxlan.c +++ b/pimd/pim_vxlan.c @@ -497,10 +497,10 @@ static void pim_vxlan_orig_mr_del(struct pim_vxlan_sg *vxlan_sg)  	pim_vxlan_orig_mr_up_del(vxlan_sg);  } -static void pim_vxlan_orig_mr_iif_update(struct hash_bucket *backet, void *arg) +static void pim_vxlan_orig_mr_iif_update(struct hash_bucket *bucket, void *arg)  {  	struct interface *ifp; -	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; +	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;  	struct interface *old_iif = vxlan_sg->iif;  	if (!pim_vxlan_is_orig_mroute(vxlan_sg)) @@ -812,11 +812,11 @@ bool pim_vxlan_do_mlag_reg(void)   * to the MLAG peer which may mroute it over the underlay if there are any   * interested receivers.   */ -static void pim_vxlan_sg_peerlink_oif_update(struct hash_bucket *backet, +static void pim_vxlan_sg_peerlink_oif_update(struct hash_bucket *bucket,  					     void *arg)  {  	struct interface *new_oif = (struct interface *)arg; -	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; +	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;  	if (!pim_vxlan_is_orig_mroute(vxlan_sg))  		return; @@ -950,10 +950,10 @@ static void pim_vxlan_up_cost_update(struct pim_instance *pim,  	}  } -static void pim_vxlan_term_mr_cost_update(struct hash_bucket *backet, void *arg) +static void pim_vxlan_term_mr_cost_update(struct hash_bucket *bucket, void *arg)  {  	struct interface *old_peerlink_rif = (struct interface *)arg; -	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; +	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;  	struct pim_upstream *up;  	struct listnode *listnode;  	struct pim_upstream *child; @@ -975,11 +975,11 @@ static void pim_vxlan_term_mr_cost_update(struct hash_bucket *backet, void *arg)  				old_peerlink_rif);  } -static void pim_vxlan_sg_peerlink_rif_update(struct hash_bucket *backet, +static void pim_vxlan_sg_peerlink_rif_update(struct hash_bucket *bucket,  					     void *arg)  { -	pim_vxlan_orig_mr_iif_update(backet, NULL); -	pim_vxlan_term_mr_cost_update(backet, arg); +	pim_vxlan_orig_mr_iif_update(bucket, NULL); +	pim_vxlan_term_mr_cost_update(bucket, arg);  }  static void pim_vxlan_set_peerlink_rif(struct pim_instance *pim, @@ -1032,10 +1032,10 @@ static void pim_vxlan_set_peerlink_rif(struct pim_instance *pim,  	}  } -static void pim_vxlan_term_mr_oif_update(struct hash_bucket *backet, void *arg) +static void pim_vxlan_term_mr_oif_update(struct hash_bucket *bucket, void *arg)  {  	struct interface *ifp = (struct interface *)arg; -	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; +	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;  	if (pim_vxlan_is_orig_mroute(vxlan_sg))  		return;  | 
