X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fasm-arm%2Fthread_info.h;h=b3ef76481942aaddd29f83f57c11fc372f3562b4;hb=9bf4aaab3e101692164d49b7ca357651eb691cb6;hp=f67431fdd9319936b39374f6d479f3984764288f;hpb=db216c3d5e4c040e557a50f8f5d35d5c415e8c1c;p=linux-2.6.git diff --git a/include/asm-arm/thread_info.h b/include/asm-arm/thread_info.h index f67431fdd..b3ef76481 100644 --- a/include/asm-arm/thread_info.h +++ b/include/asm-arm/thread_info.h @@ -12,12 +12,13 @@ #ifdef __KERNEL__ +#include + #ifndef __ASSEMBLY__ struct task_struct; struct exec_domain; -#include #include #include #include @@ -53,7 +54,8 @@ struct thread_info { struct cpu_context_save cpu_context; /* cpu context */ __u8 used_cp[16]; /* thread used copro */ union fp_state fpstate; - struct restart_block restart_block; + union vfp_state vfpstate; + struct restart_block restart_block; }; #define INIT_THREAD_INFO(tsk) \ @@ -110,6 +112,7 @@ extern void free_thread_info(struct thread_info *); #define TI_CPU_SAVE 28 #define TI_USED_CP 76 #define TI_FPSTATE (TI_USED_CP+16) +#define TI_VFPSTATE (TI_FPSTATE+FP_SIZE*4) #endif