mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-05 19:32:05 +07:00
NFSv4: Make open recovery track O_RDWR, O_RDONLY and O_WRONLY correctly
When recovering from a delegation recall or a network partition, we need to replay open(O_RDWR), open(O_RDONLY) and open(O_WRONLY) separately. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
e761692381
commit
864472e9b8
@ -58,7 +58,7 @@
|
|||||||
#define NFS4_POLL_RETRY_MAX (15*HZ)
|
#define NFS4_POLL_RETRY_MAX (15*HZ)
|
||||||
|
|
||||||
struct nfs4_opendata;
|
struct nfs4_opendata;
|
||||||
static int _nfs4_proc_open_confirm(struct nfs4_opendata *data);
|
static int _nfs4_proc_open(struct nfs4_opendata *data);
|
||||||
static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
|
static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *);
|
||||||
static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
|
static int nfs4_async_handle_error(struct rpc_task *, const struct nfs_server *);
|
||||||
static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry);
|
static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry);
|
||||||
@ -346,32 +346,108 @@ static struct nfs4_state *nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data
|
|||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state)
|
||||||
|
{
|
||||||
|
struct nfs_inode *nfsi = NFS_I(state->inode);
|
||||||
|
struct nfs_open_context *ctx;
|
||||||
|
|
||||||
|
spin_lock(&state->inode->i_lock);
|
||||||
|
list_for_each_entry(ctx, &nfsi->open_files, list) {
|
||||||
|
if (ctx->state != state)
|
||||||
|
continue;
|
||||||
|
get_nfs_open_context(ctx);
|
||||||
|
spin_unlock(&state->inode->i_lock);
|
||||||
|
return ctx;
|
||||||
|
}
|
||||||
|
spin_unlock(&state->inode->i_lock);
|
||||||
|
return ERR_PTR(-ENOENT);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, mode_t openflags, nfs4_stateid *stateid)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
opendata->o_arg.open_flags = openflags;
|
||||||
|
ret = _nfs4_proc_open(opendata);
|
||||||
|
if (ret != 0)
|
||||||
|
return ret;
|
||||||
|
memcpy(stateid->data, opendata->o_res.stateid.data,
|
||||||
|
sizeof(stateid->data));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state)
|
||||||
|
{
|
||||||
|
nfs4_stateid stateid;
|
||||||
|
struct nfs4_state *newstate;
|
||||||
|
int mode = 0;
|
||||||
|
int delegation = 0;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
/* memory barrier prior to reading state->n_* */
|
||||||
|
smp_rmb();
|
||||||
|
if (state->n_rdwr != 0) {
|
||||||
|
ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE, &stateid);
|
||||||
|
if (ret != 0)
|
||||||
|
return ret;
|
||||||
|
mode |= FMODE_READ|FMODE_WRITE;
|
||||||
|
if (opendata->o_res.delegation_type != 0)
|
||||||
|
delegation = opendata->o_res.delegation_type;
|
||||||
|
smp_rmb();
|
||||||
|
}
|
||||||
|
if (state->n_wronly != 0) {
|
||||||
|
ret = nfs4_open_recover_helper(opendata, FMODE_WRITE, &stateid);
|
||||||
|
if (ret != 0)
|
||||||
|
return ret;
|
||||||
|
mode |= FMODE_WRITE;
|
||||||
|
if (opendata->o_res.delegation_type != 0)
|
||||||
|
delegation = opendata->o_res.delegation_type;
|
||||||
|
smp_rmb();
|
||||||
|
}
|
||||||
|
if (state->n_rdonly != 0) {
|
||||||
|
ret = nfs4_open_recover_helper(opendata, FMODE_READ, &stateid);
|
||||||
|
if (ret != 0)
|
||||||
|
return ret;
|
||||||
|
mode |= FMODE_READ;
|
||||||
|
}
|
||||||
|
clear_bit(NFS_DELEGATED_STATE, &state->flags);
|
||||||
|
if (mode == 0)
|
||||||
|
return 0;
|
||||||
|
if (opendata->o_res.delegation_type == 0)
|
||||||
|
opendata->o_res.delegation_type = delegation;
|
||||||
|
opendata->o_arg.open_flags |= mode;
|
||||||
|
newstate = nfs4_opendata_to_nfs4_state(opendata);
|
||||||
|
if (newstate != NULL) {
|
||||||
|
if (opendata->o_res.delegation_type != 0) {
|
||||||
|
struct nfs_inode *nfsi = NFS_I(newstate->inode);
|
||||||
|
int delegation_flags = 0;
|
||||||
|
if (nfsi->delegation)
|
||||||
|
delegation_flags = nfsi->delegation->flags;
|
||||||
|
if (!(delegation_flags & NFS_DELEGATION_NEED_RECLAIM))
|
||||||
|
nfs_inode_set_delegation(newstate->inode,
|
||||||
|
opendata->owner->so_cred,
|
||||||
|
&opendata->o_res);
|
||||||
|
else
|
||||||
|
nfs_inode_reclaim_delegation(newstate->inode,
|
||||||
|
opendata->owner->so_cred,
|
||||||
|
&opendata->o_res);
|
||||||
|
}
|
||||||
|
nfs4_close_state(newstate, opendata->o_arg.open_flags);
|
||||||
|
}
|
||||||
|
if (newstate != state)
|
||||||
|
return -ESTALE;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* OPEN_RECLAIM:
|
* OPEN_RECLAIM:
|
||||||
* reclaim state on the server after a reboot.
|
* reclaim state on the server after a reboot.
|
||||||
*/
|
*/
|
||||||
static int _nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
|
static int _nfs4_do_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
|
||||||
{
|
{
|
||||||
struct inode *inode = state->inode;
|
struct nfs_delegation *delegation = NFS_I(state->inode)->delegation;
|
||||||
struct nfs_server *server = NFS_SERVER(inode);
|
struct nfs4_opendata *opendata;
|
||||||
struct nfs_delegation *delegation = NFS_I(inode)->delegation;
|
int delegation_type = 0;
|
||||||
struct nfs_openargs o_arg = {
|
|
||||||
.fh = NFS_FH(inode),
|
|
||||||
.id = sp->so_id,
|
|
||||||
.open_flags = state->state,
|
|
||||||
.clientid = server->nfs4_state->cl_clientid,
|
|
||||||
.claim = NFS4_OPEN_CLAIM_PREVIOUS,
|
|
||||||
.bitmask = server->attr_bitmask,
|
|
||||||
};
|
|
||||||
struct nfs_openres o_res = {
|
|
||||||
.server = server, /* Grrr */
|
|
||||||
};
|
|
||||||
struct rpc_message msg = {
|
|
||||||
.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR],
|
|
||||||
.rpc_argp = &o_arg,
|
|
||||||
.rpc_resp = &o_res,
|
|
||||||
.rpc_cred = sp->so_cred,
|
|
||||||
};
|
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
if (delegation != NULL) {
|
if (delegation != NULL) {
|
||||||
@ -381,38 +457,27 @@ static int _nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *st
|
|||||||
set_bit(NFS_DELEGATED_STATE, &state->flags);
|
set_bit(NFS_DELEGATED_STATE, &state->flags);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
o_arg.u.delegation_type = delegation->type;
|
delegation_type = delegation->type;
|
||||||
}
|
}
|
||||||
o_arg.seqid = nfs_alloc_seqid(&sp->so_seqid);
|
opendata = nfs4_opendata_alloc(dentry, sp, 0, NULL);
|
||||||
if (o_arg.seqid == NULL)
|
if (opendata == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
status = rpc_call_sync(server->client, &msg, RPC_TASK_NOINTR);
|
opendata->o_arg.claim = NFS4_OPEN_CLAIM_PREVIOUS;
|
||||||
/* Confirm the sequence as being established */
|
opendata->o_arg.fh = NFS_FH(state->inode);
|
||||||
nfs_confirm_seqid(&sp->so_seqid, status);
|
nfs_copy_fh(&opendata->o_res.fh, opendata->o_arg.fh);
|
||||||
nfs_increment_open_seqid(status, o_arg.seqid);
|
opendata->o_arg.u.delegation_type = delegation_type;
|
||||||
if (status == 0) {
|
status = nfs4_open_recover(opendata, state);
|
||||||
memcpy(&state->stateid, &o_res.stateid, sizeof(state->stateid));
|
nfs4_opendata_free(opendata);
|
||||||
if (o_res.delegation_type != 0) {
|
|
||||||
nfs_inode_reclaim_delegation(inode, sp->so_cred, &o_res);
|
|
||||||
/* Did the server issue an immediate delegation recall? */
|
|
||||||
if (o_res.do_recall)
|
|
||||||
nfs_async_inode_return_delegation(inode, &o_res.stateid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
nfs_free_seqid(o_arg.seqid);
|
|
||||||
clear_bit(NFS_DELEGATED_STATE, &state->flags);
|
|
||||||
/* Ensure we update the inode attributes */
|
|
||||||
NFS_CACHEINV(inode);
|
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
|
static int nfs4_do_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
|
||||||
{
|
{
|
||||||
struct nfs_server *server = NFS_SERVER(state->inode);
|
struct nfs_server *server = NFS_SERVER(state->inode);
|
||||||
struct nfs4_exception exception = { };
|
struct nfs4_exception exception = { };
|
||||||
int err;
|
int err;
|
||||||
do {
|
do {
|
||||||
err = _nfs4_open_reclaim(sp, state);
|
err = _nfs4_do_open_reclaim(sp, state, dentry);
|
||||||
if (err != -NFS4ERR_DELAY)
|
if (err != -NFS4ERR_DELAY)
|
||||||
break;
|
break;
|
||||||
nfs4_handle_exception(server, err, &exception);
|
nfs4_handle_exception(server, err, &exception);
|
||||||
@ -420,50 +485,36 @@ static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *sta
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state)
|
||||||
|
{
|
||||||
|
struct nfs_open_context *ctx;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ctx = nfs4_state_find_open_context(state);
|
||||||
|
if (IS_ERR(ctx))
|
||||||
|
return PTR_ERR(ctx);
|
||||||
|
ret = nfs4_do_open_reclaim(sp, state, ctx->dentry);
|
||||||
|
put_nfs_open_context(ctx);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static int _nfs4_open_delegation_recall(struct dentry *dentry, struct nfs4_state *state)
|
static int _nfs4_open_delegation_recall(struct dentry *dentry, struct nfs4_state *state)
|
||||||
{
|
{
|
||||||
struct nfs4_state_owner *sp = state->owner;
|
struct nfs4_state_owner *sp = state->owner;
|
||||||
struct inode *inode = dentry->d_inode;
|
|
||||||
struct nfs_server *server = NFS_SERVER(inode);
|
|
||||||
struct rpc_message msg = {
|
|
||||||
.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR],
|
|
||||||
.rpc_cred = sp->so_cred,
|
|
||||||
};
|
|
||||||
struct nfs4_opendata *opendata;
|
struct nfs4_opendata *opendata;
|
||||||
int status = 0;
|
int ret;
|
||||||
|
|
||||||
if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
|
if (!test_bit(NFS_DELEGATED_STATE, &state->flags))
|
||||||
goto out;
|
return 0;
|
||||||
if (state->state == 0)
|
opendata = nfs4_opendata_alloc(dentry, sp, 0, NULL);
|
||||||
goto out;
|
|
||||||
opendata = nfs4_opendata_alloc(dentry, sp, state->state, NULL);
|
|
||||||
status = -ENOMEM;
|
|
||||||
if (opendata == NULL)
|
if (opendata == NULL)
|
||||||
goto out;
|
return -ENOMEM;
|
||||||
opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
|
opendata->o_arg.claim = NFS4_OPEN_CLAIM_DELEGATE_CUR;
|
||||||
msg.rpc_argp = &opendata->o_arg;
|
|
||||||
msg.rpc_resp = &opendata->o_res;
|
|
||||||
memcpy(opendata->o_arg.u.delegation.data, state->stateid.data,
|
memcpy(opendata->o_arg.u.delegation.data, state->stateid.data,
|
||||||
sizeof(opendata->o_arg.u.delegation.data));
|
sizeof(opendata->o_arg.u.delegation.data));
|
||||||
status = rpc_call_sync(server->client, &msg, RPC_TASK_NOINTR);
|
ret = nfs4_open_recover(opendata, state);
|
||||||
nfs_increment_open_seqid(status, opendata->o_arg.seqid);
|
|
||||||
if (status != 0)
|
|
||||||
goto out_free;
|
|
||||||
if(opendata->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM) {
|
|
||||||
status = _nfs4_proc_open_confirm(opendata);
|
|
||||||
if (status != 0)
|
|
||||||
goto out_free;
|
|
||||||
}
|
|
||||||
nfs_confirm_seqid(&sp->so_seqid, 0);
|
|
||||||
if (status >= 0) {
|
|
||||||
memcpy(state->stateid.data, opendata->o_res.stateid.data,
|
|
||||||
sizeof(state->stateid.data));
|
|
||||||
clear_bit(NFS_DELEGATED_STATE, &state->flags);
|
|
||||||
}
|
|
||||||
out_free:
|
|
||||||
nfs4_opendata_free(opendata);
|
nfs4_opendata_free(opendata);
|
||||||
out:
|
return ret;
|
||||||
return status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int nfs4_open_delegation_recall(struct dentry *dentry, struct nfs4_state *state)
|
int nfs4_open_delegation_recall(struct dentry *dentry, struct nfs4_state *state)
|
||||||
@ -580,6 +631,8 @@ static void nfs4_open_prepare(struct rpc_task *task, void *calldata)
|
|||||||
/* Update sequence id. */
|
/* Update sequence id. */
|
||||||
data->o_arg.id = sp->so_id;
|
data->o_arg.id = sp->so_id;
|
||||||
data->o_arg.clientid = sp->so_client->cl_clientid;
|
data->o_arg.clientid = sp->so_client->cl_clientid;
|
||||||
|
if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS)
|
||||||
|
msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR];
|
||||||
rpc_call_setup(task, &msg, 0);
|
rpc_call_setup(task, &msg, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -714,55 +767,31 @@ static int _nfs4_do_access(struct inode *inode, struct rpc_cred *cred, int openf
|
|||||||
*/
|
*/
|
||||||
static int _nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
|
static int _nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
|
||||||
{
|
{
|
||||||
struct dentry *parent = dget_parent(dentry);
|
|
||||||
struct inode *inode = state->inode;
|
struct inode *inode = state->inode;
|
||||||
struct nfs_delegation *delegation = NFS_I(inode)->delegation;
|
struct nfs_delegation *delegation = NFS_I(inode)->delegation;
|
||||||
struct nfs4_opendata *opendata;
|
struct nfs4_opendata *opendata;
|
||||||
struct nfs4_state *newstate;
|
|
||||||
int openflags = state->state & (FMODE_READ|FMODE_WRITE);
|
int openflags = state->state & (FMODE_READ|FMODE_WRITE);
|
||||||
int status = 0;
|
int ret;
|
||||||
|
|
||||||
if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
|
if (delegation != NULL && !(delegation->flags & NFS_DELEGATION_NEED_RECLAIM)) {
|
||||||
status = _nfs4_do_access(inode, sp->so_cred, openflags);
|
ret = _nfs4_do_access(inode, sp->so_cred, openflags);
|
||||||
if (status < 0)
|
if (ret < 0)
|
||||||
goto out;
|
return ret;
|
||||||
memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
|
memcpy(&state->stateid, &delegation->stateid, sizeof(state->stateid));
|
||||||
set_bit(NFS_DELEGATED_STATE, &state->flags);
|
set_bit(NFS_DELEGATED_STATE, &state->flags);
|
||||||
goto out;
|
return 0;
|
||||||
}
|
}
|
||||||
status = -ENOMEM;
|
|
||||||
opendata = nfs4_opendata_alloc(dentry, sp, openflags, NULL);
|
opendata = nfs4_opendata_alloc(dentry, sp, openflags, NULL);
|
||||||
if (opendata == NULL)
|
if (opendata == NULL)
|
||||||
goto out;
|
return -ENOMEM;
|
||||||
status = _nfs4_proc_open(opendata);
|
ret = nfs4_open_recover(opendata, state);
|
||||||
if (status != 0)
|
if (ret == -ESTALE) {
|
||||||
goto out_nodeleg;
|
/* Invalidate the state owner so we don't ever use it again */
|
||||||
newstate = nfs4_opendata_to_nfs4_state(opendata);
|
nfs4_drop_state_owner(sp);
|
||||||
if (newstate != state)
|
d_drop(dentry);
|
||||||
goto out_stale;
|
|
||||||
if (opendata->o_res.delegation_type != 0) {
|
|
||||||
if (!(delegation->flags & NFS_DELEGATION_NEED_RECLAIM))
|
|
||||||
nfs_inode_set_delegation(inode, sp->so_cred,
|
|
||||||
&opendata->o_res);
|
|
||||||
else
|
|
||||||
nfs_inode_reclaim_delegation(inode, sp->so_cred,
|
|
||||||
&opendata->o_res);
|
|
||||||
}
|
}
|
||||||
out_close_state:
|
|
||||||
nfs4_close_state(newstate, openflags);
|
|
||||||
out_nodeleg:
|
|
||||||
nfs4_opendata_free(opendata);
|
nfs4_opendata_free(opendata);
|
||||||
clear_bit(NFS_DELEGATED_STATE, &state->flags);
|
return ret;
|
||||||
out:
|
|
||||||
dput(parent);
|
|
||||||
return status;
|
|
||||||
out_stale:
|
|
||||||
status = -ESTALE;
|
|
||||||
/* Invalidate the state owner so we don't ever use it again */
|
|
||||||
nfs4_drop_state_owner(sp);
|
|
||||||
d_drop(dentry);
|
|
||||||
/* Should we be trying to close that stateid? */
|
|
||||||
goto out_close_state;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int nfs4_do_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
|
static inline int nfs4_do_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state, struct dentry *dentry)
|
||||||
@ -781,22 +810,15 @@ static inline int nfs4_do_open_expired(struct nfs4_state_owner *sp, struct nfs4_
|
|||||||
|
|
||||||
static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
|
static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state)
|
||||||
{
|
{
|
||||||
struct nfs_inode *nfsi = NFS_I(state->inode);
|
|
||||||
struct nfs_open_context *ctx;
|
struct nfs_open_context *ctx;
|
||||||
int status;
|
int ret;
|
||||||
|
|
||||||
spin_lock(&state->inode->i_lock);
|
ctx = nfs4_state_find_open_context(state);
|
||||||
list_for_each_entry(ctx, &nfsi->open_files, list) {
|
if (IS_ERR(ctx))
|
||||||
if (ctx->state != state)
|
return PTR_ERR(ctx);
|
||||||
continue;
|
ret = nfs4_do_open_expired(sp, state, ctx->dentry);
|
||||||
get_nfs_open_context(ctx);
|
put_nfs_open_context(ctx);
|
||||||
spin_unlock(&state->inode->i_lock);
|
return ret;
|
||||||
status = nfs4_do_open_expired(sp, state, ctx->dentry);
|
|
||||||
put_nfs_open_context(ctx);
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
spin_unlock(&state->inode->i_lock);
|
|
||||||
return -ENOENT;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1552,19 +1552,19 @@ static int nfs4_xdr_enc_open_noattr(struct rpc_rqst *req, uint32_t *p, struct nf
|
|||||||
{
|
{
|
||||||
struct xdr_stream xdr;
|
struct xdr_stream xdr;
|
||||||
struct compound_hdr hdr = {
|
struct compound_hdr hdr = {
|
||||||
.nops = 2,
|
.nops = 3,
|
||||||
};
|
};
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
status = nfs_wait_on_sequence(args->seqid, req->rq_task);
|
|
||||||
if (status != 0)
|
|
||||||
goto out;
|
|
||||||
xdr_init_encode(&xdr, &req->rq_snd_buf, p);
|
xdr_init_encode(&xdr, &req->rq_snd_buf, p);
|
||||||
encode_compound_hdr(&xdr, &hdr);
|
encode_compound_hdr(&xdr, &hdr);
|
||||||
status = encode_putfh(&xdr, args->fh);
|
status = encode_putfh(&xdr, args->fh);
|
||||||
if (status)
|
if (status)
|
||||||
goto out;
|
goto out;
|
||||||
status = encode_open(&xdr, args);
|
status = encode_open(&xdr, args);
|
||||||
|
if (status)
|
||||||
|
goto out;
|
||||||
|
status = encode_getfattr(&xdr, args->bitmask);
|
||||||
out:
|
out:
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
@ -3825,6 +3825,9 @@ static int nfs4_xdr_dec_open_noattr(struct rpc_rqst *rqstp, uint32_t *p, struct
|
|||||||
if (status)
|
if (status)
|
||||||
goto out;
|
goto out;
|
||||||
status = decode_open(&xdr, res);
|
status = decode_open(&xdr, res);
|
||||||
|
if (status)
|
||||||
|
goto out;
|
||||||
|
decode_getfattr(&xdr, res->f_attr, res->server);
|
||||||
out:
|
out:
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user