diff options
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/gpfs.c | 23 | ||||
-rw-r--r-- | source3/modules/vfs_gpfs.c | 8 | ||||
-rw-r--r-- | source3/modules/vfs_gpfs.h | 2 |
3 files changed, 17 insertions, 16 deletions
diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c index dbcfa32320..d0296039db 100644 --- a/source3/modules/gpfs.c +++ b/source3/modules/gpfs.c @@ -34,7 +34,8 @@ static int (*gpfs_get_realfilename_path_fn)(char *pathname, char *filenamep, int *len); static int (*gpfs_set_winattrs_path_fn)(char *pathname, int flags, struct gpfs_winattr *attrs); -static int (*gpfs_get_winattrs_path_fn)(char *pathname, struct gpfs_winattr *attrs); +static int (*gpfs_get_winattrs_path_fn)(char *pathname, + struct gpfs_winattr *attrs); static int (*gpfs_get_winattrs_fn)(int fd, struct gpfs_winattr *attrs); static int (*gpfs_prealloc_fn)(int fd, gpfs_off64_t startOffset, gpfs_off64_t bytesToPrealloc); static int (*gpfs_ftruncate_fn)(int fd, gpfs_off64_t length); @@ -138,6 +139,16 @@ int gpfswrap_set_winattrs_path(char *pathname, int flags, return gpfs_set_winattrs_path_fn(pathname, flags, attrs); } +int gpfswrap_get_winattrs_path(char *pathname, struct gpfs_winattr *attrs) +{ + if (gpfs_get_winattrs_path_fn == NULL) { + errno = ENOSYS; + return -1; + } + + return gpfs_get_winattrs_path_fn(pathname, attrs); +} + bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask, uint32 share_access) { @@ -213,16 +224,6 @@ int smbd_gpfs_ftruncate(int fd, gpfs_off64_t length) return gpfs_ftruncate_fn(fd, length); } -int get_gpfs_winattrs(char *pathname,struct gpfs_winattr *attrs) -{ - if (gpfs_get_winattrs_path_fn == NULL) { - errno = ENOSYS; - return -1; - } - DEBUG(10, ("gpfs_get_winattrs_path:open call %s\n",pathname)); - return gpfs_get_winattrs_path_fn(pathname, attrs); -} - int smbd_fget_gpfs_winattrs(int fd, struct gpfs_winattr *attrs) { if (gpfs_get_winattrs_fn == NULL) { diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index c2a3e14d44..34a2d044b0 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1466,7 +1466,7 @@ static ssize_t gpfs_get_xattr(struct vfs_handle_struct *handle, const char *pat return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size); } - ret = get_gpfs_winattrs(discard_const_p(char, path), &attrs); + ret = gpfswrap_get_winattrs_path(discard_const_p(char, path), &attrs); if ( ret == -1){ int dbg_lvl; @@ -1584,7 +1584,7 @@ static int vfs_gpfs_stat(struct vfs_handle_struct *handle, errno = map_errno_from_nt_status(status); return -1; } - ret = get_gpfs_winattrs(discard_const_p(char, fname), &attrs); + ret = gpfswrap_get_winattrs_path(discard_const_p(char, fname), &attrs); TALLOC_FREE(fname); if (ret == 0) { smb_fname->st.st_ex_calculated_birthtime = false; @@ -1660,7 +1660,7 @@ static int vfs_gpfs_lstat(struct vfs_handle_struct *handle, errno = map_errno_from_nt_status(status); return -1; } - ret = get_gpfs_winattrs(discard_const_p(char, path), &attrs); + ret = gpfswrap_get_winattrs_path(discard_const_p(char, path), &attrs); TALLOC_FREE(path); if (ret == 0) { smb_fname->st.st_ex_calculated_birthtime = false; @@ -1818,7 +1818,7 @@ static bool vfs_gpfs_is_offline(struct vfs_handle_struct *handle, return -1; } - ret = get_gpfs_winattrs(path, &attrs); + ret = gpfswrap_get_winattrs_path(path, &attrs); if (ret == -1) { TALLOC_FREE(path); return false; diff --git a/source3/modules/vfs_gpfs.h b/source3/modules/vfs_gpfs.h index 56374216c6..afe2da4e76 100644 --- a/source3/modules/vfs_gpfs.h +++ b/source3/modules/vfs_gpfs.h @@ -35,11 +35,11 @@ int gpfswrap_putacl(char *pathname, int flags, void *acl); int gpfswrap_get_realfilename_path(char *pathname, char *filenamep, int *len); int gpfswrap_set_winattrs_path(char *pathname, int flags, struct gpfs_winattr *attrs); +int gpfswrap_get_winattrs_path(char *pathname, struct gpfs_winattr *attrs); bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask, uint32 share_access); int set_gpfs_lease(int fd, int leasetype); int smbd_fget_gpfs_winattrs(int fd, struct gpfs_winattr *attrs); -int get_gpfs_winattrs(char * pathname,struct gpfs_winattr *attrs); int smbd_gpfs_prealloc(int fd, gpfs_off64_t start, gpfs_off64_t bytes); int smbd_gpfs_ftruncate(int fd, gpfs_off64_t length); int get_gpfs_quota(const char *pathname, int type, int id, |