diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2021-10-22 13:11:07 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2021-11-05 14:54:39 -0400 |
commit | 2ef61e0eaa333e4e9c348c41a4b7abfb34b8736d (patch) | |
tree | c58d23eecc49e410763eddeae3ab8a330830a1da /fs/nfs/dir.c | |
parent | 76baa2b29c7161bc65a3051d311297b7d7fc827a (diff) | |
download | linux-2ef61e0eaa333e4e9c348c41a4b7abfb34b8736d.tar.gz linux-2ef61e0eaa333e4e9c348c41a4b7abfb34b8736d.tar.bz2 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/dir.c')
-rw-r--r-- | fs/nfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 8a327971d485..aa95a898ad0f 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -2056,7 +2056,7 @@ nfs_add_or_obtain(struct dentry *dentry, struct nfs_fh *fhandle, if (!(fattr->valid & NFS_ATTR_FATTR)) { struct nfs_server *server = NFS_SB(dentry->d_sb); error = server->nfs_client->rpc_ops->getattr(server, fhandle, - fattr, NULL, NULL); + fattr, NULL); if (error < 0) goto out_error; } |