aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/recordmcount.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2010-12-16 11:21:24 +0100
committerIngo Molnar <mingo@elte.hu>2010-12-16 11:21:24 +0100
commitd949750fed168b6553ca11ed19e4affd19d7a4d7 (patch)
treea98953ef3448b7b4909f1d90be266e0cfbdff328 /scripts/recordmcount.h
parentperf: Fix off by one in perf_swevent_init() (diff)
parentftrace: Have recordmcount honor endianness in fn_ELF_R_INFO (diff)
downloadlinux-dev-d949750fed168b6553ca11ed19e4affd19d7a4d7.tar.xz
linux-dev-d949750fed168b6553ca11ed19e4affd19d7a4d7.zip
Merge branch 'tip/perf/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace into perf/urgent
Diffstat (limited to 'scripts/recordmcount.h')
-rw-r--r--scripts/recordmcount.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/recordmcount.h b/scripts/recordmcount.h
index 58e933a20544..39667174971d 100644
--- a/scripts/recordmcount.h
+++ b/scripts/recordmcount.h
@@ -119,7 +119,7 @@ static uint_t (*Elf_r_sym)(Elf_Rel const *rp) = fn_ELF_R_SYM;
static void fn_ELF_R_INFO(Elf_Rel *const rp, unsigned sym, unsigned type)
{
- rp->r_info = ELF_R_INFO(sym, type);
+ rp->r_info = _w(ELF_R_INFO(sym, type));
}
static void (*Elf_r_info)(Elf_Rel *const rp, unsigned sym, unsigned type) = fn_ELF_R_INFO;