From 9e59ce6d30f4ffd3dc7fb88c29fbd0ea79b9de28 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Tue, 14 Jun 2011 01:42:10 +0000 Subject: performance-translators: print path to file while dumping fdctx. Signed-off-by: Raghavendra G Signed-off-by: Anand Avati BUG: 1059 (enhancements for getting statistics from performance translators) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1059 --- xlators/performance/write-behind/src/write-behind.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'xlators/performance/write-behind') diff --git a/xlators/performance/write-behind/src/write-behind.c b/xlators/performance/write-behind/src/write-behind.c index 4b8e0d188..f49487e87 100644 --- a/xlators/performance/write-behind/src/write-behind.c +++ b/xlators/performance/write-behind/src/write-behind.c @@ -2777,6 +2777,7 @@ wb_file_dump (xlator_t *this, fd_t *fd) wb_file_t *file = NULL; uint64_t tmp_file = 0; int32_t ret = -1; + char *path = NULL; char key[GF_DUMP_MAX_BUF_LEN] = {0, }; char key_prefix[GF_DUMP_MAX_BUF_LEN] = {0, }; @@ -2802,6 +2803,13 @@ wb_file_dump (xlator_t *this, fd_t *fd) gf_proc_dump_add_section (key_prefix); + __inode_path (fd->inode, NULL, &path); + if (path != NULL) { + gf_proc_dump_build_key (key, key_prefix, "path"); + gf_proc_dump_write (key, "%s", path); + GF_FREE (path); + } + gf_proc_dump_build_key (key, key_prefix, "fd"); gf_proc_dump_write (key, "%p", fd); @@ -2846,6 +2854,7 @@ wb_file_dump (xlator_t *this, fd_t *fd) } UNLOCK (&file->lock); + ret = 0; out: return ret; } -- cgit