The main purpose of this patchset is to add AF_XDP support for UMEM chunk sizes > PAGE_SIZE. This is enabled for UMEMs backed by HugeTLB pages. The patchset starts off with many fixes and improvements to the XSK selftests. Next, an existing issue is fixed whereby unaligned descriptors may overrun the end of the UMEM in certain cases. Finally, AF_XDP support for UMEM chunk_size > PAGE_SIZE is added. v2 contains major improvements over v1. It should be both a joy to read and review. :-) Changes since v1: * Add many fixes/improvements to the XSK selftests. * Add check for unaligned descriptors that overrun UMEM. * Fix compile errors when CONFIG_HUGETLB_PAGE is not set. * Fix incorrect use of _Static_assert. * Update AF_XDP documentation. * Rename unaligned 9K frame size test. * Make xp_check_dma_contiguity less conservative. * Add more information to benchmark table. Thanks to Magnus Karlsson for his initial feedback! Kal Conley (10): selftests: xsk: Add xskxceiver.h dependency to Makefile selftests: xsk: Use correct UMEM size in testapp_invalid_desc selftests: xsk: Add test case for packets at end of UMEM selftests: xsk: Deflakify STATS_RX_DROPPED test selftests: xsk: Disable IPv6 on VETH1 xsk: Add check for unaligned descriptors that overrun UMEM selftests: xsk: Add test UNALIGNED_INV_DESC_4K1_FRAME_SIZE xsk: Support UMEM chunk_size > PAGE_SIZE selftests: xsk: Use hugepages when umem->frame_size > PAGE_SIZE selftests: xsk: Add tests for 8K and 9K frame sizes Documentation/networking/af_xdp.rst | 19 ++++-- include/net/xdp_sock.h | 3 + include/net/xdp_sock_drv.h | 12 ++++ include/net/xsk_buff_pool.h | 24 +++++--- net/xdp/xdp_umem.c | 50 ++++++++++++--- net/xdp/xsk_buff_pool.c | 34 +++++++---- net/xdp/xsk_queue.h | 1 + tools/testing/selftests/bpf/Makefile | 2 +- tools/testing/selftests/bpf/test_xsk.sh | 1 + tools/testing/selftests/bpf/xskxceiver.c | 77 +++++++++++++++++++++--- tools/testing/selftests/bpf/xskxceiver.h | 4 +- 11 files changed, 183 insertions(+), 44 deletions(-) -- 2.39.2