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_bno_level
; /* # of levels in bno btree */
40 uint8_t pagf_cnt_level
; /* # of levels in cnt btree */
41 uint8_t pagf_rmap_level
;/* # of levels in rmap btree */
42 uint32_t pagf_flcount
; /* count of blocks in freelist */
43 xfs_extlen_t pagf_freeblks
; /* total free blocks */
44 xfs_extlen_t pagf_longest
; /* longest free space */
45 uint32_t pagf_btreeblks
; /* # of blocks held in AGF btrees */
46 xfs_agino_t pagi_freecount
; /* number of free inodes */
47 xfs_agino_t pagi_count
; /* number of allocated inodes */
50 * Inode allocation search lookup optimisation.
51 * If the pagino matches, the search for new inodes
52 * doesn't need to search the near ones again straight away
54 xfs_agino_t pagl_pagino
;
55 xfs_agino_t pagl_leftrec
;
56 xfs_agino_t pagl_rightrec
;
58 int pagb_count
; /* pagb slots in use */
59 uint8_t pagf_refcount_level
; /* recount btree height */
61 /* Blocks reserved for all kinds of metadata. */
62 struct xfs_ag_resv pag_meta_resv
;
63 /* Blocks reserved for the reverse mapping btree. */
64 struct xfs_ag_resv pag_rmapbt_resv
;
66 /* for rcu-safe freeing */
67 struct rcu_head rcu_head
;
69 /* Precalculated geometry info */
70 xfs_agblock_t block_count
;
71 xfs_agblock_t min_block
;
72 xfs_agino_t agino_min
;
73 xfs_agino_t agino_max
;
76 /* -- kernel only structures below this line -- */
79 * Bitsets of per-ag metadata that have been checked and/or are sick.
80 * Callers should hold pag_state_lock before accessing this field.
85 #ifdef CONFIG_XFS_ONLINE_REPAIR
87 * Alternate btree heights so that online repair won't trip the write
88 * verifiers while rebuilding the AG btrees.
90 uint8_t pagf_repair_bno_level
;
91 uint8_t pagf_repair_cnt_level
;
92 uint8_t pagf_repair_refcount_level
;
93 uint8_t pagf_repair_rmap_level
;
96 spinlock_t pag_state_lock
;
98 spinlock_t pagb_lock
; /* lock for pagb_tree */
99 struct rb_root pagb_tree
; /* ordered tree of busy extents */
100 unsigned int pagb_gen
; /* generation count for pagb_tree */
101 wait_queue_head_t pagb_wait
; /* woken when pagb_gen changes */
103 atomic_t pagf_fstrms
; /* # of filestreams active in this AG */
105 spinlock_t pag_ici_lock
; /* incore inode cache lock */
106 struct radix_tree_root pag_ici_root
; /* incore inode cache root */
107 int pag_ici_reclaimable
; /* reclaimable inodes */
108 unsigned long pag_ici_reclaim_cursor
; /* reclaim restart point */
110 struct xfs_buf_cache pag_bcache
;
112 /* background prealloc block trimming */
113 struct delayed_work pag_blockgc_work
;
116 * We use xfs_drain to track the number of deferred log intent items
117 * that have been queued (but not yet processed) so that waiters (e.g.
118 * scrub) will not lock resources when other threads are in the middle
119 * of processing a chain of intent items only to find momentary
122 struct xfs_defer_drain pag_intents_drain
;
124 /* Hook to feed rmapbt updates to an active online repair. */
125 struct xfs_hooks pag_rmap_update_hooks
;
126 #endif /* __KERNEL__ */
130 * Per-AG operational state. These are atomic flag bits.
132 #define XFS_AGSTATE_AGF_INIT 0
133 #define XFS_AGSTATE_AGI_INIT 1
134 #define XFS_AGSTATE_PREFERS_METADATA 2
135 #define XFS_AGSTATE_ALLOWS_INODES 3
136 #define XFS_AGSTATE_AGFL_NEEDS_RESET 4
138 #define __XFS_AG_OPSTATE(name, NAME) \
139 static inline bool xfs_perag_ ## name (struct xfs_perag *pag) \
141 return test_bit(XFS_AGSTATE_ ## NAME, &pag->pag_opstate); \
144 __XFS_AG_OPSTATE(initialised_agf
, AGF_INIT
)
145 __XFS_AG_OPSTATE(initialised_agi
, AGI_INIT
)
146 __XFS_AG_OPSTATE(prefers_metadata
, PREFERS_METADATA
)
147 __XFS_AG_OPSTATE(allows_inodes
, ALLOWS_INODES
)
148 __XFS_AG_OPSTATE(agfl_needs_reset
, AGFL_NEEDS_RESET
)
150 void xfs_free_unused_perag_range(struct xfs_mount
*mp
, xfs_agnumber_t agstart
,
151 xfs_agnumber_t agend
);
152 int xfs_initialize_perag(struct xfs_mount
*mp
, xfs_agnumber_t agcount
,
153 xfs_rfsblock_t dcount
, xfs_agnumber_t
*maxagi
);
154 int xfs_initialize_perag_data(struct xfs_mount
*mp
, xfs_agnumber_t agno
);
155 void xfs_free_perag(struct xfs_mount
*mp
);
157 /* Passive AG references */
158 struct xfs_perag
*xfs_perag_get(struct xfs_mount
*mp
, xfs_agnumber_t agno
);
159 struct xfs_perag
*xfs_perag_get_tag(struct xfs_mount
*mp
, xfs_agnumber_t agno
,
161 struct xfs_perag
*xfs_perag_hold(struct xfs_perag
*pag
);
162 void xfs_perag_put(struct xfs_perag
*pag
);
164 /* Active AG references */
165 struct xfs_perag
*xfs_perag_grab(struct xfs_mount
*, xfs_agnumber_t
);
166 struct xfs_perag
*xfs_perag_grab_tag(struct xfs_mount
*, xfs_agnumber_t
,
168 void xfs_perag_rele(struct xfs_perag
*pag
);
171 * Per-ag geometry infomation and validation
173 xfs_agblock_t
xfs_ag_block_count(struct xfs_mount
*mp
, xfs_agnumber_t agno
);
174 void xfs_agino_range(struct xfs_mount
*mp
, xfs_agnumber_t agno
,
175 xfs_agino_t
*first
, xfs_agino_t
*last
);
178 xfs_verify_agbno(struct xfs_perag
*pag
, xfs_agblock_t agbno
)
180 if (agbno
>= pag
->block_count
)
182 if (agbno
<= pag
->min_block
)
189 struct xfs_perag
*pag
,
193 if (agbno
+ len
<= agbno
)
196 if (!xfs_verify_agbno(pag
, agbno
))
199 return xfs_verify_agbno(pag
, agbno
+ len
- 1);
203 * Verify that an AG inode number pointer neither points outside the AG
204 * nor points at static metadata.
207 xfs_verify_agino(struct xfs_perag
*pag
, xfs_agino_t agino
)
209 if (agino
< pag
->agino_min
)
211 if (agino
> pag
->agino_max
)
217 * Verify that an AG inode number pointer neither points outside the AG
218 * nor points at static metadata, or is NULLAGINO.
221 xfs_verify_agino_or_null(struct xfs_perag
*pag
, xfs_agino_t agino
)
223 if (agino
== NULLAGINO
)
225 return xfs_verify_agino(pag
, agino
);
229 xfs_ag_contains_log(struct xfs_mount
*mp
, xfs_agnumber_t agno
)
231 return mp
->m_sb
.sb_logstart
> 0 &&
232 agno
== XFS_FSB_TO_AGNO(mp
, mp
->m_sb
.sb_logstart
);
236 * Perag iteration APIs
238 static inline struct xfs_perag
*
240 struct xfs_perag
*pag
,
241 xfs_agnumber_t
*agno
,
242 xfs_agnumber_t end_agno
)
244 struct xfs_mount
*mp
= pag
->pag_mount
;
246 *agno
= pag
->pag_agno
+ 1;
248 while (*agno
<= end_agno
) {
249 pag
= xfs_perag_grab(mp
, *agno
);
257 #define for_each_perag_range(mp, agno, end_agno, pag) \
258 for ((pag) = xfs_perag_grab((mp), (agno)); \
260 (pag) = xfs_perag_next((pag), &(agno), (end_agno)))
262 #define for_each_perag_from(mp, agno, pag) \
263 for_each_perag_range((mp), (agno), (mp)->m_sb.sb_agcount - 1, (pag))
265 #define for_each_perag(mp, agno, pag) \
267 for_each_perag_from((mp), (agno), (pag))
269 #define for_each_perag_tag(mp, agno, pag, tag) \
270 for ((agno) = 0, (pag) = xfs_perag_grab_tag((mp), 0, (tag)); \
272 (agno) = (pag)->pag_agno + 1, \
273 xfs_perag_rele(pag), \
274 (pag) = xfs_perag_grab_tag((mp), (agno), (tag)))
276 static inline struct xfs_perag
*
278 struct xfs_perag
*pag
,
279 xfs_agnumber_t
*agno
,
280 xfs_agnumber_t stop_agno
,
281 xfs_agnumber_t restart_agno
,
282 xfs_agnumber_t wrap_agno
)
284 struct xfs_mount
*mp
= pag
->pag_mount
;
286 *agno
= pag
->pag_agno
+ 1;
288 while (*agno
!= stop_agno
) {
289 if (*agno
>= wrap_agno
) {
290 if (restart_agno
>= stop_agno
)
292 *agno
= restart_agno
;
295 pag
= xfs_perag_grab(mp
, *agno
);
304 * Iterate all AGs from start_agno through wrap_agno, then restart_agno through
307 #define for_each_perag_wrap_range(mp, start_agno, restart_agno, wrap_agno, agno, pag) \
308 for ((agno) = (start_agno), (pag) = xfs_perag_grab((mp), (agno)); \
310 (pag) = xfs_perag_next_wrap((pag), &(agno), (start_agno), \
311 (restart_agno), (wrap_agno)))
313 * Iterate all AGs from start_agno through wrap_agno, then 0 through
316 #define for_each_perag_wrap_at(mp, start_agno, wrap_agno, agno, pag) \
317 for_each_perag_wrap_range((mp), (start_agno), 0, (wrap_agno), (agno), (pag))
320 * Iterate all AGs from start_agno through to the end of the filesystem, then 0
321 * through (start_agno - 1).
323 #define for_each_perag_wrap(mp, start_agno, agno, pag) \
324 for_each_perag_wrap_at((mp), (start_agno), (mp)->m_sb.sb_agcount, \
328 struct aghdr_init_data
{
330 xfs_agblock_t agno
; /* ag to init */
331 xfs_extlen_t agsize
; /* new AG size */
332 struct list_head buffer_list
; /* buffer writeback list */
333 xfs_rfsblock_t nfree
; /* cumulative new free space */
335 /* per header data */
336 xfs_daddr_t daddr
; /* header location */
337 size_t numblks
; /* size of header */
338 const struct xfs_btree_ops
*bc_ops
; /* btree ops */
341 int xfs_ag_init_headers(struct xfs_mount
*mp
, struct aghdr_init_data
*id
);
342 int xfs_ag_shrink_space(struct xfs_perag
*pag
, struct xfs_trans
**tpp
,
344 int xfs_ag_extend_space(struct xfs_perag
*pag
, struct xfs_trans
*tp
,
346 int xfs_ag_get_geometry(struct xfs_perag
*pag
, struct xfs_ag_geometry
*ageo
);
348 #endif /* __LIBXFS_AG_H */