summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/modules/vfs_gpfs.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c
index d879124cd9..ba6ec6dca3 100644
--- a/source3/modules/vfs_gpfs.c
+++ b/source3/modules/vfs_gpfs.c
@@ -1323,32 +1323,32 @@ static int vfs_gpfs_open(struct vfs_handle_struct *handle,
static struct vfs_fn_pointers vfs_gpfs_fns = {
.connect_fn = vfs_gpfs_connect,
- .fs_capabilities = vfs_gpfs_capabilities,
- .kernel_flock = vfs_gpfs_kernel_flock,
- .linux_setlease = vfs_gpfs_setlease,
- .get_real_filename = vfs_gpfs_get_real_filename,
- .fget_nt_acl = gpfsacl_fget_nt_acl,
- .get_nt_acl = gpfsacl_get_nt_acl,
- .fset_nt_acl = gpfsacl_fset_nt_acl,
- .sys_acl_get_file = gpfsacl_sys_acl_get_file,
- .sys_acl_get_fd = gpfsacl_sys_acl_get_fd,
- .sys_acl_set_file = gpfsacl_sys_acl_set_file,
- .sys_acl_set_fd = gpfsacl_sys_acl_set_fd,
- .sys_acl_delete_def_file = gpfsacl_sys_acl_delete_def_file,
- .chmod = vfs_gpfs_chmod,
- .fchmod = vfs_gpfs_fchmod,
- .close_fn = vfs_gpfs_close,
- .setxattr = gpfs_set_xattr,
- .getxattr = gpfs_get_xattr,
- .stat = vfs_gpfs_stat,
- .fstat = vfs_gpfs_fstat,
- .lstat = vfs_gpfs_lstat,
- .ntimes = vfs_gpfs_ntimes,
- .is_offline = vfs_gpfs_is_offline,
- .aio_force = vfs_gpfs_aio_force,
- .sendfile = vfs_gpfs_sendfile,
+ .fs_capabilities_fn = vfs_gpfs_capabilities,
+ .kernel_flock_fn = vfs_gpfs_kernel_flock,
+ .linux_setlease_fn = vfs_gpfs_setlease,
+ .get_real_filename_fn = vfs_gpfs_get_real_filename,
+ .fget_nt_acl_fn = gpfsacl_fget_nt_acl,
+ .get_nt_acl_fn = gpfsacl_get_nt_acl,
+ .fset_nt_acl_fn = gpfsacl_fset_nt_acl,
+ .sys_acl_get_file_fn = gpfsacl_sys_acl_get_file,
+ .sys_acl_get_fd_fn = gpfsacl_sys_acl_get_fd,
+ .sys_acl_set_file_fn = gpfsacl_sys_acl_set_file,
+ .sys_acl_set_fd_fn = gpfsacl_sys_acl_set_fd,
+ .sys_acl_delete_def_file_fn = gpfsacl_sys_acl_delete_def_file,
+ .chmod_fn = vfs_gpfs_chmod,
+ .fchmod_fn = vfs_gpfs_fchmod,
+ .close_fn = vfs_gpfs_close,
+ .setxattr_fn = gpfs_set_xattr,
+ .getxattr_fn = gpfs_get_xattr,
+ .stat_fn = vfs_gpfs_stat,
+ .fstat_fn = vfs_gpfs_fstat,
+ .lstat_fn = vfs_gpfs_lstat,
+ .ntimes_fn = vfs_gpfs_ntimes,
+ .is_offline_fn = vfs_gpfs_is_offline,
+ .aio_force_fn = vfs_gpfs_aio_force,
+ .sendfile_fn = vfs_gpfs_sendfile,
.open_fn = vfs_gpfs_open,
- .ftruncate = vfs_gpfs_ftruncate
+ .ftruncate_fn = vfs_gpfs_ftruncate
};
NTSTATUS vfs_gpfs_init(void);