summaryrefslogtreecommitdiffstats
path: root/daemon/fallocate.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-11-24 16:16:08 +0000
committerRichard Jones <rjones@redhat.com>2009-11-25 16:28:25 +0000
commitc2aad5cd929a9932c010d045462bd923162fb593 (patch)
tree5467717b809ed4321a86cfe86b02cd0810f2ec9a /daemon/fallocate.c
parenta9519654032d2f09e76870d5d04dae2dff752c5b (diff)
downloadlibguestfs-c2aad5cd929a9932c010d045462bd923162fb593.tar.gz
libguestfs-c2aad5cd929a9932c010d045462bd923162fb593.tar.xz
libguestfs-c2aad5cd929a9932c010d045462bd923162fb593.zip
daemon: Alternate implementation of posix_fallocate.
If the posix_fallocate function is not available [ie. Windows] use an alternate implementation that just loops and writes.
Diffstat (limited to 'daemon/fallocate.c')
-rw-r--r--daemon/fallocate.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/daemon/fallocate.c b/daemon/fallocate.c
index 20a75e67..1800292d 100644
--- a/daemon/fallocate.c
+++ b/daemon/fallocate.c
@@ -30,7 +30,7 @@
int
do_fallocate (const char *path, int len)
{
- int fd, r;
+ int fd;
CHROOT_IN;
fd = open (path, O_WRONLY | O_CREAT | O_TRUNC | O_NOCTTY, 0666);
@@ -40,12 +40,33 @@ do_fallocate (const char *path, int len)
return -1;
}
+#ifdef HAVE_POSIX_FALLOCATE
+ int r;
+
r = posix_fallocate (fd, 0, len);
if (r == -1) {
reply_with_perror ("posix_fallocate: %s", path);
close (fd);
return -1;
}
+#else
+ ssize_t r;
+ char buf[BUFSIZ];
+ const size_t len_sz = (size_t) len;
+ size_t n;
+
+ memset (buf, 0, BUFSIZ);
+ n = 0;
+ while (n < len_sz) {
+ r = write (fd, buf, len_sz - n < BUFSIZ ? len_sz - n : BUFSIZ);
+ if (r == -1) {
+ reply_with_perror ("write: %s", path);
+ close (fd);
+ return -1;
+ }
+ n += r;
+ }
+#endif
if (close (fd) == -1) {
reply_with_perror ("close: %s", path);