diff options
author | Dave Barach <dave@barachs.net> | 2020-08-06 11:38:40 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-08-06 17:09:49 +0000 |
commit | d4a639bbd2257a88fa3f06939a23c13af1d56dd3 (patch) | |
tree | ff83a04697e923aa79842b5937a045c669e22777 /src/vppinfra/bihash_template.c | |
parent | 11fb09e38ffcbadc2629361377413f3ce12ec4da (diff) |
vppinfra: harmonize function names
Type: fix
Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: Icce7eab4510785e15bdcf97e4d1881b0f46f6899
Diffstat (limited to 'src/vppinfra/bihash_template.c')
-rw-r--r-- | src/vppinfra/bihash_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vppinfra/bihash_template.c b/src/vppinfra/bihash_template.c index dac42a8dc14..02d84abd9eb 100644 --- a/src/vppinfra/bihash_template.c +++ b/src/vppinfra/bihash_template.c @@ -184,7 +184,7 @@ void BV (clib_bihash_init) #define MFD_ALLOW_SEALING 0x0002U #endif -void BV (clib_bihash_master_init_svm) +void BV (clib_bihash_initiator_init_svm) (BVT (clib_bihash) * h, char *name, u32 nbuckets, u64 memory_size) { uword bucket_size; @@ -253,7 +253,7 @@ void BV (clib_bihash_master_init_svm) h->instantiated = 1; } -void BV (clib_bihash_slave_init_svm) +void BV (clib_bihash_responder_init_svm) (BVT (clib_bihash) * h, char *name, int fd) { u8 *mmap_addr; |