diff options
Diffstat (limited to 'arch/x86/kernel/dumpstack.h')
| -rw-r--r-- | arch/x86/kernel/dumpstack.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/dumpstack.h b/arch/x86/kernel/dumpstack.h index 29e5f7c845b..e39e77168a3 100644 --- a/arch/x86/kernel/dumpstack.h +++ b/arch/x86/kernel/dumpstack.h @@ -30,6 +30,11 @@ struct stack_frame {  	unsigned long return_address;  }; +struct stack_frame_ia32 { +    u32 next_frame; +    u32 return_address; +}; +  static inline unsigned long rewind_frame_pointer(int n)  {  	struct stack_frame *frame;  |