forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Roman Zippel
authored and
Linus Torvalds
committed
May 31, 2007
1 parent
1fc799e
commit fbe9c96
Showing
9 changed files
with
107 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
SECTIONS { | ||
.m68k_fixup : { | ||
__start_fixup = .; | ||
*(.m68k_fixup) | ||
__stop_fixup = .; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,38 @@ | ||
#ifndef _ASM_M68K_MODULE_H | ||
#define _ASM_M68K_MODULE_H | ||
struct mod_arch_specific { }; | ||
|
||
struct mod_arch_specific { | ||
struct m68k_fixup_info *fixup_start, *fixup_end; | ||
}; | ||
|
||
#define MODULE_ARCH_INIT { \ | ||
.fixup_start = __start_fixup, \ | ||
.fixup_end = __stop_fixup, \ | ||
} | ||
|
||
#define Elf_Shdr Elf32_Shdr | ||
#define Elf_Sym Elf32_Sym | ||
#define Elf_Ehdr Elf32_Ehdr | ||
|
||
|
||
enum m68k_fixup_type { | ||
m68k_fixup_memoffset, | ||
}; | ||
|
||
struct m68k_fixup_info { | ||
enum m68k_fixup_type type; | ||
void *addr; | ||
}; | ||
|
||
#define m68k_fixup(type, addr) \ | ||
" .section \".m68k_fixup\",\"aw\"\n" \ | ||
" .long " #type "," #addr "\n" \ | ||
" .previous\n" | ||
|
||
extern struct m68k_fixup_info __start_fixup[], __stop_fixup[]; | ||
|
||
struct module; | ||
extern void module_fixup(struct module *mod, struct m68k_fixup_info *start, | ||
struct m68k_fixup_info *end); | ||
|
||
#endif /* _ASM_M68K_MODULE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters