Lines Matching full:panic

110     "Seconds to wait before rebooting after a panic");
124 "Run debugger on kernel panic");
129 "Run debugger on recursive kernel panic");
134 "Run debugger on kernel trap before panic");
145 &trace_on_panic, 0, "Print stack trace on kernel panic");
152 &sync_on_panic, 0, "Do a sync before rebooting from a panic");
156 &poweroff_on_panic, 0, "Do a power off instead of a reboot on a panic");
160 &powercycle_on_panic, 0, "Do a power cycle instead of a reboot on a panic");
219 * Variable panicstr contains argument to first call to panic; used as flag
220 * to indicate that the kernel has already called panic.
433 BOOTTRACE("system panic: halting..."); in reboottrace()
435 BOOTTRACE("system panic: powering off..."); in reboottrace()
437 BOOTTRACE("system panic: rebooting..."); in reboottrace()
750 "KASSERT triggers a panic (0) or just a warning (1)");
771 &kassert_log_panic_at, 0, "max number of KASSERTS before we will panic");
781 "KASSERTs will be suppressed while handling a panic");
809 * Called by KASSERT, this decides if we will panic
824 * re-enter panic/kdb. in kassert_panic()
838 * panic if we're not just warning, or if we've exceeded in kassert_panic()
877 * Panic is called on unresolvable fatal errors. It prints "panic: mesg",
882 panic(const char *fmt, ...) in panic() function
907 fmt = "<no panic string!>"; in vpanic()
914 * concurrently entering panic. Only the winner will proceed in vpanic()
925 * Ensure that the scheduler is stopped while panicking, even if panic in vpanic()
940 /* Unmute when panic */ in vpanic()
947 printf("panic: %s\n", buf); in vpanic()
949 printf("panic: "); in vpanic()
961 kdb_enter(KDB_WHY_PANIC, "panic"); in vpanic()
963 kdb_enter(KDB_WHY_PANIC, "re-panic"); in vpanic()
1829 DB_SHOW_COMMAND_FLAGS(panic, db_show_panic, DB_CMD_MEMSAFE) in DB_SHOW_COMMAND_FLAGS() argument
1835 db_printf("panic: %s\n", panicstr); in DB_SHOW_COMMAND_FLAGS()