x86: replace hardcoded number
authorGlauber Costa <gcosta@redhat.com>
Fri, 11 Jul 2008 19:06:40 +0000 (16:06 -0300)
committerIngo Molnar <mingo@elte.hu>
Mon, 13 Oct 2008 08:21:44 +0000 (10:21 +0200)
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>
arch/x86/kernel/time_32.c

index ca0a4aab12ce7ce60163d143df02d9e459b25fda..7215bc6adfcc5f4663c6f4ebbeb8d333299b948a 100644 (file)
@@ -49,7 +49,7 @@ unsigned long profile_pc(struct pt_regs *regs)
 #ifdef CONFIG_SMP
        if (!user_mode_vm(regs) && in_lock_functions(pc)) {
 #ifdef CONFIG_FRAME_POINTER
-               return *(unsigned long *)(regs->bp + 4);
+               return *(unsigned long *)(regs->bp + sizeof(long));
 #else
                unsigned long *sp = (unsigned long *)&regs->sp;
 
This page took 0.029231 seconds and 5 git commands to generate.