diff options
author | 2024-06-13 01:00:46 -0400 | |
---|---|---|
committer | 2024-07-08 13:47:26 -0400 | |
commit | 924cf3c91fe29c7ebd1b9d56e10f513c1bd7d4bd (patch) | |
tree | ddcbc17ddec75c4990fe6013eff5147c21a9ed68 /include/linux/nfs_xdr.h | |
parent | NFSv4/pnfs: Remove redundant list check (diff) | |
download | wireguard-linux-924cf3c91fe29c7ebd1b9d56e10f513c1bd7d4bd.tar.xz wireguard-linux-924cf3c91fe29c7ebd1b9d56e10f513c1bd7d4bd.zip |
NFSv4.1: constify the stateid argument in nfs41_test_stateid()
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to '')
-rw-r--r-- | include/linux/nfs_xdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 01efacae4634..45623af3e7b8 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -1438,7 +1438,7 @@ struct nfs41_secinfo_no_name_args { struct nfs41_test_stateid_args { struct nfs4_sequence_args seq_args; - nfs4_stateid *stateid; + nfs4_stateid stateid; }; struct nfs41_test_stateid_res { |