2e1926e7b5
This patch adds ELF section parsing for the unwinding tables in loadable modules together with the PREL31 relocation symbol resolving. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
30 lines
641 B
C
30 lines
641 B
C
#ifndef _ASM_ARM_MODULE_H
|
|
#define _ASM_ARM_MODULE_H
|
|
|
|
#define Elf_Shdr Elf32_Shdr
|
|
#define Elf_Sym Elf32_Sym
|
|
#define Elf_Ehdr Elf32_Ehdr
|
|
|
|
struct unwind_table;
|
|
|
|
struct mod_arch_specific
|
|
{
|
|
#ifdef CONFIG_ARM_UNWIND
|
|
Elf_Shdr *unw_sec_init;
|
|
Elf_Shdr *unw_sec_devinit;
|
|
Elf_Shdr *unw_sec_core;
|
|
Elf_Shdr *sec_init_text;
|
|
Elf_Shdr *sec_devinit_text;
|
|
Elf_Shdr *sec_core_text;
|
|
struct unwind_table *unwind_init;
|
|
struct unwind_table *unwind_devinit;
|
|
struct unwind_table *unwind_core;
|
|
#endif
|
|
};
|
|
|
|
/*
|
|
* Include the ARM architecture version.
|
|
*/
|
|
#define MODULE_ARCH_VERMAGIC "ARMv" __stringify(__LINUX_ARM_ARCH__) " "
|
|
|
|
#endif /* _ASM_ARM_MODULE_H */
|