diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2018-09-02 19:19:07 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2018-09-30 15:35:17 -0400 |
commit | ace9fad43aa60a88af4b57a8328f0958e3d07bf0 (patch) | |
tree | ac636c66b18951b20fd08a180f56441879bc50b5 /fs/nfs/nfs4_fs.h | |
parent | 9ae075fdd1901b60d87a0404f9c110753e16969a (diff) | |
download | linux-ace9fad43aa60a88af4b57a8328f0958e3d07bf0.tar.bz2 |
NFSv4: Convert struct nfs4_state to use refcount_t
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs/nfs4_fs.h')
-rw-r--r-- | fs/nfs/nfs4_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h index 1b4737f4cac4..8d59c9655ec4 100644 --- a/fs/nfs/nfs4_fs.h +++ b/fs/nfs/nfs4_fs.h @@ -188,7 +188,7 @@ struct nfs4_state { unsigned int n_wronly; /* Number of write-only references */ unsigned int n_rdwr; /* Number of read/write references */ fmode_t state; /* State on the server (R,W, or RW) */ - atomic_t count; + refcount_t count; wait_queue_head_t waitq; struct rcu_head rcu_head; |