timer: fix reset on service cores
The return value of rte_lcore_has_role is misinterpreted in the timer reset function. The return values of rte_lcore_has_role will be changed in a future DPDK release, but this commit fixes this call site until that happens. Fixes: 351f463456f8 ("timer: allow reset on service cores") Cc: stable@dpdk.org Signed-off-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com> Acked-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com>
This commit is contained in:
parent
4f438c8515
commit
d33fbd51e5
@ -403,7 +403,7 @@ rte_timer_reset(struct rte_timer *tim, uint64_t ticks,
|
||||
|
||||
if (unlikely((tim_lcore != (unsigned)LCORE_ID_ANY) &&
|
||||
!(rte_lcore_is_enabled(tim_lcore) ||
|
||||
rte_lcore_has_role(tim_lcore, ROLE_SERVICE))))
|
||||
rte_lcore_has_role(tim_lcore, ROLE_SERVICE) == 0)))
|
||||
return -1;
|
||||
|
||||
if (type == PERIODICAL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user