summaryrefslogtreecommitdiffstats
path: root/libglusterfsclient/src/libglusterfsclient.c
diff options
context:
space:
mode:
authorShehjar Tikoo <shehjart@zresearch.com>2009-04-20 12:34:02 -0700
committerAnand V. Avati <avati@amp.gluster.com>2009-04-21 12:49:43 +0530
commit6cb3159ef38428572b81160e91e7c685ed44acb0 (patch)
tree63e35ce5fb255afe4613246c46905cb419ceea87 /libglusterfsclient/src/libglusterfsclient.c
parentde2192ea754883ea6ae643f63c44c2cbeb20f981 (diff)
libglusterfsclient: Add VMP-based statfs
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'libglusterfsclient/src/libglusterfsclient.c')
-rwxr-xr-xlibglusterfsclient/src/libglusterfsclient.c24
1 files changed, 23 insertions, 1 deletions
diff --git a/libglusterfsclient/src/libglusterfsclient.c b/libglusterfsclient/src/libglusterfsclient.c
index aab93181f..520735cf9 100755
--- a/libglusterfsclient/src/libglusterfsclient.c
+++ b/libglusterfsclient/src/libglusterfsclient.c
@@ -4536,7 +4536,7 @@ out:
}
int
-glusterfs_statfs (glusterfs_handle_t handle, const char *path,
+glusterfs_glh_statfs (glusterfs_handle_t handle, const char *path,
struct statfs *buf)
{
struct statvfs stvfs = {0, };
@@ -4595,6 +4595,28 @@ out:
}
int
+glusterfs_statfs (const char *path, struct statfs *buf)
+{
+ struct vmp_entry *entry = NULL;
+ char *vpath = NULL;
+ int op_ret = -1;
+
+ GF_VALIDATE_OR_GOTO (LIBGF_XL_NAME, path, out);
+ GF_VALIDATE_OR_GOTO (LIBGF_XL_NAME, buf, 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_statfs (entry->handle, vpath, buf);
+out:
+ return op_ret;
+}
+
+int
glusterfs_statvfs (glusterfs_handle_t handle, const char *path,
struct statvfs *buf)
{