From: Andrew Morton include/asm/unwind.h: In function `arch_unw_user_mode': include/asm/unwind.h:81: `FIX_VSYSCALL' undeclared (first use in this function) include/asm/unwind.h:81: (Each undeclared identifier is reported only once include/asm/unwind.h:81: for each function it appears in.) Cc: Ingo Molnar Cc: Arjan van de Ven Cc: Gerd Hoffmann Cc: Rusty Russell Cc: Zachary Amsden Cc: Andi Kleen Cc: Jan Beulich Signed-off-by: Andrew Morton --- include/asm-i386/unwind.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-i386/unwind.h~vdso-randomize-the-i386-vdso-by-moving-it-into-a-vma-vs-x86_64-mm-reliable-stack-trace-support-i386 include/asm-i386/unwind.h --- devel/include/asm-i386/unwind.h~vdso-randomize-the-i386-vdso-by-moving-it-into-a-vma-vs-x86_64-mm-reliable-stack-trace-support-i386 2006-05-24 22:18:49.000000000 -0700 +++ devel-akpm/include/asm-i386/unwind.h 2006-05-24 22:19:01.000000000 -0700 @@ -78,7 +78,7 @@ static inline int arch_unw_user_mode(con return user_mode_vm(&info->regs); #else return info->regs.eip < PAGE_OFFSET - || (info->regs.eip >= __fix_to_virt(FIX_VSYSCALL) + || (info->regs.eip >= __fix_to_virt(FIX_VDSO) && info->regs.eip < __fix_to_virt(FIX_VSYSCALL) + PAGE_SIZE) || info->regs.esp < PAGE_OFFSET; #endif _