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

2018-12-14 Thread Burakov, Anatoly
On 14-Dec-18 11:49 AM, 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 n

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

2018-12-14 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