
12 Aug
2025
12 Aug
'25
3:36 p.m.
hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/ICFKYV -------------------------------- Fix kabi breakage for including sched bpf header file. Signed-off-by: Cheng Yu <serein.chengyu@huawei.com> --- fs/exec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/exec.c b/fs/exec.c index 3dd371dfa89c..49a371c9009e 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -75,7 +75,9 @@ #include "internal.h" #include <trace/events/sched.h> +#ifndef __GENKSYMS__ #include <linux/bpf_sched.h> +#endif static int bprm_creds_from_file(struct linux_binprm *bprm); -- 2.25.1