diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2021-10-22 19:11:07 +0200 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2021-11-05 19:54:39 +0100 |
commit | 2ef61e0eaa333e4e9c348c41a4b7abfb34b8736d (patch) | |
tree | c58d23eecc49e410763eddeae3ab8a330830a1da /fs/nfs/nfs4xdr.c | |
parent | NFS: Remove the f_label from the nfs4_opendata and nfs_openres (diff) | |
download | linux-2ef61e0eaa333e4e9c348c41a4b7abfb34b8736d.tar.xz linux-2ef61e0eaa333e4e9c348c41a4b7abfb34b8736d.zip |
NFS: Remove the nfs4_label from the nfs4_getattr_res
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 09bd1d121318..d1b61b76bc82 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -6386,7 +6386,7 @@ static int nfs4_xdr_dec_getattr(struct rpc_rqst *rqstp, struct xdr_stream *xdr, status = decode_putfh(xdr); if (status) goto out; - status = decode_getfattr_label(xdr, res->fattr, res->label, res->server); + status = decode_getfattr_label(xdr, res->fattr, res->fattr->label, res->server); out: return status; } |