commit | 632f96d2652e0d4188de837f88a977eedb55aee1 | [log] [tgz] |
---|---|---|
author | Ilya Leoshkevich <iii@linux.ibm.com> | Thu Oct 21 12:46:58 2021 +0200 |
committer | Andrii Nakryiko <andrii@kernel.org> | Thu Oct 21 15:50:04 2021 -0700 |
tree | b5fa2fd6b0bde0c5dfa561194a57cb799f4196b9 | |
parent | 549beec028ad05ab911a584e9da3c51288544528 [diff] |
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