X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2Ftest_spinlock.c;h=c345c729534f936844d0afc92c0b38420fc44232;hb=e987449c9fce2ec6210be3d8bad680d08d68c9dc;hp=00ae587d8d98e344b265b3e57bb6368776288672;hpb=3778059a51fcbc6b989ca7503a3ff89f6945ddd2;p=dpdk.git diff --git a/app/test/test_spinlock.c b/app/test/test_spinlock.c index 00ae587d8d..c345c72953 100644 --- a/app/test/test_spinlock.c +++ b/app/test/test_spinlock.c @@ -139,7 +139,7 @@ static int load_loop_fn(void *func_param) { uint64_t time_diff = 0, begin; - uint64_t hz = rte_get_hpet_hz(); + uint64_t hz = rte_get_timer_hz(); uint64_t lcount = 0; const int use_lock = *(int*)func_param; const unsigned lcore = rte_lcore_id(); @@ -148,7 +148,7 @@ load_loop_fn(void *func_param) if (lcore != rte_get_master_lcore()) while (rte_atomic32_read(&synchro) == 0); - begin = rte_get_hpet_cycles(); + begin = rte_get_timer_cycles(); while (time_diff / hz < TIME_S) { if (use_lock) rte_spinlock_lock(&lk); @@ -157,7 +157,7 @@ load_loop_fn(void *func_param) rte_spinlock_unlock(&lk); /* delay to make lock duty cycle slighlty realistic */ rte_delay_us(1); - time_diff = rte_get_hpet_cycles() - begin; + time_diff = rte_get_timer_cycles() - begin; } lock_count[lcore] = lcount; return 0;