From: Samuel Cabrero Date: Tue, 13 Apr 2021 15:25:39 +0000 (+0200) Subject: gpfswrap: Remove wrapper for gpfs_set_times_path() X-Git-Tag: tevent-0.11.0~1124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc4bef5e6a4f30d7386bb03c6d944fa0463c7934;p=thirdparty%2Fsamba.git gpfswrap: Remove wrapper for gpfs_set_times_path() Signed-off-by: Samuel Cabrero Reviewed-by: Ralph Boehme --- diff --git a/lib/util/gpfswrap.c b/lib/util/gpfswrap.c index f515e064999..c348ed7c5b8 100644 --- a/lib/util/gpfswrap.c +++ b/lib/util/gpfswrap.c @@ -38,8 +38,6 @@ static int (*gpfs_get_winattrs_path_fn)(const char *pathname, static int (*gpfs_get_winattrs_fn)(int fd, struct gpfs_winattr *attrs); static int (*gpfs_ftruncate_fn)(int fd, gpfs_off64_t length); static int (*gpfs_lib_init_fn)(int flags); -static int (*gpfs_set_times_path_fn)(char *pathname, int flags, - gpfs_timestruc_t times[4]); static int (*gpfs_set_times_fn)(int fd, int flags, gpfs_timestruc_t times[4]); static int (*gpfs_quotactl_fn)(const char *pathname, int cmd, @@ -78,7 +76,6 @@ int gpfswrap_init(void) gpfs_get_winattrs_fn = dlsym(l, "gpfs_get_winattrs"); gpfs_ftruncate_fn = dlsym(l, "gpfs_ftruncate"); gpfs_lib_init_fn = dlsym(l, "gpfs_lib_init"); - gpfs_set_times_path_fn = dlsym(l, "gpfs_set_times_path"); gpfs_set_times_fn = dlsym(l, "gpfs_set_times"); gpfs_quotactl_fn = dlsym(l, "gpfs_quotactl"); gpfs_init_trace_fn = dlsym(l, "gpfs_init_trace"); @@ -206,17 +203,6 @@ int gpfswrap_lib_init(int flags) return gpfs_lib_init_fn(flags); } -int gpfswrap_set_times_path(char *pathname, int flags, - gpfs_timestruc_t times[4]) -{ - if (gpfs_set_times_path_fn == NULL) { - errno = ENOSYS; - return -1; - } - - return gpfs_set_times_path_fn(pathname, flags, times); -} - int gpfswrap_set_times(int fd, int flags, gpfs_timestruc_t times[4]) { if (gpfs_set_times_fn == NULL) { diff --git a/lib/util/gpfswrap.h b/lib/util/gpfswrap.h index 80ebbb18219..138e6ec696e 100644 --- a/lib/util/gpfswrap.h +++ b/lib/util/gpfswrap.h @@ -43,8 +43,6 @@ int gpfswrap_get_winattrs_path(const char *pathname, int gpfswrap_get_winattrs(int fd, struct gpfs_winattr *attrs); int gpfswrap_ftruncate(int fd, gpfs_off64_t length); int gpfswrap_lib_init(int flags); -int gpfswrap_set_times_path(char *pathname, int flags, - gpfs_timestruc_t times[4]); int gpfswrap_set_times(int fd, int flags, gpfs_timestruc_t times[4]); int gpfswrap_quotactl(const char *pathname, int cmd, int id, void *bufp); int gpfswrap_init_trace(void);