]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commitafab1ca200f82888b5ef6cbc61b38468f09d5b9c
treed41b60043315ff9ea6a7ddcb053e66419d24889c
parent416738c6076c73eee9fc1c7fd1fbb83519b6df51
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