diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-27 02:03:34 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2020-02-28 19:59:13 +0100 |
commit | 7f5818fbd674decdacec17764cf8c0cc89e26bca (patch) | |
tree | c1d0dc044d242f22d909327309aedaced696d2be /zebra/zebra_fpm.c | |
parent | Merge pull request #5862 from sworleys/PBR-No-Table-Range (diff) | |
download | frr-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 'zebra/zebra_fpm.c')
-rw-r--r-- | zebra/zebra_fpm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/zebra_fpm.c b/zebra/zebra_fpm.c index fa48c03c7..0190ee2b8 100644 --- a/zebra/zebra_fpm.c +++ b/zebra/zebra_fpm.c @@ -70,7 +70,7 @@ DEFINE_MTYPE_STATIC(ZEBRA, FPM_MAC_INFO, "FPM_MAC_INFO"); #define ZFPM_STATS_IVL_SECS 10 #define FPM_MAX_MAC_MSG_LEN 512 -static void zfpm_iterate_rmac_table(struct hash_backet *backet, void *args); +static void zfpm_iterate_rmac_table(struct hash_bucket *backet, void *args); /* * Structure that holds state for iterating over all route_node @@ -1647,7 +1647,7 @@ static int zfpm_trigger_rmac_update(zebra_mac_t *rmac, zebra_l3vni_t *zl3vni, * Iterate over all the RMAC entries for the given L3VNI * and enqueue the RMAC for FPM processing. */ -static void zfpm_trigger_rmac_update_wrapper(struct hash_backet *backet, +static void zfpm_trigger_rmac_update_wrapper(struct hash_bucket *backet, void *args) { zebra_mac_t *zrmac = (zebra_mac_t *)backet->data; @@ -1661,7 +1661,7 @@ static void zfpm_trigger_rmac_update_wrapper(struct hash_backet *backet, * This function iterates over all the L3VNIs to trigger * FPM updates for RMACs currently available. */ -static void zfpm_iterate_rmac_table(struct hash_backet *backet, void *args) +static void zfpm_iterate_rmac_table(struct hash_bucket *backet, void *args) { zebra_l3vni_t *zl3vni = (zebra_l3vni_t *)backet->data; |