From: Eduard Zingerman <eddyz87@gmail.com>
To: bpf@vger.kernel.org, ast@kernel.org, andrii@kernel.org,
daniel@iogearbox.net, kernel-team@fb.com
Cc: Eduard Zingerman <eddyz87@gmail.com>
Subject: [PATCH bpf-next 2/2] selftests/bpf: verify newline for struct with padding only fields
Date: Fri, 30 Sep 2022 19:49:18 +0300 [thread overview]
Message-ID: <20220930164918.342310-3-eddyz87@gmail.com> (raw)
In-Reply-To: <20220930164918.342310-1-eddyz87@gmail.com>
Verify that `bpftool btf dump file ... format c` correctly prints
newlines for structures that consist of anonymous-only padding fields.
Signed-off-by: Eduard Zingerman <eddyz87@gmail.com>
---
.../bpf/progs/btf_dump_test_case_padding.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/tools/testing/selftests/bpf/progs/btf_dump_test_case_padding.c b/tools/testing/selftests/bpf/progs/btf_dump_test_case_padding.c
index f2661c8d2d90..08e43ee38188 100644
--- a/tools/testing/selftests/bpf/progs/btf_dump_test_case_padding.c
+++ b/tools/testing/selftests/bpf/progs/btf_dump_test_case_padding.c
@@ -102,12 +102,28 @@ struct zone {
struct zone_padding __pad__;
};
+/* ----- START-EXPECTED-OUTPUT ----- */
+/*
+ *struct padding_wo_named_members {
+ * long: 64;
+ * long: 64;
+ *};
+ *
+ */
+/* ------ END-EXPECTED-OUTPUT ------ */
+
+struct padding_wo_named_members {
+ long: 64;
+ long: 64;
+} __attribute__((aligned(8)));
+
int f(struct {
struct padded_implicitly _1;
struct padded_explicitly _2;
struct padded_a_lot _3;
struct padded_cache_line _4;
struct zone _5;
+ struct padding_wo_named_members _6;
} *_)
{
return 0;
--
2.37.3
next prev parent reply other threads:[~2022-09-30 16:50 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-30 16:49 [PATCH bpf-next 0/2] bpftool: fix newline for struct with padding only fields Eduard Zingerman
2022-09-30 16:49 ` [PATCH bpf-next 1/2] " Eduard Zingerman
2022-09-30 23:01 ` Andrii Nakryiko
2022-09-30 16:49 ` Eduard Zingerman [this message]
2022-09-30 23:03 ` [PATCH bpf-next 2/2] selftests/bpf: verify " Andrii Nakryiko
2022-09-30 22:59 ` [PATCH bpf-next 0/2] bpftool: fix " Andrii Nakryiko
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=20220930164918.342310-3-eddyz87@gmail.com \
--to=eddyz87@gmail.com \
--cc=andrii@kernel.org \
--cc=ast@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=daniel@iogearbox.net \
--cc=kernel-team@fb.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
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