summaryrefslogtreecommitdiffstats
path: root/pimd/pim_vxlan.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2020-02-27 02:03:34 +0100
committerQuentin Young <qlyoung@cumulusnetworks.com>2020-02-28 19:59:13 +0100
commit7f5818fbd674decdacec17764cf8c0cc89e26bca (patch)
treec1d0dc044d242f22d909327309aedaced696d2be /pimd/pim_vxlan.c
parentMerge pull request #5862 from sworleys/PBR-No-Table-Range (diff)
downloadfrr-7f5818fbd674decdacec17764cf8c0cc89e26bca.tar.xz
frr-7f5818fbd674decdacec17764cf8c0cc89e26bca.zip
*: 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.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/pimd/pim_vxlan.c b/pimd/pim_vxlan.c
index 57b922a53..b21ff56ce 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;