1 #include_next <asm/ptrace.h> 2 /* ARM_VFPREGS_SIZE has been added in 3.0 */ 3 #if defined(__arm__) && !defined(ARM_VFPREGS_SIZE) 4 /* The size of the user-visible VFP state as seen by PTRACE_GET/SETVFPREGS 5 and core dumps. */ 6 #define ARM_VFPREGS_SIZE ( 32 * 8 /*fpregs*/ + 4 /*fpscr*/ ) 7 #endif 8