timer: fix reset return value

- API rte_timer_reset() should return -1 when the timer is in the
RUNNING or CONFIG state. Instead, it ignores the return value of
internal function __rte_timer_reset() and always returns 0.
We change rte_timer_reset() to return the value returned by
__rte_timer_reset().

- Enhance timer stress test 2 to report how many timer reset
collisions occur, i.e., how many times rte_timer_reset() fails
due to a timer being in the CONFIG state.

Signed-off-by: Robert Sanford <rsanford2@gmail.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
This commit is contained in:
Robert Sanford 2015-02-24 23:09:49 -05:00 committed by Thomas Monjalon
parent 319abb43fa
commit 7085f6c738
2 changed files with 17 additions and 6 deletions

View File

@ -247,10 +247,12 @@ static int
timer_stress2_main_loop(__attribute__((unused)) void *arg) timer_stress2_main_loop(__attribute__((unused)) void *arg)
{ {
static struct rte_timer *timers; static struct rte_timer *timers;
int i; int i, ret;
static volatile int ready = 0; static volatile int ready = 0;
uint64_t delay = rte_get_timer_hz() / 4; uint64_t delay = rte_get_timer_hz() / 4;
unsigned lcore_id = rte_lcore_id(); unsigned lcore_id = rte_lcore_id();
int32_t my_collisions = 0;
static rte_atomic32_t collisions = RTE_ATOMIC32_INIT(0);
if (lcore_id == rte_get_master_lcore()) { if (lcore_id == rte_get_master_lcore()) {
cb_count = 0; cb_count = 0;
@ -269,15 +271,25 @@ timer_stress2_main_loop(__attribute__((unused)) void *arg)
} }
/* have all cores schedule all timers on master lcore */ /* have all cores schedule all timers on master lcore */
for (i = 0; i < NB_STRESS2_TIMERS; i++) for (i = 0; i < NB_STRESS2_TIMERS; i++) {
rte_timer_reset(&timers[i], delay, SINGLE, rte_get_master_lcore(), ret = rte_timer_reset(&timers[i], delay, SINGLE, rte_get_master_lcore(),
timer_stress2_cb, NULL); timer_stress2_cb, NULL);
/* there will be collisions when multiple cores simultaneously
* configure the same timers */
if (ret != 0)
my_collisions++;
}
if (my_collisions != 0)
rte_atomic32_add(&collisions, my_collisions);
ready = 0; ready = 0;
rte_delay_ms(500); rte_delay_ms(500);
/* now check that we get the right number of callbacks */ /* now check that we get the right number of callbacks */
if (lcore_id == rte_get_master_lcore()) { if (lcore_id == rte_get_master_lcore()) {
my_collisions = rte_atomic32_read(&collisions);
if (my_collisions != 0)
printf("- %d timer reset collisions (OK)\n", my_collisions);
rte_timer_manage(); rte_timer_manage();
if (cb_count != NB_STRESS2_TIMERS) { if (cb_count != NB_STRESS2_TIMERS) {
printf("Test Failed\n"); printf("Test Failed\n");
@ -317,6 +329,7 @@ timer_stress2_main_loop(__attribute__((unused)) void *arg)
rte_free(timers); rte_free(timers);
timers = NULL; timers = NULL;
ready = 0; ready = 0;
rte_atomic32_set(&collisions, 0);
if (cb_count != NB_STRESS2_TIMERS) { if (cb_count != NB_STRESS2_TIMERS) {
printf("Test Failed\n"); printf("Test Failed\n");

View File

@ -434,10 +434,8 @@ rte_timer_reset(struct rte_timer *tim, uint64_t ticks,
else else
period = 0; period = 0;
__rte_timer_reset(tim, cur_time + ticks, period, tim_lcore, return __rte_timer_reset(tim, cur_time + ticks, period, tim_lcore,
fct, arg, 0); fct, arg, 0);
return 0;
} }
/* loop until rte_timer_reset() succeed */ /* loop until rte_timer_reset() succeed */