From: Cyrill Gorcunov Date: Sat, 3 May 2008 10:18:01 +0000 (+0400) Subject: x86: vdso ELF handling - use SELFMAG instead of numeric constant X-Git-Tag: v2.6.26-rc2~76^2~5 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=ecb783eae1372d69a53d406e1bdba8284e4bafcc;p=~emulex%2Finfiniband.git x86: vdso ELF handling - use SELFMAG instead of numeric constant Signed-off-by: Cyrill Gorcunov Cc: akpm@linux-foundation.org Cc: hpa@zytor.com Cc: mingo@elte.hu Signed-off-by: Thomas Gleixner Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/vdso/vdso32-setup.c b/arch/x86/vdso/vdso32-setup.c index 4dceeb1fc5e..cf058fecfce 100644 --- a/arch/x86/vdso/vdso32-setup.c +++ b/arch/x86/vdso/vdso32-setup.c @@ -162,7 +162,7 @@ static __init void relocate_vdso(Elf32_Ehdr *ehdr) Elf32_Shdr *shdr; int i; - BUG_ON(memcmp(ehdr->e_ident, ELFMAG, 4) != 0 || + BUG_ON(memcmp(ehdr->e_ident, ELFMAG, SELFMAG) != 0 || !elf_check_arch_ia32(ehdr) || ehdr->e_type != ET_DYN);