diff options
| author | 2014-07-22 23:01:58 -0700 | |
|---|---|---|
| committer | 2014-07-23 21:06:22 -0700 | |
| commit | f5bffecda951b59d0d3cdd616d68952abc52bc40 (patch) | |
| tree | d41b60043315ff9ea6a7ddcb053e66419d24889c /kernel/bpf/Makefile | |
| parent | Merge branch 'bcmgenet-next' (diff) | |
| download | linux-dev-f5bffecda951b59d0d3cdd616d68952abc52bc40.tar.xz linux-dev-f5bffecda951b59d0d3cdd616d68952abc52bc40.zip | |
net: filter: split filter.c into two files
BPF is used in several kernel components. This split creates logical boundary
between generic eBPF core and the rest
kernel/bpf/core.c: eBPF interpreter
net/core/filter.c: classic->eBPF converter, classic verifiers, socket filters
This patch only moves functions.
Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'kernel/bpf/Makefile')
| -rw-r--r-- | kernel/bpf/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/bpf/Makefile b/kernel/bpf/Makefile new file mode 100644 index 000000000000..6a71145e2769 --- /dev/null +++ b/kernel/bpf/Makefile @@ -0,0 +1 @@ +obj-y := core.o |
