diff options
author | Andrey Ignatov <rdna@fb.com> | 2018-05-25 08:55:22 -0700 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2018-05-28 17:41:01 +0200 |
commit | 13193b0f392f5a65d0d54185cb95ed5e99c0a5bf (patch) | |
tree | acffc582494e2e9dc8599bccac153de6f66020dd /block | |
parent | 3b296633ae6b91bfff815eb005d220b6ad4a47b1 (diff) | |
download | linux-13193b0f392f5a65d0d54185cb95ed5e99c0a5bf.tar.bz2 |
bpf: Define cgroup_bpf_enabled for CONFIG_CGROUP_BPF=n
Static key is used to enable/disable cgroup-bpf related code paths at
run time.
Though it's not defined when cgroup-bpf is disabled at compile time,
i.e. CONFIG_CGROUP_BPF=n, and if some code wants to use it, it has to do
this:
#ifdef CONFIG_CGROUP_BPF
if (cgroup_bpf_enabled) {
/* ... some work ... */
}
#endif
This code can be simplified by setting cgroup_bpf_enabled to 0 for
CONFIG_CGROUP_BPF=n case:
if (cgroup_bpf_enabled) {
/* ... some work ... */
}
And it aligns well with existing BPF_CGROUP_RUN_PROG_* macros that
defined for both states of CONFIG_CGROUP_BPF.
Signed-off-by: Andrey Ignatov <rdna@fb.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'block')
0 files changed, 0 insertions, 0 deletions