diff options
Diffstat (limited to 'samples/bpf/bpf_helpers.h')
-rw-r--r-- | samples/bpf/bpf_helpers.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/bpf/bpf_helpers.h b/samples/bpf/bpf_helpers.h index 7904a2a493de..84e3fd919a06 100644 --- a/samples/bpf/bpf_helpers.h +++ b/samples/bpf/bpf_helpers.h | |||
@@ -70,6 +70,8 @@ static int (*bpf_l3_csum_replace)(void *ctx, int off, int from, int to, int flag | |||
70 | (void *) BPF_FUNC_l3_csum_replace; | 70 | (void *) BPF_FUNC_l3_csum_replace; |
71 | static int (*bpf_l4_csum_replace)(void *ctx, int off, int from, int to, int flags) = | 71 | static int (*bpf_l4_csum_replace)(void *ctx, int off, int from, int to, int flags) = |
72 | (void *) BPF_FUNC_l4_csum_replace; | 72 | (void *) BPF_FUNC_l4_csum_replace; |
73 | static int (*bpf_skb_in_cgroup)(void *ctx, void *map, int index) = | ||
74 | (void *) BPF_FUNC_skb_in_cgroup; | ||
73 | 75 | ||
74 | #if defined(__x86_64__) | 76 | #if defined(__x86_64__) |
75 | 77 | ||