diff options
Diffstat (limited to 'arch/x86/kernel/dumpstack_32.c')
| -rw-r--r-- | arch/x86/kernel/dumpstack_32.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c index daefae83a3aa..04170f63e3a1 100644 --- a/arch/x86/kernel/dumpstack_32.c +++ b/arch/x86/kernel/dumpstack_32.c @@ -26,6 +26,9 @@ const char *stack_type_name(enum stack_type type)  	if (type == STACK_TYPE_SOFTIRQ)  		return "SOFTIRQ"; +	if (type == STACK_TYPE_ENTRY) +		return "ENTRY_TRAMPOLINE"; +  	return NULL;  } @@ -93,6 +96,9 @@ int get_stack_info(unsigned long *stack, struct task_struct *task,  	if (task != current)  		goto unknown; +	if (in_entry_stack(stack, info)) +		goto recursion_check; +  	if (in_hardirq_stack(stack, info))  		goto recursion_check;  |