]> git.baikalelectronics.ru Git - kernel.git/commit
libbpf: Fix ptr_is_aligned() usages
authorIlya Leoshkevich <iii@linux.ibm.com>
Thu, 21 Oct 2021 10:46:58 +0000 (12:46 +0200)
committerAndrii Nakryiko <andrii@kernel.org>
Thu, 21 Oct 2021 22:50:04 +0000 (15:50 -0700)
commit5071845c5838543c68e1a64a97b934947fee3745
treeb5fa2fd6b0bde0c5dfa561194a57cb799f4196b9
parent1ad282e6044fbf7c52bc646cc24b70bd0fc15067
libbpf: Fix ptr_is_aligned() usages

Currently ptr_is_aligned() takes size, and not alignment, as a
parameter, which may be overly pessimistic e.g. for __i128 on s390,
which must be only 8-byte aligned. Fix by using btf__align_of().

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20211021104658.624944-2-iii@linux.ibm.com
tools/lib/bpf/btf_dump.c