diff options
author | Jakub Kicinski <kuba@kernel.org> | 2021-12-15 18:55:37 -0800 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2021-12-16 14:57:09 -0800 |
commit | aef2feda97b840ec38e9fa53d0065188453304e8 (patch) | |
tree | 37ce343e36a71cf2596fc98e4b1ee929f007007d /security | |
parent | f7ea534a0920dbaf71a8003936e178e14ec9271d (diff) | |
download | linux-rt-aef2feda97b840ec38e9fa53d0065188453304e8.tar.gz |
add missing bpf-cgroup.h includes
We're about to break the cgroup-defs.h -> bpf-cgroup.h dependency,
make sure those who actually need more than the definition of
struct cgroup_bpf include bpf-cgroup.h explicitly.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Tejun Heo <tj@kernel.org>
Link: https://lore.kernel.org/bpf/20211216025538.1649516-3-kuba@kernel.org
Diffstat (limited to 'security')
-rw-r--r-- | security/device_cgroup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/device_cgroup.c b/security/device_cgroup.c index 04375df52fc9..842889f3dcb7 100644 --- a/security/device_cgroup.c +++ b/security/device_cgroup.c @@ -5,6 +5,7 @@ * Copyright 2007 IBM Corp */ +#include <linux/bpf-cgroup.h> #include <linux/device_cgroup.h> #include <linux/cgroup.h> #include <linux/ctype.h> |