diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2021-10-22 20:11:03 +0300 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2021-11-05 21:54:39 +0300 |
commit | aa7ca3b2de190675543d84adaa1ff74e7867c76f (patch) | |
tree | a4673ed30710ba590677583de0eb70d80957dabf /fs/nfs/nfs4xdr.c | |
parent | 68be1742c22983558f0f148a4467eb9127d56b86 (diff) | |
download | linux-aa7ca3b2de190675543d84adaa1ff74e7867c76f.tar.xz |
NFS: Remove the nfs4_label from the nfs4_link_res struct
Again, use the fattr's label field instead.
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 38c74833f263..4c9d66fac3fd 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -6323,7 +6323,7 @@ static int nfs4_xdr_dec_link(struct rpc_rqst *rqstp, struct xdr_stream *xdr, status = decode_restorefh(xdr); 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; } |