diff options
author | Magnus Karlsson <magnus.karlsson@intel.com> | 2018-05-02 13:01:24 +0200 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-05-03 15:55:23 -0700 |
commit | 423f38329d267969130fb6f2c685f73d72687558 (patch) | |
tree | ab7c0df0819c420846ac47c18ddc0fd614eaf035 /net/xdp/Makefile | |
parent | c0c77d8fb787cfe0c3fca689c2a30d1dad4eaba7 (diff) | |
download | linux-423f38329d267969130fb6f2c685f73d72687558.tar.gz |
xsk: add umem fill queue support and mmap
Here, we add another setsockopt for registered user memory (umem)
called XDP_UMEM_FILL_QUEUE. Using this socket option, the process can
ask the kernel to allocate a queue (ring buffer) and also mmap it
(XDP_UMEM_PGOFF_FILL_QUEUE) into the process.
The queue is used to explicitly pass ownership of umem frames from the
user process to the kernel. These frames will in a later patch be
filled in with Rx packet data by the kernel.
v2: Fixed potential crash in xsk_mmap.
Signed-off-by: Magnus Karlsson <magnus.karlsson@intel.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'net/xdp/Makefile')
-rw-r--r-- | net/xdp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xdp/Makefile b/net/xdp/Makefile index a5d736640a0f..074fb2b2d51c 100644 --- a/net/xdp/Makefile +++ b/net/xdp/Makefile @@ -1,2 +1,2 @@ -obj-$(CONFIG_XDP_SOCKETS) += xsk.o xdp_umem.o +obj-$(CONFIG_XDP_SOCKETS) += xsk.o xdp_umem.o xsk_queue.o |