Lines Matching full:panic

109     "Seconds to wait before rebooting after a panic");
129 "Run debugger on kernel panic");
134 "Run debugger on recursive kernel panic");
139 "Run debugger on kernel trap before panic");
150 &trace_on_panic, 0, "Print stack trace on kernel panic");
157 &sync_on_panic, 0, "Do a sync before rebooting from a panic");
161 &poweroff_on_panic, 0, "Do a power off instead of a reboot on a panic");
165 &powercycle_on_panic, 0, "Do a power cycle instead of a reboot on a panic");
224 * Variable panicstr contains argument to first call to panic; used as flag
225 * to indicate that the kernel has already called panic.
438 BOOTTRACE("system panic: halting..."); in reboottrace()
440 BOOTTRACE("system panic: powering off..."); in reboottrace()
442 BOOTTRACE("system panic: rebooting..."); in reboottrace()
755 "KASSERT triggers a panic (0) or just a warning (1)");
776 &kassert_log_panic_at, 0, "max number of KASSERTS before we will panic");
786 "KASSERTs will be suppressed while handling a panic");
814 * Called by KASSERT, this decides if we will panic
829 * re-enter panic/kdb. in kassert_panic()
843 * panic if we're not just warning, or if we've exceeded in kassert_panic()
882 * Panic is called on unresolvable fatal errors. It prints "panic: mesg",
887 panic(const char *fmt, ...) in panic() function
912 fmt = "<no panic string!>"; in vpanic()
919 * concurrently entering panic. Only the winner will proceed in vpanic()
930 * Ensure that the scheduler is stopped while panicking, even if panic in vpanic()
945 /* Unmute when panic */ in vpanic()
952 printf("panic: %s\n", buf); in vpanic()
954 printf("panic: "); in vpanic()
966 kdb_enter(KDB_WHY_PANIC, "panic"); in vpanic()
968 kdb_enter(KDB_WHY_PANIC, "re-panic"); in vpanic()
1834 DB_SHOW_COMMAND_FLAGS(panic, db_show_panic, DB_CMD_MEMSAFE) in DB_SHOW_COMMAND_FLAGS() argument
1840 db_printf("panic: %s\n", panicstr); in DB_SHOW_COMMAND_FLAGS()