diff options
Diffstat (limited to 'arch/x86/include/asm/unwind.h')
| -rw-r--r-- | arch/x86/include/asm/unwind.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/include/asm/unwind.h b/arch/x86/include/asm/unwind.h index 1f86e1b0a5cd..499578f7e6d7 100644 --- a/arch/x86/include/asm/unwind.h +++ b/arch/x86/include/asm/unwind.h @@ -23,6 +23,12 @@ struct unwind_state {  #elif defined(CONFIG_UNWINDER_FRAME_POINTER)  	bool got_irq;  	unsigned long *bp, *orig_sp, ip; +	/* +	 * If non-NULL: The current frame is incomplete and doesn't contain a +	 * valid BP. When looking for the next frame, use this instead of the +	 * non-existent saved BP. +	 */ +	unsigned long *next_bp;  	struct pt_regs *regs;  #else  	unsigned long *sp;  | 
