diff options
author | Björn Töpel <bjorn.topel@intel.com> | 2020-05-20 22:20:50 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-05-22 03:31:26 +0300 |
commit | d20a1676df7e4c3c23d73299159811a50e4854bc (patch) | |
tree | 5492329a8b772bb2e1291b680ebb5e544107364e /net/xdp/Makefile | |
parent | 44ac082b30dc2a05a7e23ed7e17b5f9513873386 (diff) | |
download | linux-d20a1676df7e4c3c23d73299159811a50e4854bc.tar.xz |
xsk: Move xskmap.c to net/xdp/
The XSKMAP is partly implemented by net/xdp/xsk.c. Move xskmap.c from
kernel/bpf/ to net/xdp/, which is the logical place for AF_XDP related
code. Also, move AF_XDP struct definitions, and function declarations
only used by AF_XDP internals into net/xdp/xsk.h.
Signed-off-by: Björn Töpel <bjorn.topel@intel.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20200520192103.355233-3-bjorn.topel@gmail.com
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 71e2bdafb2ce..90b5460d6166 100644 --- a/net/xdp/Makefile +++ b/net/xdp/Makefile @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-$(CONFIG_XDP_SOCKETS) += xsk.o xdp_umem.o xsk_queue.o +obj-$(CONFIG_XDP_SOCKETS) += xsk.o xdp_umem.o xsk_queue.o xskmap.o obj-$(CONFIG_XDP_SOCKETS_DIAG) += xsk_diag.o |