summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_gpfs.c
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2014-12-10 15:31:42 -0700
committerChristof Schmitt <cs@samba.org>2015-03-02 22:31:08 +0100
commit15c2b3a825b2f24629d1bc22d2bdcfec494cde13 (patch)
tree9bd9aac6c06a6a343ba03e699888c7f4e25ee506 /source3/modules/vfs_gpfs.c
parent4d57c20ba8450b3eb4fdf0bbd9c922ae5d02312b (diff)
downloadsamba-15c2b3a825b2f24629d1bc22d2bdcfec494cde13.tar.gz
gpfs: Rename wrapper for gpfs_prealloc
Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org>
Diffstat (limited to 'source3/modules/vfs_gpfs.c')
-rw-r--r--source3/modules/vfs_gpfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index a24f5d5406b..88608039066 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -1760,7 +1760,7 @@ static int vfs_gpfs_fallocate(struct vfs_handle_struct *handle,
return -1;
}
- ret = smbd_gpfs_prealloc(fsp->fh->fd, offset, len);
+ ret = gpfswrap_prealloc(fsp->fh->fd, offset, len);
if (ret == -1 && errno != ENOSYS) {
DEBUG(0, ("GPFS prealloc failed: %s\n", strerror(errno)));