OSDN Git Service

module: fix DEBUG_SET_MODULE_RONX typo
authorArnd Bergmann <arnd@arndb.de>
Mon, 28 Nov 2016 14:59:13 +0000 (15:59 +0100)
committerJessica Yu <jeyu@redhat.com>
Mon, 28 Nov 2016 19:37:57 +0000 (11:37 -0800)
commit4d217a5adccf5e806790c37c61cc374a08bd7381
tree6e25866ea91837cdb968d8aa3b7040feb363da2e
parent39290b389ea2654f9190e3b48c57d27b24def83e
module: fix DEBUG_SET_MODULE_RONX typo

The newly added 'rodata_enabled' global variable is protected by
the wrong #ifdef, leading to a link error when CONFIG_DEBUG_SET_MODULE_RONX
is turned on:

kernel/module.o: In function `disable_ro_nx':
module.c:(.text.unlikely.disable_ro_nx+0x88): undefined reference to `rodata_enabled'
kernel/module.o: In function `module_disable_ro':
module.c:(.text.module_disable_ro+0x8c): undefined reference to `rodata_enabled'
kernel/module.o: In function `module_enable_ro':
module.c:(.text.module_enable_ro+0xb0): undefined reference to `rodata_enabled'

CONFIG_SET_MODULE_RONX does not exist, so use the correct one instead.

Fixes: 39290b389ea2 ("module: extend 'rodata=off' boot cmdline parameter to module mappings")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jessica Yu <jeyu@redhat.com>
init/main.c