diff options
author | Raghavendra G <raghavendra@gluster.com> | 2009-08-23 22:30:32 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-09-08 01:41:36 -0700 |
commit | 81d858f16cba61dfdf9f4b1348703d2e5358a0ad (patch) | |
tree | 6e3da1d298e44588ab70f7245b9c4b6faf9b23f8 | |
parent | ff9a9eae29edc7927fea9d6bf006c8b181e2bbd7 (diff) |
performance/stat-prefetch: implement sp_symlink.
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
-rw-r--r-- | xlators/performance/stat-prefetch/src/stat-prefetch.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c index 98cecc51c73..0a78cb51aef 100644 --- a/xlators/performance/stat-prefetch/src/stat-prefetch.c +++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c @@ -909,6 +909,35 @@ unwind: int32_t +sp_symlink (call_frame_t *frame, xlator_t *this, const char *linkpath, + loc_t *loc) +{ + int32_t ret = 0; + + GF_VALIDATE_OR_GOTO (this->name, loc, unwind); + GF_VALIDATE_OR_GOTO (this->name, loc->parent, unwind); + GF_VALIDATE_OR_GOTO (this->name, loc->path, unwind); + GF_VALIDATE_OR_GOTO (this->name, loc->name, unwind); + GF_VALIDATE_OR_GOTO (this->name, loc->inode, unwind); + + ret = sp_cache_remove_parent_entry (frame, this, (char *)loc->path); + if (ret == -1) { + gf_log (this->name, GF_LOG_ERROR, "out of memory"); + goto unwind; + } + + STACK_WIND (frame, sp_new_entry_cbk, FIRST_CHILD(this), + FIRST_CHILD(this)->fops->symlink, linkpath, loc); + + return 0; + +unwind: + SP_STACK_UNWIND (frame, -1, errno, loc->inode, NULL); + return 0; +} + + +int32_t sp_forget (xlator_t *this, inode_t *inode) { struct stat *buf = NULL; @@ -958,6 +987,7 @@ struct xlator_fops fops = { .opendir = sp_opendir, .mkdir = sp_mkdir, .mknod = sp_mknod, + .symlink = sp_symlink, }; struct xlator_mops mops = { |