summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src
diff options
context:
space:
mode:
authorVijay Bellur <vijay@gluster.com>2009-08-15 12:58:08 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-08-19 17:57:53 -0700
commitb4d6c3d1bb461d2c8a396c9ed3881a4da40fc6ab (patch)
tree7a5a15665d46a91b9d4d744b0da599c4628d7f6c /libglusterfs/src
parenta31b0016347b3bc9b341fa0f4541ed137224f593 (diff)
TAKE2[PATCH BUG:213 1/1] Support for Process State Dump
Support for process state dump. Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 213 (Support for process state dump) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=213
Diffstat (limited to 'libglusterfs/src')
-rw-r--r--libglusterfs/src/Makefile.am4
-rw-r--r--libglusterfs/src/fd.c67
-rw-r--r--libglusterfs/src/inode.c76
-rw-r--r--libglusterfs/src/iobuf.c104
-rw-r--r--libglusterfs/src/iobuf.h1
-rw-r--r--libglusterfs/src/stack.c171
-rw-r--r--libglusterfs/src/stack.h6
-rw-r--r--libglusterfs/src/statedump.c213
-rw-r--r--libglusterfs/src/statedump.h78
-rw-r--r--libglusterfs/src/xlator.c5
-rw-r--r--libglusterfs/src/xlator.h22
11 files changed, 740 insertions, 7 deletions
diff --git a/libglusterfs/src/Makefile.am b/libglusterfs/src/Makefile.am
index 7698661fa42..a3fb923cabc 100644
--- a/libglusterfs/src/Makefile.am
+++ b/libglusterfs/src/Makefile.am
@@ -6,9 +6,9 @@ libglusterfs_la_LIBADD = @LEXLIB@
lib_LTLIBRARIES = libglusterfs.la
-libglusterfs_la_SOURCES = dict.c spec.lex.c y.tab.c xlator.c logging.c hashfn.c defaults.c scheduler.c common-utils.c transport.c timer.c inode.c call-stub.c compat.c authenticate.c fd.c compat-errno.c event.c mem-pool.c gf-dirent.c syscall.c iobuf.c globals.c
+libglusterfs_la_SOURCES = dict.c spec.lex.c y.tab.c xlator.c logging.c hashfn.c defaults.c scheduler.c common-utils.c transport.c timer.c inode.c call-stub.c compat.c authenticate.c fd.c compat-errno.c event.c mem-pool.c gf-dirent.c syscall.c iobuf.c globals.c statedump.c stack.c
-noinst_HEADERS = common-utils.h defaults.h dict.h glusterfs.h hashfn.h logging.h protocol.h scheduler.h xlator.h transport.h stack.h timer.h list.h inode.h call-stub.h compat.h authenticate.h fd.h revision.h compat-errno.h event.h mem-pool.h byte-order.h gf-dirent.h locking.h syscall.h iobuf.h globals.h
+noinst_HEADERS = common-utils.h defaults.h dict.h glusterfs.h hashfn.h logging.h protocol.h scheduler.h xlator.h transport.h stack.h timer.h list.h inode.h call-stub.h compat.h authenticate.h fd.h revision.h compat-errno.h event.h mem-pool.h byte-order.h gf-dirent.h locking.h syscall.h iobuf.h globals.h statedump.h
EXTRA_DIST = spec.l spec.y
diff --git a/libglusterfs/src/fd.c b/libglusterfs/src/fd.c
index 8f7616929c2..62536fc5524 100644
--- a/libglusterfs/src/fd.c
+++ b/libglusterfs/src/fd.c
@@ -21,6 +21,7 @@
#include "glusterfs.h"
#include "inode.h"
#include "dict.h"
+#include "statedump.h"
#ifndef _CONFIG_H
@@ -685,3 +686,69 @@ fd_ctx_del (fd_t *fd, xlator_t *xlator, uint64_t *value)
return ret;
}
+
+
+void
+fd_dump (fd_t *fd, char *prefix)
+{
+ char key[GF_DUMP_MAX_BUF_LEN];
+ inode_t *inode = NULL;
+
+ if (!fd)
+ return;
+
+ memset(key, 0, sizeof(key));
+ gf_proc_dump_build_key(key, prefix, "pid");
+ gf_proc_dump_write(key, "%d", fd->pid);
+ gf_proc_dump_build_key(key, prefix, "refcount");
+ gf_proc_dump_write(key, "%d", fd->refcount);
+ gf_proc_dump_build_key(key, prefix, "flags");
+ gf_proc_dump_write(key, "%d", fd->flags);
+ gf_proc_dump_build_key(key, prefix, "inode");
+ gf_proc_dump_add_section(key);
+ inode_dump(inode, key, NULL);
+}
+
+
+void
+fdentry_dump (fdentry_t *fdentry, char *prefix)
+{
+ if (!fdentry)
+ return;
+
+ if (GF_FDENTRY_ALLOCATED != fdentry->next_free)
+ return;
+
+ if (fdentry->fd)
+ fd_dump(fdentry->fd, prefix);
+}
+
+void
+fdtable_dump (fdtable_t *fdtable, char *prefix)
+{
+ char key[GF_DUMP_MAX_BUF_LEN];
+ int i = 0;
+
+ if (!fdtable)
+ return;
+
+ memset(key, 0, sizeof(key));
+ gf_proc_dump_build_key(key, prefix, "refcount");
+ gf_proc_dump_write(key, "%d", fdtable->refcount);
+ gf_proc_dump_build_key(key, prefix, "maxfds");
+ gf_proc_dump_write(key, "%d", fdtable->max_fds);
+ gf_proc_dump_build_key(key, prefix, "first_free");
+ gf_proc_dump_write(key, "%d", fdtable->first_free);
+ gf_proc_dump_build_key(key, prefix, "lock");
+ gf_proc_dump_write(key, "%d", fdtable->lock);
+
+ for ( i = 0 ; i < fdtable->max_fds; i++) {
+ if (GF_FDENTRY_ALLOCATED ==
+ fdtable->fdentries[i].next_free) {
+ gf_proc_dump_build_key(key, prefix, "fdentry[%d]", i);
+ gf_proc_dump_add_section(key);
+ fdentry_dump(&fdtable->fdentries[i], key);
+ }
+ }
+}
+
diff --git a/libglusterfs/src/inode.c b/libglusterfs/src/inode.c
index 9796071d87e..138e30068d4 100644
--- a/libglusterfs/src/inode.c
+++ b/libglusterfs/src/inode.c
@@ -24,6 +24,7 @@
#include "inode.h"
#include "common-utils.h"
+#include "statedump.h"
#include <pthread.h>
#include <sys/types.h>
#include <stdint.h>
@@ -35,6 +36,18 @@
move latest accessed dentry to list_head of inode
*/
+#define INODE_DUMP_LIST(head, key_buf, key_prefix, list_type, fn) \
+{ \
+ int i = 1;\
+ inode_t *inode = NULL;\
+ list_for_each_entry (inode, head, list) {\
+ gf_proc_dump_build_key(key_buf, key_prefix, "%s.%d",list_type,\
+ i++);\
+ gf_proc_dump_add_section(key_buf);\
+ inode_dump(inode, key, fn);\
+ }\
+}
+
static inode_t *
__inode_unref (inode_t *inode);
@@ -1194,3 +1207,66 @@ unlock:
return ret;
}
+
+void
+inode_dump (inode_t *inode, char *prefix, inode_priv_dump_fn fn)
+{
+ char key[GF_DUMP_MAX_BUF_LEN];
+ int ret;
+
+ if (!inode)
+ return;
+
+ ret = TRY_LOCK(&inode->lock);
+
+ if (ret != 0) {
+ gf_log("", GF_LOG_WARNING, "Unable to dump inode"
+ " errno: %d", errno);
+ return;
+ }
+
+ gf_proc_dump_build_key(key, prefix, "nlookup");
+ gf_proc_dump_write(key, "%ld", inode->nlookup);
+ gf_proc_dump_build_key(key, prefix, "generation");
+ gf_proc_dump_write(key, "%ld", inode->generation);
+ gf_proc_dump_build_key(key, prefix, "ref");
+ gf_proc_dump_write(key, "%u", inode->ref);
+ gf_proc_dump_build_key(key, prefix, "ino");
+ gf_proc_dump_write(key, "%ld", inode->ino);
+ gf_proc_dump_build_key(key, prefix, "st_mode");
+ gf_proc_dump_write(key, "%d", inode->st_mode);
+ UNLOCK(&inode->lock);
+ if (fn)
+ fn (inode);
+}
+
+void
+inode_table_dump (inode_table_t *itable, char *prefix, inode_priv_dump_fn fn)
+{
+
+ char key[GF_DUMP_MAX_BUF_LEN];
+
+ if (!itable)
+ return;
+
+ memset(key, 0, sizeof(key));
+ gf_proc_dump_build_key(key, prefix, "hashsize");
+ gf_proc_dump_write(key, "%d", itable->hashsize);
+ gf_proc_dump_build_key(key, prefix, "name");
+ gf_proc_dump_write(key, "%s", itable->name);
+
+ gf_proc_dump_build_key(key, prefix, "lru_limit");
+ gf_proc_dump_write(key, "%d", itable->lru_limit);
+ gf_proc_dump_build_key(key, prefix, "active_size");
+ gf_proc_dump_write(key, "%d", itable->active_size);
+ gf_proc_dump_build_key(key, prefix, "lru_size");
+ gf_proc_dump_write(key, "%d", itable->lru_size);
+ gf_proc_dump_build_key(key, prefix, "purge_size");
+ gf_proc_dump_write(key, "%d", itable->purge_size);
+
+ pthread_mutex_lock(&itable->lock);
+ INODE_DUMP_LIST(&itable->active, key, prefix, "active", fn);
+ INODE_DUMP_LIST(&itable->lru, key, prefix, "lru", fn);
+ INODE_DUMP_LIST(&itable->purge, key, prefix, "purge", fn);
+}
+
diff --git a/libglusterfs/src/iobuf.c b/libglusterfs/src/iobuf.c
index 6d6fca13388..e9408f86bac 100644
--- a/libglusterfs/src/iobuf.c
+++ b/libglusterfs/src/iobuf.c
@@ -19,6 +19,7 @@
#include "iobuf.h"
+#include "statedump.h"
#include <stdio.h>
@@ -636,3 +637,106 @@ iobref_size (struct iobref *iobref)
out:
return size;
}
+
+void
+iobuf_info_dump (struct iobuf *iobuf, const char *key_prefix)
+{
+ char key[GF_DUMP_MAX_BUF_LEN];
+ struct iobuf my_iobuf;
+ int ret = 0;
+
+ if (!iobuf)
+ return;
+
+ memset(&my_iobuf, 0, sizeof(my_iobuf));
+
+ ret = TRY_LOCK(&iobuf->lock);
+ if (ret) {
+ gf_log("", GF_LOG_WARNING, "Unable to dump iobuf"
+ " errno: %d", errno);
+ return;
+ }
+ memcpy(&my_iobuf, iobuf, sizeof(my_iobuf));
+ UNLOCK(&iobuf->lock);
+
+ gf_proc_dump_build_key(key, key_prefix,"ref");
+ gf_proc_dump_write(key, "%d", my_iobuf.ref);
+ gf_proc_dump_build_key(key, key_prefix,"ptr");
+ gf_proc_dump_write(key, "%p", my_iobuf.ptr);
+
+}
+
+void
+iobuf_arena_info_dump (struct iobuf_arena *iobuf_arena, const char *key_prefix)
+{
+ char key[GF_DUMP_MAX_BUF_LEN];
+ int i = 1;
+ struct iobuf *trav;
+
+ if (!iobuf_arena)
+ return;
+
+ gf_proc_dump_build_key(key, key_prefix,"mem_base");
+ gf_proc_dump_write(key, "%p", iobuf_arena->mem_base);
+ gf_proc_dump_build_key(key, key_prefix, "active_cnt");
+ gf_proc_dump_write(key, "%d", iobuf_arena->active_cnt);
+ gf_proc_dump_build_key(key, key_prefix, "passive_cnt");
+ gf_proc_dump_write(key, "%d", iobuf_arena->passive_cnt);
+ list_for_each_entry (trav, &iobuf_arena->active.list, list) {
+ gf_proc_dump_build_key(key, key_prefix,"active_iobuf.%d", i++);
+ gf_proc_dump_add_section(key);
+ iobuf_info_dump(trav, key);
+ }
+
+ i = 1;
+ list_for_each_entry (trav, &iobuf_arena->passive.list, list) {
+ gf_proc_dump_build_key(key, key_prefix,
+ "passive_iobuf.%d",i++);
+ gf_proc_dump_add_section(key);
+ iobuf_info_dump(trav, key);
+ }
+
+}
+
+void
+iobuf_stats_dump (struct iobuf_pool *iobuf_pool)
+{
+
+ char msg[1024];
+ struct iobuf_arena *trav;
+ int i = 1;
+ int ret = -1;
+
+ if (!iobuf_pool)
+ return;
+
+ memset(msg, 0, sizeof(msg));
+
+ ret = pthread_mutex_trylock(&iobuf_pool->mutex);
+
+ if (ret) {
+ gf_log("", GF_LOG_WARNING, "Unable to dump iobuf pool"
+ " errno: %d", errno);
+ return;
+ }
+ gf_proc_dump_add_section("iobuf.global");
+ gf_proc_dump_write("iobuf.global.iobuf_pool","%p", iobuf_pool);
+ gf_proc_dump_write("iobuf.global.iobuf_pool.page_size", "%d",
+ iobuf_pool->page_size);
+ gf_proc_dump_write("iobuf.global.iobuf_pool.arena_size", "%d",
+ iobuf_pool->arena_size);
+ gf_proc_dump_write("iobuf.global.iobuf_pool.arena_cnt", "%d",
+ iobuf_pool->arena_cnt);
+
+ list_for_each_entry (trav, &iobuf_pool->arenas.list, list) {
+ snprintf(msg, sizeof(msg), "iobuf.global.iobuf_pool.arena.%d",
+ i);
+ gf_proc_dump_add_section(msg);
+ iobuf_arena_info_dump(trav,msg);
+ i++;
+ }
+
+ pthread_mutex_unlock(&iobuf_pool->mutex);
+
+ return;
+}
diff --git a/libglusterfs/src/iobuf.h b/libglusterfs/src/iobuf.h
index d17c1db486d..de95da324a6 100644
--- a/libglusterfs/src/iobuf.h
+++ b/libglusterfs/src/iobuf.h
@@ -123,5 +123,6 @@ int iobref_merge (struct iobref *to, struct iobref *from);
size_t iobuf_size (struct iobuf *iobuf);
size_t iobref_size (struct iobref *iobref);
+void iobuf_stats_dump (struct iobuf_pool *iobuf_pool);
#endif /* !_IOBUF_H_ */
diff --git a/libglusterfs/src/stack.c b/libglusterfs/src/stack.c
new file mode 100644
index 00000000000..453248479b3
--- /dev/null
+++ b/libglusterfs/src/stack.c
@@ -0,0 +1,171 @@
+/*
+ Copyright (c) 2009 Z RESEARCH, Inc. <http://www.zresearch.com>
+ This file is part of GlusterFS.
+
+ GlusterFS is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published
+ by the Free Software Foundation; either version 3 of the License,
+ or (at your option) any later version.
+
+ GlusterFS is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
+ <http://www.gnu.org/licenses/>.
+*/
+
+#include "statedump.h"
+#include "stack.h"
+
+static inline
+int call_frames_count (call_frame_t *call_frame)
+{
+ call_frame_t *pos;
+ int32_t count = 0;
+
+ if (!call_frame)
+ return count;
+
+ for (pos = call_frame; pos != NULL; pos = pos->next)
+ count++;
+
+ return count;
+}
+
+void
+gf_proc_dump_call_frame (call_frame_t *call_frame, const char *key_buf,...)
+{
+
+ char prefix[GF_DUMP_MAX_BUF_LEN];
+ va_list ap;
+ char key[GF_DUMP_MAX_BUF_LEN];
+ call_frame_t my_frame;
+ int ret = -1;
+
+ if (!call_frame)
+ return;
+
+ assert(key_buf);
+
+ memset(prefix, 0, sizeof(prefix));
+ memset(&my_frame, 0, sizeof(my_frame));
+ va_start(ap, key_buf);
+ vsnprintf(prefix, GF_DUMP_MAX_BUF_LEN, key_buf, ap);
+ va_end(ap);
+
+ ret = TRY_LOCK(&call_frame->lock);
+ if (ret) {
+ gf_log("", GF_LOG_WARNING, "Unable to dump call frame"
+ " errno: %d", errno);
+ return;
+ }
+
+ memcpy(&my_frame, call_frame, sizeof(my_frame));
+ UNLOCK(&call_frame->lock);
+
+ gf_proc_dump_build_key(key, prefix,"ref_count");
+ gf_proc_dump_write(key, "%d", my_frame.ref_count);
+ gf_proc_dump_build_key(key, prefix,"translator");
+ gf_proc_dump_write(key, "%s", my_frame.this->name);
+ gf_proc_dump_build_key(key, prefix,"complete");
+ gf_proc_dump_write(key, "%d", my_frame.complete);
+ if (my_frame.parent) {
+ gf_proc_dump_build_key(key, prefix,"parent");
+ gf_proc_dump_write(key, "%s", my_frame.parent->this->name);
+ }
+}
+
+
+void
+gf_proc_dump_call_stack (call_stack_t *call_stack, const char *key_buf,...)
+{
+ char prefix[GF_DUMP_MAX_BUF_LEN];
+ va_list ap;
+ call_frame_t *trav;
+ int32_t cnt, i;
+ char key[GF_DUMP_MAX_BUF_LEN];
+
+ if (!call_stack)
+ return;
+
+ assert(key_buf);
+
+ cnt = call_frames_count(&call_stack->frames);
+
+ memset(prefix, 0, sizeof(prefix));
+ va_start(ap, key_buf);
+ vsnprintf(prefix, GF_DUMP_MAX_BUF_LEN, key_buf, ap);
+ va_end(ap);
+
+ gf_proc_dump_build_key(key, prefix,"uid");
+ gf_proc_dump_write(key, "%d", call_stack->uid);
+ gf_proc_dump_build_key(key, prefix,"gid");
+ gf_proc_dump_write(key, "%d", call_stack->gid);
+ gf_proc_dump_build_key(key, prefix,"pid");
+ gf_proc_dump_write(key, "%d", call_stack->pid);
+ gf_proc_dump_build_key(key, prefix,"unique");
+ gf_proc_dump_write(key, "%Ld", call_stack->unique);
+
+ gf_proc_dump_build_key(key, prefix,"op");
+ if ((call_stack->type == GF_OP_TYPE_FOP_REQUEST) ||
+ (call_stack->type == GF_OP_TYPE_FOP_REPLY)) {
+ gf_proc_dump_write(key, "%s", gf_fop_list[call_stack->op]);
+ } else if ((call_stack->type == GF_OP_TYPE_MOP_REQUEST) ||
+ (call_stack->type == GF_OP_TYPE_MOP_REPLY)) {
+ gf_proc_dump_write(key, "%s", gf_mop_list[call_stack->op]);
+ } else if ((call_stack->type == GF_OP_TYPE_CBK_REQUEST) ||
+ (call_stack->type == GF_OP_TYPE_CBK_REPLY)) {
+ gf_proc_dump_write(key, "%s", gf_cbk_list[call_stack->op]);
+ }
+
+ gf_proc_dump_build_key(key, prefix,"type");
+ gf_proc_dump_write(key, "%d", call_stack->type);
+ gf_proc_dump_build_key(key, prefix,"cnt");
+ gf_proc_dump_write(key, "%d", cnt);
+
+ trav = &call_stack->frames;
+
+ for (i = 1; i <= cnt; i++) {
+ if (trav) {
+ gf_proc_dump_add_section("%s.frame.%d", prefix, i);
+ gf_proc_dump_call_frame(trav, "%s.frame.%d", prefix, i);
+ trav = trav->next;
+ }
+ }
+}
+
+void
+gf_proc_dump_pending_frames (call_pool_t *call_pool)
+{
+
+ call_stack_t *trav = NULL;
+ int i = 1;
+ int ret = -1;
+
+ if (!call_pool)
+ return;
+
+ ret = TRY_LOCK (&(call_pool->lock));
+ if (ret) {
+ gf_log("", GF_LOG_WARNING, "Unable to dump call pool"
+ " errno: %d", errno);
+ return;
+ }
+
+
+ gf_proc_dump_add_section("global.callpool");
+ gf_proc_dump_write("global.callpool","%p", call_pool);
+ gf_proc_dump_write("global.callpool.cnt","%d", call_pool->cnt);
+
+
+ list_for_each_entry (trav, &call_pool->all_frames, all_frames) {
+ gf_proc_dump_add_section("global.callpool.stack.%d",i);
+ gf_proc_dump_call_stack(trav, "global.callpool.stack.%d", i);
+ i++;
+ }
+ UNLOCK (&(call_pool->lock));
+}
+
diff --git a/libglusterfs/src/stack.h b/libglusterfs/src/stack.h
index e7c1cbd152d..94297255607 100644
--- a/libglusterfs/src/stack.h
+++ b/libglusterfs/src/stack.h
@@ -1,4 +1,4 @@
-/*
+/*
Copyright (c) 2006-2009 Z RESEARCH, Inc. <http://www.zresearch.com>
This file is part of GlusterFS.
@@ -74,6 +74,7 @@ struct _call_frame_t {
int32_t ref_count;
gf_lock_t lock;
void *cookie; /* unique cookie */
+ gf_boolean_t complete;
};
struct _call_stack_t {
@@ -208,6 +209,7 @@ STACK_DESTROY (call_stack_t *stack)
_parent->ref_count--; \
old_THIS = THIS; \
THIS = _parent->this; \
+ frame->complete = _gf_true; \
fn (_parent, frame->cookie, _parent->this, params); \
THIS = old_THIS; \
} while (0)
@@ -281,5 +283,7 @@ create_frame (xlator_t *xl, call_pool_t *pool)
return &stack->frames;
}
+void
+gf_proc_dump_pending_frames(call_pool_t *call_pool);
#endif /* _STACK_H */
diff --git a/libglusterfs/src/statedump.c b/libglusterfs/src/statedump.c
new file mode 100644
index 00000000000..6839c28f6e9
--- /dev/null
+++ b/libglusterfs/src/statedump.c
@@ -0,0 +1,213 @@
+/*
+ Copyright (c) 2009 Z RESEARCH, Inc. <http://www.zresearch.com>
+ This file is part of GlusterFS.
+
+ GlusterFS is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published
+ by the Free Software Foundation; either version 3 of the License,
+ or (at your option) any later version.
+
+ GlusterFS is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
+ <http://www.gnu.org/licenses/>.
+*/
+
+#include <stdarg.h>
+#include <malloc.h>
+#include "glusterfs.h"
+#include "logging.h"
+#include "iobuf.h"
+#include "statedump.h"
+#include "stack.h"
+
+
+static pthread_mutex_t gf_proc_dump_mutex;
+static int gf_dump_fd = -1;
+
+static void
+gf_proc_dump_lock (void)
+{
+ pthread_mutex_lock(&gf_proc_dump_mutex);
+}
+
+static void
+gf_proc_dump_unlock (void)
+{
+ pthread_mutex_unlock(&gf_proc_dump_mutex);
+}
+
+static int
+gf_proc_dump_open (void)
+{
+ char path[256];
+ int dump_fd = -1;
+
+ memset(path, 0, sizeof(path));
+ snprintf(path, sizeof(path), "%s.%d",GF_DUMP_LOGFILE_ROOT, getpid());
+
+ dump_fd = open(path, O_CREAT|O_RDWR|O_TRUNC|O_APPEND, 0600);
+ if (dump_fd < 0) {
+ gf_log("", GF_LOG_ERROR, "Unable to open file: %s"
+ " errno: %d", path, errno);
+ return -1;
+ }
+
+ gf_dump_fd = dump_fd;
+ return 0;
+}
+
+static void
+gf_proc_dump_close (void)
+{
+ close(gf_dump_fd);
+ gf_dump_fd = -1;
+}
+
+void
+gf_proc_dump_add_section (char *key, ...)
+{
+
+ char buf[GF_DUMP_MAX_BUF_LEN];
+ va_list ap;
+ int ret;
+
+ assert(key);
+
+ memset(buf, 0, sizeof(buf));
+ snprintf(buf, GF_DUMP_MAX_BUF_LEN, "\n[");
+ va_start(ap, key);
+ vsnprintf(buf + strlen(buf),
+ GF_DUMP_MAX_BUF_LEN - strlen(buf), key, ap);
+ va_end(ap);
+ snprintf(buf + strlen(buf),
+ GF_DUMP_MAX_BUF_LEN - strlen(buf), "]\n");
+ ret = write(gf_dump_fd, buf, strlen(buf));
+}
+
+void
+gf_proc_dump_write (char *key, char *value,...)
+{
+
+ char buf[GF_DUMP_MAX_BUF_LEN];
+ int offset = 0;
+ va_list ap;
+ int ret;
+
+ offset = strlen(key);
+
+ memset(buf, 0, GF_DUMP_MAX_BUF_LEN);
+ snprintf(buf, GF_DUMP_MAX_BUF_LEN, "%s",key);
+ snprintf(buf + offset, GF_DUMP_MAX_BUF_LEN - offset, "=");
+ offset += 1;
+ va_start(ap, value);
+ vsnprintf(buf + offset, GF_DUMP_MAX_BUF_LEN - offset, value, ap);
+ va_end(ap);
+
+ offset = strlen(buf);
+ snprintf(buf + offset, GF_DUMP_MAX_BUF_LEN - offset, "\n");
+ ret = write(gf_dump_fd, buf, strlen(buf));
+}
+
+
+/* Currently this dumps only mallinfo. More can be built on here */
+void
+gf_proc_dump_mem_info ()
+{
+#ifdef HAVE_MALLOC_STATS
+ struct mallinfo info;
+
+ memset(&info, 0, sizeof(struct mallinfo));
+ info = mallinfo();
+
+ gf_proc_dump_add_section("mallinfo");
+ gf_proc_dump_write("mallinfo_arena", "%d", info.arena);
+ gf_proc_dump_write("mallinfo_ordblks", "%d", info.ordblks);
+ gf_proc_dump_write("mallinfo_smblks","%d", info.smblks);
+ gf_proc_dump_write("mallinfo_hblks","%d", info.hblks);
+ gf_proc_dump_write("mallinfo_hblkhd", "%d", info.hblkhd);
+ gf_proc_dump_write("mallinfo_usmblks","%d", info.usmblks);
+ gf_proc_dump_write("mallinfo_fsmblks","%d", info.fsmblks);
+ gf_proc_dump_write("mallinfo_uordblks","%d", info.uordblks);
+ gf_proc_dump_write("mallinfo_fordblks", "%d", info.fordblks);
+ gf_proc_dump_write("mallinfo_keepcost", "%d", info.keepcost);
+#endif
+
+}
+
+
+void
+gf_proc_dump_xlator_info (xlator_t *this_xl)
+{
+
+ if (!this_xl)
+ return;
+
+ while (this_xl) {
+ if (!this_xl->dumpops) {
+ this_xl = this_xl->next;
+ continue;
+ }
+ if (this_xl->dumpops->priv)
+ this_xl->dumpops->priv(this_xl);
+ if (this_xl->dumpops->inode)
+ this_xl->dumpops->inode(this_xl);
+ if (this_xl->dumpops->fd)
+ this_xl->dumpops->fd(this_xl);
+ this_xl = this_xl->next;
+ }
+
+ return;
+}
+
+
+void
+gf_proc_dump_info (int signum)
+{
+ int ret = -1;
+ glusterfs_ctx_t *ctx = NULL;
+
+ gf_proc_dump_lock();
+ ret = gf_proc_dump_open();
+ if (ret < 0)
+ goto out;
+ gf_proc_dump_mem_info();
+ ctx = get_global_ctx_ptr();
+ if (ctx) {
+ iobuf_stats_dump(ctx->iobuf_pool);
+ gf_proc_dump_pending_frames(ctx->pool);
+ gf_proc_dump_xlator_info(ctx->graph);
+ }
+
+ gf_proc_dump_close();
+out:
+ gf_proc_dump_unlock();
+
+ return;
+}
+
+void
+gf_proc_dump_fini (void)
+{
+ pthread_mutex_destroy(&gf_proc_dump_mutex);
+}
+
+
+void
+gf_proc_dump_init ()
+{
+ pthread_mutex_init(&gf_proc_dump_mutex, NULL);
+
+ return;
+}
+
+void
+gf_proc_dump_cleanup (void)
+{
+ pthread_mutex_destroy(&gf_proc_dump_mutex);
+}
+
diff --git a/libglusterfs/src/statedump.h b/libglusterfs/src/statedump.h
new file mode 100644
index 00000000000..9ac50ec0c0a
--- /dev/null
+++ b/libglusterfs/src/statedump.h
@@ -0,0 +1,78 @@
+/*
+ Copyright (c) 2009 Z RESEARCH, Inc. <http://www.zresearch.com>
+ This file is part of GlusterFS.
+
+ GlusterFS is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published
+ by the Free Software Foundation; either version 3 of the License,
+ or (at your option) any later version.
+
+ GlusterFS is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
+ <http://www.gnu.org/licenses/>.
+*/
+
+
+#ifndef STATEDUMP_H
+#define STATEDUMP_H
+
+#include <stdarg.h>
+#include "inode.h"
+
+#define GF_DUMP_MAX_BUF_LEN 4096
+
+#define GF_DUMP_LOGFILE_ROOT "/tmp/glusterdump"
+#define GF_DUMP_LOGFILE_ROOT_LEN 256
+
+static inline
+void _gf_proc_dump_build_key (char *key, const char *prefix, char *fmt,...)
+{
+ char buf[GF_DUMP_MAX_BUF_LEN];
+ va_list ap;
+
+ memset(buf, 0, sizeof(buf));
+ va_start(ap, fmt);
+ vsnprintf(buf, GF_DUMP_MAX_BUF_LEN, fmt, ap);
+ va_end(ap);
+ snprintf(key, GF_DUMP_MAX_BUF_LEN, "%s.%s", prefix, buf);
+}
+
+#define gf_proc_dump_build_key(key, key_prefix, fmt...) \
+{\
+ _gf_proc_dump_build_key(key, key_prefix, ##fmt);\
+}
+
+typedef void (*inode_priv_dump_fn) (inode_t *);
+
+void
+gf_proc_dump_init();
+
+void
+gf_proc_dump_fini(void);
+
+void
+gf_proc_dump_cleanup(void);
+
+void
+gf_proc_dump_info(int signum);
+
+void
+gf_proc_dump_add_section(char *key,...);
+
+void
+gf_proc_dump_write(char *key, char *value,...);
+
+void
+inode_table_dump(inode_table_t *itable, char *prefix, inode_priv_dump_fn fn);
+
+void
+fdtable_dump(fdtable_t *fdtable, char *prefix);
+
+void
+inode_dump(inode_t *inode, char *prefix, inode_priv_dump_fn fn);
+#endif /* STATEDUMP_H */
diff --git a/libglusterfs/src/xlator.c b/libglusterfs/src/xlator.c
index a3f8ea8fc2e..def1ad1df45 100644
--- a/libglusterfs/src/xlator.c
+++ b/libglusterfs/src/xlator.c
@@ -740,6 +740,11 @@ xlator_set_type (xlator_t *xl,
"dlsym(notify) on %s -- neglecting", dlerror ());
}
+ if (!(xl->dumpops = dlsym (handle, "dumpops"))) {
+ gf_log ("xlator", GF_LOG_DEBUG,
+ "dlsym(dumpops) on %s -- neglecting", dlerror ());
+ }
+
INIT_LIST_HEAD (&xl->volume_options);
vol_opt = CALLOC (1, sizeof (volume_opt_list_t));
diff --git a/libglusterfs/src/xlator.h b/libglusterfs/src/xlator.h
index e8fc9d2503b..2e815af911a 100644
--- a/libglusterfs/src/xlator.h
+++ b/libglusterfs/src/xlator.h
@@ -806,6 +806,19 @@ struct xlator_cbks {
cbk_release_t releasedir;
};
+typedef int32_t (*dumpop_priv_t) (xlator_t *this);
+
+typedef int32_t (*dumpop_inode_t) (xlator_t *this);
+
+typedef int32_t (*dumpop_fd_t) (xlator_t *this);
+
+
+struct xlator_dumpops {
+ dumpop_priv_t priv;
+ dumpop_inode_t inode;
+ dumpop_fd_t fd;
+};
+
typedef struct xlator_list {
xlator_t *xlator;
struct xlator_list *next;
@@ -859,10 +872,11 @@ struct _xlator {
dict_t *options;
/* Set after doing dlopen() */
- struct xlator_fops *fops;
- struct xlator_mops *mops;
- struct xlator_cbks *cbks;
- struct list_head volume_options; /* list of volume_option_t */
+ struct xlator_fops *fops;
+ struct xlator_mops *mops;
+ struct xlator_cbks *cbks;
+ struct xlator_dumpops *dumpops;
+ struct list_head volume_options; /* list of volume_option_t */
void (*fini) (xlator_t *this);
int32_t (*init) (xlator_t *this);
6a764e1a86302e8'>commit 4dce874a77...Kaushal M10 years v3.7.12commit 5cf8e28988...Kaushal M10 years v3.8.0commit c6d9e23b54...Niels de Vos10 years v3.7.12rc1commit bac2781a2d...Vijay Bellur10 years v3.8rc2commit d53bfc6f04...Niels de Vos10 years v3.8rc1commit 74ab2d6f10...Niels de Vos10 years v3.8rc0commit 0fadd46c2c...Niels de Vos10 years v3.9devcommit 60e340481a...Niels de Vos10 years v3.7.11commit b0bfc70048...Kaushal M10 years v3.7.10commit 889e92c722...Kaushal M10 years v3.7.9commit 1eece065f1...Vijay Bellur10 years v3.5.9commit ab52c1e696...Niels de Vos10 years v3.6.9commit 52f6c664a2...Raghavendra Bhat10 years v3.5.8commit 721b15a74d...Niels de Vos10 years v3.7.8commit 3db831788c...Pranith Kumar K10 years v3.7.7commit ccdfa49c90...Pranith Kumar K10 years v3.6.8commit b19a1d0798...Kaushal M10 years v3.5.7commit 3efd1b8997...Niels de Vos10 years v3.6.7commit 5d264dbcb7...Raghavendra Bhat10 years v3.7.6commit a3289b1d06...Raghavendra Talur10 years v3.7.5commit 25e581d42e...Pranith Kumar K10 years v3.6.6commit 69b5471d13...Raghavendra Bhat11 years v3.5.6commit 6a0faa1ff1...Niels de Vos11 years v3.7.4commit 300a69669a...Kaushal M11 years v3.6.5commit dfa2bfb289...Raghavendra Bhat11 years v3.7.3commit 918e430294...Kaushal M11 years v3.6.4commit 50b0c7baad...Raghavendra Bhat11 years v3.5.5commit 191725abf5...Niels de Vos11 years v3.7.2commit 568d7f4dda...Atin Mukherjee11 years v3.6.4beta2commit 83778a592f...Raghavendra Bhat11 years v3.5.4commit 55bd875f0b...Niels de Vos11 years v3.7.1commit f266dc6be5...Krishnan Parthasarathi11 years v3.6.4beta1commit 24b3db0768...Raghavendra Bhat11 years v3.7.0commit 5538051a64...Vijay Bellur11 years v3.7.0beta2commit a492b22f57...Niels de Vos11 years v3.7.0beta1commit 7e2baf9acd...Vijay Bellur11 years v3.6.3commit e7640557a6...Raghavendra Bhat11 years v3.8devcommit 08a1041ca9...Vijay Bellur11 years v3.7.0alpha0commit 8b987be340...Vijay Bellur11 years v3.4.7commit bcb906a9e2...Kaleb S. KEITHLEY11 years v3.5.4beta1commit 077185afe3...Niels de Vos11 years v3.6.3beta2commit 3d76e803e7...Raghavendra Bhat11 years v3.4.7beta4commit bcb906a9e2...Kaleb S. KEITHLEY11 years v3.4.7beta3commit fcd46d8e8f...Kaleb S. KEITHLEY11 years v3.4.7beta2commit 982f0fac53...Kaleb S. KEITHLEY11 years v3.4.7beta1commit b037cfe399...Kaleb S. KEITHLEY11 years v3.6.3beta1commit e312b0807b...Raghavendra Bhat11 years v3.6.2commit 709d471294...Raghavendra Bhat11 years v3.6.2beta2commit 443cda365c...Raghavendra Bhat11 years v3.6.2beta1commit 6e423ca790...Raghavendra Bhat11 years v3.5.3commit be560c6f41...Niels de Vos11 years v3.4.6commit ceaba0fc43...Kaleb S. KEITHLEY11 years v3.6.1commit 1ffdf112f7...Vijay Bellur11 years v3.6.0commit 3867bdb496...Vijay Bellur11 years v3.4.6beta2commit ceaba0fc43...Kaleb S. KEITHLEY11 years v3.5.3beta2commit a970fc0cd7...Niels de Vos11 years v3.5.3beta1commit db7d578da0...Niels de Vos11 years v3.6.0beta3commit 912eec63f4...Vijay Bellur12 years v3.6.0beta2commit dd80d06145...Vijay Bellur12 years v3.6.0beta1commit 936cf82d93...Vijay Bellur12 years v3.4.6beta1commit 1d4ef0b891...Kaleb S. KEITHLEY12 years v3.5.2commit 9bb7cb9ff1...Niels de Vos12 years v3.4.5commit 7b564b8800...Kaleb S. KEITHLEY12 years v3.5.2beta1commit d5f72dc496...Niels de Vos12 years v3.6.0alpha1commit 6aafb3a64a...Vijay Bellur12 years v3.7devcommit 52da727e75...Vijay Bellur12 years v3.4.5beta2commit e311014d94...Kaleb S. KEITHLEY12 years v3.4.5beta1commit ecc21940ea...Kaleb S. KEITHLEY12 years v3.5.1commit b8f6798c17...Niels de Vos12 years v3.5.1beta2commit b167a0ca7f...Niels de Vos12 years v3.4.4commit 8005d56f08...Kaleb S. KEITHLEY12 years v3.4.4beta1commit 8005d56f08...Kaleb S. KEITHLEY12 years v3.5.1betacommit d74024b470...Niels de Vos12 years v3.5.0commit 2e767af207...Vijay Bellur12 years v3.5.0beta5commit 4e0659a779...Vijay Bellur12 years v3.4.3commit b0d6d20ab2...Kaleb S. KEITHLEY12 years v3.4.3beta2commit 33cc417e64...Kaleb S. KEITHLEY12 years v3.4.3beta1commit 010a9a7867...Kaleb S. KEITHLEY12 years v3.5.0beta4commit e779cc8c32...Vijay Bellur12 years v3.4.3alpha1commit 945c6de4e6...Kaleb S. KEITHLEY12 years v3.5.0beta3commit b319f01ecd...Vijay Bellur12 years v3.5.0beta2commit a338c4fbc4...Vijay Bellur12 years v3.5beta1commit 1350c7193e...Vijay Bellur12 years v3.4.2commit 098fd71353...Vijay Bellur12 years v3.4.2qa5commit b2ee85b3e4...Vijay Bellur12 years v3.4.2qa4commit 1832dbf0ba...Vijay Bellur12 years v3.4.2qa3commit 790c2813ef...Vijay Bellur12 years v3.4.2qa2commit 1e40a57d16...Vijay Bellur12 years v3.5.0qa3commit b58810f5df...Anand Avati12 years v3.5qa2commit a25d321bad...Vijay Bellur12 years v3.4.2qa1commit 88dc9d8899...Anand Avati12 years v3.5.0qa1commit f21cefed29...Vijay Bellur12 years v3.4.1commit 56769c4db9...Vijay Bellur13 years v3.4.1rc1commit 56769c4db9...Anand Avati13 years v3.4.1qa3commit 04163fc4ba...Anand Avati13 years v3.4.1qa2commit 536eccde0b...Anand Avati13 years v3.4.1qa1commit 8565d383a1...Vijay Bellur13 years v3.3.2commit 34bca063cd...Vijay Bellur13 years v3.4.0commit b92b98ef9a...Vijay Bellur13 years v3.3.2qa4commit 34bca063cd...Vijay Bellur13 years v3.4.0beta4commit 505f57e07c...Vijay Bellur13 years v3.4.0beta3commit 2fda7a9de2...Vijay Bellur13 years v3.4.0beta2commit df83bc05ff...Vijay Bellur13 years v3.3.2qa3commit 1a7e6053d3...Vijay Bellur13 years v3.3.2qa2commit 0ab16bb29a...Vijay Bellur13 years v3.4.0beta1commit 5ac55756cd...Anand Avati13 years v3.4.0alpha3commit 92729add67...Vijay Bellur13 years v3.3.2qa1commit d836002fce...Vijay Bellur13 years v3.4.0alpha2commit c37546cf11...Anand Avati13 years v3.4.0alphacommit 765fdd0809...Vijay Bellur13 years v3.4.0qa8commit 315ee9c4e0...Vijay Bellur13 years v3.4.0qa7commit 6fd654dc94...Vijay Bellur13 years v3.3.1commit e7f14ad073...Vijay Bellur13 years v3.4.0qa6commit e8c75fd929...Vijay Bellur13 years v3.3.0.5rhs-40commit 6e3efac008...Vijay Bellur13 years v3.3.0.5rhs-39commit 6e3efac008...Vijay Bellur13 years v3.4.0qa5commit fef94c2acf...Vijay Bellur13 years v3.4.0qa4commit 48d749dda3...Vijay Bellur13 years v3.4.0qa3commit c85a3eee54...Vijay Bellur13 years v3.3.1qa3commit 517a9d2450...Vijay Bellur14 years v3.3.1qa2commit ace4cae71c...Vijay Bellur14 years v3.3.1qa1commit 753f8c1324...Vijay Bellur14 years v3.2.7commit 092dc2676b...Vijay Bellur14 years v3.2.7qa2commit 2533d2b56b...Vijay Bellur14 years v3.3.0commit 1b79849119...Vijay Bellur14 years v3.3.0qa45commit 493ef71222...Anand Avati14 years v3.3.0qa44commit 647f561f6a...Vijay Bellur14 years v3.3.0qa43commit 9d4c8b3909...Vijay Bellur14 years v3.3.0qa42commit d54d9e9412...Vijay Bellur14 years v3.3.0beta4commit bdd240eca1...Vijay Bellur14 years v3.3.0qa41commit 8852f95869...Vijay Bellur14 years v3.3.0qa40commit 9189ff9739...Vijay Bellur14 years v3.3.0qa39commit 81df001b3e...Vijay Bellur14 years v3.3.0qa38commit fdcbf065a9...Vijay Bellur14 years v3.3.0qa37commit 66fddb979d...Vijay Bellur14 years v3.3.0qa36commit 857ba84a23...Vijay Bellur14 years v3.3.0qa35commit 80eeaab2be...Vijay Bellur14 years v3.3.0beta3commit df8e2f53b7...Vijay Bellur14 years v3.2.7qa1commit deea482def...Vijay Bellur14 years v3.3.0qa34commit 4bb82b2c77...Vijay Bellur14 years v3.3.0qa33commit 1043dedfb5...Vijay Bellur14 years v3.3.0qa32commit af0eb165f6...Vijay Bellur14 years v3.3.0qa31commit c40b9975d0...Vijay Bellur14 years v3.3.0qa30commit d98c3e1934...Vijay Bellur14 years v3.3.0qa29commit 65c6e3706f...Anand Avati14 years v3.3.0qa28commit 212d739886...Vijay Bellur14 years v3.2.6p3commit 410b1092e6...Vijay Bellur14 years v3.2.6p2commit 5ce988633d...Vijay Bellur14 years v3.3.0qa27commit 152a0194e7...Vijay Bellur14 years v3.2.6commit fafd5c17c0...Vijay Bellur14 years v3.2.6qa6commit fafd5c17c0...Vijay Bellur14 years v3.2.6qa5commit e657569da2...Vijay Bellur14 years v3.3.0qa26commit f6a779ffc5...Vijay Bellur14 years v3.2.6qa4commit 8127a6f35e...Vijay Bellur14 years v3.3.0qa25commit 468768d280...Vijay Bellur14 years v3.3.0qa24commit 88c6c11813...Vijay Bellur14 years v3.3.0qa23commit 42cc043875...Vijay Bellur14 years v3.3.0qa22commit c8d47f056e...Vijay Bellur14 years v3.2.6qa3commit cd3ad588f2...Anand Avati14 years v3.2.6qa2commit fa580e9299...Anand Avati14 years v3.3.0qa21commit 83a3daf7c2...Vijay Bellur14 years v3.3.0qa20commit 0694749c3e...Vijay Bellur14 years v3.2.6qa1commit 1020a3dfe9...Anand Avati14 years v3.3.0qa19commit be003fbb3a...Vijay Bellur14 years v3.3.0qa18commit d7d9f3d400...Vijay Bellur14 years v3.3.0qa17commit 0074f20844...Vijay Bellur14 years v3.3.0qa16commit 7235e5b1af...Vijay Bellur14 years v3.3.0qa15commit 289c2902d6...Vijay Bellur14 years v3.2.5commit edf9551b38...Vijay Bellur14 years v3.2.5qa9commit edf9551b38...Vijay Bellur14 years v3.2.5qa8commit 252c9e5cf2...Vijay Bellur14 years v3.2.5qa7commit d2a05724a6...Vijay Bellur14 years v3.2.5qa6commit 51601b2bff...Vijay Bellur14 years v3.2.5qa5commit 8668da9744...Vijay Bellur14 years v3.2.5qa4commit bca358604d...Vijay Bellur14 years v3.2.5qa3commit 3b0eecb53f...Vijay Bellur14 years v3.2.5qa2commit 7dcc94cf1f...Vijay Bellur14 years v3.2.5qa1commit 449f31c8ae...Vijay Bellur14 years v3.3.0qa14commit 4235f7a74e...Vijay Bellur14 years v3.2.4commit da73b31942...Vijay Bellur15 years v3.3.0qa13commit 795c8996c1...Vijay Bellur15 years v3.2.4qa5commit 6c5d3e40a6...Vijay Bellur15 years v3.3.0qa12commit 16b7e3bf20...Vijay Bellur15 years v3.2.4qa4commit edd9461647...Vijay Bellur15 years v3.3.0qa11commit 7658047903...Vijay Bellur15 years v3.3.0qa10commit 4765dd1a1c...Vijay Bellur15 years v3.2.4qa3commit 9564e09e53...Vijay Bellur15 years v3.2.4qa2commit 0f9502d5eb...Vijay Bellur15 years v3.2.4qa1commit 6fe790ee35...Vijay Bellur15 years v3.3.0qa9commit b827cdb230...Vijay Bellur15 years v3.1.7commit a2739b842b...Vijay Bellur15 years v3.1.7qa4commit a2739b842b...Vijay Bellur15 years v3.1.7qa3commit f9fa468090...Vijay Bellur15 years v3.1.7qa2commit d120020fd5...Vijay Bellur15 years v3.1.7qa1commit 561bba7ae4...Vijay Bellur15 years v3.2.3commit 1acef91232...Vijay Bellur15 years v3.3beta2commit b827cdb230...Vijay Bellur15 years v3.3.0qa8commit b827cdb230...Vijay Bellur15 years v3.3.0qa7commit 601f5725a0...Vijay Bellur15 years v3.2.3qa6commit 1acef91232...Vijay Bellur15 years v3.3.0qa6commit b6e3e9c480...Vijay Bellur15 years v3.3.0qa5commit 5ace31ac21...Vijay Bellur15 years v3.2.3qa5commit 10f69943c4...Vijay Bellur15 years v3.3.0qa4commit 350ae611ca...Vijay Bellur15 years v3.2.3qa4commit 0564d1198b...Vijay Bellur15 years v3.2.3qa3commit 2f53b7857c...Vijay Bellur15 years v3.3.0qa3commit 6073fc29bf...Vijay Bellur15 years v3.3.0qa2commit a0071bdf2a...Vijay Bellur15 years v3.1.6commit 98a487f842...Vijay Bellur15 years v3.1.6qa8commit ef517191c5...Vijay Bellur15 years v3.3.0qa1commit 1b5a860f15...Vijay Bellur15 years v3.1.6qa7commit 05e3dcc9b1...Vijay Bellur15 years v3.2.3qa1commit 62adb4d1c2...Vijay Bellur15 years v3.1.6qa6commit c92f45c742...Anand Avati15 years v3.1.6qa5commit 0c01d96a06...Vijay Bellur15 years v3.1.6qa4commit dfc317a77f...Anand Avati15 years v3.1.6qa3commit 967199adb1...Anand Avati15 years v3.1.6qa2commit 7382534ac1...Anand Avati15 years v3.3beta1commit fd60df8798...Anand Avati15 years v3.2.2commit c82a9d438b...Anand Avati15 years v3.2.2qa8commit c82a9d438b...Anand Avati15 years v3.1.6qa1commit 0c9648c1a0...Anand Avati15 years v3.2.2qa7commit 972c4a3c34...Anand Avati15 years v3.2.2qa5commit 7685cec583...Anand Avati15 years v3.2.2qa4commit 817bda650c...Anand Avati15 years v3.2.2qa3commit 1b01b64894...Anand Avati15 years v3.2.2qa2commit 5c20eb3bbf...Vijay Bellur15 years v3.2.2qa1commit 6ca8604204...Anand Avati15 years v3.1.5commit a64d1a8157...Anand Avati15 years v3.1.5qa4commit a64d1a8157...Vijay Bellur15 years v3.1.5qa3commit 5bcb4ddca3...Anand Avati15 years v3.1.5qa2commit 25da481bc5...Anand Avati15 years v3.2.1commit c5321286e5...Anand Avati15 years v3.2.1qa5commit c5321286e5...Anand Avati15 years v3.2.1qa4commit 8dee45b3a7...Anand Avati15 years v3.2.1qa3commit c51b2f7c6c...Anand Avati15 years v3.2.1qa2commit 05c4dced82...Anand Avati15 years v3.2.1qa1commit ef39bf9d23...Anand Avati15 years v3.1.5qa1commit 5f1efbc32d...Vijay Bellur15 years v3.0.8commit ee744e0908...Vijay Bellur15 years v3.0.8qa1commit ee744e0908...Vijay Bellur15 years v3.2.0commit 77f485dc30...Anand Avati15 years branchpoint-3.2commit 1f06da6875...Anand Avati15 years v3.2.0qa16commit 625f779dba...Anand Avati15 years v3.2.0qa15commit b5848ed21b...Anand Avati15 years v3.2.0qa14commit 72b57e311f...Anand Avati15 years v3.2.0qa13commit da66edbe92...Vijay Bellur15 years v3.2.0qa12commit 1c5706c43d...Anand Avati15 years v3.2.0qa11commit 902478bf9e...Anand Avati15 years v3.1.4commit 7b368061ea...Anand Vishweshwaran Avati15 years v3.2.0qa10commit 6db2b422f0...Vijay Bellur15 years v3.1.4qa3commit 7b368061ea...Vijay Bellur15 years v3.2.0qa9commit 56814fefa0...Vijay Bellur15 years v3.2.0qa8commit 35dea20e40...Vijay Bellur15 years v3.1.4qa2commit 2b55a49045...Vijay Bellur15 years v3.2.0qa7commit f338193a70...Vijay Bellur15 years v3.2.0qa6commit 498dbbc506...Vijay Bellur15 years v3.2.0qa5commit 408a2b0298...Vijay Bellur15 years v3.1.3solariscommit 9c0d73d37b...Anand V. Avati15 years v3.2.0qa4commit bd132d8e41...Vijay Bellur15 years v3.1.3commit 1641d8bb4c...Vijay Bellur15 years v3.1.3qa8commit c549807c23...Vijay Bellur15 years v3.1.3qa7commit 5017098718...Vijay Bellur15 years v3.1.3qa6commit 93845ea7cc...Vijay Bellur15 years v3.1.3qa5commit cad088fe3a...Vijay Bellur15 years v3.1.3qa4commit 135aca330b...Pranith K15 years v3.1.3qa3commit 5b909c83de...Vijay Bellur15 years v3.1.3qa2commit 77d82df9d5...Rahul15 years v3.1.3qa1commit b99e0e0678...Vijay Bellur15 years v3.1.2gsyncqa6commit 3bad56d0d3...Amar Tumballi15 years v3.1.2gsyncqa5commit a139e43f48...Mohammed Junaid Ahmed15 years v3.1.2gsyncqa4commit cbd61752ff...Raghavendra G15 years v3.1.2commit f2a067c4fe...Vijay Bellur15 years v3.1.2qa4commit 5368b898fa...Raghavendra G15 years v3.1.2qa3commit cbba1c3f55...Shehjar Tikoo15 years v3.1.2qa2commit df5f71b401...Amar Tumballi15 years v3.1.2qa1commit 147b20c4a4...Anand Avati15 years v3.0.7commit 6da4cc87ff...Anand V. Avati15 years v3.0.7qa2commit 6da4cc87ff...Raghavendra Bhat15 years v3.0.7qa1commit e602c69bed...Vijay Bellur15 years v3.1.1commit 69a62d2a6d...Anand V. Avati15 years v3.1.1qa11commit c0be54cfcd...Anand Avati15 years v3.1.1qa10commit b605865986...Shehjar Tikoo15 years v3.1.1qa9commit f6785d2b49...Anand Avati15 years v3.1.1qa8commit ce9f328aa9...Anand Avati15 years v3.1.1qa7commit 961fc917e8...shishir gowda15 years v3.1.1qa6commit d6f1f04ef0...Raghavendra G15 years v3.1.1qa5commit eaf0618e47...Anand Avati15 years v3.1.1qa4commit 8ca96737a9...shishir gowda15 years v3.1.1qa3commit 1b4613936e...Raghavendra Bhat15 years v3.1.1qa2commit c65be2d304...Shehjar Tikoo15 years v3.1.1qa1commit b2f195720b...Vijay Bellur15 years v3.0.6commit 5cbc81a8d3...Vijay Bellur15 years v3.0.6rc2commit 5cbc81a8d3...Pavan Sondur15 years v3.0.6rc1commit ef4005be3a...Vijay Bellur15 years v3.1.0commit 6e6b4b4fd0...Vijay Bellur15 years v3.1.0qa46commit f182151cf3...Vijay Bellur15 years v3.1.0qa45commit 27c8b7a369...Vijay Bellur15 years v3.1.0qa44commit 2eb9861cbc...Kaushik BV15 years v3.1.0qa43commit 13f1fff6da...Kaushik BV15 years v3.1.0qa42commit cd5c9df4b6...Pavan Sondur15 years v3.1.0qa41commit 4c7ca7ec15...Pranith K15 years v3.1.0qa40commit ca8615173f...Pranith K15 years v3.1.0qa39commit 609a89ceac...Kaushik BV15 years v3.1.0qa38commit 365c814f7b...Pranith K16 years v3.1.0qa37commit 17295c37f9...Amar Tumballi16 years v3.1.0qa36commit 760daf2889...Amar Tumballi16 years v3.1.0qa35commit 6686ddc227...Vijay Bellur16 years v3.1.0qa34commit dbbec1261e...Amar Tumballi16 years v3.1.0qa33commit 336e2df7b7...Shehjar Tikoo16 years v3.1.0qa32commit 0b68f788a8...Vijay Bellur16 years v3.1.0qa31commit 6e952607f1...Raghavendra G16 years v3.1.0betacommit c5a5fea9e6...Pavan Sondur16 years v3.1.0qa30commit c5a5fea9e6...Pavan Sondur16 years v3.1.0qa29commit 7f645c3ac3...Amar Tumballi16 years v3.1.0qa28commit 435603caeb...Amar Tumballi16 years v3.1.0qa27commit 6dbd618548...Raghavendra G16 years v3.1.0qa26commit 4e6fb304ce...Shehjar Tikoo16 years v3.1.0qa25commit 47bc630dca...Shehjar Tikoo16 years v3.1.0qa24commit 0e2c2f46dd...Raghavendra Bhat16 years v3.1.0qa23commit e7535ad313...Pranith Kumar K16 years v3.1.0qa22commit a9cbdd2916...Amar Tumballi16 years v3.1.0qa21commit 993edcc972...Balamurugan Arumugam16 years v3.1.0alphacommit 288040196c...Vijay Bellur16 years v3.1.0qa20commit c1f4f9ba17...Raghavendra Bhat16 years v3.1.0qa19commit 9b226cc588...Vijay Bellur16 years v3.1.0qa18commit 440ffb55f0...Pavan Sondur16 years v3.1.0qa17commit 37f01b2714...Raghavendra G16 years v3.1.0qa16commit 1e99540dc0...Pranith Kumar K16 years v3.1.0qa15commit b3a4a0e885...Vijay Bellur16 years v3.1.0qa14commit c02661a69d...Vijay Bellur16 years v3.1.0qa13commit 780023f5e5...Vijay Bellur16 years v3.1.0qa12commit e1afe36eb3...Amar Tumballi16 years v3.1.0qa11commit fb3cb751f1...Amar Tumballi16 years v3.1.0qa10commit 4a62b116ef...Vijay Bellur16 years v3.1.0qa9commit d13ddaf872...Anand V. Avati16 years v3.1.0qa8commit df4a7d7576...Anand V. Avati16 years v3.1.0prealpha4commit 12e997d863...Anand V. Avati16 years v3.1.0prealpha3commit f51252fa0d...Anand V. Avati16 years v3.1.0prealpha2commit 03df087149...Anand V. Avati16 years v3.1.0prealpha1commit 7e6b5454ad...Anand V. Avati16 years v3.1.0qa7commit ab72e06f7b...Anand V. Avati16 years v3.1.0qa6commit 0ec245abd6...Anand V. Avati16 years v3.1.0qa5commit 9349f559dc...Anand V. Avati16 years v3.1.0qa4commit 4f4dcb98a7...Pavan Sondur16 years v3.1.0qa3commit 543f9ef575...Anand V. Avati16 years v3.1.0qa2commit 931a59e2b9...Anand V. Avati16 years v3.0.5commit 002d35bfb1...Anand V. Avati16 years v3.0.5rc9commit 2e35a3eef6...Anand Avati16 years v3.0.5rc8commit e5d4a9bac5...Pavan Sondur16 years v3.0.5rc7commit da1123b9d8...Pavan Sondur16 years v3.0.5rc6commit 4437568045...Vijay Bellur16 years v3.0.5rc5commit c9676d181d...Anand V. Avati16 years v3.0.5rc4commit e338603747...Raghavendra G16 years v3.0.5rc3commit af5ac6eb2e...Anand V. Avati16 years v3.0.5rc2commit 6d9b11dba6...Raghavendra G16 years v2.0.10rc3commit b8f058432a...Pavan Sondur16 years v3.0.5rc1commit f55b20076b...Raghavendra Bhat16 years v2.0.10rc2commit 6607f92f57...Vijay Bellur16 years v3.0.4commit aaeddc5084...Anand V. Avati16 years v3.0.4rc5commit aaeddc5084...Anand Avati16 years v3.0.4rc4commit 6f67027d78...Vijay Bellur16 years v3.0.4rc3commit 391023ddc5...Raghavendra G16 years v3.0.4rc2commit 4cb614047e...Amar Tumballi16 years v3.0.4rc1commit 9aed760471...