diff options
author | Raghavendra G <raghavendra@zresearch.com> | 2009-03-04 04:00:24 -0800 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-03-05 01:04:34 +0530 |
commit | 762b1f9aefe07971178e584e288833bf142f402b (patch) | |
tree | 75aa359b245ca2f95af82866abc937e47bdc6654 /libglusterfs/src/inode.h | |
parent | c8340e70f881dbb95d5238e588a7e985f6f04816 (diff) |
code changes in the usage of inode_ctx_get and inode_ctx_put after their implementation is changed to hold inode->lock.
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'libglusterfs/src/inode.h')
-rw-r--r-- | libglusterfs/src/inode.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libglusterfs/src/inode.h b/libglusterfs/src/inode.h index afcc1552e..d434668a3 100644 --- a/libglusterfs/src/inode.h +++ b/libglusterfs/src/inode.h @@ -149,8 +149,14 @@ inode_from_path (inode_table_t *table, const char *path); int +__inode_ctx_put (inode_t *inode, xlator_t *xlator, uint64_t value); + +int inode_ctx_put (inode_t *inode, xlator_t *xlator, uint64_t value); +int +__inode_ctx_get (inode_t *inode, xlator_t *xlator, uint64_t *value); + int inode_ctx_get (inode_t *inode, xlator_t *xlator, uint64_t *value); |