diff options
author | David S. Miller <davem@davemloft.net> | 2010-09-17 11:09:25 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-09-22 16:35:09 -0400 |
commit | dff9d3c215251022dd8bb3823c9f75edb4b63fe9 (patch) | |
tree | 41939ab8a0530d79ea8daf212e2bfca37da05ea0 /arch/sparc/kernel/module.c | |
parent | d9f5ab7b1c0a520867af389bab5d5fcdbd0e407e (diff) | |
download | talos-obmc-linux-dff9d3c215251022dd8bb3823c9f75edb4b63fe9.tar.gz talos-obmc-linux-dff9d3c215251022dd8bb3823c9f75edb4b63fe9.zip |
jump label: Add sparc64 support
Add jump label support for sparc64.
Signed-off-by: David S. Miller <davem@davemloft.net>
LKML-Reference: <3b5b071fcdb2afb7f67cacecfa78b14c740278a7.1284733808.git.jbaron@redhat.com>
Signed-off-by: Jason Baron <jbaron@redhat.com>
[ cleaned up some formatting ]
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'arch/sparc/kernel/module.c')
-rw-r--r-- | arch/sparc/kernel/module.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/sparc/kernel/module.c b/arch/sparc/kernel/module.c index f848aadf54dc..ee3c7dde8d9f 100644 --- a/arch/sparc/kernel/module.c +++ b/arch/sparc/kernel/module.c @@ -18,6 +18,9 @@ #include <asm/spitfire.h> #ifdef CONFIG_SPARC64 + +#include <linux/jump_label.h> + static void *module_map(unsigned long size) { struct vm_struct *area; @@ -227,6 +230,9 @@ int module_finalize(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs, struct module *me) { + /* make jump label nops */ + jump_label_apply_nops(me); + /* Cheetah's I-cache is fully coherent. */ if (tlb_type == spitfire) { unsigned long va; |