Lines Matching defs:xfs_perag
271 typedef struct xfs_perag { struct
272 struct xfs_mount *pag_mount; /* owner filesystem */
273 xfs_agnumber_t pag_agno; /* AG this structure belongs to */
274 atomic_t pag_ref; /* perag reference count */
275 char pagf_init; /* this agf's entry is initialized */
276 char pagi_init; /* this agi's entry is initialized */
277 char pagf_metadata; /* the agf is preferred to be metadata */
278 char pagi_inodeok; /* The agi is ok for inodes */
279 __uint8_t pagf_levels[XFS_BTNUM_AGF];
281 __uint32_t pagf_flcount; /* count of blocks in freelist */
282 xfs_extlen_t pagf_freeblks; /* total free blocks */
283 xfs_extlen_t pagf_longest; /* longest free space */
284 __uint32_t pagf_btreeblks; /* # of blocks held in AGF btrees */
285 xfs_agino_t pagi_freecount; /* number of free inodes */
286 xfs_agino_t pagi_count; /* number of allocated inodes */
314 } xfs_perag_t; argument