Commit ccc6398e authored by Jeff Layton's avatar Jeff Layton Committed by J. Bruce Fields

nfsd: clean up comments over nfs4_file definition

They're a bit outdated wrt to some recent changes.
Signed-off-by: default avatarJeff Layton <jlayton@primarydata.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent b0d2e42c
...@@ -463,15 +463,19 @@ static inline struct nfs4_lockowner * lockowner(struct nfs4_stateowner *so) ...@@ -463,15 +463,19 @@ static inline struct nfs4_lockowner * lockowner(struct nfs4_stateowner *so)
/* /*
* nfs4_file: a file opened by some number of (open) nfs4_stateowners. * nfs4_file: a file opened by some number of (open) nfs4_stateowners.
* *
* These objects are global. nfsd only keeps one instance of a nfs4_file per * These objects are global. nfsd keeps one instance of a nfs4_file per
* inode (though it may keep multiple file descriptors open per inode). These * filehandle (though it may keep multiple file descriptors for each). Each
* are tracked in the file_hashtbl which is protected by the state_lock * inode can have multiple filehandles associated with it, so there is
* spinlock. * (potentially) a many to one relationship between this struct and struct
* inode.
*
* These are hashed by filehandle in the file_hashtbl, which is protected by
* the global state_lock spinlock.
*/ */
struct nfs4_file { struct nfs4_file {
atomic_t fi_ref; atomic_t fi_ref;
spinlock_t fi_lock; spinlock_t fi_lock;
struct hlist_node fi_hash; /* hash by "struct inode *" */ struct hlist_node fi_hash; /* hash on fi_fhandle */
struct list_head fi_stateids; struct list_head fi_stateids;
struct list_head fi_delegations; struct list_head fi_delegations;
/* One each for O_RDONLY, O_WRONLY, O_RDWR: */ /* One each for O_RDONLY, O_WRONLY, O_RDWR: */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment