kallsyms: make kallsyms_show_value() as generic function
authorManinder Singh <maninder1.s@samsung.com>
Thu, 8 Jun 2023 03:31:19 +0000 (09:01 +0530)
committerLuis Chamberlain <mcgrof@kernel.org>
Thu, 8 Jun 2023 19:27:20 +0000 (12:27 -0700)
commit0eeaf1eb40a34fddd1d568a9b32c3d6669238743
tree3b35020719fdae8aad4401d0c476355eccb7e5a1
parentb06e9318bfd03f531b918bd27b63f1eb88c21729
kallsyms: make kallsyms_show_value() as generic function

This change makes function kallsyms_show_value() as
generic function without dependency on CONFIG_KALLSYMS.

Now module address will be displayed with lsmod and /proc/modules.

Earlier:
=======
/ # insmod  test.ko
/ # lsmod
test 12288 0 - Live 0x0000000000000000 (O)  // No Module Load address
/ #

With change:
==========
/ # insmod test.ko
/ # lsmod
test 12288 0 - Live 0xffff800000fc0000 (O)  // Module address
/ # cat /proc/modules
test 12288 0 - Live 0xffff800000fc0000 (O)

Co-developed-by: Onkarnath <onkarnath.1@samsung.com>
Signed-off-by: Onkarnath <onkarnath.1@samsung.com>
Signed-off-by: Maninder Singh <maninder1.s@samsung.com>
Reviewed-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
include/linux/kallsyms.h
kernel/ksyms_common.c