xref: /openbmc/linux/fs/xfs/xfs_trans_ail.c (revision e8b78db7)
10b61f8a4SDave Chinner // SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds /*
37b718769SNathan Scott  * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
4c7e8f268SDavid Chinner  * Copyright (c) 2008 Dave Chinner
57b718769SNathan Scott  * All Rights Reserved.
61da177e4SLinus Torvalds  */
71da177e4SLinus Torvalds #include "xfs.h"
8a844f451SNathan Scott #include "xfs_fs.h"
95467b34bSDarrick J. Wong #include "xfs_shared.h"
104fb6e8adSChristoph Hellwig #include "xfs_format.h"
11239880efSDave Chinner #include "xfs_log_format.h"
12239880efSDave Chinner #include "xfs_trans_resv.h"
131da177e4SLinus Torvalds #include "xfs_mount.h"
14239880efSDave Chinner #include "xfs_trans.h"
151da177e4SLinus Torvalds #include "xfs_trans_priv.h"
169e4c109aSChristoph Hellwig #include "xfs_trace.h"
17e9e899a2SDarrick J. Wong #include "xfs_errortag.h"
181da177e4SLinus Torvalds #include "xfs_error.h"
19239880efSDave Chinner #include "xfs_log.h"
201da177e4SLinus Torvalds 
211da177e4SLinus Torvalds #ifdef DEBUG
22cd4a3c50SDave Chinner /*
23cd4a3c50SDave Chinner  * Check that the list is sorted as it should be.
24d686d12dSDave Chinner  *
25d686d12dSDave Chinner  * Called with the ail lock held, but we don't want to assert fail with it
26d686d12dSDave Chinner  * held otherwise we'll lock everything up and won't be able to debug the
27d686d12dSDave Chinner  * cause. Hence we sample and check the state under the AIL lock and return if
28d686d12dSDave Chinner  * everything is fine, otherwise we drop the lock and run the ASSERT checks.
29d686d12dSDave Chinner  * Asserts may not be fatal, so pick the lock back up and continue onwards.
30cd4a3c50SDave Chinner  */
31cd4a3c50SDave Chinner STATIC void
32cd4a3c50SDave Chinner xfs_ail_check(
33cd4a3c50SDave Chinner 	struct xfs_ail		*ailp,
34d686d12dSDave Chinner 	struct xfs_log_item	*lip)
35cd4a3c50SDave Chinner {
36d686d12dSDave Chinner 	struct xfs_log_item	*prev_lip;
37d686d12dSDave Chinner 	struct xfs_log_item	*next_lip;
38d686d12dSDave Chinner 	xfs_lsn_t		prev_lsn = NULLCOMMITLSN;
39d686d12dSDave Chinner 	xfs_lsn_t		next_lsn = NULLCOMMITLSN;
40d686d12dSDave Chinner 	xfs_lsn_t		lsn;
41d686d12dSDave Chinner 	bool			in_ail;
42d686d12dSDave Chinner 
43cd4a3c50SDave Chinner 
4457e80956SMatthew Wilcox 	if (list_empty(&ailp->ail_head))
45cd4a3c50SDave Chinner 		return;
46cd4a3c50SDave Chinner 
47cd4a3c50SDave Chinner 	/*
48d686d12dSDave Chinner 	 * Sample then check the next and previous entries are valid.
49cd4a3c50SDave Chinner 	 */
50d686d12dSDave Chinner 	in_ail = test_bit(XFS_LI_IN_AIL, &lip->li_flags);
51d686d12dSDave Chinner 	prev_lip = list_entry(lip->li_ail.prev, struct xfs_log_item, li_ail);
5257e80956SMatthew Wilcox 	if (&prev_lip->li_ail != &ailp->ail_head)
53d686d12dSDave Chinner 		prev_lsn = prev_lip->li_lsn;
54d686d12dSDave Chinner 	next_lip = list_entry(lip->li_ail.next, struct xfs_log_item, li_ail);
55d686d12dSDave Chinner 	if (&next_lip->li_ail != &ailp->ail_head)
56d686d12dSDave Chinner 		next_lsn = next_lip->li_lsn;
57d686d12dSDave Chinner 	lsn = lip->li_lsn;
58cd4a3c50SDave Chinner 
59d686d12dSDave Chinner 	if (in_ail &&
60d686d12dSDave Chinner 	    (prev_lsn == NULLCOMMITLSN || XFS_LSN_CMP(prev_lsn, lsn) <= 0) &&
61d686d12dSDave Chinner 	    (next_lsn == NULLCOMMITLSN || XFS_LSN_CMP(next_lsn, lsn) >= 0))
62d686d12dSDave Chinner 		return;
63cd4a3c50SDave Chinner 
64d686d12dSDave Chinner 	spin_unlock(&ailp->ail_lock);
65d686d12dSDave Chinner 	ASSERT(in_ail);
66d686d12dSDave Chinner 	ASSERT(prev_lsn == NULLCOMMITLSN || XFS_LSN_CMP(prev_lsn, lsn) <= 0);
67d686d12dSDave Chinner 	ASSERT(next_lsn == NULLCOMMITLSN || XFS_LSN_CMP(next_lsn, lsn) >= 0);
68d686d12dSDave Chinner 	spin_lock(&ailp->ail_lock);
69cd4a3c50SDave Chinner }
70cd4a3c50SDave Chinner #else /* !DEBUG */
71de08dbc1SDavid Chinner #define	xfs_ail_check(a,l)
721da177e4SLinus Torvalds #endif /* DEBUG */
731da177e4SLinus Torvalds 
74cd4a3c50SDave Chinner /*
75fd074841SDave Chinner  * Return a pointer to the last item in the AIL.  If the AIL is empty, then
76fd074841SDave Chinner  * return NULL.
77fd074841SDave Chinner  */
78fd074841SDave Chinner static xfs_log_item_t *
79fd074841SDave Chinner xfs_ail_max(
80fd074841SDave Chinner 	struct xfs_ail  *ailp)
81fd074841SDave Chinner {
8257e80956SMatthew Wilcox 	if (list_empty(&ailp->ail_head))
83fd074841SDave Chinner 		return NULL;
84fd074841SDave Chinner 
8557e80956SMatthew Wilcox 	return list_entry(ailp->ail_head.prev, xfs_log_item_t, li_ail);
86fd074841SDave Chinner }
87fd074841SDave Chinner 
88fd074841SDave Chinner /*
89cd4a3c50SDave Chinner  * Return a pointer to the item which follows the given item in the AIL.  If
90cd4a3c50SDave Chinner  * the given item is the last item in the list, then return NULL.
91cd4a3c50SDave Chinner  */
92cd4a3c50SDave Chinner static xfs_log_item_t *
93cd4a3c50SDave Chinner xfs_ail_next(
94cd4a3c50SDave Chinner 	struct xfs_ail  *ailp,
95cd4a3c50SDave Chinner 	xfs_log_item_t  *lip)
96cd4a3c50SDave Chinner {
9757e80956SMatthew Wilcox 	if (lip->li_ail.next == &ailp->ail_head)
98cd4a3c50SDave Chinner 		return NULL;
99cd4a3c50SDave Chinner 
100cd4a3c50SDave Chinner 	return list_first_entry(&lip->li_ail, xfs_log_item_t, li_ail);
101cd4a3c50SDave Chinner }
102cd4a3c50SDave Chinner 
103cd4a3c50SDave Chinner /*
104cd4a3c50SDave Chinner  * This is called by the log manager code to determine the LSN of the tail of
105cd4a3c50SDave Chinner  * the log.  This is exactly the LSN of the first item in the AIL.  If the AIL
106cd4a3c50SDave Chinner  * is empty, then this function returns 0.
1071da177e4SLinus Torvalds  *
108cd4a3c50SDave Chinner  * We need the AIL lock in order to get a coherent read of the lsn of the last
109cd4a3c50SDave Chinner  * item in the AIL.
1101da177e4SLinus Torvalds  */
1111da177e4SLinus Torvalds xfs_lsn_t
112fd074841SDave Chinner xfs_ail_min_lsn(
1135b00f14fSDavid Chinner 	struct xfs_ail	*ailp)
1141da177e4SLinus Torvalds {
115cd4a3c50SDave Chinner 	xfs_lsn_t	lsn = 0;
1161da177e4SLinus Torvalds 	xfs_log_item_t	*lip;
1171da177e4SLinus Torvalds 
11857e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
1195b00f14fSDavid Chinner 	lip = xfs_ail_min(ailp);
120cd4a3c50SDave Chinner 	if (lip)
1211da177e4SLinus Torvalds 		lsn = lip->li_lsn;
12257e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
1231da177e4SLinus Torvalds 
1241da177e4SLinus Torvalds 	return lsn;
1251da177e4SLinus Torvalds }
1261da177e4SLinus Torvalds 
1271da177e4SLinus Torvalds /*
128fd074841SDave Chinner  * Return the maximum lsn held in the AIL, or zero if the AIL is empty.
129fd074841SDave Chinner  */
130fd074841SDave Chinner static xfs_lsn_t
131fd074841SDave Chinner xfs_ail_max_lsn(
132fd074841SDave Chinner 	struct xfs_ail  *ailp)
133fd074841SDave Chinner {
134fd074841SDave Chinner 	xfs_lsn_t       lsn = 0;
135fd074841SDave Chinner 	xfs_log_item_t  *lip;
136fd074841SDave Chinner 
13757e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
138fd074841SDave Chinner 	lip = xfs_ail_max(ailp);
139fd074841SDave Chinner 	if (lip)
140fd074841SDave Chinner 		lsn = lip->li_lsn;
14157e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
142fd074841SDave Chinner 
143fd074841SDave Chinner 	return lsn;
144fd074841SDave Chinner }
145fd074841SDave Chinner 
146fd074841SDave Chinner /*
147af3e4022SDave Chinner  * The cursor keeps track of where our current traversal is up to by tracking
148af3e4022SDave Chinner  * the next item in the list for us. However, for this to be safe, removing an
149af3e4022SDave Chinner  * object from the AIL needs to invalidate any cursor that points to it. hence
150af3e4022SDave Chinner  * the traversal cursor needs to be linked to the struct xfs_ail so that
151af3e4022SDave Chinner  * deletion can search all the active cursors for invalidation.
15227d8d5feSDavid Chinner  */
1535b00f14fSDavid Chinner STATIC void
15427d8d5feSDavid Chinner xfs_trans_ail_cursor_init(
15527d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
15627d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
15727d8d5feSDavid Chinner {
15827d8d5feSDavid Chinner 	cur->item = NULL;
15957e80956SMatthew Wilcox 	list_add_tail(&cur->list, &ailp->ail_cursors);
16027d8d5feSDavid Chinner }
16127d8d5feSDavid Chinner 
16227d8d5feSDavid Chinner /*
163af3e4022SDave Chinner  * Get the next item in the traversal and advance the cursor.  If the cursor
164af3e4022SDave Chinner  * was invalidated (indicated by a lip of 1), restart the traversal.
16527d8d5feSDavid Chinner  */
1665b00f14fSDavid Chinner struct xfs_log_item *
16727d8d5feSDavid Chinner xfs_trans_ail_cursor_next(
16827d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
16927d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
17027d8d5feSDavid Chinner {
17127d8d5feSDavid Chinner 	struct xfs_log_item	*lip = cur->item;
17227d8d5feSDavid Chinner 
173db9d67d6SChristoph Hellwig 	if ((uintptr_t)lip & 1)
17427d8d5feSDavid Chinner 		lip = xfs_ail_min(ailp);
17516b59029SDave Chinner 	if (lip)
17616b59029SDave Chinner 		cur->item = xfs_ail_next(ailp, lip);
17727d8d5feSDavid Chinner 	return lip;
17827d8d5feSDavid Chinner }
17927d8d5feSDavid Chinner 
18027d8d5feSDavid Chinner /*
181af3e4022SDave Chinner  * When the traversal is complete, we need to remove the cursor from the list
182af3e4022SDave Chinner  * of traversing cursors.
18327d8d5feSDavid Chinner  */
18427d8d5feSDavid Chinner void
18527d8d5feSDavid Chinner xfs_trans_ail_cursor_done(
186af3e4022SDave Chinner 	struct xfs_ail_cursor	*cur)
18727d8d5feSDavid Chinner {
188af3e4022SDave Chinner 	cur->item = NULL;
189af3e4022SDave Chinner 	list_del_init(&cur->list);
19027d8d5feSDavid Chinner }
19127d8d5feSDavid Chinner 
19227d8d5feSDavid Chinner /*
193af3e4022SDave Chinner  * Invalidate any cursor that is pointing to this item. This is called when an
194af3e4022SDave Chinner  * item is removed from the AIL. Any cursor pointing to this object is now
195af3e4022SDave Chinner  * invalid and the traversal needs to be terminated so it doesn't reference a
196af3e4022SDave Chinner  * freed object. We set the low bit of the cursor item pointer so we can
197af3e4022SDave Chinner  * distinguish between an invalidation and the end of the list when getting the
198af3e4022SDave Chinner  * next item from the cursor.
1995b00f14fSDavid Chinner  */
2005b00f14fSDavid Chinner STATIC void
2015b00f14fSDavid Chinner xfs_trans_ail_cursor_clear(
2025b00f14fSDavid Chinner 	struct xfs_ail		*ailp,
2035b00f14fSDavid Chinner 	struct xfs_log_item	*lip)
2045b00f14fSDavid Chinner {
2055b00f14fSDavid Chinner 	struct xfs_ail_cursor	*cur;
2065b00f14fSDavid Chinner 
20757e80956SMatthew Wilcox 	list_for_each_entry(cur, &ailp->ail_cursors, list) {
2085b00f14fSDavid Chinner 		if (cur->item == lip)
2095b00f14fSDavid Chinner 			cur->item = (struct xfs_log_item *)
210db9d67d6SChristoph Hellwig 					((uintptr_t)cur->item | 1);
2115b00f14fSDavid Chinner 	}
2125b00f14fSDavid Chinner }
2135b00f14fSDavid Chinner 
2145b00f14fSDavid Chinner /*
21516b59029SDave Chinner  * Find the first item in the AIL with the given @lsn by searching in ascending
21616b59029SDave Chinner  * LSN order and initialise the cursor to point to the next item for a
21716b59029SDave Chinner  * ascending traversal.  Pass a @lsn of zero to initialise the cursor to the
21816b59029SDave Chinner  * first item in the AIL. Returns NULL if the list is empty.
219249a8c11SDavid Chinner  */
2205b00f14fSDavid Chinner xfs_log_item_t *
2215b00f14fSDavid Chinner xfs_trans_ail_cursor_first(
22227d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
22327d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur,
224249a8c11SDavid Chinner 	xfs_lsn_t		lsn)
225249a8c11SDavid Chinner {
226249a8c11SDavid Chinner 	xfs_log_item_t		*lip;
227249a8c11SDavid Chinner 
2285b00f14fSDavid Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
22916b59029SDave Chinner 
23016b59029SDave Chinner 	if (lsn == 0) {
23127d8d5feSDavid Chinner 		lip = xfs_ail_min(ailp);
2325b00f14fSDavid Chinner 		goto out;
23316b59029SDave Chinner 	}
234249a8c11SDavid Chinner 
23557e80956SMatthew Wilcox 	list_for_each_entry(lip, &ailp->ail_head, li_ail) {
2365b00f14fSDavid Chinner 		if (XFS_LSN_CMP(lip->li_lsn, lsn) >= 0)
2377ee49acfSDavid Chinner 			goto out;
2385b00f14fSDavid Chinner 	}
23916b59029SDave Chinner 	return NULL;
24016b59029SDave Chinner 
2415b00f14fSDavid Chinner out:
24216b59029SDave Chinner 	if (lip)
24316b59029SDave Chinner 		cur->item = xfs_ail_next(ailp, lip);
244249a8c11SDavid Chinner 	return lip;
245249a8c11SDavid Chinner }
246535f6b37SJosef 'Jeff' Sipek 
2471d8c95a3SDave Chinner static struct xfs_log_item *
2481d8c95a3SDave Chinner __xfs_trans_ail_cursor_last(
2491d8c95a3SDave Chinner 	struct xfs_ail		*ailp,
2501d8c95a3SDave Chinner 	xfs_lsn_t		lsn)
2511d8c95a3SDave Chinner {
2521d8c95a3SDave Chinner 	xfs_log_item_t		*lip;
2531d8c95a3SDave Chinner 
25457e80956SMatthew Wilcox 	list_for_each_entry_reverse(lip, &ailp->ail_head, li_ail) {
2551d8c95a3SDave Chinner 		if (XFS_LSN_CMP(lip->li_lsn, lsn) <= 0)
2561d8c95a3SDave Chinner 			return lip;
2571d8c95a3SDave Chinner 	}
2581d8c95a3SDave Chinner 	return NULL;
2591d8c95a3SDave Chinner }
2601d8c95a3SDave Chinner 
2611d8c95a3SDave Chinner /*
26216b59029SDave Chinner  * Find the last item in the AIL with the given @lsn by searching in descending
26316b59029SDave Chinner  * LSN order and initialise the cursor to point to that item.  If there is no
26416b59029SDave Chinner  * item with the value of @lsn, then it sets the cursor to the last item with an
26516b59029SDave Chinner  * LSN lower than @lsn.  Returns NULL if the list is empty.
2661d8c95a3SDave Chinner  */
2671d8c95a3SDave Chinner struct xfs_log_item *
2681d8c95a3SDave Chinner xfs_trans_ail_cursor_last(
2691d8c95a3SDave Chinner 	struct xfs_ail		*ailp,
2701d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
2711d8c95a3SDave Chinner 	xfs_lsn_t		lsn)
2721d8c95a3SDave Chinner {
2731d8c95a3SDave Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
2741d8c95a3SDave Chinner 	cur->item = __xfs_trans_ail_cursor_last(ailp, lsn);
2751d8c95a3SDave Chinner 	return cur->item;
2761d8c95a3SDave Chinner }
2771d8c95a3SDave Chinner 
2781d8c95a3SDave Chinner /*
27916b59029SDave Chinner  * Splice the log item list into the AIL at the given LSN. We splice to the
2801d8c95a3SDave Chinner  * tail of the given LSN to maintain insert order for push traversals. The
2811d8c95a3SDave Chinner  * cursor is optional, allowing repeated updates to the same LSN to avoid
282e44f4112SAlex Elder  * repeated traversals.  This should not be called with an empty list.
283cd4a3c50SDave Chinner  */
284cd4a3c50SDave Chinner static void
285cd4a3c50SDave Chinner xfs_ail_splice(
286cd4a3c50SDave Chinner 	struct xfs_ail		*ailp,
2871d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
288cd4a3c50SDave Chinner 	struct list_head	*list,
289cd4a3c50SDave Chinner 	xfs_lsn_t		lsn)
290cd4a3c50SDave Chinner {
291e44f4112SAlex Elder 	struct xfs_log_item	*lip;
292e44f4112SAlex Elder 
293e44f4112SAlex Elder 	ASSERT(!list_empty(list));
294cd4a3c50SDave Chinner 
2951d8c95a3SDave Chinner 	/*
296e44f4112SAlex Elder 	 * Use the cursor to determine the insertion point if one is
297e44f4112SAlex Elder 	 * provided.  If not, or if the one we got is not valid,
298e44f4112SAlex Elder 	 * find the place in the AIL where the items belong.
2991d8c95a3SDave Chinner 	 */
300e44f4112SAlex Elder 	lip = cur ? cur->item : NULL;
301db9d67d6SChristoph Hellwig 	if (!lip || (uintptr_t)lip & 1)
3021d8c95a3SDave Chinner 		lip = __xfs_trans_ail_cursor_last(ailp, lsn);
3031d8c95a3SDave Chinner 
304e44f4112SAlex Elder 	/*
305e44f4112SAlex Elder 	 * If a cursor is provided, we know we're processing the AIL
306e44f4112SAlex Elder 	 * in lsn order, and future items to be spliced in will
307e44f4112SAlex Elder 	 * follow the last one being inserted now.  Update the
308e44f4112SAlex Elder 	 * cursor to point to that last item, now while we have a
309e44f4112SAlex Elder 	 * reliable pointer to it.
310e44f4112SAlex Elder 	 */
3111d8c95a3SDave Chinner 	if (cur)
312e44f4112SAlex Elder 		cur->item = list_entry(list->prev, struct xfs_log_item, li_ail);
313cd4a3c50SDave Chinner 
3141d8c95a3SDave Chinner 	/*
315e44f4112SAlex Elder 	 * Finally perform the splice.  Unless the AIL was empty,
316e44f4112SAlex Elder 	 * lip points to the item in the AIL _after_ which the new
317e44f4112SAlex Elder 	 * items should go.  If lip is null the AIL was empty, so
318e44f4112SAlex Elder 	 * the new items go at the head of the AIL.
3191d8c95a3SDave Chinner 	 */
320e44f4112SAlex Elder 	if (lip)
3211d8c95a3SDave Chinner 		list_splice(list, &lip->li_ail);
322e44f4112SAlex Elder 	else
32357e80956SMatthew Wilcox 		list_splice(list, &ailp->ail_head);
324cd4a3c50SDave Chinner }
325cd4a3c50SDave Chinner 
326cd4a3c50SDave Chinner /*
327cd4a3c50SDave Chinner  * Delete the given item from the AIL.  Return a pointer to the item.
328cd4a3c50SDave Chinner  */
329cd4a3c50SDave Chinner static void
330cd4a3c50SDave Chinner xfs_ail_delete(
331cd4a3c50SDave Chinner 	struct xfs_ail  *ailp,
332cd4a3c50SDave Chinner 	xfs_log_item_t  *lip)
333cd4a3c50SDave Chinner {
334cd4a3c50SDave Chinner 	xfs_ail_check(ailp, lip);
335cd4a3c50SDave Chinner 	list_del(&lip->li_ail);
336cd4a3c50SDave Chinner 	xfs_trans_ail_cursor_clear(ailp, lip);
337cd4a3c50SDave Chinner }
338cd4a3c50SDave Chinner 
3397f4d01f3SBrian Foster static inline uint
3407f4d01f3SBrian Foster xfsaild_push_item(
3417f4d01f3SBrian Foster 	struct xfs_ail		*ailp,
3427f4d01f3SBrian Foster 	struct xfs_log_item	*lip)
3437f4d01f3SBrian Foster {
3447f4d01f3SBrian Foster 	/*
3457f4d01f3SBrian Foster 	 * If log item pinning is enabled, skip the push and track the item as
3467f4d01f3SBrian Foster 	 * pinned. This can help induce head-behind-tail conditions.
3477f4d01f3SBrian Foster 	 */
34857e80956SMatthew Wilcox 	if (XFS_TEST_ERROR(false, ailp->ail_mount, XFS_ERRTAG_LOG_ITEM_PIN))
3497f4d01f3SBrian Foster 		return XFS_ITEM_PINNED;
3507f4d01f3SBrian Foster 
351e8b78db7SChristoph Hellwig 	/*
352e8b78db7SChristoph Hellwig 	 * Consider the item pinned if a push callback is not defined so the
353e8b78db7SChristoph Hellwig 	 * caller will force the log. This should only happen for intent items
354e8b78db7SChristoph Hellwig 	 * as they are unpinned once the associated done item is committed to
355e8b78db7SChristoph Hellwig 	 * the on-disk log.
356e8b78db7SChristoph Hellwig 	 */
357e8b78db7SChristoph Hellwig 	if (!lip->li_ops->iop_push)
358e8b78db7SChristoph Hellwig 		return XFS_ITEM_PINNED;
35957e80956SMatthew Wilcox 	return lip->li_ops->iop_push(lip, &ailp->ail_buf_list);
3607f4d01f3SBrian Foster }
3617f4d01f3SBrian Foster 
3620030807cSChristoph Hellwig static long
3630030807cSChristoph Hellwig xfsaild_push(
3640030807cSChristoph Hellwig 	struct xfs_ail		*ailp)
365249a8c11SDavid Chinner {
36657e80956SMatthew Wilcox 	xfs_mount_t		*mp = ailp->ail_mount;
367af3e4022SDave Chinner 	struct xfs_ail_cursor	cur;
3689e7004e7SDave Chinner 	xfs_log_item_t		*lip;
3699e7004e7SDave Chinner 	xfs_lsn_t		lsn;
370fe0da767SDave Chinner 	xfs_lsn_t		target;
37143ff2122SChristoph Hellwig 	long			tout;
3729e7004e7SDave Chinner 	int			stuck = 0;
37343ff2122SChristoph Hellwig 	int			flushing = 0;
3749e7004e7SDave Chinner 	int			count = 0;
3751da177e4SLinus Torvalds 
376670ce93fSDave Chinner 	/*
37743ff2122SChristoph Hellwig 	 * If we encountered pinned items or did not finish writing out all
37843ff2122SChristoph Hellwig 	 * buffers the last time we ran, force the log first and wait for it
37943ff2122SChristoph Hellwig 	 * before pushing again.
380670ce93fSDave Chinner 	 */
38157e80956SMatthew Wilcox 	if (ailp->ail_log_flush && ailp->ail_last_pushed_lsn == 0 &&
38257e80956SMatthew Wilcox 	    (!list_empty_careful(&ailp->ail_buf_list) ||
38343ff2122SChristoph Hellwig 	     xfs_ail_min_lsn(ailp))) {
38457e80956SMatthew Wilcox 		ailp->ail_log_flush = 0;
38543ff2122SChristoph Hellwig 
386ff6d6af2SBill O'Donnell 		XFS_STATS_INC(mp, xs_push_ail_flush);
387670ce93fSDave Chinner 		xfs_log_force(mp, XFS_LOG_SYNC);
388670ce93fSDave Chinner 	}
389670ce93fSDave Chinner 
39057e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
3918375f922SBrian Foster 
39257e80956SMatthew Wilcox 	/* barrier matches the ail_target update in xfs_ail_push() */
3938375f922SBrian Foster 	smp_rmb();
39457e80956SMatthew Wilcox 	target = ailp->ail_target;
39557e80956SMatthew Wilcox 	ailp->ail_target_prev = target;
3968375f922SBrian Foster 
39757e80956SMatthew Wilcox 	lip = xfs_trans_ail_cursor_first(ailp, &cur, ailp->ail_last_pushed_lsn);
398211e4d43SChristoph Hellwig 	if (!lip) {
3991da177e4SLinus Torvalds 		/*
40043ff2122SChristoph Hellwig 		 * If the AIL is empty or our push has reached the end we are
40143ff2122SChristoph Hellwig 		 * done now.
4021da177e4SLinus Torvalds 		 */
403e4a1e29cSEric Sandeen 		xfs_trans_ail_cursor_done(&cur);
40457e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
4059e7004e7SDave Chinner 		goto out_done;
4061da177e4SLinus Torvalds 	}
4071da177e4SLinus Torvalds 
408ff6d6af2SBill O'Donnell 	XFS_STATS_INC(mp, xs_push_ail);
4091da177e4SLinus Torvalds 
410249a8c11SDavid Chinner 	lsn = lip->li_lsn;
41150e86686SDave Chinner 	while ((XFS_LSN_CMP(lip->li_lsn, target) <= 0)) {
412249a8c11SDavid Chinner 		int	lock_result;
41343ff2122SChristoph Hellwig 
414249a8c11SDavid Chinner 		/*
415904c17e6SDave Chinner 		 * Note that iop_push may unlock and reacquire the AIL lock.  We
41643ff2122SChristoph Hellwig 		 * rely on the AIL cursor implementation to be able to deal with
41743ff2122SChristoph Hellwig 		 * the dropped lock.
4181da177e4SLinus Torvalds 		 */
4197f4d01f3SBrian Foster 		lock_result = xfsaild_push_item(ailp, lip);
4201da177e4SLinus Torvalds 		switch (lock_result) {
4211da177e4SLinus Torvalds 		case XFS_ITEM_SUCCESS:
422ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_success);
4239e4c109aSChristoph Hellwig 			trace_xfs_ail_push(lip);
4249e4c109aSChristoph Hellwig 
42557e80956SMatthew Wilcox 			ailp->ail_last_pushed_lsn = lsn;
4261da177e4SLinus Torvalds 			break;
4271da177e4SLinus Torvalds 
42843ff2122SChristoph Hellwig 		case XFS_ITEM_FLUSHING:
42943ff2122SChristoph Hellwig 			/*
43043ff2122SChristoph Hellwig 			 * The item or its backing buffer is already beeing
43143ff2122SChristoph Hellwig 			 * flushed.  The typical reason for that is that an
43243ff2122SChristoph Hellwig 			 * inode buffer is locked because we already pushed the
43343ff2122SChristoph Hellwig 			 * updates to it as part of inode clustering.
43443ff2122SChristoph Hellwig 			 *
43543ff2122SChristoph Hellwig 			 * We do not want to to stop flushing just because lots
43643ff2122SChristoph Hellwig 			 * of items are already beeing flushed, but we need to
43743ff2122SChristoph Hellwig 			 * re-try the flushing relatively soon if most of the
43843ff2122SChristoph Hellwig 			 * AIL is beeing flushed.
43943ff2122SChristoph Hellwig 			 */
440ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_flushing);
44143ff2122SChristoph Hellwig 			trace_xfs_ail_flushing(lip);
44217b38471SChristoph Hellwig 
44343ff2122SChristoph Hellwig 			flushing++;
44457e80956SMatthew Wilcox 			ailp->ail_last_pushed_lsn = lsn;
4451da177e4SLinus Torvalds 			break;
4461da177e4SLinus Torvalds 
4471da177e4SLinus Torvalds 		case XFS_ITEM_PINNED:
448ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_pinned);
4499e4c109aSChristoph Hellwig 			trace_xfs_ail_pinned(lip);
4509e4c109aSChristoph Hellwig 
451249a8c11SDavid Chinner 			stuck++;
45257e80956SMatthew Wilcox 			ailp->ail_log_flush++;
4531da177e4SLinus Torvalds 			break;
4541da177e4SLinus Torvalds 		case XFS_ITEM_LOCKED:
455ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_locked);
4569e4c109aSChristoph Hellwig 			trace_xfs_ail_locked(lip);
45743ff2122SChristoph Hellwig 
458249a8c11SDavid Chinner 			stuck++;
4591da177e4SLinus Torvalds 			break;
4601da177e4SLinus Torvalds 		default:
4611da177e4SLinus Torvalds 			ASSERT(0);
4621da177e4SLinus Torvalds 			break;
4631da177e4SLinus Torvalds 		}
4641da177e4SLinus Torvalds 
465249a8c11SDavid Chinner 		count++;
466249a8c11SDavid Chinner 
467249a8c11SDavid Chinner 		/*
468249a8c11SDavid Chinner 		 * Are there too many items we can't do anything with?
46943ff2122SChristoph Hellwig 		 *
470249a8c11SDavid Chinner 		 * If we we are skipping too many items because we can't flush
471249a8c11SDavid Chinner 		 * them or they are already being flushed, we back off and
472249a8c11SDavid Chinner 		 * given them time to complete whatever operation is being
473249a8c11SDavid Chinner 		 * done. i.e. remove pressure from the AIL while we can't make
474249a8c11SDavid Chinner 		 * progress so traversals don't slow down further inserts and
475249a8c11SDavid Chinner 		 * removals to/from the AIL.
476249a8c11SDavid Chinner 		 *
477249a8c11SDavid Chinner 		 * The value of 100 is an arbitrary magic number based on
478249a8c11SDavid Chinner 		 * observation.
479249a8c11SDavid Chinner 		 */
480249a8c11SDavid Chinner 		if (stuck > 100)
481249a8c11SDavid Chinner 			break;
482249a8c11SDavid Chinner 
483af3e4022SDave Chinner 		lip = xfs_trans_ail_cursor_next(ailp, &cur);
484249a8c11SDavid Chinner 		if (lip == NULL)
485249a8c11SDavid Chinner 			break;
486249a8c11SDavid Chinner 		lsn = lip->li_lsn;
4871da177e4SLinus Torvalds 	}
488e4a1e29cSEric Sandeen 	xfs_trans_ail_cursor_done(&cur);
48957e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
4901da177e4SLinus Torvalds 
49157e80956SMatthew Wilcox 	if (xfs_buf_delwri_submit_nowait(&ailp->ail_buf_list))
49257e80956SMatthew Wilcox 		ailp->ail_log_flush++;
493d808f617SDave Chinner 
49443ff2122SChristoph Hellwig 	if (!count || XFS_LSN_CMP(lsn, target) >= 0) {
4959e7004e7SDave Chinner out_done:
496249a8c11SDavid Chinner 		/*
49743ff2122SChristoph Hellwig 		 * We reached the target or the AIL is empty, so wait a bit
49843ff2122SChristoph Hellwig 		 * longer for I/O to complete and remove pushed items from the
49943ff2122SChristoph Hellwig 		 * AIL before we start the next scan from the start of the AIL.
500249a8c11SDavid Chinner 		 */
501453eac8aSDave Chinner 		tout = 50;
50257e80956SMatthew Wilcox 		ailp->ail_last_pushed_lsn = 0;
50343ff2122SChristoph Hellwig 	} else if (((stuck + flushing) * 100) / count > 90) {
504249a8c11SDavid Chinner 		/*
50543ff2122SChristoph Hellwig 		 * Either there is a lot of contention on the AIL or we are
50643ff2122SChristoph Hellwig 		 * stuck due to operations in progress. "Stuck" in this case
50743ff2122SChristoph Hellwig 		 * is defined as >90% of the items we tried to push were stuck.
508249a8c11SDavid Chinner 		 *
509249a8c11SDavid Chinner 		 * Backoff a bit more to allow some I/O to complete before
51043ff2122SChristoph Hellwig 		 * restarting from the start of the AIL. This prevents us from
51143ff2122SChristoph Hellwig 		 * spinning on the same items, and if they are pinned will all
51243ff2122SChristoph Hellwig 		 * the restart to issue a log force to unpin the stuck items.
513249a8c11SDavid Chinner 		 */
514453eac8aSDave Chinner 		tout = 20;
51557e80956SMatthew Wilcox 		ailp->ail_last_pushed_lsn = 0;
51643ff2122SChristoph Hellwig 	} else {
51743ff2122SChristoph Hellwig 		/*
51843ff2122SChristoph Hellwig 		 * Assume we have more work to do in a short while.
51943ff2122SChristoph Hellwig 		 */
52043ff2122SChristoph Hellwig 		tout = 10;
521453eac8aSDave Chinner 	}
5221da177e4SLinus Torvalds 
5230030807cSChristoph Hellwig 	return tout;
5240030807cSChristoph Hellwig }
5250030807cSChristoph Hellwig 
5260030807cSChristoph Hellwig static int
5270030807cSChristoph Hellwig xfsaild(
5280030807cSChristoph Hellwig 	void		*data)
5290030807cSChristoph Hellwig {
5300030807cSChristoph Hellwig 	struct xfs_ail	*ailp = data;
5310030807cSChristoph Hellwig 	long		tout = 0;	/* milliseconds */
5320030807cSChristoph Hellwig 
53343ff2122SChristoph Hellwig 	current->flags |= PF_MEMALLOC;
53418f1df4eSMichal Hocko 	set_freezable();
53543ff2122SChristoph Hellwig 
5360bd89676SHou Tao 	while (1) {
5370030807cSChristoph Hellwig 		if (tout && tout <= 20)
5380bd89676SHou Tao 			set_current_state(TASK_KILLABLE);
5390030807cSChristoph Hellwig 		else
5400bd89676SHou Tao 			set_current_state(TASK_INTERRUPTIBLE);
5410bd89676SHou Tao 
5420bd89676SHou Tao 		/*
543efc3289cSBrian Foster 		 * Check kthread_should_stop() after we set the task state to
544efc3289cSBrian Foster 		 * guarantee that we either see the stop bit and exit or the
545efc3289cSBrian Foster 		 * task state is reset to runnable such that it's not scheduled
546efc3289cSBrian Foster 		 * out indefinitely and detects the stop bit at next iteration.
5470bd89676SHou Tao 		 * A memory barrier is included in above task state set to
5480bd89676SHou Tao 		 * serialize again kthread_stop().
5490bd89676SHou Tao 		 */
5500bd89676SHou Tao 		if (kthread_should_stop()) {
5510bd89676SHou Tao 			__set_current_state(TASK_RUNNING);
552efc3289cSBrian Foster 
553efc3289cSBrian Foster 			/*
554efc3289cSBrian Foster 			 * The caller forces out the AIL before stopping the
555efc3289cSBrian Foster 			 * thread in the common case, which means the delwri
556efc3289cSBrian Foster 			 * queue is drained. In the shutdown case, the queue may
557efc3289cSBrian Foster 			 * still hold relogged buffers that haven't been
558efc3289cSBrian Foster 			 * submitted because they were pinned since added to the
559efc3289cSBrian Foster 			 * queue.
560efc3289cSBrian Foster 			 *
561efc3289cSBrian Foster 			 * Log I/O error processing stales the underlying buffer
562efc3289cSBrian Foster 			 * and clears the delwri state, expecting the buf to be
563efc3289cSBrian Foster 			 * removed on the next submission attempt. That won't
564efc3289cSBrian Foster 			 * happen if we're shutting down, so this is the last
565efc3289cSBrian Foster 			 * opportunity to release such buffers from the queue.
566efc3289cSBrian Foster 			 */
567efc3289cSBrian Foster 			ASSERT(list_empty(&ailp->ail_buf_list) ||
568efc3289cSBrian Foster 			       XFS_FORCED_SHUTDOWN(ailp->ail_mount));
569efc3289cSBrian Foster 			xfs_buf_delwri_cancel(&ailp->ail_buf_list);
5700bd89676SHou Tao 			break;
5710bd89676SHou Tao 		}
5728375f922SBrian Foster 
57357e80956SMatthew Wilcox 		spin_lock(&ailp->ail_lock);
5748375f922SBrian Foster 
5758375f922SBrian Foster 		/*
5768375f922SBrian Foster 		 * Idle if the AIL is empty and we are not racing with a target
5778375f922SBrian Foster 		 * update. We check the AIL after we set the task to a sleep
57857e80956SMatthew Wilcox 		 * state to guarantee that we either catch an ail_target update
5798375f922SBrian Foster 		 * or that a wake_up resets the state to TASK_RUNNING.
5808375f922SBrian Foster 		 * Otherwise, we run the risk of sleeping indefinitely.
5818375f922SBrian Foster 		 *
58257e80956SMatthew Wilcox 		 * The barrier matches the ail_target update in xfs_ail_push().
5838375f922SBrian Foster 		 */
5848375f922SBrian Foster 		smp_rmb();
5858375f922SBrian Foster 		if (!xfs_ail_min(ailp) &&
58657e80956SMatthew Wilcox 		    ailp->ail_target == ailp->ail_target_prev) {
58757e80956SMatthew Wilcox 			spin_unlock(&ailp->ail_lock);
58818f1df4eSMichal Hocko 			freezable_schedule();
5898375f922SBrian Foster 			tout = 0;
5908375f922SBrian Foster 			continue;
5918375f922SBrian Foster 		}
59257e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
5938375f922SBrian Foster 
5948375f922SBrian Foster 		if (tout)
59518f1df4eSMichal Hocko 			freezable_schedule_timeout(msecs_to_jiffies(tout));
5968375f922SBrian Foster 
5978375f922SBrian Foster 		__set_current_state(TASK_RUNNING);
5980030807cSChristoph Hellwig 
5990030807cSChristoph Hellwig 		try_to_freeze();
6000030807cSChristoph Hellwig 
6010030807cSChristoph Hellwig 		tout = xfsaild_push(ailp);
6020030807cSChristoph Hellwig 	}
6030030807cSChristoph Hellwig 
6040030807cSChristoph Hellwig 	return 0;
6050bf6a5bdSDave Chinner }
6060bf6a5bdSDave Chinner 
6070bf6a5bdSDave Chinner /*
6080bf6a5bdSDave Chinner  * This routine is called to move the tail of the AIL forward.  It does this by
6090bf6a5bdSDave Chinner  * trying to flush items in the AIL whose lsns are below the given
6100bf6a5bdSDave Chinner  * threshold_lsn.
6110bf6a5bdSDave Chinner  *
6120bf6a5bdSDave Chinner  * The push is run asynchronously in a workqueue, which means the caller needs
6130bf6a5bdSDave Chinner  * to handle waiting on the async flush for space to become available.
6140bf6a5bdSDave Chinner  * We don't want to interrupt any push that is in progress, hence we only queue
6150bf6a5bdSDave Chinner  * work if we set the pushing bit approriately.
6160bf6a5bdSDave Chinner  *
6170bf6a5bdSDave Chinner  * We do this unlocked - we only need to know whether there is anything in the
6180bf6a5bdSDave Chinner  * AIL at the time we are called. We don't need to access the contents of
6190bf6a5bdSDave Chinner  * any of the objects, so the lock is not needed.
6200bf6a5bdSDave Chinner  */
6210bf6a5bdSDave Chinner void
622fd074841SDave Chinner xfs_ail_push(
6230bf6a5bdSDave Chinner 	struct xfs_ail	*ailp,
6240bf6a5bdSDave Chinner 	xfs_lsn_t	threshold_lsn)
6250bf6a5bdSDave Chinner {
6260bf6a5bdSDave Chinner 	xfs_log_item_t	*lip;
6270bf6a5bdSDave Chinner 
6280bf6a5bdSDave Chinner 	lip = xfs_ail_min(ailp);
62957e80956SMatthew Wilcox 	if (!lip || XFS_FORCED_SHUTDOWN(ailp->ail_mount) ||
63057e80956SMatthew Wilcox 	    XFS_LSN_CMP(threshold_lsn, ailp->ail_target) <= 0)
6310bf6a5bdSDave Chinner 		return;
6320bf6a5bdSDave Chinner 
6330bf6a5bdSDave Chinner 	/*
6340bf6a5bdSDave Chinner 	 * Ensure that the new target is noticed in push code before it clears
6350bf6a5bdSDave Chinner 	 * the XFS_AIL_PUSHING_BIT.
6360bf6a5bdSDave Chinner 	 */
6370bf6a5bdSDave Chinner 	smp_wmb();
63857e80956SMatthew Wilcox 	xfs_trans_ail_copy_lsn(ailp, &ailp->ail_target, &threshold_lsn);
6390030807cSChristoph Hellwig 	smp_wmb();
6400030807cSChristoph Hellwig 
64157e80956SMatthew Wilcox 	wake_up_process(ailp->ail_task);
6420bf6a5bdSDave Chinner }
6431da177e4SLinus Torvalds 
6441da177e4SLinus Torvalds /*
645fd074841SDave Chinner  * Push out all items in the AIL immediately
646fd074841SDave Chinner  */
647fd074841SDave Chinner void
648fd074841SDave Chinner xfs_ail_push_all(
649fd074841SDave Chinner 	struct xfs_ail  *ailp)
650fd074841SDave Chinner {
651fd074841SDave Chinner 	xfs_lsn_t       threshold_lsn = xfs_ail_max_lsn(ailp);
652fd074841SDave Chinner 
653fd074841SDave Chinner 	if (threshold_lsn)
654fd074841SDave Chinner 		xfs_ail_push(ailp, threshold_lsn);
655fd074841SDave Chinner }
656fd074841SDave Chinner 
657fd074841SDave Chinner /*
658211e4d43SChristoph Hellwig  * Push out all items in the AIL immediately and wait until the AIL is empty.
659211e4d43SChristoph Hellwig  */
660211e4d43SChristoph Hellwig void
661211e4d43SChristoph Hellwig xfs_ail_push_all_sync(
662211e4d43SChristoph Hellwig 	struct xfs_ail  *ailp)
663211e4d43SChristoph Hellwig {
664211e4d43SChristoph Hellwig 	struct xfs_log_item	*lip;
665211e4d43SChristoph Hellwig 	DEFINE_WAIT(wait);
666211e4d43SChristoph Hellwig 
66757e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
668211e4d43SChristoph Hellwig 	while ((lip = xfs_ail_max(ailp)) != NULL) {
66957e80956SMatthew Wilcox 		prepare_to_wait(&ailp->ail_empty, &wait, TASK_UNINTERRUPTIBLE);
67057e80956SMatthew Wilcox 		ailp->ail_target = lip->li_lsn;
67157e80956SMatthew Wilcox 		wake_up_process(ailp->ail_task);
67257e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
673211e4d43SChristoph Hellwig 		schedule();
67457e80956SMatthew Wilcox 		spin_lock(&ailp->ail_lock);
675211e4d43SChristoph Hellwig 	}
67657e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
677211e4d43SChristoph Hellwig 
67857e80956SMatthew Wilcox 	finish_wait(&ailp->ail_empty, &wait);
679211e4d43SChristoph Hellwig }
680211e4d43SChristoph Hellwig 
681211e4d43SChristoph Hellwig /*
6820e57f6a3SDave Chinner  * xfs_trans_ail_update - bulk AIL insertion operation.
6830e57f6a3SDave Chinner  *
6840e57f6a3SDave Chinner  * @xfs_trans_ail_update takes an array of log items that all need to be
6850e57f6a3SDave Chinner  * positioned at the same LSN in the AIL. If an item is not in the AIL, it will
6860e57f6a3SDave Chinner  * be added.  Otherwise, it will be repositioned  by removing it and re-adding
6870e57f6a3SDave Chinner  * it to the AIL. If we move the first item in the AIL, update the log tail to
6880e57f6a3SDave Chinner  * match the new minimum LSN in the AIL.
6890e57f6a3SDave Chinner  *
6900e57f6a3SDave Chinner  * This function takes the AIL lock once to execute the update operations on
6910e57f6a3SDave Chinner  * all the items in the array, and as such should not be called with the AIL
6920e57f6a3SDave Chinner  * lock held. As a result, once we have the AIL lock, we need to check each log
6930e57f6a3SDave Chinner  * item LSN to confirm it needs to be moved forward in the AIL.
6940e57f6a3SDave Chinner  *
6950e57f6a3SDave Chinner  * To optimise the insert operation, we delete all the items from the AIL in
6960e57f6a3SDave Chinner  * the first pass, moving them into a temporary list, then splice the temporary
6970e57f6a3SDave Chinner  * list into the correct position in the AIL. This avoids needing to do an
6980e57f6a3SDave Chinner  * insert operation on every item.
6990e57f6a3SDave Chinner  *
7000e57f6a3SDave Chinner  * This function must be called with the AIL lock held.  The lock is dropped
7010e57f6a3SDave Chinner  * before returning.
7020e57f6a3SDave Chinner  */
7030e57f6a3SDave Chinner void
7040e57f6a3SDave Chinner xfs_trans_ail_update_bulk(
7050e57f6a3SDave Chinner 	struct xfs_ail		*ailp,
7061d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
7070e57f6a3SDave Chinner 	struct xfs_log_item	**log_items,
7080e57f6a3SDave Chinner 	int			nr_items,
70957e80956SMatthew Wilcox 	xfs_lsn_t		lsn) __releases(ailp->ail_lock)
7100e57f6a3SDave Chinner {
7110e57f6a3SDave Chinner 	xfs_log_item_t		*mlip;
7120e57f6a3SDave Chinner 	int			mlip_changed = 0;
7130e57f6a3SDave Chinner 	int			i;
7140e57f6a3SDave Chinner 	LIST_HEAD(tmp);
7150e57f6a3SDave Chinner 
716e44f4112SAlex Elder 	ASSERT(nr_items > 0);		/* Not required, but true. */
7170e57f6a3SDave Chinner 	mlip = xfs_ail_min(ailp);
7180e57f6a3SDave Chinner 
7190e57f6a3SDave Chinner 	for (i = 0; i < nr_items; i++) {
7200e57f6a3SDave Chinner 		struct xfs_log_item *lip = log_items[i];
72122525c17SDave Chinner 		if (test_and_set_bit(XFS_LI_IN_AIL, &lip->li_flags)) {
7220e57f6a3SDave Chinner 			/* check if we really need to move the item */
7230e57f6a3SDave Chinner 			if (XFS_LSN_CMP(lsn, lip->li_lsn) <= 0)
7240e57f6a3SDave Chinner 				continue;
7250e57f6a3SDave Chinner 
726750b9c90SDave Chinner 			trace_xfs_ail_move(lip, lip->li_lsn, lsn);
7270e57f6a3SDave Chinner 			xfs_ail_delete(ailp, lip);
7280e57f6a3SDave Chinner 			if (mlip == lip)
7290e57f6a3SDave Chinner 				mlip_changed = 1;
7300e57f6a3SDave Chinner 		} else {
731750b9c90SDave Chinner 			trace_xfs_ail_insert(lip, 0, lsn);
7320e57f6a3SDave Chinner 		}
7330e57f6a3SDave Chinner 		lip->li_lsn = lsn;
7340e57f6a3SDave Chinner 		list_add(&lip->li_ail, &tmp);
7350e57f6a3SDave Chinner 	}
7360e57f6a3SDave Chinner 
737e44f4112SAlex Elder 	if (!list_empty(&tmp))
7381d8c95a3SDave Chinner 		xfs_ail_splice(ailp, cur, &tmp, lsn);
7391c304625SChristoph Hellwig 
7401c304625SChristoph Hellwig 	if (mlip_changed) {
74157e80956SMatthew Wilcox 		if (!XFS_FORCED_SHUTDOWN(ailp->ail_mount))
74257e80956SMatthew Wilcox 			xlog_assign_tail_lsn_locked(ailp->ail_mount);
74357e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
74409a423a3SChristoph Hellwig 
74557e80956SMatthew Wilcox 		xfs_log_space_wake(ailp->ail_mount);
7461c304625SChristoph Hellwig 	} else {
74757e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
7480e57f6a3SDave Chinner 	}
7490e57f6a3SDave Chinner }
7500e57f6a3SDave Chinner 
75127af1bbfSChristoph Hellwig bool
75227af1bbfSChristoph Hellwig xfs_ail_delete_one(
75327af1bbfSChristoph Hellwig 	struct xfs_ail		*ailp,
75427af1bbfSChristoph Hellwig 	struct xfs_log_item	*lip)
75527af1bbfSChristoph Hellwig {
75627af1bbfSChristoph Hellwig 	struct xfs_log_item	*mlip = xfs_ail_min(ailp);
75727af1bbfSChristoph Hellwig 
75827af1bbfSChristoph Hellwig 	trace_xfs_ail_delete(lip, mlip->li_lsn, lip->li_lsn);
75927af1bbfSChristoph Hellwig 	xfs_ail_delete(ailp, lip);
760d3a304b6SCarlos Maiolino 	xfs_clear_li_failed(lip);
76122525c17SDave Chinner 	clear_bit(XFS_LI_IN_AIL, &lip->li_flags);
76227af1bbfSChristoph Hellwig 	lip->li_lsn = 0;
76327af1bbfSChristoph Hellwig 
76427af1bbfSChristoph Hellwig 	return mlip == lip;
76527af1bbfSChristoph Hellwig }
76627af1bbfSChristoph Hellwig 
76727af1bbfSChristoph Hellwig /**
76827af1bbfSChristoph Hellwig  * Remove a log items from the AIL
76930136832SDave Chinner  *
77030136832SDave Chinner  * @xfs_trans_ail_delete_bulk takes an array of log items that all need to
77130136832SDave Chinner  * removed from the AIL. The caller is already holding the AIL lock, and done
77230136832SDave Chinner  * all the checks necessary to ensure the items passed in via @log_items are
77330136832SDave Chinner  * ready for deletion. This includes checking that the items are in the AIL.
77430136832SDave Chinner  *
77530136832SDave Chinner  * For each log item to be removed, unlink it  from the AIL, clear the IN_AIL
77630136832SDave Chinner  * flag from the item and reset the item's lsn to 0. If we remove the first
77730136832SDave Chinner  * item in the AIL, update the log tail to match the new minimum LSN in the
77830136832SDave Chinner  * AIL.
77930136832SDave Chinner  *
78030136832SDave Chinner  * This function will not drop the AIL lock until all items are removed from
78130136832SDave Chinner  * the AIL to minimise the amount of lock traffic on the AIL. This does not
78230136832SDave Chinner  * greatly increase the AIL hold time, but does significantly reduce the amount
78330136832SDave Chinner  * of traffic on the lock, especially during IO completion.
78430136832SDave Chinner  *
78530136832SDave Chinner  * This function must be called with the AIL lock held.  The lock is dropped
78630136832SDave Chinner  * before returning.
78730136832SDave Chinner  */
78830136832SDave Chinner void
78927af1bbfSChristoph Hellwig xfs_trans_ail_delete(
79030136832SDave Chinner 	struct xfs_ail		*ailp,
79127af1bbfSChristoph Hellwig 	struct xfs_log_item	*lip,
79257e80956SMatthew Wilcox 	int			shutdown_type) __releases(ailp->ail_lock)
79330136832SDave Chinner {
79457e80956SMatthew Wilcox 	struct xfs_mount	*mp = ailp->ail_mount;
79527af1bbfSChristoph Hellwig 	bool			mlip_changed;
79630136832SDave Chinner 
79722525c17SDave Chinner 	if (!test_bit(XFS_LI_IN_AIL, &lip->li_flags)) {
79857e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
79930136832SDave Chinner 		if (!XFS_FORCED_SHUTDOWN(mp)) {
8006a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_AILDELETE,
80130136832SDave Chinner 	"%s: attempting to delete a log item that is not in the AIL",
80230136832SDave Chinner 					__func__);
80304913fddSDave Chinner 			xfs_force_shutdown(mp, shutdown_type);
80430136832SDave Chinner 		}
80530136832SDave Chinner 		return;
80630136832SDave Chinner 	}
80730136832SDave Chinner 
80827af1bbfSChristoph Hellwig 	mlip_changed = xfs_ail_delete_one(ailp, lip);
8091c304625SChristoph Hellwig 	if (mlip_changed) {
81027af1bbfSChristoph Hellwig 		if (!XFS_FORCED_SHUTDOWN(mp))
81127af1bbfSChristoph Hellwig 			xlog_assign_tail_lsn_locked(mp);
81257e80956SMatthew Wilcox 		if (list_empty(&ailp->ail_head))
81357e80956SMatthew Wilcox 			wake_up_all(&ailp->ail_empty);
81430136832SDave Chinner 	}
81527af1bbfSChristoph Hellwig 
81657e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
81727af1bbfSChristoph Hellwig 	if (mlip_changed)
81857e80956SMatthew Wilcox 		xfs_log_space_wake(ailp->ail_mount);
81930136832SDave Chinner }
8201da177e4SLinus Torvalds 
821249a8c11SDavid Chinner int
8221da177e4SLinus Torvalds xfs_trans_ail_init(
8231da177e4SLinus Torvalds 	xfs_mount_t	*mp)
8241da177e4SLinus Torvalds {
82582fa9012SDavid Chinner 	struct xfs_ail	*ailp;
82682fa9012SDavid Chinner 
82782fa9012SDavid Chinner 	ailp = kmem_zalloc(sizeof(struct xfs_ail), KM_MAYFAIL);
82882fa9012SDavid Chinner 	if (!ailp)
8292451337dSDave Chinner 		return -ENOMEM;
83082fa9012SDavid Chinner 
83157e80956SMatthew Wilcox 	ailp->ail_mount = mp;
83257e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_head);
83357e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_cursors);
83457e80956SMatthew Wilcox 	spin_lock_init(&ailp->ail_lock);
83557e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_buf_list);
83657e80956SMatthew Wilcox 	init_waitqueue_head(&ailp->ail_empty);
8370030807cSChristoph Hellwig 
83857e80956SMatthew Wilcox 	ailp->ail_task = kthread_run(xfsaild, ailp, "xfsaild/%s",
83957e80956SMatthew Wilcox 			ailp->ail_mount->m_fsname);
84057e80956SMatthew Wilcox 	if (IS_ERR(ailp->ail_task))
8410030807cSChristoph Hellwig 		goto out_free_ailp;
8420030807cSChristoph Hellwig 
84327d8d5feSDavid Chinner 	mp->m_ail = ailp;
84427d8d5feSDavid Chinner 	return 0;
8450030807cSChristoph Hellwig 
8460030807cSChristoph Hellwig out_free_ailp:
8470030807cSChristoph Hellwig 	kmem_free(ailp);
8482451337dSDave Chinner 	return -ENOMEM;
849249a8c11SDavid Chinner }
850249a8c11SDavid Chinner 
851249a8c11SDavid Chinner void
852249a8c11SDavid Chinner xfs_trans_ail_destroy(
853249a8c11SDavid Chinner 	xfs_mount_t	*mp)
854249a8c11SDavid Chinner {
85582fa9012SDavid Chinner 	struct xfs_ail	*ailp = mp->m_ail;
85682fa9012SDavid Chinner 
85757e80956SMatthew Wilcox 	kthread_stop(ailp->ail_task);
85882fa9012SDavid Chinner 	kmem_free(ailp);
8591da177e4SLinus Torvalds }
860