hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/IDC9YK -------------------------------- bpf: Fix kabi for struct btf *btf in struct bpf_ctx_arg_aux. Fixes: 21130177a154 ("bpf: add btf pointer to struct bpf_ctx_arg_aux.") Signed-off-by: Zicheng Qu <quzicheng@huawei.com> --- include/linux/bpf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/bpf.h b/include/linux/bpf.h index e8b67a6f276c..83aeefdd7690 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -1462,8 +1462,8 @@ struct bpf_jit_poke_descriptor { struct bpf_ctx_arg_aux { u32 offset; enum bpf_reg_type reg_type; - struct btf *btf; u32 btf_id; + KABI_BROKEN_INSERT(struct btf *btf) // will affect struct bpf_iter_reg. }; struct btf_mod_pair { -- 2.34.1