diff options
author | Martin KaFai Lau <kafai@fb.com> | 2018-12-06 04:35:44 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-12-06 05:48:40 +0300 |
commit | d30d42e08c76cb9323ec6121190eb026b07f773b (patch) | |
tree | 784239f20eb96e116b16ba0bacfaa037f713ce3a /include/uapi/linux/bpf.h | |
parent | 7337224fc150b3b762190425399ac0e8dee380d1 (diff) | |
download | linux-d30d42e08c76cb9323ec6121190eb026b07f773b.tar.xz |
bpf: Change insn_offset to insn_off in bpf_func_info
The later patch will introduce "struct bpf_line_info" which
has member "line_off" and "file_off" referring back to the
string section in btf. The line_"off" and file_"off"
are more consistent to the naming convention in btf.h that
means "offset" (e.g. name_off in "struct btf_type").
The to-be-added "struct bpf_line_info" also has another
member, "insn_off" which is the same as the "insn_offset"
in "struct bpf_func_info". Hence, this patch renames "insn_offset"
to "insn_off" for "struct bpf_func_info".
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/uapi/linux/bpf.h')
-rw-r--r-- | include/uapi/linux/bpf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index c8e1eeee2c5f..a84fd232d934 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -2991,7 +2991,7 @@ struct bpf_flow_keys { }; struct bpf_func_info { - __u32 insn_offset; + __u32 insn_off; __u32 type_id; }; |