From: Yonghong Song <yhs@fb•com>
To: <netdev@vger•kernel.org>
Cc: Alexei Starovoitov <ast@fb•com>,
Daniel Borkmann <daniel@iogearbox•net>, <kernel-team@fb•com>,
Martin KaFai Lau <kafai@fb•com>
Subject: [PATCH bpf-next v3 4/8] tools/bpf: sync btf.h header from kernel to tools
Date: Sat, 15 Dec 2018 22:13:53 -0800 [thread overview]
Message-ID: <20181216061353.302329-1-yhs@fb.com> (raw)
In-Reply-To: <20181216061350.301750-1-yhs@fb.com>
Sync include/uapi/linux/btf.h to tools/include/uapi/linux/btf.h.
Acked-by: Martin KaFai Lau <kafai@fb•com>
Signed-off-by: Yonghong Song <yhs@fb•com>
---
tools/include/uapi/linux/btf.h | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/tools/include/uapi/linux/btf.h b/tools/include/uapi/linux/btf.h
index 14f66948fc95..7b7475ef2f17 100644
--- a/tools/include/uapi/linux/btf.h
+++ b/tools/include/uapi/linux/btf.h
@@ -34,7 +34,9 @@ struct btf_type {
* bits 0-15: vlen (e.g. # of struct's members)
* bits 16-23: unused
* bits 24-27: kind (e.g. int, ptr, array...etc)
- * bits 28-31: unused
+ * bits 28-30: unused
+ * bit 31: kind_flag, currently used by
+ * struct, union and fwd
*/
__u32 info;
/* "size" is used by INT, ENUM, STRUCT and UNION.
@@ -52,6 +54,7 @@ struct btf_type {
#define BTF_INFO_KIND(info) (((info) >> 24) & 0x0f)
#define BTF_INFO_VLEN(info) ((info) & 0xffff)
+#define BTF_INFO_KFLAG(info) ((info) >> 31)
#define BTF_KIND_UNKN 0 /* Unknown */
#define BTF_KIND_INT 1 /* Integer */
@@ -110,9 +113,22 @@ struct btf_array {
struct btf_member {
__u32 name_off;
__u32 type;
- __u32 offset; /* offset in bits */
+ /* If the type info kind_flag is set, the btf_member offset
+ * contains both member bitfield size and bit offset. The
+ * bitfield size is set for bitfield members. If the type
+ * info kind_flag is not set, the offset contains only bit
+ * offset.
+ */
+ __u32 offset;
};
+/* If the struct/union type info kind_flag is set, the
+ * following two macros are used to access bitfield_size
+ * and bit_offset from btf_member.offset.
+ */
+#define BTF_MEMBER_BITFIELD_SIZE(val) ((val) >> 24)
+#define BTF_MEMBER_BIT_OFFSET(val) ((val) & 0xffffff)
+
/* BTF_KIND_FUNC_PROTO is followed by multiple "struct btf_param".
* The exact number of btf_param is stored in the vlen (of the
* info in "struct btf_type").
--
2.17.1
next prev parent reply other threads:[~2018-12-16 6:13 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-16 6:13 [PATCH bpf-next v3 0/8] bpf: btf: fix struct/union/fwd types with kind_flag Yonghong Song
2018-12-16 6:13 ` [PATCH bpf-next v3 1/8] bpf: btf: refactor btf_int_bits_seq_show() Yonghong Song
2018-12-16 6:13 ` [PATCH bpf-next v3 2/8] bpf: btf: fix struct/union/fwd types with kind_flag Yonghong Song
2018-12-16 6:13 ` [PATCH bpf-next v3 3/8] bpf: enable cgroup local storage map pretty print " Yonghong Song
2018-12-16 6:13 ` Yonghong Song [this message]
2018-12-16 6:13 ` [PATCH bpf-next v3 5/8] tools/bpf: add test_btf unit tests for kind_flag Yonghong Song
2018-12-16 6:13 ` [PATCH bpf-next v3 6/8] tools/bpf: test kernel bpffs map pretty print with struct kind_flag Yonghong Song
2018-12-16 6:13 ` [PATCH bpf-next v3 7/8] tools: bpftool: refactor btf_dumper_int_bits() Yonghong Song
2018-12-16 6:13 ` [PATCH bpf-next v3 8/8] tools: bpftool: support pretty print with kind_flag set Yonghong Song
2018-12-18 0:18 ` [PATCH bpf-next v3 0/8] bpf: btf: fix struct/union/fwd types with kind_flag Daniel Borkmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181216061353.302329-1-yhs@fb.com \
--to=yhs@fb$(echo .)com \
--cc=ast@fb$(echo .)com \
--cc=daniel@iogearbox$(echo .)net \
--cc=kafai@fb$(echo .)com \
--cc=kernel-team@fb$(echo .)com \
--cc=netdev@vger$(echo .)kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox