[PATCH v2] kexec: determine size of block device

Andreas Fenkart afenkart at gmail.com
Mon Oct 26 11:04:41 PDT 2015


starting 'kexec -l /dev/mmcblk0p1' fails since the size of
a block device can not be determined with stat

Signed-off-by: Andreas Fenkart <andreas.fenkart at dev.digitalstrom.org>
---
 kexec/kexec.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/kexec/kexec.c b/kexec/kexec.c
index b9f1816..99f743b 100644
--- a/kexec/kexec.c
+++ b/kexec/kexec.c
@@ -26,6 +26,8 @@
 #include <stdlib.h>
 #include <errno.h>
 #include <limits.h>
+#include <sys/ioctl.h>
+#include <sys/mount.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/reboot.h>
@@ -552,6 +554,13 @@ char *slurp_file(const char *filename, off_t *r_size)
 		if (err < 0)
 			die("Can not seek to the begin of file %s: %s\n",
 					filename, strerror(errno));
+	} else if (S_ISBLK(stats.st_mode)) {
+		unsigned long long llu = -1;
+		err = ioctl(fd, BLKGETSIZE64, &llu);
+		if (err < 0)
+			die("Can't retrieve size of block device %s: %s\n",
+				filename, strerror(errno));
+		size = llu;
 	} else {
 		size = stats.st_size;
 	}
-- 
2.6.1




More information about the kexec mailing list