diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2017-12-02 00:08:59 +0100 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2017-12-03 00:27:57 +0100 |
commit | 31d3ad832948c75139b0e5b653912f7898a1d5d5 (patch) | |
tree | d2a2038cfed391a0f89055ac2dc5e09c57cd7db3 /drivers/net/netdevsim/Makefile | |
parent | netdevsim: add software driver for testing offloads (diff) | |
download | linux-31d3ad832948c75139b0e5b653912f7898a1d5d5.tar.xz linux-31d3ad832948c75139b0e5b653912f7898a1d5d5.zip |
netdevsim: add bpf offload support
Add support for loading programs for netdevsim devices and
expose the related information via DebugFS. Both offload
of XDP and cls_bpf programs is supported.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Simon Horman <simon.horman@netronome.com>
Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'drivers/net/netdevsim/Makefile')
-rw-r--r-- | drivers/net/netdevsim/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/netdevsim/Makefile b/drivers/net/netdevsim/Makefile index 07867bfe873b..074ddebbc41d 100644 --- a/drivers/net/netdevsim/Makefile +++ b/drivers/net/netdevsim/Makefile @@ -4,3 +4,4 @@ obj-$(CONFIG_NETDEVSIM) += netdevsim.o netdevsim-objs := \ netdev.o \ + bpf.o \ |