diff options
| author | David Disseldorp <ddiss@samba.org> | 2015-02-10 14:32:07 +0100 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2015-03-09 21:27:07 +0100 |
| commit | 47f15b14ae4f3a9d83ed6f7c9ad31e74978e9606 (patch) | |
| tree | 59873123cbdb25eeec2e5402acd0e7d5589be3ce /source3/include | |
| parent | 762f9cbe60fe3a5ee6f528276c095ad736c776ee (diff) | |
| download | samba-47f15b14ae4f3a9d83ed6f7c9ad31e74978e9606.tar.gz samba-47f15b14ae4f3a9d83ed6f7c9ad31e74978e9606.tar.xz samba-47f15b14ae4f3a9d83ed6f7c9ad31e74978e9606.zip | |
system: add hole punch support to sys_fallocate()
If Samba is configured with FALLOC_FL_PUNCH_HOLE support, then allow
sys_fallocate() to propogate the flag to syscall invocation.
Signed-off-by: David Disseldorp <ddiss@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/include')
| -rw-r--r-- | source3/include/vfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 3d0b82b508..b2880b7625 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -490,6 +490,7 @@ enum vfs_translate_direction { enum vfs_fallocate_flags { VFS_FALLOCATE_FL_KEEP_SIZE = 0x0001, + VFS_FALLOCATE_FL_PUNCH_HOLE = 0x0002, }; /* |
