1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

gpfs: Introduce wrapper for gpfs_getfilesetid

Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Ralph Böhme <slow@samba.org>
This commit is contained in:
Christof Schmitt 2014-12-10 15:47:46 -07:00
parent e30d501217
commit 26991065f2
2 changed files with 15 additions and 9 deletions

View File

@ -44,7 +44,7 @@ static int (*gpfs_set_times_path_fn)(char *pathname, int flags,
gpfs_timestruc_t times[4]);
static int (*gpfs_quotactl_fn)(char *pathname, int cmd, int id, void *bufp);
static int (*gpfs_fcntl_fn)(int fd, void *argp);
static int (*gpfs_getfilesetid_fn)(char *pathname, char *name, int *idP);
static int (*gpfs_getfilesetid_fn)(char *pathname, char *name, int *idp);
int gpfswrap_init(void)
{
@ -220,6 +220,16 @@ int gpfswrap_fcntl(int fd, void *argp)
return gpfs_fcntl_fn(fd, argp);
}
int gpfswrap_getfilesetid(char *pathname, char *name, int *idp)
{
if (gpfs_getfilesetid_fn == NULL) {
errno = ENOSYS;
return -1;
}
return gpfs_getfilesetid_fn(pathname, name, idp);
}
bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
uint32 share_access)
{
@ -321,11 +331,6 @@ int get_gpfs_fset_id(const char *pathname, int *fset_id)
gpfsGetFilesetName_t fsn;
} arg;
if (!gpfs_getfilesetid_fn) {
errno = ENOSYS;
return -1;
}
arg.hdr.totalLength = sizeof(arg);
arg.hdr.fcntlVersion = GPFS_FCNTL_CURRENT_VERSION;
arg.hdr.fcntlReserved = 0;
@ -352,9 +357,9 @@ int get_gpfs_fset_id(const char *pathname, int *fset_id)
return err;
}
err = gpfs_getfilesetid_fn(discard_const_p(char, pathname),
arg.fsn.buffer, fset_id);
if (err) {
err = gpfswrap_getfilesetid(discard_const_p(char, pathname),
arg.fsn.buffer, fset_id);
if (err && errno != ENOSYS) {
DEBUG(1, ("gpfs_getfilesetid for %s failed: %s\n",
pathname, strerror(errno)));
}

View File

@ -44,6 +44,7 @@ int gpfswrap_set_times_path(char *pathname, int flags,
gpfs_timestruc_t times[4]);
int gpfswrap_quotactl(char *pathname, int cmd, int id, void *bufp);
int gpfswrap_fcntl(int fd, void *argp);
int gpfswrap_getfilesetid(char *pathname, char *name, int *idp);
bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
uint32 share_access);
int set_gpfs_lease(int fd, int leasetype);