diff options
| author | David S. Miller <davem@davemloft.net> | 2016-06-11 09:11:50 +0300 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2016-06-11 09:11:50 +0300 |
| commit | 52a3d792bb54d379c4546cbc40c1365139922e15 (patch) | |
| tree | c8fe63136f80a4557e5bbb10b3ac2d18881e04c0 /include | |
| parent | f6664f1f63404b75b8a980ae03b2a945337d07e1 (diff) | |
| parent | 643c332d519bdfbf80d21f40d1c0aa0ccf3ec1cb (diff) | |
| download | linux-52a3d792bb54d379c4546cbc40c1365139922e15.tar.xz | |
Merge branch 'arm64-bpf'
Zi Shen Lim says:
====================
arm64 BPF JIT updates
Updates for arm64 eBPF JIT.
The main addition here is implementation of bpf_tail_call.
Changes since v2:
- None. Resubmit per David Miller.
Changes since v1:
- Added patch #1 to address build error due to missing header inclusion
in linux/bpf.h. (Thanks to suggestion and ack by Daniel Borkmann)
Ordered it ahead of bpf_tail_call patch #2 so build error is not
triggered.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/bpf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/bpf.h b/include/linux/bpf.h index 8ee27b8afe81..1bcae82c6cb1 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -11,6 +11,7 @@ #include <linux/workqueue.h> #include <linux/file.h> #include <linux/percpu.h> +#include <linux/err.h> struct bpf_map; |
