From b5c60fc7870a66d89de571e96596b0745edcd6d9 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 27 Jan 2008 23:41:34 +0000 Subject: mkswap, readahead: stop using fdlength, it is reported to be unreliable --- util-linux/mkswap.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'util-linux') diff --git a/util-linux/mkswap.c b/util-linux/mkswap.c index 8e1fbc384..f047cce26 100644 --- a/util-linux/mkswap.c +++ b/util-linux/mkswap.c @@ -64,9 +64,11 @@ int mkswap_main(int argc, char **argv) // Figure out how big the device is and announce our intentions. fd = xopen(argv[1], O_RDWR); - len = fdlength(fd); + /* fdlength was reported to be unreliable - use seek */ + len = xlseek(fd, 0, SEEK_END); + xlseek(fd, 0, SEEK_SET); pagesize = getpagesize(); - printf("Setting up swapspace version 1, size = %"OFF_FMT"d bytes\n", + printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n", len - pagesize); mkswap_selinux_setcontext(fd, argv[1]); -- cgit v1.2.3