From 3281d4268a192cbd1951347a4a857b94428dc958 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 1 Aug 2007 15:06:18 +0200 Subject: blockdev: fix "blockdev --getsz" for large devices The "blockdev --getsz" command doesn't try to use BLKGETSIZE64 when previous BLKGETSIZE failed with EFBIG. This patch fixes this problem. Signed-off-by: Karel Zak --- disk-utils/blockdev.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'disk-utils/blockdev.c') diff --git a/disk-utils/blockdev.c b/disk-utils/blockdev.c index 46b7fa719..0dd531c4a 100644 --- a/disk-utils/blockdev.c +++ b/disk-utils/blockdev.c @@ -9,6 +9,7 @@ #include #include #include +#include #include "nls.h" @@ -148,8 +149,10 @@ getsize(int fd, long long *sectors) { long long b; err = ioctl (fd, BLKGETSIZE, &sz); - if (err) - return err; + if (err) { + if (errno != EFBIG) + return err; + } err = ioctl(fd, BLKGETSIZE64, &b); if (err || b == 0 || b == sz) *sectors = sz; -- cgit v1.2.3-55-g7522