diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2021-10-22 19:11:02 +0200 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2021-11-05 19:54:39 +0100 |
commit | 68be1742c22983558f0f148a4467eb9127d56b86 (patch) | |
tree | 3e0fa6f4a9f273a4322adcd39d6e8574c3b38415 /fs/nfs/nfs4xdr.c | |
parent | NFS: Remove the nfs4_label from the nfs_entry struct (diff) | |
download | linux-68be1742c22983558f0f148a4467eb9127d56b86.tar.xz linux-68be1742c22983558f0f148a4467eb9127d56b86.zip |
NFS: Remove the nfs4_label from the nfs4_create_res struct
Instead, use the label embedded in the attached fattr.
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index fba89f82e7b7..38c74833f263 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -6353,7 +6353,7 @@ static int nfs4_xdr_dec_create(struct rpc_rqst *rqstp, struct xdr_stream *xdr, status = decode_getfh(xdr, res->fh); if (status) goto out; - decode_getfattr_label(xdr, res->fattr, res->label, res->server); + decode_getfattr_label(xdr, res->fattr, res->fattr->label, res->server); out: return status; } |