Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libglusterfs/src/glusterfs/inode.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ struct _inode {
uuid_t gfid;
gf_lock_t lock;
gf_atomic_t nlookup;
gf_atomic_t ref; /* reference count on this inode */
uint32_t fd_count; /* Open fd count */
uint32_t active_fd_count; /* Active open fd count */
uint32_t ref; /* reference count on this inode */
ia_type_t ia_type; /* what kind of file */
struct list_head fd_list; /* list of open files on this inode */
struct list_head dentry_list; /* list of directory entries for this inode */
Expand Down
Loading