aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-m68k/module.h
diff options
context:
space:
mode:
authorRoman Zippel <zippel@linux-m68k.org>2007-05-31 03:40:50 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-31 10:58:13 -0400
commitfbe9c9612930e0604dc99ef2da7e063fa3278817 (patch)
treeb11a5a03edd4a61fc5c71b2b38402cdfe914de22 /include/asm-m68k/module.h
parent1fc799e1b4efdbc405d87d9f154d64d9bc299e5c (diff)
m68k: runtime patching infrastructure
Add the basic infrastructure to allow runtime patching of kernel and modules to optimize a few functions with parameters, which are only calculated once during bootup and are otherwise constant. Use this for the conversion between virtual and physical addresses. Signed-off-by: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-m68k/module.h')
-rw-r--r--include/asm-m68k/module.h33
1 files changed, 32 insertions, 1 deletions
diff --git a/include/asm-m68k/module.h b/include/asm-m68k/module.h
index c6d75af2d8d3..71a1f76ac891 100644
--- a/include/asm-m68k/module.h
+++ b/include/asm-m68k/module.h
@@ -1,7 +1,38 @@
1#ifndef _ASM_M68K_MODULE_H 1#ifndef _ASM_M68K_MODULE_H
2#define _ASM_M68K_MODULE_H 2#define _ASM_M68K_MODULE_H
3struct mod_arch_specific { }; 3
4struct mod_arch_specific {
5 struct m68k_fixup_info *fixup_start, *fixup_end;
6};
7
8#define MODULE_ARCH_INIT { \
9 .fixup_start = __start_fixup, \
10 .fixup_end = __stop_fixup, \
11}
12
4#define Elf_Shdr Elf32_Shdr 13#define Elf_Shdr Elf32_Shdr
5#define Elf_Sym Elf32_Sym 14#define Elf_Sym Elf32_Sym
6#define Elf_Ehdr Elf32_Ehdr 15#define Elf_Ehdr Elf32_Ehdr
16
17
18enum m68k_fixup_type {
19 m68k_fixup_memoffset,
20};
21
22struct m68k_fixup_info {
23 enum m68k_fixup_type type;
24 void *addr;
25};
26
27#define m68k_fixup(type, addr) \
28 " .section \".m68k_fixup\",\"aw\"\n" \
29 " .long " #type "," #addr "\n" \
30 " .previous\n"
31
32extern struct m68k_fixup_info __start_fixup[], __stop_fixup[];
33
34struct module;
35extern void module_fixup(struct module *mod, struct m68k_fixup_info *start,
36 struct m68k_fixup_info *end);
37
7#endif /* _ASM_M68K_MODULE_H */ 38#endif /* _ASM_M68K_MODULE_H */