aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAnatol Pomozov <anatol.pomozov@gmail.com>2012-04-22 18:49:35 -0700
committerMiklos Szeredi <mszeredi@suse.cz>2012-06-18 13:32:43 +0200
commit96ac0e5d76db3714b7c8d37956f6e6b1d804a01a (patch)
tree4cd918bccb54e30edca0dadbe2b44a43b7ef1c91 /configure.in
parent46b9c3326d50aebe52c33d63885b83a47a2e74ea (diff)
downloadandroid_external_fuse-96ac0e5d76db3714b7c8d37956f6e6b1d804a01a.tar.gz
android_external_fuse-96ac0e5d76db3714b7c8d37956f6e6b1d804a01a.tar.bz2
android_external_fuse-96ac0e5d76db3714b7c8d37956f6e6b1d804a01a.zip
Add FALLOCATE operation
fallocate filesystem operation preallocates media space for the given file. If fallocate returns success then any subsequent write to the given range never fails with 'not enough space' error.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index e9ce79b..a7448df 100644
--- a/configure.in
+++ b/configure.in
@@ -57,6 +57,7 @@ if test "$enable_mtab" = "no"; then
fi
AC_CHECK_FUNCS([fork setxattr fdatasync splice vmsplice utimensat])
+AC_CHECK_FUNCS([posix_fallocate])
AC_CHECK_MEMBERS([struct stat.st_atim])
AC_CHECK_MEMBERS([struct stat.st_atimespec])