diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-26 20:03:34 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-26 20:03:34 -0500 | 
| commit | 3895c42a2eb534a70ef25412547e798c1c1ef5a1 (patch) | |
| tree | a01234f6bd4f149cd6cd2cee9aebc3d5f3697f65 /pimd/pim_vxlan.c | |
| parent | 7a7cd6e9b28405142e9ae0efb6f4bcf4131d6350 (diff) | |
*: change hash_backet to hash_bucket
It's been a year search and destroy.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_vxlan.c')
| -rw-r--r-- | pimd/pim_vxlan.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/pimd/pim_vxlan.c b/pimd/pim_vxlan.c index 57b922a531..b7cbfa95aa 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,7 +788,7 @@ 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, +static void pim_vxlan_sg_peerlink_oif_update(struct hash_bucket *backet,  		void *arg)  {  	struct interface *new_oif = (struct interface *)arg; @@ -927,7 +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, +static void pim_vxlan_term_mr_cost_update(struct hash_bucket *backet,  		void *arg)  {  	struct interface *old_peerlink_rif = (struct interface *)arg; @@ -953,7 +953,7 @@ 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, +static void pim_vxlan_sg_peerlink_rif_update(struct hash_bucket *backet,  		void *arg)  {  	pim_vxlan_orig_mr_iif_update(backet, NULL); @@ -1012,7 +1012,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;  | 
