X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Ftest_bihash_template.c;h=ffed5c73287246af904f47f211b64245e884c6f7;hb=6eb0f84e3;hp=86039d8408a6383688e69500124ec09c42bcc251;hpb=16e4a4a0ae39ebc1ded1b6dba2799b176aee1828;p=vpp.git diff --git a/src/vppinfra/test_bihash_template.c b/src/vppinfra/test_bihash_template.c index 86039d8408a..ffed5c73287 100644 --- a/src/vppinfra/test_bihash_template.c +++ b/src/vppinfra/test_bihash_template.c @@ -73,9 +73,9 @@ test_bihash_vec64 (test_main_t * tm) h = &tm->hash; #if BIHASH_32_64_SVM - BV (clib_bihash_master_init_svm) (h, "test", user_buckets, - 0x30000000 /* base_addr */ , - user_memory_size); + BV (clib_bihash_initiator_init_svm) (h, "test", user_buckets, + 0x30000000 /* base_addr */ , + user_memory_size); #else BV (clib_bihash_init) (h, "test", user_buckets, user_memory_size); #endif @@ -123,9 +123,9 @@ test_bihash_stale_overwrite (test_main_t * tm) h = &tm->hash; #if BIHASH_32_64_SVM - BV (clib_bihash_master_init_svm) (h, "test", tm->nbuckets, - 0x30000000 /* base_addr */ , - tm->hash_memory_size); + BV (clib_bihash_initiator_init_svm) (h, "test", tm->nbuckets, + 0x30000000 /* base_addr */ , + tm->hash_memory_size); #else BV (clib_bihash_init) (h, "test", tm->nbuckets, tm->hash_memory_size); #endif @@ -208,9 +208,9 @@ test_bihash_threads (test_main_t * tm) h = &tm->hash; #if BIHASH_32_64_SVM - BV (clib_bihash_master_init_svm) (h, "test", tm->nbuckets, - 0x30000000 /* base_addr */ , - tm->hash_memory_size); + BV (clib_bihash_initiator_init_svm) (h, "test", tm->nbuckets, + 0x30000000 /* base_addr */ , + tm->hash_memory_size); #else BV (clib_bihash_init) (h, "test", tm->nbuckets, tm->hash_memory_size); #endif @@ -262,9 +262,9 @@ test_bihash (test_main_t * tm) h = &tm->hash; #if BIHASH_32_64_SVM - BV (clib_bihash_master_init_svm) (h, "test", tm->nbuckets, - 0x30000000 /* base_addr */ , - tm->hash_memory_size); + BV (clib_bihash_initiator_init_svm) (h, "test", tm->nbuckets, + 0x30000000 /* base_addr */ , + tm->hash_memory_size); #else BV (clib_bihash_init) (h, "test", tm->nbuckets, tm->hash_memory_size); #endif