summaryrefslogtreecommitdiffstats
path: root/libglusterfsclient/src/libglusterfsclient.c
diff options
context:
space:
mode:
Diffstat (limited to 'libglusterfsclient/src/libglusterfsclient.c')
-rwxr-xr-xlibglusterfsclient/src/libglusterfsclient.c31
1 files changed, 26 insertions, 5 deletions
diff --git a/libglusterfsclient/src/libglusterfsclient.c b/libglusterfsclient/src/libglusterfsclient.c
index 4fcc9b6ce71..809c76da1c8 100755
--- a/libglusterfsclient/src/libglusterfsclient.c
+++ b/libglusterfsclient/src/libglusterfsclient.c
@@ -1187,11 +1187,8 @@ out:
}
int
-glusterfs_get (glusterfs_handle_t handle,
- const char *path,
- void *buf,
- size_t size,
- struct stat *stbuf)
+glusterfs_glh_get (glusterfs_handle_t handle, const char *path, void *buf,
+ size_t size, struct stat *stbuf)
{
int32_t op_ret = -1;
loc_t loc = {0, };
@@ -1269,6 +1266,30 @@ out:
}
int
+glusterfs_get (const char *path, void *buf, size_t size, struct stat *stbuf)
+{
+ struct vmp_entry *entry = NULL;
+ int op_ret = -1;
+ char *vpath = NULL;
+
+ GF_VALIDATE_OR_GOTO (LIBGF_XL_NAME, path, out);
+ GF_VALIDATE_OR_GOTO (LIBGF_XL_NAME, buf, out);
+ GF_VALIDATE_OR_GOTO (LIBGF_XL_NAME, stbuf, 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_get (entry->handle, vpath, buf, size, stbuf);
+
+out:
+ return op_ret;
+}
+
+int
libgf_client_lookup_async_cbk (call_frame_t *frame,
void *cookie,
xlator_t *this,