summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9f3a478)
raw | patch | inline | side by side (parent: 9f3a478)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Thu, 2 Feb 2012 15:38:44 +0000 (15:38 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Thu, 2 Feb 2012 15:38:44 +0000 (15:38 +0000) |
configure.ac | patch | blob | history | |
src/rrd_open.c | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index b789a52f48ccf29d8acc5d2112cbbf39433fa88d..7fe70bcdca18331bc5c2b11102c9823ebac5365d 100644 (file)
--- a/configure.ac
+++ b/configure.ac
#include <fcntl.h>])
AC_CHECK_FUNCS(posix_fadvise)
+dnl can we use posix_fallocate
+AC_CHECK_FUNCS(posix_fallocate)
+
CONFIGURE_PART(Libintl Processing)
AM_GNU_GETTEXT_VERSION(0.17)
diff --git a/src/rrd_open.c b/src/rrd_open.c
index 117c79cd3e11b9508ad385173f5e1d2871aeb23f..0de9b395baefc9fe83b2dda77ea50c6e916298b0 100644 (file)
--- a/src/rrd_open.c
+++ b/src/rrd_open.c
rrd_file->file_len = statb.st_size;
} else {
rrd_file->file_len = newfile_size;
+#ifdef HAVE_POSIX_FALLOCATE
+ if (posix_fallocate(rrd_simple_file->fd, 0, newfile_size) == -1) {
+ rrd_set_error("posix_fallocate '%s': %s", file_name,
+ rrd_strerror(errno));
+ goto out_close;
+ }
+#else
lseek(rrd_simple_file->fd, newfile_size - 1, SEEK_SET);
if ( write(rrd_simple_file->fd, "\0", 1) == -1){ /* poke */
rrd_set_error("write '%s': %s", file_name, rrd_strerror(errno));
goto out_close;
}
lseek(rrd_simple_file->fd, 0, SEEK_SET);
+#endif
}
#ifdef HAVE_POSIX_FADVISE
/* In general we need no read-ahead when dealing with rrd_files.
*/
#ifdef HAVE_MMAP
+#ifndef HAVE_POSIX_FALLOCATE
/* force allocating the file on the underlaying filesystem to prevent any
* future bus error when the filesystem is full and attempting to write
* trough the file mapping. Filling the file using memset on the file
lseek(rrd_simple_file->fd, 0, SEEK_SET);
}
+#endif
data = mmap(0, rrd_file->file_len,
rrd_simple_file->mm_prot, rrd_simple_file->mm_flags,