x86: also define AT_VECTOR_SIZE_ARCH

The patch introducing this left out 64-bit x86 despite it also having
extra entries.

this solves Xen guest troubles.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by Jan Beulich and committed by Ingo Molnar 213fde71 0b0122fa

+7
+7
include/asm-x86/system_64.h
··· 7 7 8 8 #ifdef __KERNEL__ 9 9 10 + /* entries in ARCH_DLINFO: */ 11 + #ifdef CONFIG_IA32_EMULATION 12 + # define AT_VECTOR_SIZE_ARCH 2 13 + #else 14 + # define AT_VECTOR_SIZE_ARCH 1 15 + #endif 16 + 10 17 #define __SAVE(reg,offset) "movq %%" #reg ",(14-" #offset ")*8(%%rsp)\n\t" 11 18 #define __RESTORE(reg,offset) "movq (14-" #offset ")*8(%%rsp),%%" #reg "\n\t" 12 19