diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-07-11 15:06:40 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-13 04:21:44 -0400 |
commit | 2c460d0b6813a5d2a7d571b0b561e4e727036dd7 (patch) | |
tree | e1a91687a89b0666e3f75646f1d0148cbba6d834 /arch/x86/kernel/time_32.c | |
parent | 461ebd109569d666d367f774f74002add6444d49 (diff) |
x86: replace hardcoded number
Replace "4" in time_32.c code by sizeof(long).
This way, it can work on x86_64 too.
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/time_32.c')
-rw-r--r-- | arch/x86/kernel/time_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/time_32.c b/arch/x86/kernel/time_32.c index ca0a4aab12ce..7215bc6adfcc 100644 --- a/arch/x86/kernel/time_32.c +++ b/arch/x86/kernel/time_32.c | |||
@@ -49,7 +49,7 @@ unsigned long profile_pc(struct pt_regs *regs) | |||
49 | #ifdef CONFIG_SMP | 49 | #ifdef CONFIG_SMP |
50 | if (!user_mode_vm(regs) && in_lock_functions(pc)) { | 50 | if (!user_mode_vm(regs) && in_lock_functions(pc)) { |
51 | #ifdef CONFIG_FRAME_POINTER | 51 | #ifdef CONFIG_FRAME_POINTER |
52 | return *(unsigned long *)(regs->bp + 4); | 52 | return *(unsigned long *)(regs->bp + sizeof(long)); |
53 | #else | 53 | #else |
54 | unsigned long *sp = (unsigned long *)®s->sp; | 54 | unsigned long *sp = (unsigned long *)®s->sp; |
55 | 55 | ||