Hi Experts,
I want to use DPDK (
www.dpdk.org) which enables userspace network stack for fast packet processing. I was able to compile the drivers but one of the requirement is to setup huge pages. I checked that the kernel configs has HUGEPAGES enabled by default.
In the documentation the following steps are mentioned to get the hugepages to work
mkdir -p /dev/hugepages
mountpoint -q /dev/hugepages || mount -t hugetlbfs nodev /dev/hugepages
echo 64 > /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages
I was however not able to complete the last step as the directory "node" is missing in /sys/devices/system
Can someone guide me what is the equivalent way of setting the number of hugepages in TC ?