Re: [dpdk-dev] [PATCH v1 1/4] examples/power: change 64-bit masks to arrays

2018-12-13 Thread Hunt, David
Hi Anatoly, On 10/12/2018 12:18 PM, Burakov, Anatoly wrote: On 22-Nov-18 5:02 PM, David Hunt wrote: vm_power_manager currently makes use of uint64_t masks to keep track of cores in use, limiting use of the app to only being able to manage the first 64 cores in a multi-core system. Many modern s

Re: [dpdk-dev] [PATCH v1 1/4] examples/power: change 64-bit masks to arrays

2018-12-10 Thread Burakov, Anatoly
On 22-Nov-18 5:02 PM, David Hunt wrote: vm_power_manager currently makes use of uint64_t masks to keep track of cores in use, limiting use of the app to only being able to manage the first 64 cores in a multi-core system. Many modern systems have core counts greater than 64, so this limitation ne

[dpdk-dev] [PATCH v1 1/4] examples/power: change 64-bit masks to arrays

2018-11-22 Thread David Hunt
vm_power_manager currently makes use of uint64_t masks to keep track of cores in use, limiting use of the app to only being able to manage the first 64 cores in a multi-core system. Many modern systems have core counts greater than 64, so this limitation needs to be removed. This patch converts th