Hi Paul. > modpost: skip section mismatch warnings on ELF local symbols by default > > modpost, by default, reports section mismatch warnings on ELF local > symbols. This caused false positive warnings to be reported for a > local symbol name that would otherwise be elided by matching against a > name pattern. This was observed using a RISC-V toolchain that generates > section anchors. > > To avoid this noise in the common case, this patch series disables > section mismatch warnings on ELF local symbols by default. This part is fine. > It also > adds a modpost command line switch to re-enable these warnings, since > I wasn't able to convince myself that section mismatch warnings on ELF > local symbols were completely useless; just mostly useless :-) modpost is not supposed to be used outside the kernel build. And therefore if we introduce a new option then the infrastructure to enable that option should also be in place. In this particular case I cannot see why we should add the possibility to include local symbols, in other words do not add the option. Wait a few days before you kill it, maybe others see the usefulness of it. I checked if there were any options supported by modpost that was not configurable in makefile.modpost. And I could see that the -M and -K options in getopt() was leftovers. The code that used these option was was dropped in: a8773769d1a1e08d0ca15f890515401ab3860637 ("Kbuild: clear marker out of modpost") Could you add a patch that delete these on top of what you already have. Sam