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 /libglusterfs/src/xlator.h | |
| 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 'libglusterfs/src/xlator.h')
| -rw-r--r-- | libglusterfs/src/xlator.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/libglusterfs/src/xlator.h b/libglusterfs/src/xlator.h index 2e815af911a..4adbec2e5d8 100644 --- a/libglusterfs/src/xlator.h +++ b/libglusterfs/src/xlator.h @@ -812,11 +812,14 @@ typedef int32_t (*dumpop_inode_t) (xlator_t *this);  typedef int32_t (*dumpop_fd_t)  (xlator_t   *this); +typedef int32_t (*dumpop_inodectx_t) (xlator_t *this, inode_t *ino); +  struct xlator_dumpops {  	dumpop_priv_t            priv;  	dumpop_inode_t           inode;          dumpop_fd_t              fd; +	dumpop_inodectx_t        inodectx;  };  typedef struct xlator_list {  | 
