diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-26 20:03:34 -0500 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-02-28 13:59:13 -0500 | 
| commit | 7f5818fbd674decdacec17764cf8c0cc89e26bca (patch) | |
| tree | c1d0dc044d242f22d909327309aedaced696d2be /pimd/pim_vxlan.c | |
| parent | baaaf4f5b6b5904499a6a95976d73be5a9b454ca (diff) | |
*: change hash_backet to hash_bucket
It's been a year search and destroy.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_vxlan.c')
| -rw-r--r-- | pimd/pim_vxlan.c | 15 | 
1 files changed, 7 insertions, 8 deletions
diff --git a/pimd/pim_vxlan.c b/pimd/pim_vxlan.c index 57b922a531..b21ff56ce1 100644 --- a/pimd/pim_vxlan.c +++ b/pimd/pim_vxlan.c @@ -475,7 +475,7 @@ 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_backet *backet, void *arg) +static void pim_vxlan_orig_mr_iif_update(struct hash_bucket *backet, void *arg)  {  	struct interface *ifp;  	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; @@ -788,8 +788,8 @@ 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_backet *backet, -		void *arg) +static void pim_vxlan_sg_peerlink_oif_update(struct hash_bucket *backet, +					     void *arg)  {  	struct interface *new_oif = (struct interface *)arg;  	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; @@ -927,8 +927,7 @@ static void pim_vxlan_up_cost_update(struct pim_instance *pim,  	}  } -static void pim_vxlan_term_mr_cost_update(struct hash_backet *backet, -		void *arg) +static void pim_vxlan_term_mr_cost_update(struct hash_bucket *backet, void *arg)  {  	struct interface *old_peerlink_rif = (struct interface *)arg;  	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data; @@ -953,8 +952,8 @@ static void pim_vxlan_term_mr_cost_update(struct hash_backet *backet,  				old_peerlink_rif);  } -static void pim_vxlan_sg_peerlink_rif_update(struct hash_backet *backet, -		void *arg) +static void pim_vxlan_sg_peerlink_rif_update(struct hash_bucket *backet, +					     void *arg)  {  	pim_vxlan_orig_mr_iif_update(backet, NULL);  	pim_vxlan_term_mr_cost_update(backet, arg); @@ -1012,7 +1011,7 @@ static void pim_vxlan_set_peerlink_rif(struct pim_instance *pim,  	}  } -static void pim_vxlan_term_mr_oif_update(struct hash_backet *backet, void *arg) +static void pim_vxlan_term_mr_oif_update(struct hash_bucket *backet, void *arg)  {  	struct interface *ifp = (struct interface *)arg;  	struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)backet->data;  | 
