diff options
author | Kim Alvefur <zash@zash.se> | 2012-07-31 23:38:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-07-31 23:38:02 +0200 |
commit | 4c936ac70e7c1dc93631d4fe86e41a78a7c3d900 (patch) | |
tree | cd71cf661f20d005c4007e428e32b95c2524d752 /util-src/pposix.c | |
parent | b20cc7f5d7fea64c97b4810f71d35a544d6b2b42 (diff) | |
download | prosody-4c936ac70e7c1dc93631d4fe86e41a78a7c3d900.tar.gz prosody-4c936ac70e7c1dc93631d4fe86e41a78a7c3d900.zip |
util.pposix: Try posix_fallocate() if fallocate() is unsupported by the file system
Diffstat (limited to 'util-src/pposix.c')
-rw-r--r-- | util-src/pposix.c | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 7dd8708b..bda13ec0 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -662,23 +662,34 @@ int lc_fallocate(lua_State* L) len = luaL_checkinteger(L, 3); #if defined(_GNU_SOURCE) - if(fallocate(fileno(f), FALLOC_FL_KEEP_SIZE, offset, len) != 0) -#elif _XOPEN_SOURCE >= 600 || _POSIX_C_SOURCE >= 200112L -#warning Using posix_fallocate() fallback. Linux fallocate() is strongly recommended if available: recompile with -D_GNU_SOURCE - if(posix_fallocate(fileno(f), offset, len) != 0) + if(fallocate(fileno(f), FALLOC_FL_KEEP_SIZE, offset, len) == 0) + { + lua_pushboolean(L, 1); + return 1; + } + + if(errno != ENOSYS && errno != EOPNOTSUPP) + { + lua_pushnil(L); + lua_pushstring(L, strerror(errno)); + return 2; + } #endif + + if(posix_fallocate(fileno(f), offset, len) == 0) { -#if ! defined(_GNU_SOURCE) + lua_pushboolean(L, 1); + return 1; + } + else + { + lua_pushnil(L); + lua_pushstring(L, strerror(errno)); /* posix_fallocate() can leave a bunch of NULs at the end, so we cut that * this assumes that offset == length of the file */ ftruncate(fileno(f), offset); -#endif - lua_pushnil(L); - lua_pushstring(L, strerror(errno)); return 2; } - lua_pushboolean(L, 1); - return 1; } #endif |