diff options
author | Vijay Bellur <vijay@gluster.com> | 2009-09-15 04:47:50 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-09-16 07:11:37 -0700 |
commit | 9fd8f212bc1f6031b9ad7eaaf014d39916881947 (patch) | |
tree | 788a6950630ee1df028c9d5cddecee038fe9fc49 /xlators/protocol | |
parent | dcfc4bdd5962ad18665d9ad3f3309884c941845e (diff) |
Dumop inodectx added
Added dumpop inodectx.
Support for dumop inodectx added in dht, locks and client-protocol.
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 'xlators/protocol')
-rw-r--r-- | xlators/protocol/client/src/client-protocol.c | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/xlators/protocol/client/src/client-protocol.c b/xlators/protocol/client/src/client-protocol.c index bd6854caa6d..db4e507ae1a 100644 --- a/xlators/protocol/client/src/client-protocol.c +++ b/xlators/protocol/client/src/client-protocol.c @@ -6105,7 +6105,7 @@ client_priv_dump (xlator_t *this) conf = this->private; if (!conf) { - gf_log (this->name, GF_LOG_WARNING, + gf_log (this->name, GF_LOG_WARNING, "conf null in xlator"); return -1; } @@ -6141,6 +6141,31 @@ client_priv_dump (xlator_t *this) } +int32_t +client_inodectx_dump (xlator_t *this, inode_t *inode) +{ + ino_t par = 0; + int ret = -1; + char key[GF_DUMP_MAX_BUF_LEN]; + + if (!inode) + return -1; + + if (!this) + return -1; + + ret = inode_ctx_get (inode, this, &par); + + if (ret != 0) + return ret; + + gf_proc_dump_build_key(key, "xlator.protocol.client", + "%s.inode.%ld.par", + this->name,inode->ino); + gf_proc_dump_write(key, "%ld", par); + + return 0; +} /* * client_protocol_notify - notify function for client protocol @@ -6358,6 +6383,7 @@ struct xlator_cbks cbks = { struct xlator_dumpops dumpops = { .priv = client_priv_dump, + .inodectx = client_inodectx_dump, }; struct volume_options options[] = { |