diff options
Diffstat (limited to 'fs/xfs/xfs_qm.h')
-rw-r--r-- | fs/xfs/xfs_qm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/xfs/xfs_qm.h b/fs/xfs/xfs_qm.h index 89f213f7252a..c236bba9bfab 100644 --- a/fs/xfs/xfs_qm.h +++ b/fs/xfs/xfs_qm.h | |||
@@ -56,9 +56,6 @@ typedef struct xfs_qm { | |||
56 | xfs_dqlist_t *qm_usr_dqhtable;/* udquot hash table */ | 56 | xfs_dqlist_t *qm_usr_dqhtable;/* udquot hash table */ |
57 | xfs_dqlist_t *qm_grp_dqhtable;/* gdquot hash table */ | 57 | xfs_dqlist_t *qm_grp_dqhtable;/* gdquot hash table */ |
58 | uint qm_dqhashmask; /* # buckets in dq hashtab - 1 */ | 58 | uint qm_dqhashmask; /* # buckets in dq hashtab - 1 */ |
59 | struct list_head qm_dqfrlist; /* freelist of dquots */ | ||
60 | struct mutex qm_dqfrlist_lock; | ||
61 | int qm_dqfrlist_cnt; | ||
62 | uint qm_nrefs; /* file systems with quota on */ | 59 | uint qm_nrefs; /* file systems with quota on */ |
63 | kmem_zone_t *qm_dqzone; /* dquot mem-alloc zone */ | 60 | kmem_zone_t *qm_dqzone; /* dquot mem-alloc zone */ |
64 | kmem_zone_t *qm_dqtrxzone; /* t_dqinfo of transactions */ | 61 | kmem_zone_t *qm_dqtrxzone; /* t_dqinfo of transactions */ |
@@ -71,6 +68,9 @@ typedef struct xfs_qm { | |||
71 | typedef struct xfs_quotainfo { | 68 | typedef struct xfs_quotainfo { |
72 | xfs_inode_t *qi_uquotaip; /* user quota inode */ | 69 | xfs_inode_t *qi_uquotaip; /* user quota inode */ |
73 | xfs_inode_t *qi_gquotaip; /* group quota inode */ | 70 | xfs_inode_t *qi_gquotaip; /* group quota inode */ |
71 | struct list_head qi_lru_list; | ||
72 | struct mutex qi_lru_lock; | ||
73 | int qi_lru_count; | ||
74 | struct list_head qi_dqlist; /* all dquots in filesys */ | 74 | struct list_head qi_dqlist; /* all dquots in filesys */ |
75 | struct mutex qi_dqlist_lock; | 75 | struct mutex qi_dqlist_lock; |
76 | int qi_dquots; | 76 | int qi_dquots; |
@@ -91,6 +91,7 @@ typedef struct xfs_quotainfo { | |||
91 | xfs_qcnt_t qi_isoftlimit; /* default inode count soft limit */ | 91 | xfs_qcnt_t qi_isoftlimit; /* default inode count soft limit */ |
92 | xfs_qcnt_t qi_rtbhardlimit;/* default realtime blk hard limit */ | 92 | xfs_qcnt_t qi_rtbhardlimit;/* default realtime blk hard limit */ |
93 | xfs_qcnt_t qi_rtbsoftlimit;/* default realtime blk soft limit */ | 93 | xfs_qcnt_t qi_rtbsoftlimit;/* default realtime blk soft limit */ |
94 | struct shrinker qi_shrinker; | ||
94 | } xfs_quotainfo_t; | 95 | } xfs_quotainfo_t; |
95 | 96 | ||
96 | 97 | ||