xref: /openbmc/linux/fs/xfs/xfs_trans_ail.c (revision efc3289c)
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"
94fb6e8adSChristoph Hellwig #include "xfs_format.h"
10239880efSDave Chinner #include "xfs_log_format.h"
11239880efSDave Chinner #include "xfs_trans_resv.h"
121da177e4SLinus Torvalds #include "xfs_mount.h"
13239880efSDave Chinner #include "xfs_trans.h"
141da177e4SLinus Torvalds #include "xfs_trans_priv.h"
159e4c109aSChristoph Hellwig #include "xfs_trace.h"
16e9e899a2SDarrick J. Wong #include "xfs_errortag.h"
171da177e4SLinus Torvalds #include "xfs_error.h"
18239880efSDave Chinner #include "xfs_log.h"
191da177e4SLinus Torvalds 
201da177e4SLinus Torvalds #ifdef DEBUG
21cd4a3c50SDave Chinner /*
22cd4a3c50SDave Chinner  * Check that the list is sorted as it should be.
23d686d12dSDave Chinner  *
24d686d12dSDave Chinner  * Called with the ail lock held, but we don't want to assert fail with it
25d686d12dSDave Chinner  * held otherwise we'll lock everything up and won't be able to debug the
26d686d12dSDave Chinner  * cause. Hence we sample and check the state under the AIL lock and return if
27d686d12dSDave Chinner  * everything is fine, otherwise we drop the lock and run the ASSERT checks.
28d686d12dSDave Chinner  * Asserts may not be fatal, so pick the lock back up and continue onwards.
29cd4a3c50SDave Chinner  */
30cd4a3c50SDave Chinner STATIC void
31cd4a3c50SDave Chinner xfs_ail_check(
32cd4a3c50SDave Chinner 	struct xfs_ail		*ailp,
33d686d12dSDave Chinner 	struct xfs_log_item	*lip)
34cd4a3c50SDave Chinner {
35d686d12dSDave Chinner 	struct xfs_log_item	*prev_lip;
36d686d12dSDave Chinner 	struct xfs_log_item	*next_lip;
37d686d12dSDave Chinner 	xfs_lsn_t		prev_lsn = NULLCOMMITLSN;
38d686d12dSDave Chinner 	xfs_lsn_t		next_lsn = NULLCOMMITLSN;
39d686d12dSDave Chinner 	xfs_lsn_t		lsn;
40d686d12dSDave Chinner 	bool			in_ail;
41d686d12dSDave Chinner 
42cd4a3c50SDave Chinner 
4357e80956SMatthew Wilcox 	if (list_empty(&ailp->ail_head))
44cd4a3c50SDave Chinner 		return;
45cd4a3c50SDave Chinner 
46cd4a3c50SDave Chinner 	/*
47d686d12dSDave Chinner 	 * Sample then check the next and previous entries are valid.
48cd4a3c50SDave Chinner 	 */
49d686d12dSDave Chinner 	in_ail = test_bit(XFS_LI_IN_AIL, &lip->li_flags);
50d686d12dSDave Chinner 	prev_lip = list_entry(lip->li_ail.prev, struct xfs_log_item, li_ail);
5157e80956SMatthew Wilcox 	if (&prev_lip->li_ail != &ailp->ail_head)
52d686d12dSDave Chinner 		prev_lsn = prev_lip->li_lsn;
53d686d12dSDave Chinner 	next_lip = list_entry(lip->li_ail.next, struct xfs_log_item, li_ail);
54d686d12dSDave Chinner 	if (&next_lip->li_ail != &ailp->ail_head)
55d686d12dSDave Chinner 		next_lsn = next_lip->li_lsn;
56d686d12dSDave Chinner 	lsn = lip->li_lsn;
57cd4a3c50SDave Chinner 
58d686d12dSDave Chinner 	if (in_ail &&
59d686d12dSDave Chinner 	    (prev_lsn == NULLCOMMITLSN || XFS_LSN_CMP(prev_lsn, lsn) <= 0) &&
60d686d12dSDave Chinner 	    (next_lsn == NULLCOMMITLSN || XFS_LSN_CMP(next_lsn, lsn) >= 0))
61d686d12dSDave Chinner 		return;
62cd4a3c50SDave Chinner 
63d686d12dSDave Chinner 	spin_unlock(&ailp->ail_lock);
64d686d12dSDave Chinner 	ASSERT(in_ail);
65d686d12dSDave Chinner 	ASSERT(prev_lsn == NULLCOMMITLSN || XFS_LSN_CMP(prev_lsn, lsn) <= 0);
66d686d12dSDave Chinner 	ASSERT(next_lsn == NULLCOMMITLSN || XFS_LSN_CMP(next_lsn, lsn) >= 0);
67d686d12dSDave Chinner 	spin_lock(&ailp->ail_lock);
68cd4a3c50SDave Chinner }
69cd4a3c50SDave Chinner #else /* !DEBUG */
70de08dbc1SDavid Chinner #define	xfs_ail_check(a,l)
711da177e4SLinus Torvalds #endif /* DEBUG */
721da177e4SLinus Torvalds 
73cd4a3c50SDave Chinner /*
74fd074841SDave Chinner  * Return a pointer to the last item in the AIL.  If the AIL is empty, then
75fd074841SDave Chinner  * return NULL.
76fd074841SDave Chinner  */
77fd074841SDave Chinner static xfs_log_item_t *
78fd074841SDave Chinner xfs_ail_max(
79fd074841SDave Chinner 	struct xfs_ail  *ailp)
80fd074841SDave Chinner {
8157e80956SMatthew Wilcox 	if (list_empty(&ailp->ail_head))
82fd074841SDave Chinner 		return NULL;
83fd074841SDave Chinner 
8457e80956SMatthew Wilcox 	return list_entry(ailp->ail_head.prev, xfs_log_item_t, li_ail);
85fd074841SDave Chinner }
86fd074841SDave Chinner 
87fd074841SDave Chinner /*
88cd4a3c50SDave Chinner  * Return a pointer to the item which follows the given item in the AIL.  If
89cd4a3c50SDave Chinner  * the given item is the last item in the list, then return NULL.
90cd4a3c50SDave Chinner  */
91cd4a3c50SDave Chinner static xfs_log_item_t *
92cd4a3c50SDave Chinner xfs_ail_next(
93cd4a3c50SDave Chinner 	struct xfs_ail  *ailp,
94cd4a3c50SDave Chinner 	xfs_log_item_t  *lip)
95cd4a3c50SDave Chinner {
9657e80956SMatthew Wilcox 	if (lip->li_ail.next == &ailp->ail_head)
97cd4a3c50SDave Chinner 		return NULL;
98cd4a3c50SDave Chinner 
99cd4a3c50SDave Chinner 	return list_first_entry(&lip->li_ail, xfs_log_item_t, li_ail);
100cd4a3c50SDave Chinner }
101cd4a3c50SDave Chinner 
102cd4a3c50SDave Chinner /*
103cd4a3c50SDave Chinner  * This is called by the log manager code to determine the LSN of the tail of
104cd4a3c50SDave Chinner  * the log.  This is exactly the LSN of the first item in the AIL.  If the AIL
105cd4a3c50SDave Chinner  * is empty, then this function returns 0.
1061da177e4SLinus Torvalds  *
107cd4a3c50SDave Chinner  * We need the AIL lock in order to get a coherent read of the lsn of the last
108cd4a3c50SDave Chinner  * item in the AIL.
1091da177e4SLinus Torvalds  */
1101da177e4SLinus Torvalds xfs_lsn_t
111fd074841SDave Chinner xfs_ail_min_lsn(
1125b00f14fSDavid Chinner 	struct xfs_ail	*ailp)
1131da177e4SLinus Torvalds {
114cd4a3c50SDave Chinner 	xfs_lsn_t	lsn = 0;
1151da177e4SLinus Torvalds 	xfs_log_item_t	*lip;
1161da177e4SLinus Torvalds 
11757e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
1185b00f14fSDavid Chinner 	lip = xfs_ail_min(ailp);
119cd4a3c50SDave Chinner 	if (lip)
1201da177e4SLinus Torvalds 		lsn = lip->li_lsn;
12157e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
1221da177e4SLinus Torvalds 
1231da177e4SLinus Torvalds 	return lsn;
1241da177e4SLinus Torvalds }
1251da177e4SLinus Torvalds 
1261da177e4SLinus Torvalds /*
127fd074841SDave Chinner  * Return the maximum lsn held in the AIL, or zero if the AIL is empty.
128fd074841SDave Chinner  */
129fd074841SDave Chinner static xfs_lsn_t
130fd074841SDave Chinner xfs_ail_max_lsn(
131fd074841SDave Chinner 	struct xfs_ail  *ailp)
132fd074841SDave Chinner {
133fd074841SDave Chinner 	xfs_lsn_t       lsn = 0;
134fd074841SDave Chinner 	xfs_log_item_t  *lip;
135fd074841SDave Chinner 
13657e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
137fd074841SDave Chinner 	lip = xfs_ail_max(ailp);
138fd074841SDave Chinner 	if (lip)
139fd074841SDave Chinner 		lsn = lip->li_lsn;
14057e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
141fd074841SDave Chinner 
142fd074841SDave Chinner 	return lsn;
143fd074841SDave Chinner }
144fd074841SDave Chinner 
145fd074841SDave Chinner /*
146af3e4022SDave Chinner  * The cursor keeps track of where our current traversal is up to by tracking
147af3e4022SDave Chinner  * the next item in the list for us. However, for this to be safe, removing an
148af3e4022SDave Chinner  * object from the AIL needs to invalidate any cursor that points to it. hence
149af3e4022SDave Chinner  * the traversal cursor needs to be linked to the struct xfs_ail so that
150af3e4022SDave Chinner  * deletion can search all the active cursors for invalidation.
15127d8d5feSDavid Chinner  */
1525b00f14fSDavid Chinner STATIC void
15327d8d5feSDavid Chinner xfs_trans_ail_cursor_init(
15427d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
15527d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
15627d8d5feSDavid Chinner {
15727d8d5feSDavid Chinner 	cur->item = NULL;
15857e80956SMatthew Wilcox 	list_add_tail(&cur->list, &ailp->ail_cursors);
15927d8d5feSDavid Chinner }
16027d8d5feSDavid Chinner 
16127d8d5feSDavid Chinner /*
162af3e4022SDave Chinner  * Get the next item in the traversal and advance the cursor.  If the cursor
163af3e4022SDave Chinner  * was invalidated (indicated by a lip of 1), restart the traversal.
16427d8d5feSDavid Chinner  */
1655b00f14fSDavid Chinner struct xfs_log_item *
16627d8d5feSDavid Chinner xfs_trans_ail_cursor_next(
16727d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
16827d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
16927d8d5feSDavid Chinner {
17027d8d5feSDavid Chinner 	struct xfs_log_item	*lip = cur->item;
17127d8d5feSDavid Chinner 
172db9d67d6SChristoph Hellwig 	if ((uintptr_t)lip & 1)
17327d8d5feSDavid Chinner 		lip = xfs_ail_min(ailp);
17416b59029SDave Chinner 	if (lip)
17516b59029SDave Chinner 		cur->item = xfs_ail_next(ailp, lip);
17627d8d5feSDavid Chinner 	return lip;
17727d8d5feSDavid Chinner }
17827d8d5feSDavid Chinner 
17927d8d5feSDavid Chinner /*
180af3e4022SDave Chinner  * When the traversal is complete, we need to remove the cursor from the list
181af3e4022SDave Chinner  * of traversing cursors.
18227d8d5feSDavid Chinner  */
18327d8d5feSDavid Chinner void
18427d8d5feSDavid Chinner xfs_trans_ail_cursor_done(
185af3e4022SDave Chinner 	struct xfs_ail_cursor	*cur)
18627d8d5feSDavid Chinner {
187af3e4022SDave Chinner 	cur->item = NULL;
188af3e4022SDave Chinner 	list_del_init(&cur->list);
18927d8d5feSDavid Chinner }
19027d8d5feSDavid Chinner 
19127d8d5feSDavid Chinner /*
192af3e4022SDave Chinner  * Invalidate any cursor that is pointing to this item. This is called when an
193af3e4022SDave Chinner  * item is removed from the AIL. Any cursor pointing to this object is now
194af3e4022SDave Chinner  * invalid and the traversal needs to be terminated so it doesn't reference a
195af3e4022SDave Chinner  * freed object. We set the low bit of the cursor item pointer so we can
196af3e4022SDave Chinner  * distinguish between an invalidation and the end of the list when getting the
197af3e4022SDave Chinner  * next item from the cursor.
1985b00f14fSDavid Chinner  */
1995b00f14fSDavid Chinner STATIC void
2005b00f14fSDavid Chinner xfs_trans_ail_cursor_clear(
2015b00f14fSDavid Chinner 	struct xfs_ail		*ailp,
2025b00f14fSDavid Chinner 	struct xfs_log_item	*lip)
2035b00f14fSDavid Chinner {
2045b00f14fSDavid Chinner 	struct xfs_ail_cursor	*cur;
2055b00f14fSDavid Chinner 
20657e80956SMatthew Wilcox 	list_for_each_entry(cur, &ailp->ail_cursors, list) {
2075b00f14fSDavid Chinner 		if (cur->item == lip)
2085b00f14fSDavid Chinner 			cur->item = (struct xfs_log_item *)
209db9d67d6SChristoph Hellwig 					((uintptr_t)cur->item | 1);
2105b00f14fSDavid Chinner 	}
2115b00f14fSDavid Chinner }
2125b00f14fSDavid Chinner 
2135b00f14fSDavid Chinner /*
21416b59029SDave Chinner  * Find the first item in the AIL with the given @lsn by searching in ascending
21516b59029SDave Chinner  * LSN order and initialise the cursor to point to the next item for a
21616b59029SDave Chinner  * ascending traversal.  Pass a @lsn of zero to initialise the cursor to the
21716b59029SDave Chinner  * first item in the AIL. Returns NULL if the list is empty.
218249a8c11SDavid Chinner  */
2195b00f14fSDavid Chinner xfs_log_item_t *
2205b00f14fSDavid Chinner xfs_trans_ail_cursor_first(
22127d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
22227d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur,
223249a8c11SDavid Chinner 	xfs_lsn_t		lsn)
224249a8c11SDavid Chinner {
225249a8c11SDavid Chinner 	xfs_log_item_t		*lip;
226249a8c11SDavid Chinner 
2275b00f14fSDavid Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
22816b59029SDave Chinner 
22916b59029SDave Chinner 	if (lsn == 0) {
23027d8d5feSDavid Chinner 		lip = xfs_ail_min(ailp);
2315b00f14fSDavid Chinner 		goto out;
23216b59029SDave Chinner 	}
233249a8c11SDavid Chinner 
23457e80956SMatthew Wilcox 	list_for_each_entry(lip, &ailp->ail_head, li_ail) {
2355b00f14fSDavid Chinner 		if (XFS_LSN_CMP(lip->li_lsn, lsn) >= 0)
2367ee49acfSDavid Chinner 			goto out;
2375b00f14fSDavid Chinner 	}
23816b59029SDave Chinner 	return NULL;
23916b59029SDave Chinner 
2405b00f14fSDavid Chinner out:
24116b59029SDave Chinner 	if (lip)
24216b59029SDave Chinner 		cur->item = xfs_ail_next(ailp, lip);
243249a8c11SDavid Chinner 	return lip;
244249a8c11SDavid Chinner }
245535f6b37SJosef 'Jeff' Sipek 
2461d8c95a3SDave Chinner static struct xfs_log_item *
2471d8c95a3SDave Chinner __xfs_trans_ail_cursor_last(
2481d8c95a3SDave Chinner 	struct xfs_ail		*ailp,
2491d8c95a3SDave Chinner 	xfs_lsn_t		lsn)
2501d8c95a3SDave Chinner {
2511d8c95a3SDave Chinner 	xfs_log_item_t		*lip;
2521d8c95a3SDave Chinner 
25357e80956SMatthew Wilcox 	list_for_each_entry_reverse(lip, &ailp->ail_head, li_ail) {
2541d8c95a3SDave Chinner 		if (XFS_LSN_CMP(lip->li_lsn, lsn) <= 0)
2551d8c95a3SDave Chinner 			return lip;
2561d8c95a3SDave Chinner 	}
2571d8c95a3SDave Chinner 	return NULL;
2581d8c95a3SDave Chinner }
2591d8c95a3SDave Chinner 
2601d8c95a3SDave Chinner /*
26116b59029SDave Chinner  * Find the last item in the AIL with the given @lsn by searching in descending
26216b59029SDave Chinner  * LSN order and initialise the cursor to point to that item.  If there is no
26316b59029SDave Chinner  * item with the value of @lsn, then it sets the cursor to the last item with an
26416b59029SDave Chinner  * LSN lower than @lsn.  Returns NULL if the list is empty.
2651d8c95a3SDave Chinner  */
2661d8c95a3SDave Chinner struct xfs_log_item *
2671d8c95a3SDave Chinner xfs_trans_ail_cursor_last(
2681d8c95a3SDave Chinner 	struct xfs_ail		*ailp,
2691d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
2701d8c95a3SDave Chinner 	xfs_lsn_t		lsn)
2711d8c95a3SDave Chinner {
2721d8c95a3SDave Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
2731d8c95a3SDave Chinner 	cur->item = __xfs_trans_ail_cursor_last(ailp, lsn);
2741d8c95a3SDave Chinner 	return cur->item;
2751d8c95a3SDave Chinner }
2761d8c95a3SDave Chinner 
2771d8c95a3SDave Chinner /*
27816b59029SDave Chinner  * Splice the log item list into the AIL at the given LSN. We splice to the
2791d8c95a3SDave Chinner  * tail of the given LSN to maintain insert order for push traversals. The
2801d8c95a3SDave Chinner  * cursor is optional, allowing repeated updates to the same LSN to avoid
281e44f4112SAlex Elder  * repeated traversals.  This should not be called with an empty list.
282cd4a3c50SDave Chinner  */
283cd4a3c50SDave Chinner static void
284cd4a3c50SDave Chinner xfs_ail_splice(
285cd4a3c50SDave Chinner 	struct xfs_ail		*ailp,
2861d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
287cd4a3c50SDave Chinner 	struct list_head	*list,
288cd4a3c50SDave Chinner 	xfs_lsn_t		lsn)
289cd4a3c50SDave Chinner {
290e44f4112SAlex Elder 	struct xfs_log_item	*lip;
291e44f4112SAlex Elder 
292e44f4112SAlex Elder 	ASSERT(!list_empty(list));
293cd4a3c50SDave Chinner 
2941d8c95a3SDave Chinner 	/*
295e44f4112SAlex Elder 	 * Use the cursor to determine the insertion point if one is
296e44f4112SAlex Elder 	 * provided.  If not, or if the one we got is not valid,
297e44f4112SAlex Elder 	 * find the place in the AIL where the items belong.
2981d8c95a3SDave Chinner 	 */
299e44f4112SAlex Elder 	lip = cur ? cur->item : NULL;
300db9d67d6SChristoph Hellwig 	if (!lip || (uintptr_t)lip & 1)
3011d8c95a3SDave Chinner 		lip = __xfs_trans_ail_cursor_last(ailp, lsn);
3021d8c95a3SDave Chinner 
303e44f4112SAlex Elder 	/*
304e44f4112SAlex Elder 	 * If a cursor is provided, we know we're processing the AIL
305e44f4112SAlex Elder 	 * in lsn order, and future items to be spliced in will
306e44f4112SAlex Elder 	 * follow the last one being inserted now.  Update the
307e44f4112SAlex Elder 	 * cursor to point to that last item, now while we have a
308e44f4112SAlex Elder 	 * reliable pointer to it.
309e44f4112SAlex Elder 	 */
3101d8c95a3SDave Chinner 	if (cur)
311e44f4112SAlex Elder 		cur->item = list_entry(list->prev, struct xfs_log_item, li_ail);
312cd4a3c50SDave Chinner 
3131d8c95a3SDave Chinner 	/*
314e44f4112SAlex Elder 	 * Finally perform the splice.  Unless the AIL was empty,
315e44f4112SAlex Elder 	 * lip points to the item in the AIL _after_ which the new
316e44f4112SAlex Elder 	 * items should go.  If lip is null the AIL was empty, so
317e44f4112SAlex Elder 	 * the new items go at the head of the AIL.
3181d8c95a3SDave Chinner 	 */
319e44f4112SAlex Elder 	if (lip)
3201d8c95a3SDave Chinner 		list_splice(list, &lip->li_ail);
321e44f4112SAlex Elder 	else
32257e80956SMatthew Wilcox 		list_splice(list, &ailp->ail_head);
323cd4a3c50SDave Chinner }
324cd4a3c50SDave Chinner 
325cd4a3c50SDave Chinner /*
326cd4a3c50SDave Chinner  * Delete the given item from the AIL.  Return a pointer to the item.
327cd4a3c50SDave Chinner  */
328cd4a3c50SDave Chinner static void
329cd4a3c50SDave Chinner xfs_ail_delete(
330cd4a3c50SDave Chinner 	struct xfs_ail  *ailp,
331cd4a3c50SDave Chinner 	xfs_log_item_t  *lip)
332cd4a3c50SDave Chinner {
333cd4a3c50SDave Chinner 	xfs_ail_check(ailp, lip);
334cd4a3c50SDave Chinner 	list_del(&lip->li_ail);
335cd4a3c50SDave Chinner 	xfs_trans_ail_cursor_clear(ailp, lip);
336cd4a3c50SDave Chinner }
337cd4a3c50SDave Chinner 
3387f4d01f3SBrian Foster static inline uint
3397f4d01f3SBrian Foster xfsaild_push_item(
3407f4d01f3SBrian Foster 	struct xfs_ail		*ailp,
3417f4d01f3SBrian Foster 	struct xfs_log_item	*lip)
3427f4d01f3SBrian Foster {
3437f4d01f3SBrian Foster 	/*
3447f4d01f3SBrian Foster 	 * If log item pinning is enabled, skip the push and track the item as
3457f4d01f3SBrian Foster 	 * pinned. This can help induce head-behind-tail conditions.
3467f4d01f3SBrian Foster 	 */
34757e80956SMatthew Wilcox 	if (XFS_TEST_ERROR(false, ailp->ail_mount, XFS_ERRTAG_LOG_ITEM_PIN))
3487f4d01f3SBrian Foster 		return XFS_ITEM_PINNED;
3497f4d01f3SBrian Foster 
35057e80956SMatthew Wilcox 	return lip->li_ops->iop_push(lip, &ailp->ail_buf_list);
3517f4d01f3SBrian Foster }
3527f4d01f3SBrian Foster 
3530030807cSChristoph Hellwig static long
3540030807cSChristoph Hellwig xfsaild_push(
3550030807cSChristoph Hellwig 	struct xfs_ail		*ailp)
356249a8c11SDavid Chinner {
35757e80956SMatthew Wilcox 	xfs_mount_t		*mp = ailp->ail_mount;
358af3e4022SDave Chinner 	struct xfs_ail_cursor	cur;
3599e7004e7SDave Chinner 	xfs_log_item_t		*lip;
3609e7004e7SDave Chinner 	xfs_lsn_t		lsn;
361fe0da767SDave Chinner 	xfs_lsn_t		target;
36243ff2122SChristoph Hellwig 	long			tout;
3639e7004e7SDave Chinner 	int			stuck = 0;
36443ff2122SChristoph Hellwig 	int			flushing = 0;
3659e7004e7SDave Chinner 	int			count = 0;
3661da177e4SLinus Torvalds 
367670ce93fSDave Chinner 	/*
36843ff2122SChristoph Hellwig 	 * If we encountered pinned items or did not finish writing out all
36943ff2122SChristoph Hellwig 	 * buffers the last time we ran, force the log first and wait for it
37043ff2122SChristoph Hellwig 	 * before pushing again.
371670ce93fSDave Chinner 	 */
37257e80956SMatthew Wilcox 	if (ailp->ail_log_flush && ailp->ail_last_pushed_lsn == 0 &&
37357e80956SMatthew Wilcox 	    (!list_empty_careful(&ailp->ail_buf_list) ||
37443ff2122SChristoph Hellwig 	     xfs_ail_min_lsn(ailp))) {
37557e80956SMatthew Wilcox 		ailp->ail_log_flush = 0;
37643ff2122SChristoph Hellwig 
377ff6d6af2SBill O'Donnell 		XFS_STATS_INC(mp, xs_push_ail_flush);
378670ce93fSDave Chinner 		xfs_log_force(mp, XFS_LOG_SYNC);
379670ce93fSDave Chinner 	}
380670ce93fSDave Chinner 
38157e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
3828375f922SBrian Foster 
38357e80956SMatthew Wilcox 	/* barrier matches the ail_target update in xfs_ail_push() */
3848375f922SBrian Foster 	smp_rmb();
38557e80956SMatthew Wilcox 	target = ailp->ail_target;
38657e80956SMatthew Wilcox 	ailp->ail_target_prev = target;
3878375f922SBrian Foster 
38857e80956SMatthew Wilcox 	lip = xfs_trans_ail_cursor_first(ailp, &cur, ailp->ail_last_pushed_lsn);
389211e4d43SChristoph Hellwig 	if (!lip) {
3901da177e4SLinus Torvalds 		/*
39143ff2122SChristoph Hellwig 		 * If the AIL is empty or our push has reached the end we are
39243ff2122SChristoph Hellwig 		 * done now.
3931da177e4SLinus Torvalds 		 */
394e4a1e29cSEric Sandeen 		xfs_trans_ail_cursor_done(&cur);
39557e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
3969e7004e7SDave Chinner 		goto out_done;
3971da177e4SLinus Torvalds 	}
3981da177e4SLinus Torvalds 
399ff6d6af2SBill O'Donnell 	XFS_STATS_INC(mp, xs_push_ail);
4001da177e4SLinus Torvalds 
401249a8c11SDavid Chinner 	lsn = lip->li_lsn;
40250e86686SDave Chinner 	while ((XFS_LSN_CMP(lip->li_lsn, target) <= 0)) {
403249a8c11SDavid Chinner 		int	lock_result;
40443ff2122SChristoph Hellwig 
405249a8c11SDavid Chinner 		/*
406904c17e6SDave Chinner 		 * Note that iop_push may unlock and reacquire the AIL lock.  We
40743ff2122SChristoph Hellwig 		 * rely on the AIL cursor implementation to be able to deal with
40843ff2122SChristoph Hellwig 		 * the dropped lock.
4091da177e4SLinus Torvalds 		 */
4107f4d01f3SBrian Foster 		lock_result = xfsaild_push_item(ailp, lip);
4111da177e4SLinus Torvalds 		switch (lock_result) {
4121da177e4SLinus Torvalds 		case XFS_ITEM_SUCCESS:
413ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_success);
4149e4c109aSChristoph Hellwig 			trace_xfs_ail_push(lip);
4159e4c109aSChristoph Hellwig 
41657e80956SMatthew Wilcox 			ailp->ail_last_pushed_lsn = lsn;
4171da177e4SLinus Torvalds 			break;
4181da177e4SLinus Torvalds 
41943ff2122SChristoph Hellwig 		case XFS_ITEM_FLUSHING:
42043ff2122SChristoph Hellwig 			/*
42143ff2122SChristoph Hellwig 			 * The item or its backing buffer is already beeing
42243ff2122SChristoph Hellwig 			 * flushed.  The typical reason for that is that an
42343ff2122SChristoph Hellwig 			 * inode buffer is locked because we already pushed the
42443ff2122SChristoph Hellwig 			 * updates to it as part of inode clustering.
42543ff2122SChristoph Hellwig 			 *
42643ff2122SChristoph Hellwig 			 * We do not want to to stop flushing just because lots
42743ff2122SChristoph Hellwig 			 * of items are already beeing flushed, but we need to
42843ff2122SChristoph Hellwig 			 * re-try the flushing relatively soon if most of the
42943ff2122SChristoph Hellwig 			 * AIL is beeing flushed.
43043ff2122SChristoph Hellwig 			 */
431ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_flushing);
43243ff2122SChristoph Hellwig 			trace_xfs_ail_flushing(lip);
43317b38471SChristoph Hellwig 
43443ff2122SChristoph Hellwig 			flushing++;
43557e80956SMatthew Wilcox 			ailp->ail_last_pushed_lsn = lsn;
4361da177e4SLinus Torvalds 			break;
4371da177e4SLinus Torvalds 
4381da177e4SLinus Torvalds 		case XFS_ITEM_PINNED:
439ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_pinned);
4409e4c109aSChristoph Hellwig 			trace_xfs_ail_pinned(lip);
4419e4c109aSChristoph Hellwig 
442249a8c11SDavid Chinner 			stuck++;
44357e80956SMatthew Wilcox 			ailp->ail_log_flush++;
4441da177e4SLinus Torvalds 			break;
4451da177e4SLinus Torvalds 		case XFS_ITEM_LOCKED:
446ff6d6af2SBill O'Donnell 			XFS_STATS_INC(mp, xs_push_ail_locked);
4479e4c109aSChristoph Hellwig 			trace_xfs_ail_locked(lip);
44843ff2122SChristoph Hellwig 
449249a8c11SDavid Chinner 			stuck++;
4501da177e4SLinus Torvalds 			break;
4511da177e4SLinus Torvalds 		default:
4521da177e4SLinus Torvalds 			ASSERT(0);
4531da177e4SLinus Torvalds 			break;
4541da177e4SLinus Torvalds 		}
4551da177e4SLinus Torvalds 
456249a8c11SDavid Chinner 		count++;
457249a8c11SDavid Chinner 
458249a8c11SDavid Chinner 		/*
459249a8c11SDavid Chinner 		 * Are there too many items we can't do anything with?
46043ff2122SChristoph Hellwig 		 *
461249a8c11SDavid Chinner 		 * If we we are skipping too many items because we can't flush
462249a8c11SDavid Chinner 		 * them or they are already being flushed, we back off and
463249a8c11SDavid Chinner 		 * given them time to complete whatever operation is being
464249a8c11SDavid Chinner 		 * done. i.e. remove pressure from the AIL while we can't make
465249a8c11SDavid Chinner 		 * progress so traversals don't slow down further inserts and
466249a8c11SDavid Chinner 		 * removals to/from the AIL.
467249a8c11SDavid Chinner 		 *
468249a8c11SDavid Chinner 		 * The value of 100 is an arbitrary magic number based on
469249a8c11SDavid Chinner 		 * observation.
470249a8c11SDavid Chinner 		 */
471249a8c11SDavid Chinner 		if (stuck > 100)
472249a8c11SDavid Chinner 			break;
473249a8c11SDavid Chinner 
474af3e4022SDave Chinner 		lip = xfs_trans_ail_cursor_next(ailp, &cur);
475249a8c11SDavid Chinner 		if (lip == NULL)
476249a8c11SDavid Chinner 			break;
477249a8c11SDavid Chinner 		lsn = lip->li_lsn;
4781da177e4SLinus Torvalds 	}
479e4a1e29cSEric Sandeen 	xfs_trans_ail_cursor_done(&cur);
48057e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
4811da177e4SLinus Torvalds 
48257e80956SMatthew Wilcox 	if (xfs_buf_delwri_submit_nowait(&ailp->ail_buf_list))
48357e80956SMatthew Wilcox 		ailp->ail_log_flush++;
484d808f617SDave Chinner 
48543ff2122SChristoph Hellwig 	if (!count || XFS_LSN_CMP(lsn, target) >= 0) {
4869e7004e7SDave Chinner out_done:
487249a8c11SDavid Chinner 		/*
48843ff2122SChristoph Hellwig 		 * We reached the target or the AIL is empty, so wait a bit
48943ff2122SChristoph Hellwig 		 * longer for I/O to complete and remove pushed items from the
49043ff2122SChristoph Hellwig 		 * AIL before we start the next scan from the start of the AIL.
491249a8c11SDavid Chinner 		 */
492453eac8aSDave Chinner 		tout = 50;
49357e80956SMatthew Wilcox 		ailp->ail_last_pushed_lsn = 0;
49443ff2122SChristoph Hellwig 	} else if (((stuck + flushing) * 100) / count > 90) {
495249a8c11SDavid Chinner 		/*
49643ff2122SChristoph Hellwig 		 * Either there is a lot of contention on the AIL or we are
49743ff2122SChristoph Hellwig 		 * stuck due to operations in progress. "Stuck" in this case
49843ff2122SChristoph Hellwig 		 * is defined as >90% of the items we tried to push were stuck.
499249a8c11SDavid Chinner 		 *
500249a8c11SDavid Chinner 		 * Backoff a bit more to allow some I/O to complete before
50143ff2122SChristoph Hellwig 		 * restarting from the start of the AIL. This prevents us from
50243ff2122SChristoph Hellwig 		 * spinning on the same items, and if they are pinned will all
50343ff2122SChristoph Hellwig 		 * the restart to issue a log force to unpin the stuck items.
504249a8c11SDavid Chinner 		 */
505453eac8aSDave Chinner 		tout = 20;
50657e80956SMatthew Wilcox 		ailp->ail_last_pushed_lsn = 0;
50743ff2122SChristoph Hellwig 	} else {
50843ff2122SChristoph Hellwig 		/*
50943ff2122SChristoph Hellwig 		 * Assume we have more work to do in a short while.
51043ff2122SChristoph Hellwig 		 */
51143ff2122SChristoph Hellwig 		tout = 10;
512453eac8aSDave Chinner 	}
5131da177e4SLinus Torvalds 
5140030807cSChristoph Hellwig 	return tout;
5150030807cSChristoph Hellwig }
5160030807cSChristoph Hellwig 
5170030807cSChristoph Hellwig static int
5180030807cSChristoph Hellwig xfsaild(
5190030807cSChristoph Hellwig 	void		*data)
5200030807cSChristoph Hellwig {
5210030807cSChristoph Hellwig 	struct xfs_ail	*ailp = data;
5220030807cSChristoph Hellwig 	long		tout = 0;	/* milliseconds */
5230030807cSChristoph Hellwig 
52443ff2122SChristoph Hellwig 	current->flags |= PF_MEMALLOC;
52518f1df4eSMichal Hocko 	set_freezable();
52643ff2122SChristoph Hellwig 
5270bd89676SHou Tao 	while (1) {
5280030807cSChristoph Hellwig 		if (tout && tout <= 20)
5290bd89676SHou Tao 			set_current_state(TASK_KILLABLE);
5300030807cSChristoph Hellwig 		else
5310bd89676SHou Tao 			set_current_state(TASK_INTERRUPTIBLE);
5320bd89676SHou Tao 
5330bd89676SHou Tao 		/*
534efc3289cSBrian Foster 		 * Check kthread_should_stop() after we set the task state to
535efc3289cSBrian Foster 		 * guarantee that we either see the stop bit and exit or the
536efc3289cSBrian Foster 		 * task state is reset to runnable such that it's not scheduled
537efc3289cSBrian Foster 		 * out indefinitely and detects the stop bit at next iteration.
5380bd89676SHou Tao 		 * A memory barrier is included in above task state set to
5390bd89676SHou Tao 		 * serialize again kthread_stop().
5400bd89676SHou Tao 		 */
5410bd89676SHou Tao 		if (kthread_should_stop()) {
5420bd89676SHou Tao 			__set_current_state(TASK_RUNNING);
543efc3289cSBrian Foster 
544efc3289cSBrian Foster 			/*
545efc3289cSBrian Foster 			 * The caller forces out the AIL before stopping the
546efc3289cSBrian Foster 			 * thread in the common case, which means the delwri
547efc3289cSBrian Foster 			 * queue is drained. In the shutdown case, the queue may
548efc3289cSBrian Foster 			 * still hold relogged buffers that haven't been
549efc3289cSBrian Foster 			 * submitted because they were pinned since added to the
550efc3289cSBrian Foster 			 * queue.
551efc3289cSBrian Foster 			 *
552efc3289cSBrian Foster 			 * Log I/O error processing stales the underlying buffer
553efc3289cSBrian Foster 			 * and clears the delwri state, expecting the buf to be
554efc3289cSBrian Foster 			 * removed on the next submission attempt. That won't
555efc3289cSBrian Foster 			 * happen if we're shutting down, so this is the last
556efc3289cSBrian Foster 			 * opportunity to release such buffers from the queue.
557efc3289cSBrian Foster 			 */
558efc3289cSBrian Foster 			ASSERT(list_empty(&ailp->ail_buf_list) ||
559efc3289cSBrian Foster 			       XFS_FORCED_SHUTDOWN(ailp->ail_mount));
560efc3289cSBrian Foster 			xfs_buf_delwri_cancel(&ailp->ail_buf_list);
5610bd89676SHou Tao 			break;
5620bd89676SHou Tao 		}
5638375f922SBrian Foster 
56457e80956SMatthew Wilcox 		spin_lock(&ailp->ail_lock);
5658375f922SBrian Foster 
5668375f922SBrian Foster 		/*
5678375f922SBrian Foster 		 * Idle if the AIL is empty and we are not racing with a target
5688375f922SBrian Foster 		 * update. We check the AIL after we set the task to a sleep
56957e80956SMatthew Wilcox 		 * state to guarantee that we either catch an ail_target update
5708375f922SBrian Foster 		 * or that a wake_up resets the state to TASK_RUNNING.
5718375f922SBrian Foster 		 * Otherwise, we run the risk of sleeping indefinitely.
5728375f922SBrian Foster 		 *
57357e80956SMatthew Wilcox 		 * The barrier matches the ail_target update in xfs_ail_push().
5748375f922SBrian Foster 		 */
5758375f922SBrian Foster 		smp_rmb();
5768375f922SBrian Foster 		if (!xfs_ail_min(ailp) &&
57757e80956SMatthew Wilcox 		    ailp->ail_target == ailp->ail_target_prev) {
57857e80956SMatthew Wilcox 			spin_unlock(&ailp->ail_lock);
57918f1df4eSMichal Hocko 			freezable_schedule();
5808375f922SBrian Foster 			tout = 0;
5818375f922SBrian Foster 			continue;
5828375f922SBrian Foster 		}
58357e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
5848375f922SBrian Foster 
5858375f922SBrian Foster 		if (tout)
58618f1df4eSMichal Hocko 			freezable_schedule_timeout(msecs_to_jiffies(tout));
5878375f922SBrian Foster 
5888375f922SBrian Foster 		__set_current_state(TASK_RUNNING);
5890030807cSChristoph Hellwig 
5900030807cSChristoph Hellwig 		try_to_freeze();
5910030807cSChristoph Hellwig 
5920030807cSChristoph Hellwig 		tout = xfsaild_push(ailp);
5930030807cSChristoph Hellwig 	}
5940030807cSChristoph Hellwig 
5950030807cSChristoph Hellwig 	return 0;
5960bf6a5bdSDave Chinner }
5970bf6a5bdSDave Chinner 
5980bf6a5bdSDave Chinner /*
5990bf6a5bdSDave Chinner  * This routine is called to move the tail of the AIL forward.  It does this by
6000bf6a5bdSDave Chinner  * trying to flush items in the AIL whose lsns are below the given
6010bf6a5bdSDave Chinner  * threshold_lsn.
6020bf6a5bdSDave Chinner  *
6030bf6a5bdSDave Chinner  * The push is run asynchronously in a workqueue, which means the caller needs
6040bf6a5bdSDave Chinner  * to handle waiting on the async flush for space to become available.
6050bf6a5bdSDave Chinner  * We don't want to interrupt any push that is in progress, hence we only queue
6060bf6a5bdSDave Chinner  * work if we set the pushing bit approriately.
6070bf6a5bdSDave Chinner  *
6080bf6a5bdSDave Chinner  * We do this unlocked - we only need to know whether there is anything in the
6090bf6a5bdSDave Chinner  * AIL at the time we are called. We don't need to access the contents of
6100bf6a5bdSDave Chinner  * any of the objects, so the lock is not needed.
6110bf6a5bdSDave Chinner  */
6120bf6a5bdSDave Chinner void
613fd074841SDave Chinner xfs_ail_push(
6140bf6a5bdSDave Chinner 	struct xfs_ail	*ailp,
6150bf6a5bdSDave Chinner 	xfs_lsn_t	threshold_lsn)
6160bf6a5bdSDave Chinner {
6170bf6a5bdSDave Chinner 	xfs_log_item_t	*lip;
6180bf6a5bdSDave Chinner 
6190bf6a5bdSDave Chinner 	lip = xfs_ail_min(ailp);
62057e80956SMatthew Wilcox 	if (!lip || XFS_FORCED_SHUTDOWN(ailp->ail_mount) ||
62157e80956SMatthew Wilcox 	    XFS_LSN_CMP(threshold_lsn, ailp->ail_target) <= 0)
6220bf6a5bdSDave Chinner 		return;
6230bf6a5bdSDave Chinner 
6240bf6a5bdSDave Chinner 	/*
6250bf6a5bdSDave Chinner 	 * Ensure that the new target is noticed in push code before it clears
6260bf6a5bdSDave Chinner 	 * the XFS_AIL_PUSHING_BIT.
6270bf6a5bdSDave Chinner 	 */
6280bf6a5bdSDave Chinner 	smp_wmb();
62957e80956SMatthew Wilcox 	xfs_trans_ail_copy_lsn(ailp, &ailp->ail_target, &threshold_lsn);
6300030807cSChristoph Hellwig 	smp_wmb();
6310030807cSChristoph Hellwig 
63257e80956SMatthew Wilcox 	wake_up_process(ailp->ail_task);
6330bf6a5bdSDave Chinner }
6341da177e4SLinus Torvalds 
6351da177e4SLinus Torvalds /*
636fd074841SDave Chinner  * Push out all items in the AIL immediately
637fd074841SDave Chinner  */
638fd074841SDave Chinner void
639fd074841SDave Chinner xfs_ail_push_all(
640fd074841SDave Chinner 	struct xfs_ail  *ailp)
641fd074841SDave Chinner {
642fd074841SDave Chinner 	xfs_lsn_t       threshold_lsn = xfs_ail_max_lsn(ailp);
643fd074841SDave Chinner 
644fd074841SDave Chinner 	if (threshold_lsn)
645fd074841SDave Chinner 		xfs_ail_push(ailp, threshold_lsn);
646fd074841SDave Chinner }
647fd074841SDave Chinner 
648fd074841SDave Chinner /*
649211e4d43SChristoph Hellwig  * Push out all items in the AIL immediately and wait until the AIL is empty.
650211e4d43SChristoph Hellwig  */
651211e4d43SChristoph Hellwig void
652211e4d43SChristoph Hellwig xfs_ail_push_all_sync(
653211e4d43SChristoph Hellwig 	struct xfs_ail  *ailp)
654211e4d43SChristoph Hellwig {
655211e4d43SChristoph Hellwig 	struct xfs_log_item	*lip;
656211e4d43SChristoph Hellwig 	DEFINE_WAIT(wait);
657211e4d43SChristoph Hellwig 
65857e80956SMatthew Wilcox 	spin_lock(&ailp->ail_lock);
659211e4d43SChristoph Hellwig 	while ((lip = xfs_ail_max(ailp)) != NULL) {
66057e80956SMatthew Wilcox 		prepare_to_wait(&ailp->ail_empty, &wait, TASK_UNINTERRUPTIBLE);
66157e80956SMatthew Wilcox 		ailp->ail_target = lip->li_lsn;
66257e80956SMatthew Wilcox 		wake_up_process(ailp->ail_task);
66357e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
664211e4d43SChristoph Hellwig 		schedule();
66557e80956SMatthew Wilcox 		spin_lock(&ailp->ail_lock);
666211e4d43SChristoph Hellwig 	}
66757e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
668211e4d43SChristoph Hellwig 
66957e80956SMatthew Wilcox 	finish_wait(&ailp->ail_empty, &wait);
670211e4d43SChristoph Hellwig }
671211e4d43SChristoph Hellwig 
672211e4d43SChristoph Hellwig /*
6730e57f6a3SDave Chinner  * xfs_trans_ail_update - bulk AIL insertion operation.
6740e57f6a3SDave Chinner  *
6750e57f6a3SDave Chinner  * @xfs_trans_ail_update takes an array of log items that all need to be
6760e57f6a3SDave Chinner  * positioned at the same LSN in the AIL. If an item is not in the AIL, it will
6770e57f6a3SDave Chinner  * be added.  Otherwise, it will be repositioned  by removing it and re-adding
6780e57f6a3SDave Chinner  * it to the AIL. If we move the first item in the AIL, update the log tail to
6790e57f6a3SDave Chinner  * match the new minimum LSN in the AIL.
6800e57f6a3SDave Chinner  *
6810e57f6a3SDave Chinner  * This function takes the AIL lock once to execute the update operations on
6820e57f6a3SDave Chinner  * all the items in the array, and as such should not be called with the AIL
6830e57f6a3SDave Chinner  * lock held. As a result, once we have the AIL lock, we need to check each log
6840e57f6a3SDave Chinner  * item LSN to confirm it needs to be moved forward in the AIL.
6850e57f6a3SDave Chinner  *
6860e57f6a3SDave Chinner  * To optimise the insert operation, we delete all the items from the AIL in
6870e57f6a3SDave Chinner  * the first pass, moving them into a temporary list, then splice the temporary
6880e57f6a3SDave Chinner  * list into the correct position in the AIL. This avoids needing to do an
6890e57f6a3SDave Chinner  * insert operation on every item.
6900e57f6a3SDave Chinner  *
6910e57f6a3SDave Chinner  * This function must be called with the AIL lock held.  The lock is dropped
6920e57f6a3SDave Chinner  * before returning.
6930e57f6a3SDave Chinner  */
6940e57f6a3SDave Chinner void
6950e57f6a3SDave Chinner xfs_trans_ail_update_bulk(
6960e57f6a3SDave Chinner 	struct xfs_ail		*ailp,
6971d8c95a3SDave Chinner 	struct xfs_ail_cursor	*cur,
6980e57f6a3SDave Chinner 	struct xfs_log_item	**log_items,
6990e57f6a3SDave Chinner 	int			nr_items,
70057e80956SMatthew Wilcox 	xfs_lsn_t		lsn) __releases(ailp->ail_lock)
7010e57f6a3SDave Chinner {
7020e57f6a3SDave Chinner 	xfs_log_item_t		*mlip;
7030e57f6a3SDave Chinner 	int			mlip_changed = 0;
7040e57f6a3SDave Chinner 	int			i;
7050e57f6a3SDave Chinner 	LIST_HEAD(tmp);
7060e57f6a3SDave Chinner 
707e44f4112SAlex Elder 	ASSERT(nr_items > 0);		/* Not required, but true. */
7080e57f6a3SDave Chinner 	mlip = xfs_ail_min(ailp);
7090e57f6a3SDave Chinner 
7100e57f6a3SDave Chinner 	for (i = 0; i < nr_items; i++) {
7110e57f6a3SDave Chinner 		struct xfs_log_item *lip = log_items[i];
71222525c17SDave Chinner 		if (test_and_set_bit(XFS_LI_IN_AIL, &lip->li_flags)) {
7130e57f6a3SDave Chinner 			/* check if we really need to move the item */
7140e57f6a3SDave Chinner 			if (XFS_LSN_CMP(lsn, lip->li_lsn) <= 0)
7150e57f6a3SDave Chinner 				continue;
7160e57f6a3SDave Chinner 
717750b9c90SDave Chinner 			trace_xfs_ail_move(lip, lip->li_lsn, lsn);
7180e57f6a3SDave Chinner 			xfs_ail_delete(ailp, lip);
7190e57f6a3SDave Chinner 			if (mlip == lip)
7200e57f6a3SDave Chinner 				mlip_changed = 1;
7210e57f6a3SDave Chinner 		} else {
722750b9c90SDave Chinner 			trace_xfs_ail_insert(lip, 0, lsn);
7230e57f6a3SDave Chinner 		}
7240e57f6a3SDave Chinner 		lip->li_lsn = lsn;
7250e57f6a3SDave Chinner 		list_add(&lip->li_ail, &tmp);
7260e57f6a3SDave Chinner 	}
7270e57f6a3SDave Chinner 
728e44f4112SAlex Elder 	if (!list_empty(&tmp))
7291d8c95a3SDave Chinner 		xfs_ail_splice(ailp, cur, &tmp, lsn);
7301c304625SChristoph Hellwig 
7311c304625SChristoph Hellwig 	if (mlip_changed) {
73257e80956SMatthew Wilcox 		if (!XFS_FORCED_SHUTDOWN(ailp->ail_mount))
73357e80956SMatthew Wilcox 			xlog_assign_tail_lsn_locked(ailp->ail_mount);
73457e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
73509a423a3SChristoph Hellwig 
73657e80956SMatthew Wilcox 		xfs_log_space_wake(ailp->ail_mount);
7371c304625SChristoph Hellwig 	} else {
73857e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
7390e57f6a3SDave Chinner 	}
7400e57f6a3SDave Chinner }
7410e57f6a3SDave Chinner 
74227af1bbfSChristoph Hellwig bool
74327af1bbfSChristoph Hellwig xfs_ail_delete_one(
74427af1bbfSChristoph Hellwig 	struct xfs_ail		*ailp,
74527af1bbfSChristoph Hellwig 	struct xfs_log_item	*lip)
74627af1bbfSChristoph Hellwig {
74727af1bbfSChristoph Hellwig 	struct xfs_log_item	*mlip = xfs_ail_min(ailp);
74827af1bbfSChristoph Hellwig 
74927af1bbfSChristoph Hellwig 	trace_xfs_ail_delete(lip, mlip->li_lsn, lip->li_lsn);
75027af1bbfSChristoph Hellwig 	xfs_ail_delete(ailp, lip);
751d3a304b6SCarlos Maiolino 	xfs_clear_li_failed(lip);
75222525c17SDave Chinner 	clear_bit(XFS_LI_IN_AIL, &lip->li_flags);
75327af1bbfSChristoph Hellwig 	lip->li_lsn = 0;
75427af1bbfSChristoph Hellwig 
75527af1bbfSChristoph Hellwig 	return mlip == lip;
75627af1bbfSChristoph Hellwig }
75727af1bbfSChristoph Hellwig 
75827af1bbfSChristoph Hellwig /**
75927af1bbfSChristoph Hellwig  * Remove a log items from the AIL
76030136832SDave Chinner  *
76130136832SDave Chinner  * @xfs_trans_ail_delete_bulk takes an array of log items that all need to
76230136832SDave Chinner  * removed from the AIL. The caller is already holding the AIL lock, and done
76330136832SDave Chinner  * all the checks necessary to ensure the items passed in via @log_items are
76430136832SDave Chinner  * ready for deletion. This includes checking that the items are in the AIL.
76530136832SDave Chinner  *
76630136832SDave Chinner  * For each log item to be removed, unlink it  from the AIL, clear the IN_AIL
76730136832SDave Chinner  * flag from the item and reset the item's lsn to 0. If we remove the first
76830136832SDave Chinner  * item in the AIL, update the log tail to match the new minimum LSN in the
76930136832SDave Chinner  * AIL.
77030136832SDave Chinner  *
77130136832SDave Chinner  * This function will not drop the AIL lock until all items are removed from
77230136832SDave Chinner  * the AIL to minimise the amount of lock traffic on the AIL. This does not
77330136832SDave Chinner  * greatly increase the AIL hold time, but does significantly reduce the amount
77430136832SDave Chinner  * of traffic on the lock, especially during IO completion.
77530136832SDave Chinner  *
77630136832SDave Chinner  * This function must be called with the AIL lock held.  The lock is dropped
77730136832SDave Chinner  * before returning.
77830136832SDave Chinner  */
77930136832SDave Chinner void
78027af1bbfSChristoph Hellwig xfs_trans_ail_delete(
78130136832SDave Chinner 	struct xfs_ail		*ailp,
78227af1bbfSChristoph Hellwig 	struct xfs_log_item	*lip,
78357e80956SMatthew Wilcox 	int			shutdown_type) __releases(ailp->ail_lock)
78430136832SDave Chinner {
78557e80956SMatthew Wilcox 	struct xfs_mount	*mp = ailp->ail_mount;
78627af1bbfSChristoph Hellwig 	bool			mlip_changed;
78730136832SDave Chinner 
78822525c17SDave Chinner 	if (!test_bit(XFS_LI_IN_AIL, &lip->li_flags)) {
78957e80956SMatthew Wilcox 		spin_unlock(&ailp->ail_lock);
79030136832SDave Chinner 		if (!XFS_FORCED_SHUTDOWN(mp)) {
7916a19d939SDave Chinner 			xfs_alert_tag(mp, XFS_PTAG_AILDELETE,
79230136832SDave Chinner 	"%s: attempting to delete a log item that is not in the AIL",
79330136832SDave Chinner 					__func__);
79404913fddSDave Chinner 			xfs_force_shutdown(mp, shutdown_type);
79530136832SDave Chinner 		}
79630136832SDave Chinner 		return;
79730136832SDave Chinner 	}
79830136832SDave Chinner 
79927af1bbfSChristoph Hellwig 	mlip_changed = xfs_ail_delete_one(ailp, lip);
8001c304625SChristoph Hellwig 	if (mlip_changed) {
80127af1bbfSChristoph Hellwig 		if (!XFS_FORCED_SHUTDOWN(mp))
80227af1bbfSChristoph Hellwig 			xlog_assign_tail_lsn_locked(mp);
80357e80956SMatthew Wilcox 		if (list_empty(&ailp->ail_head))
80457e80956SMatthew Wilcox 			wake_up_all(&ailp->ail_empty);
80530136832SDave Chinner 	}
80627af1bbfSChristoph Hellwig 
80757e80956SMatthew Wilcox 	spin_unlock(&ailp->ail_lock);
80827af1bbfSChristoph Hellwig 	if (mlip_changed)
80957e80956SMatthew Wilcox 		xfs_log_space_wake(ailp->ail_mount);
81030136832SDave Chinner }
8111da177e4SLinus Torvalds 
812249a8c11SDavid Chinner int
8131da177e4SLinus Torvalds xfs_trans_ail_init(
8141da177e4SLinus Torvalds 	xfs_mount_t	*mp)
8151da177e4SLinus Torvalds {
81682fa9012SDavid Chinner 	struct xfs_ail	*ailp;
81782fa9012SDavid Chinner 
81882fa9012SDavid Chinner 	ailp = kmem_zalloc(sizeof(struct xfs_ail), KM_MAYFAIL);
81982fa9012SDavid Chinner 	if (!ailp)
8202451337dSDave Chinner 		return -ENOMEM;
82182fa9012SDavid Chinner 
82257e80956SMatthew Wilcox 	ailp->ail_mount = mp;
82357e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_head);
82457e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_cursors);
82557e80956SMatthew Wilcox 	spin_lock_init(&ailp->ail_lock);
82657e80956SMatthew Wilcox 	INIT_LIST_HEAD(&ailp->ail_buf_list);
82757e80956SMatthew Wilcox 	init_waitqueue_head(&ailp->ail_empty);
8280030807cSChristoph Hellwig 
82957e80956SMatthew Wilcox 	ailp->ail_task = kthread_run(xfsaild, ailp, "xfsaild/%s",
83057e80956SMatthew Wilcox 			ailp->ail_mount->m_fsname);
83157e80956SMatthew Wilcox 	if (IS_ERR(ailp->ail_task))
8320030807cSChristoph Hellwig 		goto out_free_ailp;
8330030807cSChristoph Hellwig 
83427d8d5feSDavid Chinner 	mp->m_ail = ailp;
83527d8d5feSDavid Chinner 	return 0;
8360030807cSChristoph Hellwig 
8370030807cSChristoph Hellwig out_free_ailp:
8380030807cSChristoph Hellwig 	kmem_free(ailp);
8392451337dSDave Chinner 	return -ENOMEM;
840249a8c11SDavid Chinner }
841249a8c11SDavid Chinner 
842249a8c11SDavid Chinner void
843249a8c11SDavid Chinner xfs_trans_ail_destroy(
844249a8c11SDavid Chinner 	xfs_mount_t	*mp)
845249a8c11SDavid Chinner {
84682fa9012SDavid Chinner 	struct xfs_ail	*ailp = mp->m_ail;
84782fa9012SDavid Chinner 
84857e80956SMatthew Wilcox 	kthread_stop(ailp->ail_task);
84982fa9012SDavid Chinner 	kmem_free(ailp);
8501da177e4SLinus Torvalds }
851