Lines Matching +full:no +full:- +full:dump +full:- +full:oops

41 	info->type	= STACK_TYPE_TASK;  in in_task_stack()
42 info->begin = begin; in in_task_stack()
43 info->end = end; in in_task_stack()
44 info->next_sp = NULL; in in_task_stack()
49 /* Called from get_stack_info_noinstr - so must be noinstr too */
60 info->type = STACK_TYPE_ENTRY; in in_entry_stack()
61 info->begin = begin; in in_entry_stack()
62 info->end = end; in in_entry_stack()
63 info->next_sp = NULL; in in_entry_stack()
83 return -EPERM; in copy_code()
103 * kernel and thus make sense of the register dump.
119 unsigned long prologue = regs->ip - PROLOGUE_SIZE; in show_opcodes()
127 case -EPERM: in show_opcodes()
128 /* No access to the user space stack of other tasks. Ignore. */ in show_opcodes()
140 printk("%sEIP: %pS\n", loglvl, (void *)regs->ip); in show_ip()
142 printk("%sRIP: %04x:%pS\n", loglvl, (int)regs->cs, (void *)regs->ip); in show_ip()
150 printk("%sRSP: %04x:%016lx EFLAGS: %08lx", log_lvl, (int)regs->ss, in show_iret_regs()
151 regs->sp, regs->flags); in show_iret_regs()
204 * x86-64 can have several stacks: in show_trace_log_lvl()
205 * - task stack in show_trace_log_lvl()
206 * - interrupt stack in show_trace_log_lvl()
207 * - HW exception stacks (double fault, nmi, debug, mce) in show_trace_log_lvl()
208 * - entry stack in show_trace_log_lvl()
210 * x86-32 can have up to four stacks: in show_trace_log_lvl()
211 * - task stack in show_trace_log_lvl()
212 * - softirq stack in show_trace_log_lvl()
213 * - hardirq stack in show_trace_log_lvl()
214 * - entry stack in show_trace_log_lvl()
263 * Don't print regs->ip again if it was already printed in show_trace_log_lvl()
266 if (regs && stack == &regs->ip) in show_trace_log_lvl()
292 * Get the next frame from the unwinder. No need to in show_trace_log_lvl()
330 static int die_owner = -1;
345 /* nested oops. should stop eventually */; in oops_begin()
365 die_owner = -1; in oops_end()
367 die_nest_count--; in oops_end()
374 /* Executive summary in case the oops scrolled away */ in oops_end()
400 /* Save the regs of the first oops for the executive summary later. */ in __die_header()
424 current->thread.trap_nr, SIGSEGV) == NOTIFY_STOP) in __die_body()
475 * When in-kernel, we also print out the stack at the time of the fault.. in show_regs()