diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-27 23:41:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-27 23:41:34 +0000 |
commit | b5c60fc7870a66d89de571e96596b0745edcd6d9 (patch) | |
tree | 29b3595303de8e526b9f64d3a2d2456f783efe2a /util-linux/mkswap.c | |
parent | da42bd5bbe6fdda12133e7305b1a3e7cee506cc8 (diff) | |
download | busybox-w32-b5c60fc7870a66d89de571e96596b0745edcd6d9.tar.gz busybox-w32-b5c60fc7870a66d89de571e96596b0745edcd6d9.tar.bz2 busybox-w32-b5c60fc7870a66d89de571e96596b0745edcd6d9.zip |
mkswap, readahead: stop using fdlength, it is reported to be unreliable
Diffstat (limited to 'util-linux/mkswap.c')
-rw-r--r-- | util-linux/mkswap.c | 6 |
1 files changed, 4 insertions, 2 deletions
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) | |||
64 | // Figure out how big the device is and announce our intentions. | 64 | // Figure out how big the device is and announce our intentions. |
65 | 65 | ||
66 | fd = xopen(argv[1], O_RDWR); | 66 | fd = xopen(argv[1], O_RDWR); |
67 | len = fdlength(fd); | 67 | /* fdlength was reported to be unreliable - use seek */ |
68 | len = xlseek(fd, 0, SEEK_END); | ||
69 | xlseek(fd, 0, SEEK_SET); | ||
68 | pagesize = getpagesize(); | 70 | pagesize = getpagesize(); |
69 | printf("Setting up swapspace version 1, size = %"OFF_FMT"d bytes\n", | 71 | printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n", |
70 | len - pagesize); | 72 | len - pagesize); |
71 | mkswap_selinux_setcontext(fd, argv[1]); | 73 | mkswap_selinux_setcontext(fd, argv[1]); |
72 | 74 | ||