Lines Matching defs:dump
131 * Machine-independent crash dump header info.
330 * Initialize the kernel crash dump header.
450 /* If rebooting and a dump is requested, do it. */
487 * Initialize the kernel crash dump header.
500 * Compute the size of the machine-dependent crash dump header.
515 * Called by dumpsys() to dump the machine-dependent header.
518 cpu_dump(int (*dump)(dev_t, daddr_t, void *, size_t), daddr_t *blknop)
534 error = (*dump)(dumpdev, *blknop, (void *)buf, sizeof(buf));
550 * If there is extra space, put dump at the end to
556 int chdrsize; /* size of dump header */
557 int nblks; /* size of dump area */
577 * Put dump at the end of the partition.
583 * Dump physical memory onto the dump device. Called by cpu_reboot().
590 /* dump routine */
591 int (*dump)(dev_t, daddr_t, void *, size_t);
594 int error; /* error code from (*dump)() */
600 /* Make sure dump device is valid. */
616 dump = bdev->d_dump;
622 printf("dump ");
624 /* Write the dump header. */
625 error = cpu_dump(dump, &blkno);
639 error = (*dump)(dumpdev, blkno, vmmap, PAGE_SIZE);