summaryrefslogtreecommitdiff
path: root/source3/modules/gpfs.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-05-29 00:20:10 +0200
committerVolker Lendecke <vl@samba.org>2009-06-02 18:15:20 +0200
commite0a6a344be326c58dc9307f286226f76f15f78e8 (patch)
tree377082be89aca0b64a8d1eef0a33b0fba82033fe /source3/modules/gpfs.c
parent8d966fac41ff88f8c26c221fb03da4f9afba5897 (diff)
downloadsamba-e0a6a344be326c58dc9307f286226f76f15f78e8.tar.gz
samba-e0a6a344be326c58dc9307f286226f76f15f78e8.tar.bz2
samba-e0a6a344be326c58dc9307f286226f76f15f78e8.zip
Support getting gpfs birthtime
Diffstat (limited to 'source3/modules/gpfs.c')
-rw-r--r--source3/modules/gpfs.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c
index d20c024ccd..a8b5576122 100644
--- a/source3/modules/gpfs.c
+++ b/source3/modules/gpfs.c
@@ -37,6 +37,7 @@ static int (*gpfs_get_realfilename_path_fn)(char *pathname, char *filenamep,
int *buflen);
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_fn)(int fd, struct gpfs_winattr *attrs);
bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
@@ -163,6 +164,17 @@ int get_gpfs_winattrs(char *pathname,struct gpfs_winattr *attrs)
return gpfs_get_winattrs_path_fn(pathname, attrs);
}
+int smbd_fget_gpfs_winattrs(int fd, struct gpfs_winattr *attrs)
+{
+
+ if ((!gpfs_winattr) || (gpfs_get_winattrs_fn == NULL)) {
+ errno = ENOSYS;
+ return -1;
+ }
+ DEBUG(10, ("gpfs_get_winattrs_path:open call %d\n", fd));
+ return gpfs_get_winattrs_fn(fd, attrs);
+}
+
int set_gpfs_winattrs(char *pathname,int flags,struct gpfs_winattr *attrs)
{
if ((!gpfs_winattr) || (gpfs_set_winattrs_path_fn == NULL)) {
@@ -234,6 +246,7 @@ void init_gpfs(void)
"gpfs_get_realfilename_path");
init_gpfs_function(&gpfs_get_winattrs_path_fn,"gpfs_get_winattrs_path");
init_gpfs_function(&gpfs_set_winattrs_path_fn,"gpfs_set_winattrs_path");
+ init_gpfs_function(&gpfs_get_winattrs_fn,"gpfs_get_winattrs");
gpfs_share_modes = lp_parm_bool(-1, "gpfs", "sharemodes", True);