From e707afad9f6282bc425f8b0262ea5a6db018ec92 Mon Sep 17 00:00:00 2001 From: Shehjar Tikoo Date: Mon, 20 Apr 2009 12:34:41 -0700 Subject: libglusterfsclient: Add VMP-based utimes Signed-off-by: Anand V. Avati --- libglusterfsclient/src/libglusterfsclient.c | 25 +++++++++++++++++++++++-- libglusterfsclient/src/libglusterfsclient.h | 7 +++++++ 2 files changed, 30 insertions(+), 2 deletions(-) (limited to 'libglusterfsclient') diff --git a/libglusterfsclient/src/libglusterfsclient.c b/libglusterfsclient/src/libglusterfsclient.c index 9b94484be39..da10c3b1bbf 100755 --- a/libglusterfsclient/src/libglusterfsclient.c +++ b/libglusterfsclient/src/libglusterfsclient.c @@ -4828,8 +4828,8 @@ out: } int -glusterfs_utimes (glusterfs_handle_t handle, const char *path, - const struct timeval times[2]) +glusterfs_glh_utimes (glusterfs_handle_t handle, const char *path, + const struct timeval times[2]) { int32_t op_ret = -1; loc_t loc = {0, }; @@ -4872,6 +4872,27 @@ out: return op_ret; } +int +glusterfs_utimes (const char *path, const struct timeval times[2]) +{ + struct vmp_entry *entry = NULL; + char *vpath = NULL; + int op_ret = -1; + + GF_VALIDATE_OR_GOTO (LIBGF_XL_NAME, path, out); + + entry = libgf_vmp_search_entry ((char *)path); + if (!entry) { + errno = ENODEV; + goto out; + } + + vpath = libgf_vmp_virtual_path (entry, path); + op_ret = glusterfs_glh_utimes (entry->handle, vpath, times); +out: + return op_ret; +} + int glusterfs_utime (glusterfs_handle_t handle, const char *path, const struct utimbuf *buf) diff --git a/libglusterfsclient/src/libglusterfsclient.h b/libglusterfsclient/src/libglusterfsclient.h index 0d79fa5044a..0381650c342 100755 --- a/libglusterfsclient/src/libglusterfsclient.h +++ b/libglusterfsclient/src/libglusterfsclient.h @@ -299,6 +299,13 @@ glusterfs_glh_statvfs (glusterfs_handle_t handle, const char *path, int glusterfs_statvfs (const char *path, struct statvfs *buf); + +int +glusterfs_glh_utimes (glusterfs_handle_t handle, const char *path, + const struct timeval times[2]); + +int +glusterfs_utimes (const char *path, const struct timeval times[2]); /* FIXME: review the need for these apis */ /* added for log related initialization in booster fork implementation */ void -- cgit