X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2Ftest_rwlock.c;h=f2d1c8883c309011bdf02c918a906c2272665938;hb=88caad251c8de3a84e353b0b2a27014bc303df87;hp=c3d656a8d0ce26541b66fd0b1d7a1d0fe6659455;hpb=6fef1ae4fc109807d13de4235281960b3b1dfd51;p=dpdk.git diff --git a/app/test/test_rwlock.c b/app/test/test_rwlock.c index c3d656a8d0..f2d1c8883c 100644 --- a/app/test/test_rwlock.c +++ b/app/test/test_rwlock.c @@ -13,7 +13,6 @@ #include #include #include -#include #include #include #include @@ -36,7 +35,7 @@ static rte_rwlock_t sl; static rte_rwlock_t sl_tab[RTE_MAX_LCORE]; -static rte_atomic32_t synchro; +static uint32_t synchro; enum { LC_TYPE_RDLOCK, @@ -46,6 +45,7 @@ enum { static struct { rte_rwlock_t lock; uint64_t tick; + volatile union { uint8_t u8[RTE_CACHE_LINE_SIZE]; uint64_t u64[RTE_CACHE_LINE_SIZE / sizeof(uint64_t)]; @@ -65,7 +65,7 @@ struct try_rwlock_lcore { static struct try_rwlock_lcore try_lcore_data[RTE_MAX_LCORE]; static int -test_rwlock_per_core(__attribute__((unused)) void *arg) +test_rwlock_per_core(__rte_unused void *arg) { rte_rwlock_write_lock(&sl); printf("Global write lock taken on core %u\n", rte_lcore_id()); @@ -92,17 +92,16 @@ static uint64_t time_count[RTE_MAX_LCORE] = {0}; #define TEST_RWLOCK_DEBUG 0 static int -load_loop_fn(__attribute__((unused)) void *arg) +load_loop_fn(__rte_unused void *arg) { uint64_t time_diff = 0, begin; uint64_t hz = rte_get_timer_hz(); uint64_t lcount = 0; const unsigned int lcore = rte_lcore_id(); - /* wait synchro for slaves */ - if (lcore != rte_get_master_lcore()) - while (rte_atomic32_read(&synchro) == 0) - ; + /* wait synchro for workers */ + if (lcore != rte_get_main_lcore()) + rte_wait_until_equal_32(&synchro, 1, __ATOMIC_RELAXED); begin = rte_rdtsc_precise(); while (lcount < MAX_LOOP) { @@ -134,13 +133,13 @@ test_rwlock_perf(void) printf("\nRwlock Perf Test on %u cores...\n", rte_lcore_count()); - /* clear synchro and start slaves */ - rte_atomic32_set(&synchro, 0); - if (rte_eal_mp_remote_launch(load_loop_fn, NULL, SKIP_MASTER) < 0) + /* clear synchro and start workers */ + __atomic_store_n(&synchro, 0, __ATOMIC_RELAXED); + if (rte_eal_mp_remote_launch(load_loop_fn, NULL, SKIP_MAIN) < 0) return -1; - /* start synchro and launch test on master */ - rte_atomic32_set(&synchro, 1); + /* start synchro and launch test on main */ + __atomic_store_n(&synchro, 1, __ATOMIC_RELAXED); load_loop_fn(NULL); rte_eal_mp_wait_lcore(); @@ -161,7 +160,7 @@ test_rwlock_perf(void) * - There is a global rwlock and a table of rwlocks (one per lcore). * * - The test function takes all of these locks and launches the - * ``test_rwlock_per_core()`` function on each core (except the master). + * ``test_rwlock_per_core()`` function on each core (except the main). * * - The function takes the global write lock, display something, * then releases the global lock. @@ -182,26 +181,26 @@ rwlock_test1(void) int i; rte_rwlock_init(&sl); - for (i=0; i