xref: /openbmc/linux/fs/xfs/xfs_trans_ail.c (revision 5467b34b)
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 
35157e80956SMatthew Wilcox 	return lip->li_ops->iop_push(lip, &ailp->ail_buf_list);
3527f4d01f3SBrian Foster }
3537f4d01f3SBrian Foster 
3540030807cSChristoph Hellwig static long
3550030807cSChristoph Hellwig xfsaild_push(
3560030807cSChristoph Hellwig 	struct xfs_ail		*ailp)
357249a8c11SDavid Chinner {
35857e80956SMatthew Wilcox 	xfs_mount_t		*mp = ailp->ail_mount;
359af3e4022SDave Chinner 	struct xfs_ail_cursor	cur;
3609e7004e7SDave Chinner 	xfs_log_item_t		*lip;
3619e7004e7SDave Chinner 	xfs_lsn_t		lsn;
362fe0da767SDave Chinner 	xfs_lsn_t		target;
36343ff2122SChristoph Hellwig 	long			tout;
3649e7004e7SDave Chinner 	int			stuck = 0;
36543ff2122SChristoph Hellwig 	int			flushing = 0;
3669e7004e7SDave Chinner 	int			count = 0;
3671da177e4SLinus Torvalds 
368670ce93fSDave Chinner 	/*
36943ff2122SChristoph Hellwig 	 * If we encountered pinned items or did not finish writing out all
37043ff2122SChristoph Hellwig 	 * buffers the last time we ran, force the log first and wait for it
37143ff2122SChristoph Hellwig 	 * before pushing again.
372670ce93fSDave Chinner 	 */
37357e80956SMatthew Wilcox 	if (ailp->ail_log_flush && ailp->ail_last_pushed_lsn == 0 &&
37457e80956SMatthew Wilcox 	    (!list_empty_careful(&ailp->ail_buf_list) ||
37543ff2122SChristoph Hellwig 	     xfs_ail_min_lsn(ailp))) {
37657e80956SMatthew Wilcox 		ailp->ail_log_flush = 0;
37743ff2122SChristoph Hellwig 
378ff6d6af2SBill O'Donnell 		XFS_STATS_INC(mp, xs_push_ail_flush);
379670ce93fSDave Chinner 		xfs_log_force(mp, XFS_LOG_SYNC);
380670ce93fSDave Chinner 	}
381670ce93fSDave Chinner 
38257e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
3838375f922SBrian Foster 
38457e80956SMatthew Wilcox 	/* barrier matches the ail_target update in xfs_ail_push() */
3858375f922SBrian Foster 	smp_rmb();
38657e80956SMatthew Wilcox 	target = ailp->ail_target;
38757e80956SMatthew Wilcox 	ailp->ail_target_prev = target;
3888375f922SBrian Foster 
38957e80956SMatthew Wilcox 	lip = xfs_trans_ail_cursor_first(ailp, &cur, ailp->ail_last_pushed_lsn);
390211e4d43SChristoph Hellwig 	if (!lip) {
3911da177e4SLinus Torvalds 		/*
39243ff2122SChristoph Hellwig 		 * If the AIL is empty or our push has reached the end we are
39343ff2122SChristoph Hellwig 		 * done now.
3941da177e4SLinus Torvalds 		 */
395e4a1e29cSEric Sandeen 		xfs_trans_ail_cursor_done(&cur);
39657e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
3979e7004e7SDave Chinner 		goto out_done;
3981da177e4SLinus Torvalds 	}
3991da177e4SLinus Torvalds 
400ff6d6af2SBill O'Donnell 	XFS_STATS_INC(mp, xs_push_ail);
4011da177e4SLinus Torvalds 
402249a8c11SDavid Chinner 	lsn = lip->li_lsn;
40350e86686SDave Chinner 	while ((XFS_LSN_CMP(lip->li_lsn, target) <= 0)) {
404249a8c11SDavid Chinner 		int	lock_result;
40543ff2122SChristoph Hellwig 
406249a8c11SDavid Chinner 		/*
407904c17e6SDave Chinner 		 * Note that iop_push may unlock and reacquire the AIL lock.  We
40843ff2122SChristoph Hellwig 		 * rely on the AIL cursor implementation to be able to deal with
40943ff2122SChristoph Hellwig 		 * the dropped lock.
4101da177e4SLinus Torvalds 		 */
4117f4d01f3SBrian Foster 		lock_result = xfsaild_push_item(ailp, lip);
4121da177e4SLinus Torvalds 		switch (lock_result) {
4131da177e4SLinus Torvalds 		case XFS_ITEM_SUCCESS:
414ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_success);
4159e4c109aSChristoph Hellwig 			trace_xfs_ail_push(lip);
4169e4c109aSChristoph Hellwig 
41757e80956SMatthew Wilcox 			ailp->ail_last_pushed_lsn = lsn;
4181da177e4SLinus Torvalds 			break;
4191da177e4SLinus Torvalds 
42043ff2122SChristoph Hellwig 		case XFS_ITEM_FLUSHING:
42143ff2122SChristoph Hellwig 			/*
42243ff2122SChristoph Hellwig 			 * The item or its backing buffer is already beeing
42343ff2122SChristoph Hellwig 			 * flushed.  The typical reason for that is that an
42443ff2122SChristoph Hellwig 			 * inode buffer is locked because we already pushed the
42543ff2122SChristoph Hellwig 			 * updates to it as part of inode clustering.
42643ff2122SChristoph Hellwig 			 *
42743ff2122SChristoph Hellwig 			 * We do not want to to stop flushing just because lots
42843ff2122SChristoph Hellwig 			 * of items are already beeing flushed, but we need to
42943ff2122SChristoph Hellwig 			 * re-try the flushing relatively soon if most of the
43043ff2122SChristoph Hellwig 			 * AIL is beeing flushed.
43143ff2122SChristoph Hellwig 			 */
432ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_flushing);
43343ff2122SChristoph Hellwig 			trace_xfs_ail_flushing(lip);
43417b38471SChristoph Hellwig 
43543ff2122SChristoph Hellwig 			flushing++;
43657e80956SMatthew Wilcox 			ailp->ail_last_pushed_lsn = lsn;
4371da177e4SLinus Torvalds 			break;
4381da177e4SLinus Torvalds 
4391da177e4SLinus Torvalds 		case XFS_ITEM_PINNED:
440ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_pinned);
4419e4c109aSChristoph Hellwig 			trace_xfs_ail_pinned(lip);
4429e4c109aSChristoph Hellwig 
443249a8c11SDavid Chinner 			stuck++;
44457e80956SMatthew Wilcox 			ailp->ail_log_flush++;
4451da177e4SLinus Torvalds 			break;
4461da177e4SLinus Torvalds 		case XFS_ITEM_LOCKED:
447ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_locked);
4489e4c109aSChristoph Hellwig 			trace_xfs_ail_locked(lip);
44943ff2122SChristoph Hellwig 
450249a8c11SDavid Chinner 			stuck++;
4511da177e4SLinus Torvalds 			break;
4521da177e4SLinus Torvalds 		default:
4531da177e4SLinus Torvalds 			ASSERT(0);
4541da177e4SLinus Torvalds 			break;
4551da177e4SLinus Torvalds 		}
4561da177e4SLinus Torvalds 
457249a8c11SDavid Chinner 		count++;
458249a8c11SDavid Chinner 
459249a8c11SDavid Chinner 		/*
460249a8c11SDavid Chinner 		 * Are there too many items we can't do anything with?
46143ff2122SChristoph Hellwig 		 *
462249a8c11SDavid Chinner 		 * If we we are skipping too many items because we can't flush
463249a8c11SDavid Chinner 		 * them or they are already being flushed, we back off and
464249a8c11SDavid Chinner 		 * given them time to complete whatever operation is being
465249a8c11SDavid Chinner 		 * done. i.e. remove pressure from the AIL while we can't make
466249a8c11SDavid Chinner 		 * progress so traversals don't slow down further inserts and
467249a8c11SDavid Chinner 		 * removals to/from the AIL.
468249a8c11SDavid Chinner 		 *
469249a8c11SDavid Chinner 		 * The value of 100 is an arbitrary magic number based on
470249a8c11SDavid Chinner 		 * observation.
471249a8c11SDavid Chinner 		 */
472249a8c11SDavid Chinner 		if (stuck > 100)
473249a8c11SDavid Chinner 			break;
474249a8c11SDavid Chinner 
475af3e4022SDave Chinner 		lip = xfs_trans_ail_cursor_next(ailp, &cur);
476249a8c11SDavid Chinner 		if (lip == NULL)
477249a8c11SDavid Chinner 			break;
478249a8c11SDavid Chinner 		lsn = lip->li_lsn;
4791da177e4SLinus Torvalds 	}
480e4a1e29cSEric Sandeen 	xfs_trans_ail_cursor_done(&cur);
48157e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
4821da177e4SLinus Torvalds 
48357e80956SMatthew Wilcox 	if (xfs_buf_delwri_submit_nowait(&ailp->ail_buf_list))
48457e80956SMatthew Wilcox 		ailp->ail_log_flush++;
485d808f617SDave Chinner 
48643ff2122SChristoph Hellwig 	if (!count || XFS_LSN_CMP(lsn, target) >= 0) {
4879e7004e7SDave Chinner out_done:
488249a8c11SDavid Chinner 		/*
48943ff2122SChristoph Hellwig 		 * We reached the target or the AIL is empty, so wait a bit
49043ff2122SChristoph Hellwig 		 * longer for I/O to complete and remove pushed items from the
49143ff2122SChristoph Hellwig 		 * AIL before we start the next scan from the start of the AIL.
492249a8c11SDavid Chinner 		 */
493453eac8aSDave Chinner 		tout = 50;
49457e80956SMatthew Wilcox 		ailp->ail_last_pushed_lsn = 0;
49543ff2122SChristoph Hellwig 	} else if (((stuck + flushing) * 100) / count > 90) {
496249a8c11SDavid Chinner 		/*
49743ff2122SChristoph Hellwig 		 * Either there is a lot of contention on the AIL or we are
49843ff2122SChristoph Hellwig 		 * stuck due to operations in progress. "Stuck" in this case
49943ff2122SChristoph Hellwig 		 * is defined as >90% of the items we tried to push were stuck.
500249a8c11SDavid Chinner 		 *
501249a8c11SDavid Chinner 		 * Backoff a bit more to allow some I/O to complete before
50243ff2122SChristoph Hellwig 		 * restarting from the start of the AIL. This prevents us from
50343ff2122SChristoph Hellwig 		 * spinning on the same items, and if they are pinned will all
50443ff2122SChristoph Hellwig 		 * the restart to issue a log force to unpin the stuck items.
505249a8c11SDavid Chinner 		 */
506453eac8aSDave Chinner 		tout = 20;
50757e80956SMatthew Wilcox 		ailp->ail_last_pushed_lsn = 0;
50843ff2122SChristoph Hellwig 	} else {
50943ff2122SChristoph Hellwig 		/*
51043ff2122SChristoph Hellwig 		 * Assume we have more work to do in a short while.
51143ff2122SChristoph Hellwig 		 */
51243ff2122SChristoph Hellwig 		tout = 10;
513453eac8aSDave Chinner 	}
5141da177e4SLinus Torvalds 
5150030807cSChristoph Hellwig 	return tout;
5160030807cSChristoph Hellwig }
5170030807cSChristoph Hellwig 
5180030807cSChristoph Hellwig static int
5190030807cSChristoph Hellwig xfsaild(
5200030807cSChristoph Hellwig 	void		*data)
5210030807cSChristoph Hellwig {
5220030807cSChristoph Hellwig 	struct xfs_ail	*ailp = data;
5230030807cSChristoph Hellwig 	long		tout = 0;	/* milliseconds */
5240030807cSChristoph Hellwig 
52543ff2122SChristoph Hellwig 	current->flags |= PF_MEMALLOC;
52618f1df4eSMichal Hocko 	set_freezable();
52743ff2122SChristoph Hellwig 
5280bd89676SHou Tao 	while (1) {
5290030807cSChristoph Hellwig 		if (tout && tout <= 20)
5300bd89676SHou Tao 			set_current_state(TASK_KILLABLE);
5310030807cSChristoph Hellwig 		else
5320bd89676SHou Tao 			set_current_state(TASK_INTERRUPTIBLE);
5330bd89676SHou Tao 
5340bd89676SHou Tao 		/*
535efc3289cSBrian Foster 		 * Check kthread_should_stop() after we set the task state to
536efc3289cSBrian Foster 		 * guarantee that we either see the stop bit and exit or the
537efc3289cSBrian Foster 		 * task state is reset to runnable such that it's not scheduled
538efc3289cSBrian Foster 		 * out indefinitely and detects the stop bit at next iteration.
5390bd89676SHou Tao 		 * A memory barrier is included in above task state set to
5400bd89676SHou Tao 		 * serialize again kthread_stop().
5410bd89676SHou Tao 		 */
5420bd89676SHou Tao 		if (kthread_should_stop()) {
5430bd89676SHou Tao 			__set_current_state(TASK_RUNNING);
544efc3289cSBrian Foster 
545efc3289cSBrian Foster 			/*
546efc3289cSBrian Foster 			 * The caller forces out the AIL before stopping the
547efc3289cSBrian Foster 			 * thread in the common case, which means the delwri
548efc3289cSBrian Foster 			 * queue is drained. In the shutdown case, the queue may
549efc3289cSBrian Foster 			 * still hold relogged buffers that haven't been
550efc3289cSBrian Foster 			 * submitted because they were pinned since added to the
551efc3289cSBrian Foster 			 * queue.
552efc3289cSBrian Foster 			 *
553efc3289cSBrian Foster 			 * Log I/O error processing stales the underlying buffer
554efc3289cSBrian Foster 			 * and clears the delwri state, expecting the buf to be
555efc3289cSBrian Foster 			 * removed on the next submission attempt. That won't
556efc3289cSBrian Foster 			 * happen if we're shutting down, so this is the last
557efc3289cSBrian Foster 			 * opportunity to release such buffers from the queue.
558efc3289cSBrian Foster 			 */
559efc3289cSBrian Foster 			ASSERT(list_empty(&ailp->ail_buf_list) ||
560efc3289cSBrian Foster 			       XFS_FORCED_SHUTDOWN(ailp->ail_mount));
561efc3289cSBrian Foster 			xfs_buf_delwri_cancel(&ailp->ail_buf_list);
5620bd89676SHou Tao 			break;
5630bd89676SHou Tao 		}
5648375f922SBrian Foster 
56557e80956SMatthew Wilcox 		spin_lock(&ailp->ail_lock);
5668375f922SBrian Foster 
5678375f922SBrian Foster 		/*
5688375f922SBrian Foster 		 * Idle if the AIL is empty and we are not racing with a target
5698375f922SBrian Foster 		 * update. We check the AIL after we set the task to a sleep
57057e80956SMatthew Wilcox 		 * state to guarantee that we either catch an ail_target update
5718375f922SBrian Foster 		 * or that a wake_up resets the state to TASK_RUNNING.
5728375f922SBrian Foster 		 * Otherwise, we run the risk of sleeping indefinitely.
5738375f922SBrian Foster 		 *
57457e80956SMatthew Wilcox 		 * The barrier matches the ail_target update in xfs_ail_push().
5758375f922SBrian Foster 		 */
5768375f922SBrian Foster 		smp_rmb();
5778375f922SBrian Foster 		if (!xfs_ail_min(ailp) &&
57857e80956SMatthew Wilcox 		    ailp->ail_target == ailp->ail_target_prev) {
57957e80956SMatthew Wilcox 			spin_unlock(&ailp->ail_lock);
58018f1df4eSMichal Hocko 			freezable_schedule();
5818375f922SBrian Foster 			tout = 0;
5828375f922SBrian Foster 			continue;
5838375f922SBrian Foster 		}
58457e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
5858375f922SBrian Foster 
5868375f922SBrian Foster 		if (tout)
58718f1df4eSMichal Hocko 			freezable_schedule_timeout(msecs_to_jiffies(tout));
5888375f922SBrian Foster 
5898375f922SBrian Foster 		__set_current_state(TASK_RUNNING);
5900030807cSChristoph Hellwig 
5910030807cSChristoph Hellwig 		try_to_freeze();
5920030807cSChristoph Hellwig 
5930030807cSChristoph Hellwig 		tout = xfsaild_push(ailp);
5940030807cSChristoph Hellwig 	}
5950030807cSChristoph Hellwig 
5960030807cSChristoph Hellwig 	return 0;
5970bf6a5bdSDave Chinner }
5980bf6a5bdSDave Chinner 
5990bf6a5bdSDave Chinner /*
6000bf6a5bdSDave Chinner  * This routine is called to move the tail of the AIL forward.  It does this by
6010bf6a5bdSDave Chinner  * trying to flush items in the AIL whose lsns are below the given
6020bf6a5bdSDave Chinner  * threshold_lsn.
6030bf6a5bdSDave Chinner  *
6040bf6a5bdSDave Chinner  * The push is run asynchronously in a workqueue, which means the caller needs
6050bf6a5bdSDave Chinner  * to handle waiting on the async flush for space to become available.
6060bf6a5bdSDave Chinner  * We don't want to interrupt any push that is in progress, hence we only queue
6070bf6a5bdSDave Chinner  * work if we set the pushing bit approriately.
6080bf6a5bdSDave Chinner  *
6090bf6a5bdSDave Chinner  * We do this unlocked - we only need to know whether there is anything in the
6100bf6a5bdSDave Chinner  * AIL at the time we are called. We don't need to access the contents of
6110bf6a5bdSDave Chinner  * any of the objects, so the lock is not needed.
6120bf6a5bdSDave Chinner  */
6130bf6a5bdSDave Chinner void
614fd074841SDave Chinner xfs_ail_push(
6150bf6a5bdSDave Chinner 	struct xfs_ail	*ailp,
6160bf6a5bdSDave Chinner 	xfs_lsn_t	threshold_lsn)
6170bf6a5bdSDave Chinner {
6180bf6a5bdSDave Chinner 	xfs_log_item_t	*lip;
6190bf6a5bdSDave Chinner 
6200bf6a5bdSDave Chinner 	lip = xfs_ail_min(ailp);
62157e80956SMatthew Wilcox 	if (!lip || XFS_FORCED_SHUTDOWN(ailp->ail_mount) ||
62257e80956SMatthew Wilcox 	    XFS_LSN_CMP(threshold_lsn, ailp->ail_target) <= 0)
6230bf6a5bdSDave Chinner 		return;
6240bf6a5bdSDave Chinner 
6250bf6a5bdSDave Chinner 	/*
6260bf6a5bdSDave Chinner 	 * Ensure that the new target is noticed in push code before it clears
6270bf6a5bdSDave Chinner 	 * the XFS_AIL_PUSHING_BIT.
6280bf6a5bdSDave Chinner 	 */
6290bf6a5bdSDave Chinner 	smp_wmb();
63057e80956SMatthew Wilcox 	xfs_trans_ail_copy_lsn(ailp, &ailp->ail_target, &threshold_lsn);
6310030807cSChristoph Hellwig 	smp_wmb();
6320030807cSChristoph Hellwig 
63357e80956SMatthew Wilcox 	wake_up_process(ailp->ail_task);
6340bf6a5bdSDave Chinner }
6351da177e4SLinus Torvalds 
6361da177e4SLinus Torvalds /*
637fd074841SDave Chinner  * Push out all items in the AIL immediately
638fd074841SDave Chinner  */
639fd074841SDave Chinner void
640fd074841SDave Chinner xfs_ail_push_all(
641fd074841SDave Chinner 	struct xfs_ail  *ailp)
642fd074841SDave Chinner {
643fd074841SDave Chinner 	xfs_lsn_t       threshold_lsn = xfs_ail_max_lsn(ailp);
644fd074841SDave Chinner 
645fd074841SDave Chinner 	if (threshold_lsn)
646fd074841SDave Chinner 		xfs_ail_push(ailp, threshold_lsn);
647fd074841SDave Chinner }
648fd074841SDave Chinner 
649fd074841SDave Chinner /*
650211e4d43SChristoph Hellwig  * Push out all items in the AIL immediately and wait until the AIL is empty.
651211e4d43SChristoph Hellwig  */
652211e4d43SChristoph Hellwig void
653211e4d43SChristoph Hellwig xfs_ail_push_all_sync(
654211e4d43SChristoph Hellwig 	struct xfs_ail  *ailp)
655211e4d43SChristoph Hellwig {
656211e4d43SChristoph Hellwig 	struct xfs_log_item	*lip;
657211e4d43SChristoph Hellwig 	DEFINE_WAIT(wait);
658211e4d43SChristoph Hellwig 
65957e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
660211e4d43SChristoph Hellwig 	while ((lip = xfs_ail_max(ailp)) != NULL) {
66157e80956SMatthew Wilcox 		prepare_to_wait(&ailp->ail_empty, &wait, TASK_UNINTERRUPTIBLE);
66257e80956SMatthew Wilcox 		ailp->ail_target = lip->li_lsn;
66357e80956SMatthew Wilcox 		wake_up_process(ailp->ail_task);
66457e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
665211e4d43SChristoph Hellwig 		schedule();
66657e80956SMatthew Wilcox 		spin_lock(&ailp->ail_lock);
667211e4d43SChristoph Hellwig 	}
66857e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
669211e4d43SChristoph Hellwig 
67057e80956SMatthew Wilcox 	finish_wait(&ailp->ail_empty, &wait);
671211e4d43SChristoph Hellwig }
672211e4d43SChristoph Hellwig 
673211e4d43SChristoph Hellwig /*
6740e57f6a3SDave Chinner  * xfs_trans_ail_update - bulk AIL insertion operation.
6750e57f6a3SDave Chinner  *
6760e57f6a3SDave Chinner  * @xfs_trans_ail_update takes an array of log items that all need to be
6770e57f6a3SDave Chinner  * positioned at the same LSN in the AIL. If an item is not in the AIL, it will
6780e57f6a3SDave Chinner  * be added.  Otherwise, it will be repositioned  by removing it and re-adding
6790e57f6a3SDave Chinner  * it to the AIL. If we move the first item in the AIL, update the log tail to
6800e57f6a3SDave Chinner  * match the new minimum LSN in the AIL.
6810e57f6a3SDave Chinner  *
6820e57f6a3SDave Chinner  * This function takes the AIL lock once to execute the update operations on
6830e57f6a3SDave Chinner  * all the items in the array, and as such should not be called with the AIL
6840e57f6a3SDave Chinner  * lock held. As a result, once we have the AIL lock, we need to check each log
6850e57f6a3SDave Chinner  * item LSN to confirm it needs to be moved forward in the AIL.
6860e57f6a3SDave Chinner  *
6870e57f6a3SDave Chinner  * To optimise the insert operation, we delete all the items from the AIL in
6880e57f6a3SDave Chinner  * the first pass, moving them into a temporary list, then splice the temporary
6890e57f6a3SDave Chinner  * list into the correct position in the AIL. This avoids needing to do an
6900e57f6a3SDave Chinner  * insert operation on every item.
6910e57f6a3SDave Chinner  *
6920e57f6a3SDave Chinner  * This function must be called with the AIL lock held.  The lock is dropped
6930e57f6a3SDave Chinner  * before returning.
6940e57f6a3SDave Chinner  */
6950e57f6a3SDave Chinner void
6960e57f6a3SDave Chinner xfs_trans_ail_update_bulk(
6970e57f6a3SDave Chinner 	struct xfs_ail		*ailp,
6981d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
6990e57f6a3SDave Chinner 	struct xfs_log_item	**log_items,
7000e57f6a3SDave Chinner 	int			nr_items,
70157e80956SMatthew Wilcox 	xfs_lsn_t		lsn) __releases(ailp->ail_lock)
7020e57f6a3SDave Chinner {
7030e57f6a3SDave Chinner 	xfs_log_item_t		*mlip;
7040e57f6a3SDave Chinner 	int			mlip_changed = 0;
7050e57f6a3SDave Chinner 	int			i;
7060e57f6a3SDave Chinner 	LIST_HEAD(tmp);
7070e57f6a3SDave Chinner 
708e44f4112SAlex Elder 	ASSERT(nr_items > 0);		/* Not required, but true. */
7090e57f6a3SDave Chinner 	mlip = xfs_ail_min(ailp);
7100e57f6a3SDave Chinner 
7110e57f6a3SDave Chinner 	for (i = 0; i < nr_items; i++) {
7120e57f6a3SDave Chinner 		struct xfs_log_item *lip = log_items[i];
71322525c17SDave Chinner 		if (test_and_set_bit(XFS_LI_IN_AIL, &lip->li_flags)) {
7140e57f6a3SDave Chinner 			/* check if we really need to move the item */
7150e57f6a3SDave Chinner 			if (XFS_LSN_CMP(lsn, lip->li_lsn) <= 0)
7160e57f6a3SDave Chinner 				continue;
7170e57f6a3SDave Chinner 
718750b9c90SDave Chinner 			trace_xfs_ail_move(lip, lip->li_lsn, lsn);
7190e57f6a3SDave Chinner 			xfs_ail_delete(ailp, lip);
7200e57f6a3SDave Chinner 			if (mlip == lip)
7210e57f6a3SDave Chinner 				mlip_changed = 1;
7220e57f6a3SDave Chinner 		} else {
723750b9c90SDave Chinner 			trace_xfs_ail_insert(lip, 0, lsn);
7240e57f6a3SDave Chinner 		}
7250e57f6a3SDave Chinner 		lip->li_lsn = lsn;
7260e57f6a3SDave Chinner 		list_add(&lip->li_ail, &tmp);
7270e57f6a3SDave Chinner 	}
7280e57f6a3SDave Chinner 
729e44f4112SAlex Elder 	if (!list_empty(&tmp))
7301d8c95a3SDave Chinner 		xfs_ail_splice(ailp, cur, &tmp, lsn);
7311c304625SChristoph Hellwig 
7321c304625SChristoph Hellwig 	if (mlip_changed) {
73357e80956SMatthew Wilcox 		if (!XFS_FORCED_SHUTDOWN(ailp->ail_mount))
73457e80956SMatthew Wilcox 			xlog_assign_tail_lsn_locked(ailp->ail_mount);
73557e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
73609a423a3SChristoph Hellwig 
73757e80956SMatthew Wilcox 		xfs_log_space_wake(ailp->ail_mount);
7381c304625SChristoph Hellwig 	} else {
73957e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
7400e57f6a3SDave Chinner 	}
7410e57f6a3SDave Chinner }
7420e57f6a3SDave Chinner 
74327af1bbfSChristoph Hellwig bool
74427af1bbfSChristoph Hellwig xfs_ail_delete_one(
74527af1bbfSChristoph Hellwig 	struct xfs_ail		*ailp,
74627af1bbfSChristoph Hellwig 	struct xfs_log_item	*lip)
74727af1bbfSChristoph Hellwig {
74827af1bbfSChristoph Hellwig 	struct xfs_log_item	*mlip = xfs_ail_min(ailp);
74927af1bbfSChristoph Hellwig 
75027af1bbfSChristoph Hellwig 	trace_xfs_ail_delete(lip, mlip->li_lsn, lip->li_lsn);
75127af1bbfSChristoph Hellwig 	xfs_ail_delete(ailp, lip);
752d3a304b6SCarlos Maiolino 	xfs_clear_li_failed(lip);
75322525c17SDave Chinner 	clear_bit(XFS_LI_IN_AIL, &lip->li_flags);
75427af1bbfSChristoph Hellwig 	lip->li_lsn = 0;
75527af1bbfSChristoph Hellwig 
75627af1bbfSChristoph Hellwig 	return mlip == lip;
75727af1bbfSChristoph Hellwig }
75827af1bbfSChristoph Hellwig 
75927af1bbfSChristoph Hellwig /**
76027af1bbfSChristoph Hellwig  * Remove a log items from the AIL
76130136832SDave Chinner  *
76230136832SDave Chinner  * @xfs_trans_ail_delete_bulk takes an array of log items that all need to
76330136832SDave Chinner  * removed from the AIL. The caller is already holding the AIL lock, and done
76430136832SDave Chinner  * all the checks necessary to ensure the items passed in via @log_items are
76530136832SDave Chinner  * ready for deletion. This includes checking that the items are in the AIL.
76630136832SDave Chinner  *
76730136832SDave Chinner  * For each log item to be removed, unlink it  from the AIL, clear the IN_AIL
76830136832SDave Chinner  * flag from the item and reset the item's lsn to 0. If we remove the first
76930136832SDave Chinner  * item in the AIL, update the log tail to match the new minimum LSN in the
77030136832SDave Chinner  * AIL.
77130136832SDave Chinner  *
77230136832SDave Chinner  * This function will not drop the AIL lock until all items are removed from
77330136832SDave Chinner  * the AIL to minimise the amount of lock traffic on the AIL. This does not
77430136832SDave Chinner  * greatly increase the AIL hold time, but does significantly reduce the amount
77530136832SDave Chinner  * of traffic on the lock, especially during IO completion.
77630136832SDave Chinner  *
77730136832SDave Chinner  * This function must be called with the AIL lock held.  The lock is dropped
77830136832SDave Chinner  * before returning.
77930136832SDave Chinner  */
78030136832SDave Chinner void
78127af1bbfSChristoph Hellwig xfs_trans_ail_delete(
78230136832SDave Chinner 	struct xfs_ail		*ailp,
78327af1bbfSChristoph Hellwig 	struct xfs_log_item	*lip,
78457e80956SMatthew Wilcox 	int			shutdown_type) __releases(ailp->ail_lock)
78530136832SDave Chinner {
78657e80956SMatthew Wilcox 	struct xfs_mount	*mp = ailp->ail_mount;
78727af1bbfSChristoph Hellwig 	bool			mlip_changed;
78830136832SDave Chinner 
78922525c17SDave Chinner 	if (!test_bit(XFS_LI_IN_AIL, &lip->li_flags)) {
79057e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
79130136832SDave Chinner 		if (!XFS_FORCED_SHUTDOWN(mp)) {
7926a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_AILDELETE,
79330136832SDave Chinner 	"%s: attempting to delete a log item that is not in the AIL",
79430136832SDave Chinner 					__func__);
79504913fddSDave Chinner 			xfs_force_shutdown(mp, shutdown_type);
79630136832SDave Chinner 		}
79730136832SDave Chinner 		return;
79830136832SDave Chinner 	}
79930136832SDave Chinner 
80027af1bbfSChristoph Hellwig 	mlip_changed = xfs_ail_delete_one(ailp, lip);
8011c304625SChristoph Hellwig 	if (mlip_changed) {
80227af1bbfSChristoph Hellwig 		if (!XFS_FORCED_SHUTDOWN(mp))
80327af1bbfSChristoph Hellwig 			xlog_assign_tail_lsn_locked(mp);
80457e80956SMatthew Wilcox 		if (list_empty(&ailp->ail_head))
80557e80956SMatthew Wilcox 			wake_up_all(&ailp->ail_empty);
80630136832SDave Chinner 	}
80727af1bbfSChristoph Hellwig 
80857e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
80927af1bbfSChristoph Hellwig 	if (mlip_changed)
81057e80956SMatthew Wilcox 		xfs_log_space_wake(ailp->ail_mount);
81130136832SDave Chinner }
8121da177e4SLinus Torvalds 
813249a8c11SDavid Chinner int
8141da177e4SLinus Torvalds xfs_trans_ail_init(
8151da177e4SLinus Torvalds 	xfs_mount_t	*mp)
8161da177e4SLinus Torvalds {
81782fa9012SDavid Chinner 	struct xfs_ail	*ailp;
81882fa9012SDavid Chinner 
81982fa9012SDavid Chinner 	ailp = kmem_zalloc(sizeof(struct xfs_ail), KM_MAYFAIL);
82082fa9012SDavid Chinner 	if (!ailp)
8212451337dSDave Chinner 		return -ENOMEM;
82282fa9012SDavid Chinner 
82357e80956SMatthew Wilcox 	ailp->ail_mount = mp;
82457e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_head);
82557e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_cursors);
82657e80956SMatthew Wilcox 	spin_lock_init(&ailp->ail_lock);
82757e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_buf_list);
82857e80956SMatthew Wilcox 	init_waitqueue_head(&ailp->ail_empty);
8290030807cSChristoph Hellwig 
83057e80956SMatthew Wilcox 	ailp->ail_task = kthread_run(xfsaild, ailp, "xfsaild/%s",
83157e80956SMatthew Wilcox 			ailp->ail_mount->m_fsname);
83257e80956SMatthew Wilcox 	if (IS_ERR(ailp->ail_task))
8330030807cSChristoph Hellwig 		goto out_free_ailp;
8340030807cSChristoph Hellwig 
83527d8d5feSDavid Chinner 	mp->m_ail = ailp;
83627d8d5feSDavid Chinner 	return 0;
8370030807cSChristoph Hellwig 
8380030807cSChristoph Hellwig out_free_ailp:
8390030807cSChristoph Hellwig 	kmem_free(ailp);
8402451337dSDave Chinner 	return -ENOMEM;
841249a8c11SDavid Chinner }
842249a8c11SDavid Chinner 
843249a8c11SDavid Chinner void
844249a8c11SDavid Chinner xfs_trans_ail_destroy(
845249a8c11SDavid Chinner 	xfs_mount_t	*mp)
846249a8c11SDavid Chinner {
84782fa9012SDavid Chinner 	struct xfs_ail	*ailp = mp->m_ail;
84882fa9012SDavid Chinner 
84957e80956SMatthew Wilcox 	kthread_stop(ailp->ail_task);
85082fa9012SDavid Chinner 	kmem_free(ailp);
8511da177e4SLinus Torvalds }
852