nfsd: Remove unneeded values in nfsd4_open()
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
41eb16702c
commit
6cd22668e8
|
@ -362,7 +362,6 @@ nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
|
||||||
{
|
{
|
||||||
__be32 status;
|
__be32 status;
|
||||||
struct svc_fh *resfh = NULL;
|
struct svc_fh *resfh = NULL;
|
||||||
struct nfsd4_compoundres *resp;
|
|
||||||
struct net *net = SVC_NET(rqstp);
|
struct net *net = SVC_NET(rqstp);
|
||||||
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
struct nfsd_net *nn = net_generic(net, nfsd_net_id);
|
||||||
|
|
||||||
|
@ -389,8 +388,7 @@ nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
|
||||||
copy_clientid(&open->op_clientid, cstate->session);
|
copy_clientid(&open->op_clientid, cstate->session);
|
||||||
|
|
||||||
/* check seqid for replay. set nfs4_owner */
|
/* check seqid for replay. set nfs4_owner */
|
||||||
resp = rqstp->rq_resp;
|
status = nfsd4_process_open1(cstate, open, nn);
|
||||||
status = nfsd4_process_open1(&resp->cstate, open, nn);
|
|
||||||
if (status == nfserr_replay_me) {
|
if (status == nfserr_replay_me) {
|
||||||
struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
|
struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
|
||||||
fh_put(&cstate->current_fh);
|
fh_put(&cstate->current_fh);
|
||||||
|
|
Loading…
Reference in New Issue