net: filter: split filter.c into two files
authorAlexei Starovoitov <ast@plumgrid.com>
Wed, 23 Jul 2014 06:01:58 +0000 (23:01 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 24 Jul 2014 04:06:22 +0000 (21:06 -0700)
commitf5bffecda951b59d0d3cdd616d68952abc52bc40
treed41b60043315ff9ea6a7ddcb053e66419d24889c
parent8942a6d5f2b60ca374473ee0a996c5e64ce604dc
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>
kernel/Makefile
kernel/bpf/Makefile [new file with mode: 0644]
kernel/bpf/core.c [new file with mode: 0644]
net/core/filter.c