From d52733329923b5379f6a2d6e74a08ac8a7dddf5b Mon Sep 17 00:00:00 2001 From: james Date: Tue, 13 Nov 2007 15:18:30 +0000 Subject: *** empty log message *** --- src/disk.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'src/disk.c') diff --git a/src/disk.c b/src/disk.c index 3772862..c9a230f 100644 --- a/src/disk.c +++ b/src/disk.c @@ -1,5 +1,6 @@ #include "project.h" +#include DISK * @@ -45,7 +46,7 @@ disk_read (DISK * d, void *buf, uint64_t lba, int lbas) if (read (d->fd, buf, lbas) != lbas) { perror ("read"); - // abort (); + // abort (); } } void @@ -72,3 +73,15 @@ disk_lbas (DISK * d) { return d->lbas; } + +disk_reread_kernel_table (DISK * d) +{ + if (ioctl (d->fd, BLKRRPART, NULL)) + { + perror ("Telling kernel to re-read partition table failed:"); + } + else + { + fprintf (stderr, "Kernel has re-read partition table\n"); + } +} -- cgit v1.2.3