Lines Matching defs:xfs_perag
34 struct xfs_perag { struct
35 struct xfs_group pag_group;
36 unsigned long pag_opstate;
37 uint8_t pagf_bno_level; /* # of levels in bno btree */
38 uint8_t pagf_cnt_level; /* # of levels in cnt btree */
39 uint8_t pagf_rmap_level;/* # of levels in rmap btree */
40 uint32_t pagf_flcount; /* count of blocks in freelist */
41 xfs_extlen_t pagf_freeblks; /* total free blocks */
42 xfs_extlen_t pagf_longest; /* longest free space */
43 uint32_t pagf_btreeblks; /* # of blocks held in AGF btrees */
44 xfs_agino_t pagi_freecount; /* number of free inodes */
45 xfs_agino_t pagi_count; /* number of allocated inodes */
52 xfs_agino_t pagl_pagino;
53 xfs_agino_t pagl_leftrec;
54 xfs_agino_t pagl_rightrec;
56 uint8_t pagf_refcount_level; /* recount btree height */
59 struct xfs_ag_resv pag_meta_resv;
61 struct xfs_ag_resv pag_rmapbt_resv;
64 xfs_agino_t agino_min;
65 xfs_agino_t agino_max;
95 static inline struct xfs_perag *to_perag(struct xfs_group *xg) in to_perag() argument