diff options
| author | Mark Brown <[email protected]> | 2015-10-12 18:09:27 +0100 | 
|---|---|---|
| committer | Mark Brown <[email protected]> | 2015-10-12 18:09:27 +0100 | 
| commit | 79828b4fa835f73cdaf4bffa48696abdcbea9d02 (patch) | |
| tree | 5e0fa7156acb75ba603022bc807df8f2fedb97a8 /arch/x86/include/asm/sigframe.h | |
| parent | 721b51fcf91898299d96f4b72cb9434cda29dce6 (diff) | |
| parent | 8c1a9d6323abf0fb1e5dad96cf3f1c783505ea5a (diff) | |
Merge remote-tracking branch 'asoc/fix/rt5645' into asoc-fix-rt5645
Diffstat (limited to 'arch/x86/include/asm/sigframe.h')
| -rw-r--r-- | arch/x86/include/asm/sigframe.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/include/asm/sigframe.h b/arch/x86/include/asm/sigframe.h index 7c7c27c97daa..1f3175bb994e 100644 --- a/arch/x86/include/asm/sigframe.h +++ b/arch/x86/include/asm/sigframe.h @@ -4,6 +4,7 @@  #include <asm/sigcontext.h>  #include <asm/siginfo.h>  #include <asm/ucontext.h> +#include <linux/compat.h>  #ifdef CONFIG_X86_32  #define sigframe_ia32		sigframe @@ -69,6 +70,15 @@ struct rt_sigframe {  #ifdef CONFIG_X86_X32_ABI +struct ucontext_x32 { +	unsigned int	  uc_flags; +	unsigned int 	  uc_link; +	compat_stack_t	  uc_stack; +	unsigned int	  uc__pad0;     /* needed for alignment */ +	struct sigcontext uc_mcontext;  /* the 64-bit sigcontext type */ +	compat_sigset_t	  uc_sigmask;	/* mask last for extensibility */ +}; +  struct rt_sigframe_x32 {  	u64 pretcode;  	struct ucontext_x32 uc;  |