diff options
Diffstat (limited to 'libglusterfsclient')
-rwxr-xr-x | libglusterfsclient/src/libglusterfsclient.c | 23 | ||||
-rwxr-xr-x | libglusterfsclient/src/libglusterfsclient.h | 6 |
2 files changed, 28 insertions, 1 deletions
diff --git a/libglusterfsclient/src/libglusterfsclient.c b/libglusterfsclient/src/libglusterfsclient.c index b907ea477e6..49456fbce62 100755 --- a/libglusterfsclient/src/libglusterfsclient.c +++ b/libglusterfsclient/src/libglusterfsclient.c @@ -5180,7 +5180,7 @@ out: } int -glusterfs_unlink (glusterfs_handle_t handle, const char *path) +glusterfs_glh_unlink (glusterfs_handle_t handle, const char *path) { int32_t op_ret = -1; loc_t loc = {0, }; @@ -5218,6 +5218,27 @@ out: return op_ret; } +int +glusterfs_unlink (const char *path) +{ + 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_unlink (entry->handle, vpath); +out: + return op_ret; +} + static int32_t libgf_client_symlink_cbk (call_frame_t *frame, void *cookie, xlator_t *this, int32_t op_ret, int32_t op_errno, diff --git a/libglusterfsclient/src/libglusterfsclient.h b/libglusterfsclient/src/libglusterfsclient.h index b9afe4824fc..3287ddead51 100755 --- a/libglusterfsclient/src/libglusterfsclient.h +++ b/libglusterfsclient/src/libglusterfsclient.h @@ -325,6 +325,12 @@ glusterfs_glh_mkfifo (glusterfs_handle_t handle, const char *path, int glusterfs_mkfifo (const char *path, mode_t mode); + +int +glusterfs_glh_unlink (glusterfs_handle_t handle, const char *path); + +int +glusterfs_unlink (const char *path); /* FIXME: review the need for these apis */ /* added for log related initialization in booster fork implementation */ void |