]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: Invert the dependency between bpf-netns.h and netns/bpf.h
authorJakub Kicinski <kuba@kernel.org>
Thu, 30 Dec 2021 01:27:42 +0000 (17:27 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 30 Dec 2021 04:03:05 +0000 (20:03 -0800)
commit0053634f25e689db0be10d989031c07cf90602a8
treec1381250aa990ff5768d65e8c177022510f94559
parenteac2c8acdfcd61e660f213fe4d6b535d212fb641
bpf: Invert the dependency between bpf-netns.h and netns/bpf.h

netns/bpf.h gets included by netdevice.h (thru net_namespace.h)
which in turn gets included in a lot of places. We should keep
netns/bpf.h as light-weight as possible.

bpf-netns.h seems to contain more implementation details than
deserves to be included in a netns header. It needs to pull in
uapi/bpf.h to get various enum types.

Move enum netns_bpf_attach_type to netns/bpf.h and invert the
dependency. This makes netns/bpf.h fit the mold of a struct
definition header more clearly, and drops the number of objects
rebuilt when uapi/bpf.h is touched from 7.7k to 1.1k.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20211230012742.770642-3-kuba@kernel.org
include/linux/bpf-netns.h
include/net/netns/bpf.h