On Fri, Dec 22, 2023 at 01:01:23AM +0900, Masahiro Yamada wrote: > On Thu, Dec 21, 2023 at 7:22 PM Masahiro Yamada <masahiroy@xxxxxxxxxx> wrote: > > > > On Thu, Nov 23, 2023 at 7:18 AM <deller@xxxxxxxxxx> wrote: > > > > > > From: Helge Deller <deller@xxxxxx> > > > > > > An alignment of 4 bytes is wrong for 64-bit platforms which don't define > > > CONFIG_HAVE_ARCH_PREL32_RELOCATIONS (which then store 64-bit pointers). > > > Fix their alignment to 8 bytes. > > > > > > Signed-off-by: Helge Deller <deller@xxxxxx> > > > > > > This is correct. > > > > Acked-by: Masahiro Yamada <masahiroy@xxxxxxxxxx> > > > > Please add > > > > > > Fixes: ddb5cdbafaaa ("kbuild: generate KSYMTAB entries by modpost") > > > > > > > If there is no objection, I will pick this up > to linux-kbuild/fixes. The new selftests I've suggested should help get perf data to cover both modules and built-in kernel symbols given find_symbol() will first hit built-in symbols first before modules with one caveat: we'd want to extend the selftest with a part which builds a module built-in with also tons of other symbols. So I'm all for you taking this but I don't think we need to rush for the same reasons I mentioned in my reply to Helge. I think it would be nice to get real perf data with perf stat as I suggested, and include that in the commit logs. I think it would also be useful to include a description about the fact that there is no real fix and that the performance hit is all that happens as the architecture just emulates the aligment. In the worst case, if exception handlers are broken we could crash but that is rare although it does happen. If we want to go bananas we could even get a graph of size of modules Vs cost on misaligment as a relationship with time. Without this, frankly cost on "performance" is artificial. Thoughts? Luis