From: Russell King Date: Fri, 12 Nov 2010 13:04:16 +0000 (+0000) Subject: ARM: module: ignore unwind for sections not marked SHF_ALLOC X-Git-Tag: v2.6.38-rc1~471^2~5^6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=50005a8deb38e5e6456ebd94e57adb321d4589de;p=karo-tx-linux.git ARM: module: ignore unwind for sections not marked SHF_ALLOC If a section is not marked with SHF_ALLOC, it will be discarded by the module code. Therefore, it is not correct to register the unwind tables. Signed-off-by: Russell King --- diff --git a/arch/arm/kernel/module.c b/arch/arm/kernel/module.c index f9937c4b7d1a..0c1bb68ff4a8 100644 --- a/arch/arm/kernel/module.c +++ b/arch/arm/kernel/module.c @@ -290,6 +290,9 @@ int module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs, for (s = sechdrs; s < sechdrs_end; s++) { const char *secname = secstrs + s->sh_name; + if (!(s->sh_flags & SHF_ALLOC)) + continue; + if (strcmp(".ARM.exidx.init.text", secname) == 0) maps[ARM_SEC_INIT].unw_sec = s; else if (strcmp(".ARM.exidx.devinit.text", secname) == 0)