diff options
Diffstat (limited to 'arch/powerpc/include/asm/processor.h')
| -rw-r--r-- | arch/powerpc/include/asm/processor.h | 13 | 
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/processor.h b/arch/powerpc/include/asm/processor.h index b2c51d337e60..e44cac0da346 100644 --- a/arch/powerpc/include/asm/processor.h +++ b/arch/powerpc/include/asm/processor.h @@ -260,7 +260,8 @@ struct thread_struct {  	unsigned long   sier2;  	unsigned long   sier3;  	unsigned long	hashkeyr; - +	unsigned long	dexcr; +	unsigned long	dexcr_onexec;	/* Reset value to load on exec */  #endif  }; @@ -333,6 +334,16 @@ extern int set_endian(struct task_struct *tsk, unsigned int val);  extern int get_unalign_ctl(struct task_struct *tsk, unsigned long adr);  extern int set_unalign_ctl(struct task_struct *tsk, unsigned int val); +#ifdef CONFIG_PPC_BOOK3S_64 + +#define PPC_GET_DEXCR_ASPECT(tsk, asp) get_dexcr_prctl((tsk), (asp)) +#define PPC_SET_DEXCR_ASPECT(tsk, asp, val) set_dexcr_prctl((tsk), (asp), (val)) + +int get_dexcr_prctl(struct task_struct *tsk, unsigned long asp); +int set_dexcr_prctl(struct task_struct *tsk, unsigned long asp, unsigned long val); + +#endif +  extern void load_fp_state(struct thread_fp_state *fp);  extern void store_fp_state(struct thread_fp_state *fp);  extern void load_vr_state(struct thread_vr_state *vr);  |