@@ -42,41 +42,41 @@ extern struct kmem_zone *xfs_qm_dqtrxzone;
42
42
#define XFS_DQUOT_CLUSTER_SIZE_FSB (xfs_filblks_t)1
43
43
44
44
struct xfs_def_quota {
45
- xfs_qcnt_t bhardlimit ; /* default data blk hard limit */
46
- xfs_qcnt_t bsoftlimit ; /* default data blk soft limit */
47
- xfs_qcnt_t ihardlimit ; /* default inode count hard limit */
48
- xfs_qcnt_t isoftlimit ; /* default inode count soft limit */
49
- xfs_qcnt_t rtbhardlimit ; /* default realtime blk hard limit */
50
- xfs_qcnt_t rtbsoftlimit ; /* default realtime blk soft limit */
45
+ xfs_qcnt_t bhardlimit ; /* default data blk hard limit */
46
+ xfs_qcnt_t bsoftlimit ; /* default data blk soft limit */
47
+ xfs_qcnt_t ihardlimit ; /* default inode count hard limit */
48
+ xfs_qcnt_t isoftlimit ; /* default inode count soft limit */
49
+ xfs_qcnt_t rtbhardlimit ; /* default realtime blk hard limit */
50
+ xfs_qcnt_t rtbsoftlimit ; /* default realtime blk soft limit */
51
51
};
52
52
53
53
/*
54
54
* Various quota information for individual filesystems.
55
55
* The mount structure keeps a pointer to this.
56
56
*/
57
57
struct xfs_quotainfo {
58
- struct radix_tree_root qi_uquota_tree ;
59
- struct radix_tree_root qi_gquota_tree ;
60
- struct radix_tree_root qi_pquota_tree ;
61
- struct mutex qi_tree_lock ;
58
+ struct radix_tree_root qi_uquota_tree ;
59
+ struct radix_tree_root qi_gquota_tree ;
60
+ struct radix_tree_root qi_pquota_tree ;
61
+ struct mutex qi_tree_lock ;
62
62
struct xfs_inode * qi_uquotaip ; /* user quota inode */
63
63
struct xfs_inode * qi_gquotaip ; /* group quota inode */
64
64
struct xfs_inode * qi_pquotaip ; /* project quota inode */
65
- struct list_lru qi_lru ;
66
- int qi_dquots ;
67
- time64_t qi_btimelimit ; /* limit for blks timer */
68
- time64_t qi_itimelimit ; /* limit for inodes timer */
69
- time64_t qi_rtbtimelimit ;/* limit for rt blks timer */
70
- xfs_qwarncnt_t qi_bwarnlimit ; /* limit for blks warnings */
71
- xfs_qwarncnt_t qi_iwarnlimit ; /* limit for inodes warnings */
72
- xfs_qwarncnt_t qi_rtbwarnlimit ;/* limit for rt blks warnings */
73
- struct mutex qi_quotaofflock ;/* to serialize quotaoff */
74
- xfs_filblks_t qi_dqchunklen ; /* # BBs in a chunk of dqs */
75
- uint qi_dqperchunk ; /* # ondisk dqs in above chunk */
65
+ struct list_lru qi_lru ;
66
+ int qi_dquots ;
67
+ time64_t qi_btimelimit ; /* limit for blks timer */
68
+ time64_t qi_itimelimit ; /* limit for inodes timer */
69
+ time64_t qi_rtbtimelimit ;/* limit for rt blks timer */
70
+ xfs_qwarncnt_t qi_bwarnlimit ; /* limit for blks warnings */
71
+ xfs_qwarncnt_t qi_iwarnlimit ; /* limit for inodes warnings */
72
+ xfs_qwarncnt_t qi_rtbwarnlimit ;/* limit for rt blks warnings */
73
+ struct mutex qi_quotaofflock ;/* to serialize quotaoff */
74
+ xfs_filblks_t qi_dqchunklen ; /* # BBs in a chunk of dqs */
75
+ uint qi_dqperchunk ; /* # ondisk dq in above chunk */
76
76
struct xfs_def_quota qi_usr_default ;
77
77
struct xfs_def_quota qi_grp_default ;
78
78
struct xfs_def_quota qi_prj_default ;
79
- struct shrinker qi_shrinker ;
79
+ struct shrinker qi_shrinker ;
80
80
};
81
81
82
82
static inline struct radix_tree_root *
0 commit comments