diff options
| -rw-r--r-- | xlators/protocol/client/src/client.c | 14 | ||||
| -rw-r--r-- | xlators/protocol/client/src/client3_1-fops.c | 4 | 
2 files changed, 4 insertions, 14 deletions
diff --git a/xlators/protocol/client/src/client.c b/xlators/protocol/client/src/client.c index 93394ebfb..82d90d257 100644 --- a/xlators/protocol/client/src/client.c +++ b/xlators/protocol/client/src/client.c @@ -292,7 +292,6 @@ client_releasedir (xlator_t *this, fd_t *fd)          clnt_conf_t *conf = NULL;          rpc_clnt_procedure_t *proc = NULL;          clnt_args_t  args = {0,}; -        call_frame_t *frame = NULL;          conf = this->private;          if (!conf || !conf->fops) @@ -308,11 +307,7 @@ client_releasedir (xlator_t *this, fd_t *fd)                  goto out;          }          if (proc->fn) { -                frame = create_frame (this, this->ctx->pool); -                if (!frame) { -                        goto out; -                } -                ret = proc->fn (frame, this, &args); +                ret = proc->fn (NULL, this, &args);          }  out:          if (ret) @@ -328,7 +323,6 @@ client_release (xlator_t *this, fd_t *fd)          clnt_conf_t *conf = NULL;          rpc_clnt_procedure_t *proc = NULL;          clnt_args_t  args = {0,}; -        call_frame_t *frame = NULL;          conf = this->private;          if (!conf || !conf->fops) @@ -343,11 +337,7 @@ client_release (xlator_t *this, fd_t *fd)                  goto out;          }          if (proc->fn) { -                frame = create_frame (this, this->ctx->pool); -                if (!frame) { -                        goto out; -                } -                ret = proc->fn (frame, this, &args); +                ret = proc->fn (NULL, this, &args);          }  out:          if (ret) diff --git a/xlators/protocol/client/src/client3_1-fops.c b/xlators/protocol/client/src/client3_1-fops.c index 8558d6837..fa9b93039 100644 --- a/xlators/protocol/client/src/client3_1-fops.c +++ b/xlators/protocol/client/src/client3_1-fops.c @@ -2337,7 +2337,7 @@ client3_1_releasedir (call_frame_t *frame, xlator_t *this,          clnt_args_t         *args        = NULL;          int64_t              remote_fd   = -1; -        if (!frame || !this || !data) +        if (!this || !data)                  goto out;          args = data; @@ -2379,7 +2379,7 @@ client3_1_release (call_frame_t *frame, xlator_t *this,          clnt_args_t      *args          = NULL;          lk_heal_state_t   lk_heal_state = GF_LK_HEAL_DONE; -        if (!frame || !this || !data) +        if (!this || !data)                  goto out;          args = data;  | 
