diff options
author | Raghavendra G <raghavendra@gluster.com> | 2009-08-23 22:30:58 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-09-08 01:41:46 -0700 |
commit | d943335cf06c6569d6517e073b1619a8ea013298 (patch) | |
tree | bb6b1ad4acadf5c9b698f3bd2a9a3efb45a3b742 /xlators/performance/stat-prefetch | |
parent | cde006b0f117944761e97e81d44362a046676422 (diff) |
performance/stat-prefetch: implement sp_chown.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 221 (stat prefetch implementation)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=221
Diffstat (limited to 'xlators/performance/stat-prefetch')
-rw-r--r-- | xlators/performance/stat-prefetch/src/stat-prefetch.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c index ab0f9a71fb9..458ddf6d443 100644 --- a/xlators/performance/stat-prefetch/src/stat-prefetch.c +++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c @@ -1001,6 +1001,30 @@ unwind: int32_t +sp_chown (call_frame_t *frame, xlator_t *this, loc_t *loc, uid_t uid, gid_t gid) +{ + sp_cache_t *cache = NULL; + + GF_VALIDATE_OR_GOTO (this->name, loc, unwind); + GF_VALIDATE_OR_GOTO (this->name, loc->parent, unwind); + GF_VALIDATE_OR_GOTO (this->name, loc->name, unwind); + + cache = sp_get_cache_inode (this, loc->parent, frame->root->pid); + if (cache) { + sp_cache_remove_entry (cache, (char *)loc->name, 0); + } + + STACK_WIND (frame, sp_stbuf_cbk, FIRST_CHILD(this), + FIRST_CHILD(this)->fops->chown, loc, uid, gid); + return 0; + +unwind: + SP_STACK_UNWIND (frame, -1, errno, NULL); + return 0; +} + + +int32_t sp_forget (xlator_t *this, inode_t *inode) { struct stat *buf = NULL; @@ -1053,6 +1077,7 @@ struct xlator_fops fops = { .symlink = sp_symlink, .link = sp_link, .fchmod = sp_fchmod, + .chown = sp_chown, }; struct xlator_mops mops = { |