]> git.baikalelectronics.ru Git - kernel.git/commit
/proc/module: fix building without kallsyms
authorArnd Bergmann <arnd@arndb.de>
Mon, 13 Nov 2017 16:51:00 +0000 (17:51 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 13 Nov 2017 17:48:56 +0000 (09:48 -0800)
commit6cdaea99f8563cd84a39fc34833d34b4857f16a4
tree4d3d2c4fc33d3e0d5373d68243dbaa597084bf96
parenta4ffdf8482682ed8491b1fc3b64c295d8b4e6dcf
/proc/module: fix building without kallsyms

As reported by kernelci and other build bots, we now get a link
failure without CONFIG_KALLSYMS:

  module.c:(.text+0xf2c): undefined reference to `kallsyms_show_value'

This adds a dummy helper with the same name that can be used
for compilation. It's not entirely clear to me what this
should return for !CONFIG_KALLSYMS, I picked an unconditional
'false', which leads to the module address being unavailable
to user space.

Link: https://kernelci.org/build/mainline/branch/master/kernel/v4.14-5-g516fb7f2e73d/
Fixes: 2867846bbcd1 ("/proc/module: use the same logic as /proc/kallsyms for address exposure")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/kallsyms.h