Re: [PATCH v7 10/11] modpost: show offset from symbol for section mismatch warnings

2023-06-09 Thread Nick Desaulniers
On Thu, Jun 8, 2023 at 7:24 AM Masahiro Yamada wrote: > > Currently, modpost only shows the symbol names and section names, so it > repeats the same message if there are multiple relocations in the same > symbol. It is common the relocation spans across multiple instructions. > > It is better to s

[PATCH v7 10/11] modpost: show offset from symbol for section mismatch warnings

2023-06-08 Thread Masahiro Yamada
Currently, modpost only shows the symbol names and section names, so it repeats the same message if there are multiple relocations in the same symbol. It is common the relocation spans across multiple instructions. It is better to show the offset from the symbol. Signed-off-by: Masahiro Yamada -