It is already possible to use both DPDK in general and virtio specifically, without hugetlbfs mounts, but currently virtio cannot be used without hugepage memory (i.e. with a --no-huge EAL switch) due to the fact that it needs to share memory with the backend.
This patchset uses memfd to create actual files backing anonymous memory. This enabled virtio to work not only without hugetlbfs, but without hugepages altogether, which could be useful in Cloud Native scenarios. Anatoly Burakov (2): memalloc: allow setting up segment list fd's mem: use memfd for no-huge mode lib/librte_eal/bsdapp/eal/eal_memalloc.c | 6 +++ lib/librte_eal/common/eal_memalloc.h | 4 ++ lib/librte_eal/linuxapp/eal/eal_memalloc.c | 16 ++++++++ lib/librte_eal/linuxapp/eal/eal_memory.c | 46 +++++++++++++++++++++- 4 files changed, 70 insertions(+), 2 deletions(-) -- 2.17.1