diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-07-16 10:31:59 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-07-16 21:39:51 -0400 |
commit | b0fc29d6fcd0310a8437123fe6f30b1ae60a62f9 (patch) | |
tree | 6b89ae1cfd87d7fea0289ac5d6ac9ec2c3fbc63f /fs/nfsd/state.h | |
parent | d564fbec7a8fa22d4b1ad10249eace42ea01513b (diff) | |
download | linux-stable-b0fc29d6fcd0310a8437123fe6f30b1ae60a62f9.tar.gz linux-stable-b0fc29d6fcd0310a8437123fe6f30b1ae60a62f9.tar.bz2 linux-stable-b0fc29d6fcd0310a8437123fe6f30b1ae60a62f9.zip |
nfsd: Ensure stateids remain unique until they are freed
Add an extra delegation state to allow the stateid to remain in the idr
tree until the last reference has been released. This will be necessary
to ensure uniqueness once the client_mutex is removed.
[jlayton: reset the sc_type under the state_lock in unhash_delegation]
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index 81b7522e3f67..996d61eeb357 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -80,6 +80,7 @@ struct nfs4_stid { #define NFS4_CLOSED_STID 8 /* For a deleg stateid kept around only to process free_stateid's: */ #define NFS4_REVOKED_DELEG_STID 16 +#define NFS4_CLOSED_DELEG_STID 32 unsigned char sc_type; stateid_t sc_stateid; struct nfs4_client *sc_client; |