diff options
| author | Raghavendra G <raghavendra@gluster.com> | 2009-10-08 06:21:52 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-09 00:50:03 -0700 | 
| commit | 94f24f06644b9e872f4b34f100017672b5d08978 (patch) | |
| tree | e613c1a2bacf652378fe71e8bf7d340b25dc6eba /xlators | |
| parent | ebbe78de0281735f683d5414b34d1418e8c9d5b8 (diff) | |
performance/stat-prefetch: implement sp_inodelk.
- path has to be looked up in inodelk if it is not already looked up.
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')
| -rw-r--r-- | xlators/performance/stat-prefetch/src/stat-prefetch.c | 83 | 
1 files changed, 83 insertions, 0 deletions
diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c index faf648a21..2b9954dbb 100644 --- a/xlators/performance/stat-prefetch/src/stat-prefetch.c +++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c @@ -3337,6 +3337,88 @@ out:  int32_t +sp_inodelk_helper (call_frame_t *frame, xlator_t *this, const char *volume, +                   loc_t *loc, int32_t cmd, struct flock *lock) +{ +        uint64_t        value     = 0; +        sp_inode_ctx_t *inode_ctx = NULL; +        int32_t         ret       = 0, op_ret = -1, op_errno = -1; +          +        ret = inode_ctx_get (loc->inode, this, &value); +        if (ret == -1) { +                gf_log (this->name, GF_LOG_DEBUG, "context not set in inode " +                        "(%p)", loc->inode); +                op_errno = EINVAL; +                goto unwind; +        } + +        inode_ctx = (sp_inode_ctx_t *)(long) value; +        GF_VALIDATE_OR_GOTO_WITH_ERROR (this->name, inode_ctx, unwind, op_errno, +                                        EINVAL); + +        LOCK (&inode_ctx->lock); +        { +                op_ret = inode_ctx->op_ret; +                op_errno = inode_ctx->op_errno; +        } +        UNLOCK (&inode_ctx->lock); + +        if (op_ret == -1) { +                goto unwind; +        } + +        STACK_WIND (frame, sp_err_cbk, FIRST_CHILD(this), +                    FIRST_CHILD(this)->fops->inodelk, volume, loc, cmd, lock); + +        return 0; + +unwind: +        SP_STACK_UNWIND (frame, -1, op_errno); +        return 0; +} + + +int32_t +sp_inodelk (call_frame_t *frame, xlator_t *this, const char *volume, loc_t *loc, +            int32_t cmd, struct flock *lock) +{ +        int32_t         op_errno     = -1; +        call_stub_t    *stub         = NULL; +        char            can_wind     = 0, need_lookup = 0, need_unwind = 1; + +        GF_VALIDATE_OR_GOTO_WITH_ERROR (this->name, loc, out, op_errno, +                                        EINVAL); +        GF_VALIDATE_OR_GOTO_WITH_ERROR (this->name, loc->inode, out, +                                        op_errno, EINVAL); + +        stub = fop_inodelk_stub (frame, sp_inodelk_helper, volume, loc, cmd, +                                 lock); +        if (stub == NULL) { +                op_errno = ENOMEM; +                gf_log (this->name, GF_LOG_ERROR, "out of memory"); +                goto out; +        } + +        sp_process_inode_ctx (frame, this, loc, stub, &need_unwind, +                              &need_lookup, &can_wind, &op_errno); + +out: +        if (need_unwind) { +                SP_STACK_UNWIND (frame, -1, op_errno); +        } else if (need_lookup) { +                STACK_WIND (frame, sp_lookup_cbk, FIRST_CHILD(this), +                            FIRST_CHILD(this)->fops->lookup, loc, NULL); +        } else if (can_wind) { +                STACK_WIND (frame, sp_err_cbk, FIRST_CHILD(this), +                            FIRST_CHILD(this)->fops->inodelk, volume, loc, cmd, +                            lock); +        } +          +        return 0; +} + + +int32_t  sp_forget (xlator_t *this, inode_t *inode)  {          struct stat *buf   = NULL; @@ -3433,6 +3515,7 @@ struct xlator_fops fops = {          .stat        = sp_stat,          .access   = sp_access,          .getxattr    = sp_getxattr, +        .inodelk     = sp_inodelk,  };  struct xlator_mops mops = {  | 
