| To: | Linux MIPS List <linux-mips@linux-mips.org> |
|---|---|
| Subject: | [PATCH]: Fix 3.7 mips build if !CONFIG_MODULES |
| From: | Joshua Kinard <kumba@gentoo.org> |
| Date: | Thu, 27 Dec 2012 04:39:25 -0500 |
| Cc: | Ralf Baechle <ralf@linux-mips.org> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1356601148; bh=DmgMMcr/bfX8VsdR7GEXbg49vDxG8APY8RjgYPdrJK0=; h=Received:Received:Message-ID:Date:From:MIME-Version:To:Subject: Content-Type; b=MW098NwwzQqdGeJaVRJzx1IMZ5EbQwON7ls6zULCXXmucXTjbalFaXUXGJlc6HkTh Jjg/jwrYtnj7X1XVAkhQO8fjgrFvbn9o8m12bxHwaVLdrSQexSS9HLPrkNsYsEfeXh sanqe+Aq1+qoNhfKpExG7IUA1/obQjVEMSVPso9d2KIX03RWsaWdU4AC2tPykIT9T0 Tkh03hmZ8Ti24ZYwtWp+a1qGsRCijekJq94KDnppZU7CPZ7EpCZmiBuVEJQqp8k680 77zpiikvvDw8ZYmB4wkzVCbgbOjT5lE8rPEDxp9cpttw59pYK6Fm4OzXn77yp/k0fF zGlLVSlpOYt5w== |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/17.0 Thunderbird/17.0 |
The attached patch fixes a 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 on lines 36, 48, and 133.
Signed-off-by: Joshua Kinard <kumba@gentoo.org>
---
Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -Naurp a/arch/mips/Kconfig b/arch/mips/Kconfig
--- a/arch/mips/Kconfig 2012-12-22 22:52:28.264461836 -0500
+++ b/arch/mips/Kconfig 2012-12-26 23:00:46.202996691 -0500
@@ -39,8 +39,8 @@ config MIPS
select GENERIC_CLOCKEVENTS
select GENERIC_CMOS_UPDATE
select HAVE_MOD_ARCH_SPECIFIC
- select MODULES_USE_ELF_REL
- select MODULES_USE_ELF_RELA if 64BIT
+ select MODULES_USE_ELF_REL && MODULES
+ select MODULES_USE_ELF_RELA if MODULES && 64BIT
menu "Machine selection"
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH 0/6] MIPS: BCM47XX: nvram read enhancements, Rafał Miłecki |
|---|---|
| Next by Date: | Re: [PATCH]: Fix 3.7 mips build if !CONFIG_MODULES, Geert Uytterhoeven |
| Previous by Thread: | [PATCH resend 1/2] MIPS: BCM47XX: select BOOT_RAW, Hauke Mehrtens |
| Next by Thread: | Re: [PATCH]: Fix 3.7 mips build if !CONFIG_MODULES, Geert Uytterhoeven |
| Indexes: | [Date] [Thread] [Top] [All Lists] |