usertools: show hugepages on POWER systems
authorDavid Christensen <drc@linux.vnet.ibm.com>
Wed, 2 Dec 2020 20:57:56 +0000 (12:57 -0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 5 Feb 2021 18:49:32 +0000 (19:49 +0100)
commit2204feccf225071d459947e5eebf279469aca961
treeace522462e393d0bfb9eb637645ca08a0dacc3e5
parentc48d8c316424ddf7ae1ddd2fa1fa940cf45eb8c3
usertools: show hugepages on POWER systems

The IBM PowerNV systems include NUMA nodes that don't have associated
CPUs or hugepage memory.  Here is an example on an IBM AC922 system:

$ lscpu
...
NUMA node0 CPU(s):   0-63
NUMA node8 CPU(s):   64-127
NUMA node252 CPU(s):
...

$ numastat -m
...
                          Node 0          Node 8        Node 252
                 --------------- --------------- ---------------
MemTotal               126763.19       130785.06            0.00
MemFree                119513.38       125294.44            0.00
MemUsed                  7249.81         5490.62            0.00
...
HugePages_Total             4.00         1734.00            0.00
HugePages_Free              0.00            4.00            0.00
HugePages_Surp              4.00         1730.00            0.00
...

Modify dpdk-hugepages.py to test for the ../hugepages directory before
attempting to parse the hugepage entries.

Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
usertools/dpdk-hugepages.py