Re: [dpdk-dev] [PATCH] crypto/scheduler: fix 64-bit mask of workers cores

2018-05-22 Thread De Lara Guarch, Pablo
> -Original Message- > From: Rybalchenko, Kirill > Sent: Monday, May 21, 2018 11:22 AM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Rybalchenko, Kirill ; > Zhang, > Roy Fan ; Pattan, Reshma > ; De Lara Guarch, Pablo > > Subject: [PATCH] crypto/scheduler: fix 64-bit mask of workers cores >

[dpdk-dev] [PATCH] crypto/scheduler: fix 64-bit mask of workers cores

2018-05-21 Thread Kirill Rybalchenko
The list of workers cores was represented by 64-bit bitmask. It doesn't work if system has cores with id higher than 63. This fix changes list of workers cores to array of uint16_t. The size of array equals to RTE_MAX_LCORE. Fixes: 4c07e0552f0a ("crypto/scheduler: add multicore scheduling mode") C