Skip to content

Commit 2f12fb2

Browse files
Kumba42ralfbaechle
authored andcommitted
MIPS: 64-bit: Fix build if !CONFIG_MODULES
Fix build failure if building a monolithic kernel due to arch/mips/kernel/Kconfig selecting MODULES_USE_ELF_REL[A] without checking to see if MODULES is set or not. This leads to 'struct module' not existing, which triggers a compile failure in arch/mips/kernel/module-rela.c when the compiler attempts to dereference me->name: CC arch/mips/kernel/module-rela.o arch/mips/kernel/module-rela.c: In function ‘apply_r_mips_26_rela’: arch/mips/kernel/module-rela.c:38:74: error: dereferencing pointer to incomplete type arch/mips/kernel/module-rela.c:46:12: error: dereferencing pointer to incomplete type arch/mips/kernel/module-rela.c: In function ‘apply_relocate_add’: arch/mips/kernel/module-rela.c:133:13: error: dereferencing pointer to incomplete type make[2]: *** [arch/mips/kernel/module-rela.o] Error 1 Signed-off-by: Joshua Kinard <kumba@gentoo.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/4749/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent 6295150 commit 2f12fb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/mips/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ config MIPS
3939
select GENERIC_CLOCKEVENTS
4040
select GENERIC_CMOS_UPDATE
4141
select HAVE_MOD_ARCH_SPECIFIC
42-
select MODULES_USE_ELF_REL
43-
select MODULES_USE_ELF_RELA if 64BIT
42+
select MODULES_USE_ELF_REL if MODULES
43+
select MODULES_USE_ELF_RELA if MODULES && 64BIT
4444

4545
menu "Machine selection"
4646

0 commit comments

Comments
 (0)