diff options
author | Jeremy Allison <jra@samba.org> | 2010-12-20 16:53:16 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-12-21 02:41:23 +0100 |
commit | 8998f4b01310e4b45e75d8d5f3260b5ba5c1cdf9 (patch) | |
tree | 21e648af9bd549f577ab8cbf59ebdeb89963cbd7 /source3/include | |
parent | 09aea038139f8717d38f0fdae6be9cf46bd86b15 (diff) | |
download | samba-8998f4b01310e4b45e75d8d5f3260b5ba5c1cdf9.tar.gz samba-8998f4b01310e4b45e75d8d5f3260b5ba5c1cdf9.tar.bz2 samba-8998f4b01310e4b45e75d8d5f3260b5ba5c1cdf9.zip |
Added call out to a Linux-compatible fallocate() when we need to extend a file
allocation extent without changing end-of-file size.
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Tue Dec 21 02:41:24 CET 2010 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index dabb315875..566b3f31df 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -888,6 +888,7 @@ int sys_lstat(const char *fname,SMB_STRUCT_STAT *sbuf, bool fake_dir_create_times); int sys_ftruncate(int fd, SMB_OFF_T offset); int sys_posix_fallocate(int fd, SMB_OFF_T offset, SMB_OFF_T len); +int sys_fallocate(int fd, enum vfs_fallocate_mode mode, SMB_OFF_T offset, SMB_OFF_T len); SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence); int sys_fseek(FILE *fp, SMB_OFF_T offset, int whence); SMB_OFF_T sys_ftell(FILE *fp); |