Lines Matching full:dump

30  * Kernel text-dump support: write a series of text files to the dump
34 * binary dumps, as well as allowing dump information to be used without
40 * Crash dumps are aligned to the end of the dump or swap partition in order
41 * to minimize the chances of swap duing fsck eating into the dump. However,
42 * unlike a memory dump, we don't know the size of the textdump a priori, so
47 * dump header and trailer before and after it once done. savecore(8) must
58 * dump in a generic way.
82 * Don't touch the first SIZEOF_METADATA bytes on the dump device. This is
122 * routine instead of the machine-dependent kernel dump routine.
131 "Perform textdump instead of regular kernel dump.");
154 &textdump_do_config, 0, "Dump kernel configuration in textdump");
159 &textdump_do_ddb, 0, "Dump DDB captured output in textdump");
163 &textdump_do_msgbuf, 0, "Dump kernel message buffer in textdump");
167 &textdump_do_panic, 0, "Dump kernel panic message in textdump");
171 &textdump_do_version, 0, "Dump kernel version string in textdump");
258 * Interfaces to save and restore the dump offset, so that printers can go
298 * Dump kernel configuration.
328 * Dump kernel message buffer.
426 * Commit text dump to disk.
435 printf("Dump partition block size (%ju) not textdump " in textdump_dumpsys()
442 * We don't know a priori how large the dump will be, but we do know in textdump_dumpsys()
444 * dump headers. Also leave room for one ustar header and one block in textdump_dumpsys()
448 printf("Insufficient space on dump partition for minimal textdump.\n"); in textdump_dumpsys()
460 * Position the start of the dump so that we'll write the kernel dump in textdump_dumpsys()
499 * Terminate the dump, report any errors, and clear the pending flag. in textdump_dumpsys()
504 printf("Textdump: Insufficient space on dump partition\n"); in textdump_dumpsys()
506 printf("Textdump: Error %d writing dump\n", textdump_error); in textdump_dumpsys()
528 db_printf("textdump [unset|set|status|dump]\n"); in db_textdump_usage()
556 } else if (strcmp(db_tok_string, "dump") == 0) { in db_textdump_cmd()