1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (c) 2018 Red Hat, Inc.
8 #define __LIBXFS_AG_H 1
15 * Per-ag infrastructure
18 /* per-AG block reservation data structures*/
20 /* number of blocks originally reserved here */
21 xfs_extlen_t ar_orig_reserved;
22 /* number of blocks reserved here */
23 xfs_extlen_t ar_reserved;
24 /* number of blocks originally asked for */
25 xfs_extlen_t ar_asked;
29 * Per-ag incore structure, copies of information in agf and agi, to improve the
30 * performance of allocation group selection.
33 struct xfs_mount *pag_mount; /* owner filesystem */
34 xfs_agnumber_t pag_agno; /* AG this structure belongs to */
35 atomic_t pag_ref; /* passive reference count */
36 atomic_t pag_active_ref; /* active reference count */
37 wait_queue_head_t pag_active_wq;/* woken active_ref falls to zero */
38 unsigned long pag_opstate;
39 uint8_t pagf_levels[XFS_BTNUM_AGF];
40 /* # of levels in bno & cnt btree */
41 uint32_t pagf_flcount; /* count of blocks in freelist */
42 xfs_extlen_t pagf_freeblks; /* total free blocks */
43 xfs_extlen_t pagf_longest; /* longest free space */
44 uint32_t pagf_btreeblks; /* # of blocks held in AGF btrees */
45 xfs_agino_t pagi_freecount; /* number of free inodes */
46 xfs_agino_t pagi_count; /* number of allocated inodes */
49 * Inode allocation search lookup optimisation.
50 * If the pagino matches, the search for new inodes
51 * doesn't need to search the near ones again straight away
53 xfs_agino_t pagl_pagino;
54 xfs_agino_t pagl_leftrec;
55 xfs_agino_t pagl_rightrec;
57 int pagb_count; /* pagb slots in use */
58 uint8_t pagf_refcount_level; /* recount btree height */
60 /* Blocks reserved for all kinds of metadata. */
61 struct xfs_ag_resv pag_meta_resv;
62 /* Blocks reserved for the reverse mapping btree. */
63 struct xfs_ag_resv pag_rmapbt_resv;
65 /* for rcu-safe freeing */
66 struct rcu_head rcu_head;
68 /* Precalculated geometry info */
69 xfs_agblock_t block_count;
70 xfs_agblock_t min_block;
71 xfs_agino_t agino_min;
72 xfs_agino_t agino_max;
75 /* -- kernel only structures below this line -- */
78 * Bitsets of per-ag metadata that have been checked and/or are sick.
79 * Callers should hold pag_state_lock before accessing this field.
84 #ifdef CONFIG_XFS_ONLINE_REPAIR
86 * Alternate btree heights so that online repair won't trip the write
87 * verifiers while rebuilding the AG btrees.
89 uint8_t pagf_repair_levels[XFS_BTNUM_AGF];
92 spinlock_t pag_state_lock;
94 spinlock_t pagb_lock; /* lock for pagb_tree */
95 struct rb_root pagb_tree; /* ordered tree of busy extents */
96 unsigned int pagb_gen; /* generation count for pagb_tree */
97 wait_queue_head_t pagb_wait; /* woken when pagb_gen changes */
99 atomic_t pagf_fstrms; /* # of filestreams active in this AG */
101 spinlock_t pag_ici_lock; /* incore inode cache lock */
102 struct radix_tree_root pag_ici_root; /* incore inode cache root */
103 int pag_ici_reclaimable; /* reclaimable inodes */
104 unsigned long pag_ici_reclaim_cursor; /* reclaim restart point */
106 /* buffer cache index */
107 spinlock_t pag_buf_lock; /* lock for pag_buf_hash */
108 struct rhashtable pag_buf_hash;
110 /* background prealloc block trimming */
111 struct delayed_work pag_blockgc_work;
114 * We use xfs_drain to track the number of deferred log intent items
115 * that have been queued (but not yet processed) so that waiters (e.g.
116 * scrub) will not lock resources when other threads are in the middle
117 * of processing a chain of intent items only to find momentary
120 struct xfs_defer_drain pag_intents_drain;
121 #endif /* __KERNEL__ */
125 * Per-AG operational state. These are atomic flag bits.
127 #define XFS_AGSTATE_AGF_INIT 0
128 #define XFS_AGSTATE_AGI_INIT 1
129 #define XFS_AGSTATE_PREFERS_METADATA 2
130 #define XFS_AGSTATE_ALLOWS_INODES 3
131 #define XFS_AGSTATE_AGFL_NEEDS_RESET 4
133 #define __XFS_AG_OPSTATE(name, NAME) \
134 static inline bool xfs_perag_ ## name (struct xfs_perag *pag) \
136 return test_bit(XFS_AGSTATE_ ## NAME, &pag->pag_opstate); \
139 __XFS_AG_OPSTATE(initialised_agf, AGF_INIT)
140 __XFS_AG_OPSTATE(initialised_agi, AGI_INIT)
141 __XFS_AG_OPSTATE(prefers_metadata, PREFERS_METADATA)
142 __XFS_AG_OPSTATE(allows_inodes, ALLOWS_INODES)
143 __XFS_AG_OPSTATE(agfl_needs_reset, AGFL_NEEDS_RESET)
145 int xfs_initialize_perag(struct xfs_mount *mp, xfs_agnumber_t agcount,
146 xfs_rfsblock_t dcount, xfs_agnumber_t *maxagi);
147 int xfs_initialize_perag_data(struct xfs_mount *mp, xfs_agnumber_t agno);
148 void xfs_free_perag(struct xfs_mount *mp);
150 /* Passive AG references */
151 struct xfs_perag *xfs_perag_get(struct xfs_mount *mp, xfs_agnumber_t agno);
152 struct xfs_perag *xfs_perag_get_tag(struct xfs_mount *mp, xfs_agnumber_t agno,
154 struct xfs_perag *xfs_perag_hold(struct xfs_perag *pag);
155 void xfs_perag_put(struct xfs_perag *pag);
157 /* Active AG references */
158 struct xfs_perag *xfs_perag_grab(struct xfs_mount *, xfs_agnumber_t);
159 struct xfs_perag *xfs_perag_grab_tag(struct xfs_mount *, xfs_agnumber_t,
161 void xfs_perag_rele(struct xfs_perag *pag);
164 * Per-ag geometry infomation and validation
166 xfs_agblock_t xfs_ag_block_count(struct xfs_mount *mp, xfs_agnumber_t agno);
167 void xfs_agino_range(struct xfs_mount *mp, xfs_agnumber_t agno,
168 xfs_agino_t *first, xfs_agino_t *last);
171 xfs_verify_agbno(struct xfs_perag *pag, xfs_agblock_t agbno)
173 if (agbno >= pag->block_count)
175 if (agbno <= pag->min_block)
182 struct xfs_perag *pag,
186 if (agbno + len <= agbno)
189 if (!xfs_verify_agbno(pag, agbno))
192 return xfs_verify_agbno(pag, agbno + len - 1);
196 * Verify that an AG inode number pointer neither points outside the AG
197 * nor points at static metadata.
200 xfs_verify_agino(struct xfs_perag *pag, xfs_agino_t agino)
202 if (agino < pag->agino_min)
204 if (agino > pag->agino_max)
210 * Verify that an AG inode number pointer neither points outside the AG
211 * nor points at static metadata, or is NULLAGINO.
214 xfs_verify_agino_or_null(struct xfs_perag *pag, xfs_agino_t agino)
216 if (agino == NULLAGINO)
218 return xfs_verify_agino(pag, agino);
222 xfs_ag_contains_log(struct xfs_mount *mp, xfs_agnumber_t agno)
224 return mp->m_sb.sb_logstart > 0 &&
225 agno == XFS_FSB_TO_AGNO(mp, mp->m_sb.sb_logstart);
229 * Perag iteration APIs
231 static inline struct xfs_perag *
233 struct xfs_perag *pag,
234 xfs_agnumber_t *agno,
235 xfs_agnumber_t end_agno)
237 struct xfs_mount *mp = pag->pag_mount;
239 *agno = pag->pag_agno + 1;
241 while (*agno <= end_agno) {
242 pag = xfs_perag_grab(mp, *agno);
250 #define for_each_perag_range(mp, agno, end_agno, pag) \
251 for ((pag) = xfs_perag_grab((mp), (agno)); \
253 (pag) = xfs_perag_next((pag), &(agno), (end_agno)))
255 #define for_each_perag_from(mp, agno, pag) \
256 for_each_perag_range((mp), (agno), (mp)->m_sb.sb_agcount - 1, (pag))
258 #define for_each_perag(mp, agno, pag) \
260 for_each_perag_from((mp), (agno), (pag))
262 #define for_each_perag_tag(mp, agno, pag, tag) \
263 for ((agno) = 0, (pag) = xfs_perag_grab_tag((mp), 0, (tag)); \
265 (agno) = (pag)->pag_agno + 1, \
266 xfs_perag_rele(pag), \
267 (pag) = xfs_perag_grab_tag((mp), (agno), (tag)))
269 static inline struct xfs_perag *
271 struct xfs_perag *pag,
272 xfs_agnumber_t *agno,
273 xfs_agnumber_t stop_agno,
274 xfs_agnumber_t restart_agno,
275 xfs_agnumber_t wrap_agno)
277 struct xfs_mount *mp = pag->pag_mount;
279 *agno = pag->pag_agno + 1;
281 while (*agno != stop_agno) {
282 if (*agno >= wrap_agno) {
283 if (restart_agno >= stop_agno)
285 *agno = restart_agno;
288 pag = xfs_perag_grab(mp, *agno);
297 * Iterate all AGs from start_agno through wrap_agno, then restart_agno through
300 #define for_each_perag_wrap_range(mp, start_agno, restart_agno, wrap_agno, agno, pag) \
301 for ((agno) = (start_agno), (pag) = xfs_perag_grab((mp), (agno)); \
303 (pag) = xfs_perag_next_wrap((pag), &(agno), (start_agno), \
304 (restart_agno), (wrap_agno)))
306 * Iterate all AGs from start_agno through wrap_agno, then 0 through
309 #define for_each_perag_wrap_at(mp, start_agno, wrap_agno, agno, pag) \
310 for_each_perag_wrap_range((mp), (start_agno), 0, (wrap_agno), (agno), (pag))
313 * Iterate all AGs from start_agno through to the end of the filesystem, then 0
314 * through (start_agno - 1).
316 #define for_each_perag_wrap(mp, start_agno, agno, pag) \
317 for_each_perag_wrap_at((mp), (start_agno), (mp)->m_sb.sb_agcount, \
321 struct aghdr_init_data {
323 xfs_agblock_t agno; /* ag to init */
324 xfs_extlen_t agsize; /* new AG size */
325 struct list_head buffer_list; /* buffer writeback list */
326 xfs_rfsblock_t nfree; /* cumulative new free space */
328 /* per header data */
329 xfs_daddr_t daddr; /* header location */
330 size_t numblks; /* size of header */
331 xfs_btnum_t type; /* type of btree root block */
334 int xfs_ag_init_headers(struct xfs_mount *mp, struct aghdr_init_data *id);
335 int xfs_ag_shrink_space(struct xfs_perag *pag, struct xfs_trans **tpp,
337 int xfs_ag_extend_space(struct xfs_perag *pag, struct xfs_trans *tp,
339 int xfs_ag_get_geometry(struct xfs_perag *pag, struct xfs_ag_geometry *ageo);
341 #endif /* __LIBXFS_AG_H */