diff options
author | Alexei Starovoitov <ast@plumgrid.com> | 2014-07-23 02:01:58 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-24 00:06:22 -0400 |
commit | f5bffecda951b59d0d3cdd616d68952abc52bc40 (patch) | |
tree | d41b60043315ff9ea6a7ddcb053e66419d24889c /kernel/Makefile | |
parent | 8942a6d5f2b60ca374473ee0a996c5e64ce604dc (diff) |
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/Makefile')
-rw-r--r-- | kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index f2a8b6246ce9..e7360b7c2c0e 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -87,6 +87,7 @@ obj-$(CONFIG_RING_BUFFER) += trace/ | |||
87 | obj-$(CONFIG_TRACEPOINTS) += trace/ | 87 | obj-$(CONFIG_TRACEPOINTS) += trace/ |
88 | obj-$(CONFIG_IRQ_WORK) += irq_work.o | 88 | obj-$(CONFIG_IRQ_WORK) += irq_work.o |
89 | obj-$(CONFIG_CPU_PM) += cpu_pm.o | 89 | obj-$(CONFIG_CPU_PM) += cpu_pm.o |
90 | obj-$(CONFIG_NET) += bpf/ | ||
90 | 91 | ||
91 | obj-$(CONFIG_PERF_EVENTS) += events/ | 92 | obj-$(CONFIG_PERF_EVENTS) += events/ |
92 | 93 | ||