dumpstack.c (5e2aa2ed08e2e280121dc7cf5609c87d464f12ef) dumpstack.c (ef7f0d6a6ca8c9e4b27d78895af86c2fbfaeedb2)
1/*
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
4 */
5#include <linux/kallsyms.h>
6#include <linux/kprobes.h>
7#include <linux/uaccess.h>
8#include <linux/utsname.h>

--- 251 unchanged lines hidden (view full) ---

260 "%s: %04lx [#%d] ", str, err & 0xffff, ++die_counter);
261#ifdef CONFIG_PREEMPT
262 printk("PREEMPT ");
263#endif
264#ifdef CONFIG_SMP
265 printk("SMP ");
266#endif
267#ifdef CONFIG_DEBUG_PAGEALLOC
1/*
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
4 */
5#include <linux/kallsyms.h>
6#include <linux/kprobes.h>
7#include <linux/uaccess.h>
8#include <linux/utsname.h>

--- 251 unchanged lines hidden (view full) ---

260 "%s: %04lx [#%d] ", str, err & 0xffff, ++die_counter);
261#ifdef CONFIG_PREEMPT
262 printk("PREEMPT ");
263#endif
264#ifdef CONFIG_SMP
265 printk("SMP ");
266#endif
267#ifdef CONFIG_DEBUG_PAGEALLOC
268 printk("DEBUG_PAGEALLOC");
268 printk("DEBUG_PAGEALLOC ");
269#endif
269#endif
270#ifdef CONFIG_KASAN
271 printk("KASAN");
272#endif
270 printk("\n");
271 if (notify_die(DIE_OOPS, str, regs, err,
272 current->thread.trap_nr, SIGSEGV) == NOTIFY_STOP)
273 return 1;
274
275 print_modules();
276 show_regs(regs);
277#ifdef CONFIG_X86_32

--- 72 unchanged lines hidden ---
273 printk("\n");
274 if (notify_die(DIE_OOPS, str, regs, err,
275 current->thread.trap_nr, SIGSEGV) == NOTIFY_STOP)
276 return 1;
277
278 print_modules();
279 show_regs(regs);
280#ifdef CONFIG_X86_32

--- 72 unchanged lines hidden ---