diff options
author | John Fastabend <john.fastabend@gmail.com> | 2017-07-17 09:30:25 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-17 09:48:06 -0700 |
commit | 9d6e005287ee23c7e25b04f4ad007bdbaf4fc438 (patch) | |
tree | 68690d84b82c26f35be237fa8a37f345255f51f8 /tools | |
parent | 2ddf71e23cc246e95af72a6deed67b4a50a7b81c (diff) | |
download | linux-stable-9d6e005287ee23c7e25b04f4ad007bdbaf4fc438.tar.gz linux-stable-9d6e005287ee23c7e25b04f4ad007bdbaf4fc438.tar.bz2 linux-stable-9d6e005287ee23c7e25b04f4ad007bdbaf4fc438.zip |
xdp: bpf redirect with map sample program
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Tested-by: Andy Gospodarek <andy@greyhouse.net>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/bpf/bpf_helpers.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/bpf_helpers.h b/tools/testing/selftests/bpf/bpf_helpers.h index d50ac342dc92..acbd60519467 100644 --- a/tools/testing/selftests/bpf/bpf_helpers.h +++ b/tools/testing/selftests/bpf/bpf_helpers.h @@ -38,6 +38,8 @@ static int (*bpf_clone_redirect)(void *ctx, int ifindex, int flags) = (void *) BPF_FUNC_clone_redirect; static int (*bpf_redirect)(int ifindex, int flags) = (void *) BPF_FUNC_redirect; +static int (*bpf_redirect_map)(void *map, int key, int flags) = + (void *) BPF_FUNC_redirect_map; static int (*bpf_perf_event_output)(void *ctx, void *map, unsigned long long flags, void *data, int size) = |