[snip]
> > + rte_errno = EINVAL;
> > + return -1;
> > + }
>
> rte_errno is unknown
>
> It seems to be fixed in patch 12:
>
> --- a/lib/librte_eal/windows/eal_windows.h
> +++ b/lib/librte_eal/windows/eal_windows.h
> @@ -9,8 +9,24 @@
> * @file Facilities private to Window
15/06/2020 02:43, Dmitry Kozlyuk:
> + infos_size = 0;
> + if (!GetLogicalProcessorInformationEx(
> + RelationNumaNode, NULL, &infos_size)) {
> + DWORD error = GetLastError();
> + if (error != ERROR_INSUFFICIENT_BUFFER) {
> + lo
1. Map CPU cores to their respective NUMA nodes as reported by system.
2. Support systems with more than 64 cores (multiple processor groups).
3. Fix magic constants, styling issues, and compiler warnings.
4. Add EAL private function to map DPDK socket ID to NUMA node number.
Signed-off-by: Dmitry
3 matches
Mail list logo