xref: /openbmc/linux/fs/xfs/xfs_trans_ail.c (revision eb3efa1249b6413be930bdf13d10b6238028a440)
11da177e4SLinus Torvalds /*
27b718769SNathan Scott  * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3c7e8f268SDavid Chinner  * Copyright (c) 2008 Dave Chinner
47b718769SNathan Scott  * All Rights Reserved.
51da177e4SLinus Torvalds  *
67b718769SNathan Scott  * This program is free software; you can redistribute it and/or
77b718769SNathan Scott  * modify it under the terms of the GNU General Public License as
81da177e4SLinus Torvalds  * published by the Free Software Foundation.
91da177e4SLinus Torvalds  *
107b718769SNathan Scott  * This program is distributed in the hope that it would be useful,
117b718769SNathan Scott  * but WITHOUT ANY WARRANTY; without even the implied warranty of
127b718769SNathan Scott  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
137b718769SNathan Scott  * GNU General Public License for more details.
141da177e4SLinus Torvalds  *
157b718769SNathan Scott  * You should have received a copy of the GNU General Public License
167b718769SNathan Scott  * along with this program; if not, write the Free Software Foundation,
177b718769SNathan Scott  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
181da177e4SLinus Torvalds  */
191da177e4SLinus Torvalds #include "xfs.h"
20a844f451SNathan Scott #include "xfs_fs.h"
211da177e4SLinus Torvalds #include "xfs_types.h"
221da177e4SLinus Torvalds #include "xfs_log.h"
23a844f451SNathan Scott #include "xfs_inum.h"
241da177e4SLinus Torvalds #include "xfs_trans.h"
251da177e4SLinus Torvalds #include "xfs_sb.h"
26da353b0dSDavid Chinner #include "xfs_ag.h"
271da177e4SLinus Torvalds #include "xfs_mount.h"
281da177e4SLinus Torvalds #include "xfs_trans_priv.h"
291da177e4SLinus Torvalds #include "xfs_error.h"
301da177e4SLinus Torvalds 
3182fa9012SDavid Chinner STATIC void xfs_ail_insert(struct xfs_ail *, xfs_log_item_t *);
32*eb3efa12SDave Chinner STATIC void xfs_ail_delete(struct xfs_ail *, xfs_log_item_t *);
3382fa9012SDavid Chinner STATIC xfs_log_item_t * xfs_ail_min(struct xfs_ail *);
3482fa9012SDavid Chinner STATIC xfs_log_item_t * xfs_ail_next(struct xfs_ail *, xfs_log_item_t *);
351da177e4SLinus Torvalds 
361da177e4SLinus Torvalds #ifdef DEBUG
3782fa9012SDavid Chinner STATIC void xfs_ail_check(struct xfs_ail *, xfs_log_item_t *);
381da177e4SLinus Torvalds #else
39de08dbc1SDavid Chinner #define	xfs_ail_check(a,l)
401da177e4SLinus Torvalds #endif /* DEBUG */
411da177e4SLinus Torvalds 
421da177e4SLinus Torvalds 
431da177e4SLinus Torvalds /*
441da177e4SLinus Torvalds  * This is called by the log manager code to determine the LSN
451da177e4SLinus Torvalds  * of the tail of the log.  This is exactly the LSN of the first
461da177e4SLinus Torvalds  * item in the AIL.  If the AIL is empty, then this function
471da177e4SLinus Torvalds  * returns 0.
481da177e4SLinus Torvalds  *
491da177e4SLinus Torvalds  * We need the AIL lock in order to get a coherent read of the
501da177e4SLinus Torvalds  * lsn of the last item in the AIL.
511da177e4SLinus Torvalds  */
521da177e4SLinus Torvalds xfs_lsn_t
535b00f14fSDavid Chinner xfs_trans_ail_tail(
545b00f14fSDavid Chinner 	struct xfs_ail	*ailp)
551da177e4SLinus Torvalds {
561da177e4SLinus Torvalds 	xfs_lsn_t	lsn;
571da177e4SLinus Torvalds 	xfs_log_item_t	*lip;
581da177e4SLinus Torvalds 
59c7e8f268SDavid Chinner 	spin_lock(&ailp->xa_lock);
605b00f14fSDavid Chinner 	lip = xfs_ail_min(ailp);
611da177e4SLinus Torvalds 	if (lip == NULL) {
621da177e4SLinus Torvalds 		lsn = (xfs_lsn_t)0;
631da177e4SLinus Torvalds 	} else {
641da177e4SLinus Torvalds 		lsn = lip->li_lsn;
651da177e4SLinus Torvalds 	}
66c7e8f268SDavid Chinner 	spin_unlock(&ailp->xa_lock);
671da177e4SLinus Torvalds 
681da177e4SLinus Torvalds 	return lsn;
691da177e4SLinus Torvalds }
701da177e4SLinus Torvalds 
711da177e4SLinus Torvalds /*
721da177e4SLinus Torvalds  * xfs_trans_push_ail
731da177e4SLinus Torvalds  *
74249a8c11SDavid Chinner  * This routine is called to move the tail of the AIL forward.  It does this by
75249a8c11SDavid Chinner  * trying to flush items in the AIL whose lsns are below the given
76249a8c11SDavid Chinner  * threshold_lsn.
771da177e4SLinus Torvalds  *
78249a8c11SDavid Chinner  * the push is run asynchronously in a separate thread, so we return the tail
79249a8c11SDavid Chinner  * of the log right now instead of the tail after the push. This means we will
80249a8c11SDavid Chinner  * either continue right away, or we will sleep waiting on the async thread to
819da096fdSMalcolm Parsons  * do its work.
82249a8c11SDavid Chinner  *
83249a8c11SDavid Chinner  * We do this unlocked - we only need to know whether there is anything in the
84249a8c11SDavid Chinner  * AIL at the time we are called. We don't need to access the contents of
85249a8c11SDavid Chinner  * any of the objects, so the lock is not needed.
861da177e4SLinus Torvalds  */
87249a8c11SDavid Chinner void
88783a2f65SDavid Chinner xfs_trans_ail_push(
89783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
901da177e4SLinus Torvalds 	xfs_lsn_t	threshold_lsn)
911da177e4SLinus Torvalds {
92249a8c11SDavid Chinner 	xfs_log_item_t	*lip;
93249a8c11SDavid Chinner 
94783a2f65SDavid Chinner 	lip = xfs_ail_min(ailp);
95783a2f65SDavid Chinner 	if (lip && !XFS_FORCED_SHUTDOWN(ailp->xa_mount)) {
96783a2f65SDavid Chinner 		if (XFS_LSN_CMP(threshold_lsn, ailp->xa_target) > 0)
97783a2f65SDavid Chinner 			xfsaild_wakeup(ailp, threshold_lsn);
98249a8c11SDavid Chinner 	}
99249a8c11SDavid Chinner }
100249a8c11SDavid Chinner 
101249a8c11SDavid Chinner /*
10227d8d5feSDavid Chinner  * AIL traversal cursor initialisation.
10327d8d5feSDavid Chinner  *
10427d8d5feSDavid Chinner  * The cursor keeps track of where our current traversal is up
10527d8d5feSDavid Chinner  * to by tracking the next ƣtem in the list for us. However, for
10627d8d5feSDavid Chinner  * this to be safe, removing an object from the AIL needs to invalidate
10727d8d5feSDavid Chinner  * any cursor that points to it. hence the traversal cursor needs to
10827d8d5feSDavid Chinner  * be linked to the struct xfs_ail so that deletion can search all the
10927d8d5feSDavid Chinner  * active cursors for invalidation.
11027d8d5feSDavid Chinner  *
11127d8d5feSDavid Chinner  * We don't link the push cursor because it is embedded in the struct
11227d8d5feSDavid Chinner  * xfs_ail and hence easily findable.
11327d8d5feSDavid Chinner  */
1145b00f14fSDavid Chinner STATIC void
11527d8d5feSDavid Chinner xfs_trans_ail_cursor_init(
11627d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
11727d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
11827d8d5feSDavid Chinner {
11927d8d5feSDavid Chinner 	cur->item = NULL;
12027d8d5feSDavid Chinner 	if (cur == &ailp->xa_cursors)
12127d8d5feSDavid Chinner 		return;
12227d8d5feSDavid Chinner 
12327d8d5feSDavid Chinner 	cur->next = ailp->xa_cursors.next;
12427d8d5feSDavid Chinner 	ailp->xa_cursors.next = cur;
12527d8d5feSDavid Chinner }
12627d8d5feSDavid Chinner 
12727d8d5feSDavid Chinner /*
12827d8d5feSDavid Chinner  * Set the cursor to the next item, because when we look
12927d8d5feSDavid Chinner  * up the cursor the current item may have been freed.
13027d8d5feSDavid Chinner  */
13127d8d5feSDavid Chinner STATIC void
13227d8d5feSDavid Chinner xfs_trans_ail_cursor_set(
13327d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
13427d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur,
13527d8d5feSDavid Chinner 	struct xfs_log_item	*lip)
13627d8d5feSDavid Chinner {
13727d8d5feSDavid Chinner 	if (lip)
13827d8d5feSDavid Chinner 		cur->item = xfs_ail_next(ailp, lip);
13927d8d5feSDavid Chinner }
14027d8d5feSDavid Chinner 
14127d8d5feSDavid Chinner /*
14227d8d5feSDavid Chinner  * Get the next item in the traversal and advance the cursor.
14327d8d5feSDavid Chinner  * If the cursor was invalidated (inidicated by a lip of 1),
14427d8d5feSDavid Chinner  * restart the traversal.
14527d8d5feSDavid Chinner  */
1465b00f14fSDavid Chinner struct xfs_log_item *
14727d8d5feSDavid Chinner xfs_trans_ail_cursor_next(
14827d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
14927d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
15027d8d5feSDavid Chinner {
15127d8d5feSDavid Chinner 	struct xfs_log_item	*lip = cur->item;
15227d8d5feSDavid Chinner 
15327d8d5feSDavid Chinner 	if ((__psint_t)lip & 1)
15427d8d5feSDavid Chinner 		lip = xfs_ail_min(ailp);
15527d8d5feSDavid Chinner 	xfs_trans_ail_cursor_set(ailp, cur, lip);
15627d8d5feSDavid Chinner 	return lip;
15727d8d5feSDavid Chinner }
15827d8d5feSDavid Chinner 
15927d8d5feSDavid Chinner /*
16027d8d5feSDavid Chinner  * Now that the traversal is complete, we need to remove the cursor
16127d8d5feSDavid Chinner  * from the list of traversing cursors. Avoid removing the embedded
1629da096fdSMalcolm Parsons  * push cursor, but use the fact it is always present to make the
16327d8d5feSDavid Chinner  * list deletion simple.
16427d8d5feSDavid Chinner  */
16527d8d5feSDavid Chinner void
16627d8d5feSDavid Chinner xfs_trans_ail_cursor_done(
16727d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
16827d8d5feSDavid Chinner 	struct xfs_ail_cursor	*done)
16927d8d5feSDavid Chinner {
17027d8d5feSDavid Chinner 	struct xfs_ail_cursor	*prev = NULL;
17127d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur;
17227d8d5feSDavid Chinner 
17327d8d5feSDavid Chinner 	done->item = NULL;
17427d8d5feSDavid Chinner 	if (done == &ailp->xa_cursors)
17527d8d5feSDavid Chinner 		return;
17627d8d5feSDavid Chinner 	prev = &ailp->xa_cursors;
17727d8d5feSDavid Chinner 	for (cur = prev->next; cur; prev = cur, cur = prev->next) {
17827d8d5feSDavid Chinner 		if (cur == done) {
17927d8d5feSDavid Chinner 			prev->next = cur->next;
18027d8d5feSDavid Chinner 			break;
18127d8d5feSDavid Chinner 		}
18227d8d5feSDavid Chinner 	}
18327d8d5feSDavid Chinner 	ASSERT(cur);
18427d8d5feSDavid Chinner }
18527d8d5feSDavid Chinner 
18627d8d5feSDavid Chinner /*
1875b00f14fSDavid Chinner  * Invalidate any cursor that is pointing to this item. This is
1885b00f14fSDavid Chinner  * called when an item is removed from the AIL. Any cursor pointing
1895b00f14fSDavid Chinner  * to this object is now invalid and the traversal needs to be
1905b00f14fSDavid Chinner  * terminated so it doesn't reference a freed object. We set the
1915b00f14fSDavid Chinner  * cursor item to a value of 1 so we can distinguish between an
1925b00f14fSDavid Chinner  * invalidation and the end of the list when getting the next item
1935b00f14fSDavid Chinner  * from the cursor.
1945b00f14fSDavid Chinner  */
1955b00f14fSDavid Chinner STATIC void
1965b00f14fSDavid Chinner xfs_trans_ail_cursor_clear(
1975b00f14fSDavid Chinner 	struct xfs_ail		*ailp,
1985b00f14fSDavid Chinner 	struct xfs_log_item	*lip)
1995b00f14fSDavid Chinner {
2005b00f14fSDavid Chinner 	struct xfs_ail_cursor	*cur;
2015b00f14fSDavid Chinner 
2025b00f14fSDavid Chinner 	/* need to search all cursors */
2035b00f14fSDavid Chinner 	for (cur = &ailp->xa_cursors; cur; cur = cur->next) {
2045b00f14fSDavid Chinner 		if (cur->item == lip)
2055b00f14fSDavid Chinner 			cur->item = (struct xfs_log_item *)
2065b00f14fSDavid Chinner 					((__psint_t)cur->item | 1);
2075b00f14fSDavid Chinner 	}
2085b00f14fSDavid Chinner }
2095b00f14fSDavid Chinner 
2105b00f14fSDavid Chinner /*
211249a8c11SDavid Chinner  * Return the item in the AIL with the current lsn.
212249a8c11SDavid Chinner  * Return the current tree generation number for use
213249a8c11SDavid Chinner  * in calls to xfs_trans_next_ail().
214249a8c11SDavid Chinner  */
2155b00f14fSDavid Chinner xfs_log_item_t *
2165b00f14fSDavid Chinner xfs_trans_ail_cursor_first(
21727d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
21827d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur,
219249a8c11SDavid Chinner 	xfs_lsn_t		lsn)
220249a8c11SDavid Chinner {
221249a8c11SDavid Chinner 	xfs_log_item_t		*lip;
222249a8c11SDavid Chinner 
2235b00f14fSDavid Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
22427d8d5feSDavid Chinner 	lip = xfs_ail_min(ailp);
225249a8c11SDavid Chinner 	if (lsn == 0)
2265b00f14fSDavid Chinner 		goto out;
227249a8c11SDavid Chinner 
22827d8d5feSDavid Chinner 	list_for_each_entry(lip, &ailp->xa_ail, li_ail) {
2295b00f14fSDavid Chinner 		if (XFS_LSN_CMP(lip->li_lsn, lsn) >= 0)
2307ee49acfSDavid Chinner 			goto out;
2315b00f14fSDavid Chinner 	}
2325b00f14fSDavid Chinner 	lip = NULL;
2335b00f14fSDavid Chinner out:
23427d8d5feSDavid Chinner 	xfs_trans_ail_cursor_set(ailp, cur, lip);
235249a8c11SDavid Chinner 	return lip;
236249a8c11SDavid Chinner }
237535f6b37SJosef 'Jeff' Sipek 
238249a8c11SDavid Chinner /*
239453eac8aSDave Chinner  * xfsaild_push does the work of pushing on the AIL.  Returning a timeout of
240453eac8aSDave Chinner  * zero indicates that the caller should sleep until woken.
241249a8c11SDavid Chinner  */
242249a8c11SDavid Chinner long
243249a8c11SDavid Chinner xfsaild_push(
24482fa9012SDavid Chinner 	struct xfs_ail	*ailp,
245249a8c11SDavid Chinner 	xfs_lsn_t	*last_lsn)
246249a8c11SDavid Chinner {
247453eac8aSDave Chinner 	long		tout = 0;
248249a8c11SDavid Chinner 	xfs_lsn_t	last_pushed_lsn = *last_lsn;
24982fa9012SDavid Chinner 	xfs_lsn_t	target =  ailp->xa_target;
2501da177e4SLinus Torvalds 	xfs_lsn_t	lsn;
2511da177e4SLinus Torvalds 	xfs_log_item_t	*lip;
252249a8c11SDavid Chinner 	int		flush_log, count, stuck;
25382fa9012SDavid Chinner 	xfs_mount_t	*mp = ailp->xa_mount;
25427d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur = &ailp->xa_cursors;
255d808f617SDave Chinner 	int		push_xfsbufd = 0;
2561da177e4SLinus Torvalds 
257c7e8f268SDavid Chinner 	spin_lock(&ailp->xa_lock);
25827d8d5feSDavid Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
2595b00f14fSDavid Chinner 	lip = xfs_trans_ail_cursor_first(ailp, cur, *last_lsn);
260249a8c11SDavid Chinner 	if (!lip || XFS_FORCED_SHUTDOWN(mp)) {
2611da177e4SLinus Torvalds 		/*
262249a8c11SDavid Chinner 		 * AIL is empty or our push has reached the end.
2631da177e4SLinus Torvalds 		 */
26427d8d5feSDavid Chinner 		xfs_trans_ail_cursor_done(ailp, cur);
265c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
266453eac8aSDave Chinner 		*last_lsn = 0;
26727d8d5feSDavid Chinner 		return tout;
2681da177e4SLinus Torvalds 	}
2691da177e4SLinus Torvalds 
2701da177e4SLinus Torvalds 	XFS_STATS_INC(xs_push_ail);
2711da177e4SLinus Torvalds 
2721da177e4SLinus Torvalds 	/*
2731da177e4SLinus Torvalds 	 * While the item we are looking at is below the given threshold
274249a8c11SDavid Chinner 	 * try to flush it out. We'd like not to stop until we've at least
2751da177e4SLinus Torvalds 	 * tried to push on everything in the AIL with an LSN less than
276249a8c11SDavid Chinner 	 * the given threshold.
2771da177e4SLinus Torvalds 	 *
278249a8c11SDavid Chinner 	 * However, we will stop after a certain number of pushes and wait
279249a8c11SDavid Chinner 	 * for a reduced timeout to fire before pushing further. This
280249a8c11SDavid Chinner 	 * prevents use from spinning when we can't do anything or there is
281249a8c11SDavid Chinner 	 * lots of contention on the AIL lists.
282249a8c11SDavid Chinner 	 */
283249a8c11SDavid Chinner 	lsn = lip->li_lsn;
28427d8d5feSDavid Chinner 	flush_log = stuck = count = 0;
285249a8c11SDavid Chinner 	while ((XFS_LSN_CMP(lip->li_lsn, target) < 0)) {
286249a8c11SDavid Chinner 		int	lock_result;
287249a8c11SDavid Chinner 		/*
288249a8c11SDavid Chinner 		 * If we can lock the item without sleeping, unlock the AIL
289249a8c11SDavid Chinner 		 * lock and flush the item.  Then re-grab the AIL lock so we
290249a8c11SDavid Chinner 		 * can look for the next item on the AIL. List changes are
291249a8c11SDavid Chinner 		 * handled by the AIL lookup functions internally
292249a8c11SDavid Chinner 		 *
293249a8c11SDavid Chinner 		 * If we can't lock the item, either its holder will flush it
294249a8c11SDavid Chinner 		 * or it is already being flushed or it is being relogged.  In
295249a8c11SDavid Chinner 		 * any of these case it is being taken care of and we can just
296249a8c11SDavid Chinner 		 * skip to the next item in the list.
2971da177e4SLinus Torvalds 		 */
2981da177e4SLinus Torvalds 		lock_result = IOP_TRYLOCK(lip);
299c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
3001da177e4SLinus Torvalds 		switch (lock_result) {
3011da177e4SLinus Torvalds 		case XFS_ITEM_SUCCESS:
3021da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_success);
3031da177e4SLinus Torvalds 			IOP_PUSH(lip);
304249a8c11SDavid Chinner 			last_pushed_lsn = lsn;
3051da177e4SLinus Torvalds 			break;
3061da177e4SLinus Torvalds 
3071da177e4SLinus Torvalds 		case XFS_ITEM_PUSHBUF:
3081da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_pushbuf);
3091da177e4SLinus Torvalds 			IOP_PUSHBUF(lip);
310249a8c11SDavid Chinner 			last_pushed_lsn = lsn;
311d808f617SDave Chinner 			push_xfsbufd = 1;
3121da177e4SLinus Torvalds 			break;
3131da177e4SLinus Torvalds 
3141da177e4SLinus Torvalds 		case XFS_ITEM_PINNED:
3151da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_pinned);
316249a8c11SDavid Chinner 			stuck++;
3171da177e4SLinus Torvalds 			flush_log = 1;
3181da177e4SLinus Torvalds 			break;
3191da177e4SLinus Torvalds 
3201da177e4SLinus Torvalds 		case XFS_ITEM_LOCKED:
3211da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_locked);
322249a8c11SDavid Chinner 			last_pushed_lsn = lsn;
323249a8c11SDavid Chinner 			stuck++;
3241da177e4SLinus Torvalds 			break;
3251da177e4SLinus Torvalds 
3261da177e4SLinus Torvalds 		default:
3271da177e4SLinus Torvalds 			ASSERT(0);
3281da177e4SLinus Torvalds 			break;
3291da177e4SLinus Torvalds 		}
3301da177e4SLinus Torvalds 
331c7e8f268SDavid Chinner 		spin_lock(&ailp->xa_lock);
332249a8c11SDavid Chinner 		/* should we bother continuing? */
333249a8c11SDavid Chinner 		if (XFS_FORCED_SHUTDOWN(mp))
3341da177e4SLinus Torvalds 			break;
335249a8c11SDavid Chinner 		ASSERT(mp->m_log);
3361da177e4SLinus Torvalds 
337249a8c11SDavid Chinner 		count++;
338249a8c11SDavid Chinner 
339249a8c11SDavid Chinner 		/*
340249a8c11SDavid Chinner 		 * Are there too many items we can't do anything with?
341249a8c11SDavid Chinner 		 * If we we are skipping too many items because we can't flush
342249a8c11SDavid Chinner 		 * them or they are already being flushed, we back off and
343249a8c11SDavid Chinner 		 * given them time to complete whatever operation is being
344249a8c11SDavid Chinner 		 * done. i.e. remove pressure from the AIL while we can't make
345249a8c11SDavid Chinner 		 * progress so traversals don't slow down further inserts and
346249a8c11SDavid Chinner 		 * removals to/from the AIL.
347249a8c11SDavid Chinner 		 *
348249a8c11SDavid Chinner 		 * The value of 100 is an arbitrary magic number based on
349249a8c11SDavid Chinner 		 * observation.
350249a8c11SDavid Chinner 		 */
351249a8c11SDavid Chinner 		if (stuck > 100)
352249a8c11SDavid Chinner 			break;
353249a8c11SDavid Chinner 
35427d8d5feSDavid Chinner 		lip = xfs_trans_ail_cursor_next(ailp, cur);
355249a8c11SDavid Chinner 		if (lip == NULL)
356249a8c11SDavid Chinner 			break;
357249a8c11SDavid Chinner 		lsn = lip->li_lsn;
3581da177e4SLinus Torvalds 	}
35927d8d5feSDavid Chinner 	xfs_trans_ail_cursor_done(ailp, cur);
360c7e8f268SDavid Chinner 	spin_unlock(&ailp->xa_lock);
3611da177e4SLinus Torvalds 
3621da177e4SLinus Torvalds 	if (flush_log) {
3631da177e4SLinus Torvalds 		/*
3641da177e4SLinus Torvalds 		 * If something we need to push out was pinned, then
3651da177e4SLinus Torvalds 		 * push out the log so it will become unpinned and
3661da177e4SLinus Torvalds 		 * move forward in the AIL.
3671da177e4SLinus Torvalds 		 */
3681da177e4SLinus Torvalds 		XFS_STATS_INC(xs_push_ail_flush);
369a14a348bSChristoph Hellwig 		xfs_log_force(mp, 0);
3701da177e4SLinus Torvalds 	}
3711da177e4SLinus Torvalds 
372d808f617SDave Chinner 	if (push_xfsbufd) {
373d808f617SDave Chinner 		/* we've got delayed write buffers to flush */
374d808f617SDave Chinner 		wake_up_process(mp->m_ddev_targp->bt_task);
375d808f617SDave Chinner 	}
376d808f617SDave Chinner 
37792d9cd10SDavid Chinner 	if (!count) {
37892d9cd10SDavid Chinner 		/* We're past our target or empty, so idle */
379453eac8aSDave Chinner 		last_pushed_lsn = 0;
38092d9cd10SDavid Chinner 	} else if (XFS_LSN_CMP(lsn, target) >= 0) {
381249a8c11SDavid Chinner 		/*
38292d9cd10SDavid Chinner 		 * We reached the target so wait a bit longer for I/O to
38392d9cd10SDavid Chinner 		 * complete and remove pushed items from the AIL before we
38492d9cd10SDavid Chinner 		 * start the next scan from the start of the AIL.
385249a8c11SDavid Chinner 		 */
386453eac8aSDave Chinner 		tout = 50;
387249a8c11SDavid Chinner 		last_pushed_lsn = 0;
38827d8d5feSDavid Chinner 	} else if ((stuck * 100) / count > 90) {
389249a8c11SDavid Chinner 		/*
390249a8c11SDavid Chinner 		 * Either there is a lot of contention on the AIL or we
391249a8c11SDavid Chinner 		 * are stuck due to operations in progress. "Stuck" in this
392249a8c11SDavid Chinner 		 * case is defined as >90% of the items we tried to push
393249a8c11SDavid Chinner 		 * were stuck.
394249a8c11SDavid Chinner 		 *
395249a8c11SDavid Chinner 		 * Backoff a bit more to allow some I/O to complete before
396249a8c11SDavid Chinner 		 * continuing from where we were.
397249a8c11SDavid Chinner 		 */
398453eac8aSDave Chinner 		tout = 20;
399453eac8aSDave Chinner 	} else {
400453eac8aSDave Chinner 		/* more to do, but wait a short while before continuing */
401453eac8aSDave Chinner 		tout = 10;
4021da177e4SLinus Torvalds 	}
403249a8c11SDavid Chinner 	*last_lsn = last_pushed_lsn;
404249a8c11SDavid Chinner 	return tout;
405453eac8aSDave Chinner }
4061da177e4SLinus Torvalds 
4071da177e4SLinus Torvalds 
4081da177e4SLinus Torvalds /*
4091da177e4SLinus Torvalds  * This is to be called when an item is unlocked that may have
4101da177e4SLinus Torvalds  * been in the AIL.  It will wake up the first member of the AIL
4111da177e4SLinus Torvalds  * wait list if this item's unlocking might allow it to progress.
4121da177e4SLinus Torvalds  * If the item is in the AIL, then we need to get the AIL lock
4131da177e4SLinus Torvalds  * while doing our checking so we don't race with someone going
4141da177e4SLinus Torvalds  * to sleep waiting for this event in xfs_trans_push_ail().
4151da177e4SLinus Torvalds  */
4161da177e4SLinus Torvalds void
4171da177e4SLinus Torvalds xfs_trans_unlocked_item(
418783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
4191da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
4201da177e4SLinus Torvalds {
4211da177e4SLinus Torvalds 	xfs_log_item_t	*min_lip;
4221da177e4SLinus Torvalds 
4231da177e4SLinus Torvalds 	/*
4241da177e4SLinus Torvalds 	 * If we're forcibly shutting down, we may have
4251da177e4SLinus Torvalds 	 * unlocked log items arbitrarily. The last thing
4261da177e4SLinus Torvalds 	 * we want to do is to move the tail of the log
4271da177e4SLinus Torvalds 	 * over some potentially valid data.
4281da177e4SLinus Torvalds 	 */
4291da177e4SLinus Torvalds 	if (!(lip->li_flags & XFS_LI_IN_AIL) ||
430783a2f65SDavid Chinner 	    XFS_FORCED_SHUTDOWN(ailp->xa_mount)) {
4311da177e4SLinus Torvalds 		return;
4321da177e4SLinus Torvalds 	}
4331da177e4SLinus Torvalds 
4341da177e4SLinus Torvalds 	/*
4351da177e4SLinus Torvalds 	 * This is the one case where we can call into xfs_ail_min()
4361da177e4SLinus Torvalds 	 * without holding the AIL lock because we only care about the
4371da177e4SLinus Torvalds 	 * case where we are at the tail of the AIL.  If the object isn't
4381da177e4SLinus Torvalds 	 * at the tail, it doesn't matter what result we get back.  This
4391da177e4SLinus Torvalds 	 * is slightly racy because since we were just unlocked, we could
4401da177e4SLinus Torvalds 	 * go to sleep between the call to xfs_ail_min and the call to
4411da177e4SLinus Torvalds 	 * xfs_log_move_tail, have someone else lock us, commit to us disk,
4421da177e4SLinus Torvalds 	 * move us out of the tail of the AIL, and then we wake up.  However,
4431da177e4SLinus Torvalds 	 * the call to xfs_log_move_tail() doesn't do anything if there's
4441da177e4SLinus Torvalds 	 * not enough free space to wake people up so we're safe calling it.
4451da177e4SLinus Torvalds 	 */
446783a2f65SDavid Chinner 	min_lip = xfs_ail_min(ailp);
4471da177e4SLinus Torvalds 
4481da177e4SLinus Torvalds 	if (min_lip == lip)
449783a2f65SDavid Chinner 		xfs_log_move_tail(ailp->xa_mount, 1);
4501da177e4SLinus Torvalds }	/* xfs_trans_unlocked_item */
4511da177e4SLinus Torvalds 
4521da177e4SLinus Torvalds 
4531da177e4SLinus Torvalds /*
4541da177e4SLinus Torvalds  * Update the position of the item in the AIL with the new
4551da177e4SLinus Torvalds  * lsn.  If it is not yet in the AIL, add it.  Otherwise, move
4561da177e4SLinus Torvalds  * it to its new position by removing it and re-adding it.
4571da177e4SLinus Torvalds  *
4581da177e4SLinus Torvalds  * Wakeup anyone with an lsn less than the item's lsn.  If the item
4591da177e4SLinus Torvalds  * we move in the AIL is the minimum one, update the tail lsn in the
4601da177e4SLinus Torvalds  * log manager.
4611da177e4SLinus Torvalds  *
4621da177e4SLinus Torvalds  * This function must be called with the AIL lock held.  The lock
463287f3dadSDonald Douwsma  * is dropped before returning.
4641da177e4SLinus Torvalds  */
4651da177e4SLinus Torvalds void
466783a2f65SDavid Chinner xfs_trans_ail_update(
467783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
4681da177e4SLinus Torvalds 	xfs_log_item_t	*lip,
469c7e8f268SDavid Chinner 	xfs_lsn_t	lsn) __releases(ailp->xa_lock)
4701da177e4SLinus Torvalds {
4711da177e4SLinus Torvalds 	xfs_log_item_t		*mlip;	/* ptr to minimum lip */
4726c06f072SNathaniel W. Turner 	xfs_lsn_t		tail_lsn;
4731da177e4SLinus Torvalds 
474c7e8f268SDavid Chinner 	mlip = xfs_ail_min(ailp);
4751da177e4SLinus Torvalds 
4761da177e4SLinus Torvalds 	if (lip->li_flags & XFS_LI_IN_AIL) {
477*eb3efa12SDave Chinner 		xfs_ail_delete(ailp, lip);
4781da177e4SLinus Torvalds 	} else {
4791da177e4SLinus Torvalds 		lip->li_flags |= XFS_LI_IN_AIL;
4801da177e4SLinus Torvalds 	}
4811da177e4SLinus Torvalds 
4821da177e4SLinus Torvalds 	lip->li_lsn = lsn;
483c7e8f268SDavid Chinner 	xfs_ail_insert(ailp, lip);
4841da177e4SLinus Torvalds 
485*eb3efa12SDave Chinner 	if (mlip == lip) {
486c7e8f268SDavid Chinner 		mlip = xfs_ail_min(ailp);
4876c06f072SNathaniel W. Turner 		/*
4886c06f072SNathaniel W. Turner 		 * It is not safe to access mlip after the AIL lock is
4896c06f072SNathaniel W. Turner 		 * dropped, so we must get a copy of li_lsn before we do
4906c06f072SNathaniel W. Turner 		 * so.  This is especially important on 32-bit platforms
4916c06f072SNathaniel W. Turner 		 * where accessing and updating 64-bit values like li_lsn
4926c06f072SNathaniel W. Turner 		 * is not atomic.
4936c06f072SNathaniel W. Turner 		 */
4946c06f072SNathaniel W. Turner 		tail_lsn = mlip->li_lsn;
495c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
4966c06f072SNathaniel W. Turner 		xfs_log_move_tail(ailp->xa_mount, tail_lsn);
4971da177e4SLinus Torvalds 	} else {
498c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
4991da177e4SLinus Torvalds 	}
5001da177e4SLinus Torvalds 
5011da177e4SLinus Torvalds 
5021da177e4SLinus Torvalds }	/* xfs_trans_update_ail */
5031da177e4SLinus Torvalds 
5041da177e4SLinus Torvalds /*
5051da177e4SLinus Torvalds  * Delete the given item from the AIL.  It must already be in
5061da177e4SLinus Torvalds  * the AIL.
5071da177e4SLinus Torvalds  *
5081da177e4SLinus Torvalds  * Wakeup anyone with an lsn less than item's lsn.    If the item
5091da177e4SLinus Torvalds  * we delete in the AIL is the minimum one, update the tail lsn in the
5101da177e4SLinus Torvalds  * log manager.
5111da177e4SLinus Torvalds  *
5121da177e4SLinus Torvalds  * Clear the IN_AIL flag from the item, reset its lsn to 0, and
5131da177e4SLinus Torvalds  * bump the AIL's generation count to indicate that the tree
5141da177e4SLinus Torvalds  * has changed.
5151da177e4SLinus Torvalds  *
5161da177e4SLinus Torvalds  * This function must be called with the AIL lock held.  The lock
517287f3dadSDonald Douwsma  * is dropped before returning.
5181da177e4SLinus Torvalds  */
5191da177e4SLinus Torvalds void
520783a2f65SDavid Chinner xfs_trans_ail_delete(
521783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
522c7e8f268SDavid Chinner 	xfs_log_item_t	*lip) __releases(ailp->xa_lock)
5231da177e4SLinus Torvalds {
5241da177e4SLinus Torvalds 	xfs_log_item_t		*mlip;
5256c06f072SNathaniel W. Turner 	xfs_lsn_t		tail_lsn;
5261da177e4SLinus Torvalds 
5271da177e4SLinus Torvalds 	if (lip->li_flags & XFS_LI_IN_AIL) {
528c7e8f268SDavid Chinner 		mlip = xfs_ail_min(ailp);
529*eb3efa12SDave Chinner 		xfs_ail_delete(ailp, lip);
5301da177e4SLinus Torvalds 
5311da177e4SLinus Torvalds 
5321da177e4SLinus Torvalds 		lip->li_flags &= ~XFS_LI_IN_AIL;
5331da177e4SLinus Torvalds 		lip->li_lsn = 0;
5341da177e4SLinus Torvalds 
535*eb3efa12SDave Chinner 		if (mlip == lip) {
536c7e8f268SDavid Chinner 			mlip = xfs_ail_min(ailp);
5376c06f072SNathaniel W. Turner 			/*
5386c06f072SNathaniel W. Turner 			 * It is not safe to access mlip after the AIL lock
5396c06f072SNathaniel W. Turner 			 * is dropped, so we must get a copy of li_lsn
5406c06f072SNathaniel W. Turner 			 * before we do so.  This is especially important
5416c06f072SNathaniel W. Turner 			 * on 32-bit platforms where accessing and updating
5426c06f072SNathaniel W. Turner 			 * 64-bit values like li_lsn is not atomic.
5436c06f072SNathaniel W. Turner 			 */
5446c06f072SNathaniel W. Turner 			tail_lsn = mlip ? mlip->li_lsn : 0;
545c7e8f268SDavid Chinner 			spin_unlock(&ailp->xa_lock);
5466c06f072SNathaniel W. Turner 			xfs_log_move_tail(ailp->xa_mount, tail_lsn);
5471da177e4SLinus Torvalds 		} else {
548c7e8f268SDavid Chinner 			spin_unlock(&ailp->xa_lock);
5491da177e4SLinus Torvalds 		}
5501da177e4SLinus Torvalds 	}
5511da177e4SLinus Torvalds 	else {
5521da177e4SLinus Torvalds 		/*
5531da177e4SLinus Torvalds 		 * If the file system is not being shutdown, we are in
5541da177e4SLinus Torvalds 		 * serious trouble if we get to this stage.
5551da177e4SLinus Torvalds 		 */
556783a2f65SDavid Chinner 		struct xfs_mount	*mp = ailp->xa_mount;
557783a2f65SDavid Chinner 
558c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
559c7e8f268SDavid Chinner 		if (!XFS_FORCED_SHUTDOWN(mp)) {
5601da177e4SLinus Torvalds 			xfs_cmn_err(XFS_PTAG_AILDELETE, CE_ALERT, mp,
5617d04a335SNathan Scott 		"%s: attempting to delete a log item that is not in the AIL",
56234a622b2SHarvey Harrison 					__func__);
5637d04a335SNathan Scott 			xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
5641da177e4SLinus Torvalds 		}
5651da177e4SLinus Torvalds 	}
5661da177e4SLinus Torvalds }
5671da177e4SLinus Torvalds 
5681da177e4SLinus Torvalds 
5691da177e4SLinus Torvalds 
5701da177e4SLinus Torvalds /*
5711da177e4SLinus Torvalds  * The active item list (AIL) is a doubly linked list of log
5721da177e4SLinus Torvalds  * items sorted by ascending lsn.  The base of the list is
5731da177e4SLinus Torvalds  * a forw/back pointer pair embedded in the xfs mount structure.
5741da177e4SLinus Torvalds  * The base is initialized with both pointers pointing to the
5751da177e4SLinus Torvalds  * base.  This case always needs to be distinguished, because
5761da177e4SLinus Torvalds  * the base has no lsn to look at.  We almost always insert
5771da177e4SLinus Torvalds  * at the end of the list, so on inserts we search from the
5781da177e4SLinus Torvalds  * end of the list to find where the new item belongs.
5791da177e4SLinus Torvalds  */
5801da177e4SLinus Torvalds 
5811da177e4SLinus Torvalds /*
5821da177e4SLinus Torvalds  * Initialize the doubly linked list to point only to itself.
5831da177e4SLinus Torvalds  */
584249a8c11SDavid Chinner int
5851da177e4SLinus Torvalds xfs_trans_ail_init(
5861da177e4SLinus Torvalds 	xfs_mount_t	*mp)
5871da177e4SLinus Torvalds {
58882fa9012SDavid Chinner 	struct xfs_ail	*ailp;
58927d8d5feSDavid Chinner 	int		error;
59082fa9012SDavid Chinner 
59182fa9012SDavid Chinner 	ailp = kmem_zalloc(sizeof(struct xfs_ail), KM_MAYFAIL);
59282fa9012SDavid Chinner 	if (!ailp)
59382fa9012SDavid Chinner 		return ENOMEM;
59482fa9012SDavid Chinner 
59582fa9012SDavid Chinner 	ailp->xa_mount = mp;
59682fa9012SDavid Chinner 	INIT_LIST_HEAD(&ailp->xa_ail);
597c7e8f268SDavid Chinner 	spin_lock_init(&ailp->xa_lock);
59827d8d5feSDavid Chinner 	error = xfsaild_start(ailp);
59927d8d5feSDavid Chinner 	if (error)
60027d8d5feSDavid Chinner 		goto out_free_ailp;
60127d8d5feSDavid Chinner 	mp->m_ail = ailp;
60227d8d5feSDavid Chinner 	return 0;
60327d8d5feSDavid Chinner 
60427d8d5feSDavid Chinner out_free_ailp:
60527d8d5feSDavid Chinner 	kmem_free(ailp);
60627d8d5feSDavid Chinner 	return error;
607249a8c11SDavid Chinner }
608249a8c11SDavid Chinner 
609249a8c11SDavid Chinner void
610249a8c11SDavid Chinner xfs_trans_ail_destroy(
611249a8c11SDavid Chinner 	xfs_mount_t	*mp)
612249a8c11SDavid Chinner {
61382fa9012SDavid Chinner 	struct xfs_ail	*ailp = mp->m_ail;
61482fa9012SDavid Chinner 
61582fa9012SDavid Chinner 	xfsaild_stop(ailp);
61682fa9012SDavid Chinner 	kmem_free(ailp);
6171da177e4SLinus Torvalds }
6181da177e4SLinus Torvalds 
6191da177e4SLinus Torvalds /*
6201da177e4SLinus Torvalds  * Insert the given log item into the AIL.
6211da177e4SLinus Torvalds  * We almost always insert at the end of the list, so on inserts
6221da177e4SLinus Torvalds  * we search from the end of the list to find where the
6231da177e4SLinus Torvalds  * new item belongs.
6241da177e4SLinus Torvalds  */
6251da177e4SLinus Torvalds STATIC void
6261da177e4SLinus Torvalds xfs_ail_insert(
62782fa9012SDavid Chinner 	struct xfs_ail	*ailp,
6281da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
6291da177e4SLinus Torvalds {
6301da177e4SLinus Torvalds 	xfs_log_item_t	*next_lip;
6311da177e4SLinus Torvalds 
6321da177e4SLinus Torvalds 	/*
6331da177e4SLinus Torvalds 	 * If the list is empty, just insert the item.
6341da177e4SLinus Torvalds 	 */
635535f6b37SJosef 'Jeff' Sipek 	if (list_empty(&ailp->xa_ail)) {
636535f6b37SJosef 'Jeff' Sipek 		list_add(&lip->li_ail, &ailp->xa_ail);
6371da177e4SLinus Torvalds 		return;
6381da177e4SLinus Torvalds 	}
6391da177e4SLinus Torvalds 
640535f6b37SJosef 'Jeff' Sipek 	list_for_each_entry_reverse(next_lip, &ailp->xa_ail, li_ail) {
641535f6b37SJosef 'Jeff' Sipek 		if (XFS_LSN_CMP(next_lip->li_lsn, lip->li_lsn) <= 0)
642535f6b37SJosef 'Jeff' Sipek 			break;
6431da177e4SLinus Torvalds 	}
6441da177e4SLinus Torvalds 
645535f6b37SJosef 'Jeff' Sipek 	ASSERT((&next_lip->li_ail == &ailp->xa_ail) ||
646535f6b37SJosef 'Jeff' Sipek 	       (XFS_LSN_CMP(next_lip->li_lsn, lip->li_lsn) <= 0));
647535f6b37SJosef 'Jeff' Sipek 
648535f6b37SJosef 'Jeff' Sipek 	list_add(&lip->li_ail, &next_lip->li_ail);
649535f6b37SJosef 'Jeff' Sipek 
650535f6b37SJosef 'Jeff' Sipek 	xfs_ail_check(ailp, lip);
6511da177e4SLinus Torvalds 	return;
6521da177e4SLinus Torvalds }
6531da177e4SLinus Torvalds 
6541da177e4SLinus Torvalds /*
6551da177e4SLinus Torvalds  * Delete the given item from the AIL.  Return a pointer to the item.
6561da177e4SLinus Torvalds  */
657*eb3efa12SDave Chinner STATIC void
6581da177e4SLinus Torvalds xfs_ail_delete(
65982fa9012SDavid Chinner 	struct xfs_ail	*ailp,
6601da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
6611da177e4SLinus Torvalds {
662535f6b37SJosef 'Jeff' Sipek 	xfs_ail_check(ailp, lip);
663535f6b37SJosef 'Jeff' Sipek 	list_del(&lip->li_ail);
664*eb3efa12SDave Chinner 	xfs_trans_ail_cursor_clear(ailp, lip);
6651da177e4SLinus Torvalds }
6661da177e4SLinus Torvalds 
6671da177e4SLinus Torvalds /*
6681da177e4SLinus Torvalds  * Return a pointer to the first item in the AIL.
6691da177e4SLinus Torvalds  * If the AIL is empty, then return NULL.
6701da177e4SLinus Torvalds  */
6711da177e4SLinus Torvalds STATIC xfs_log_item_t *
6721da177e4SLinus Torvalds xfs_ail_min(
67382fa9012SDavid Chinner 	struct xfs_ail	*ailp)
6741da177e4SLinus Torvalds {
675535f6b37SJosef 'Jeff' Sipek 	if (list_empty(&ailp->xa_ail))
6761da177e4SLinus Torvalds 		return NULL;
677535f6b37SJosef 'Jeff' Sipek 
678535f6b37SJosef 'Jeff' Sipek 	return list_first_entry(&ailp->xa_ail, xfs_log_item_t, li_ail);
6791da177e4SLinus Torvalds }
6801da177e4SLinus Torvalds 
6811da177e4SLinus Torvalds /*
6821da177e4SLinus Torvalds  * Return a pointer to the item which follows
6831da177e4SLinus Torvalds  * the given item in the AIL.  If the given item
6841da177e4SLinus Torvalds  * is the last item in the list, then return NULL.
6851da177e4SLinus Torvalds  */
6861da177e4SLinus Torvalds STATIC xfs_log_item_t *
6871da177e4SLinus Torvalds xfs_ail_next(
68882fa9012SDavid Chinner 	struct xfs_ail	*ailp,
6891da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
6901da177e4SLinus Torvalds {
691535f6b37SJosef 'Jeff' Sipek 	if (lip->li_ail.next == &ailp->xa_ail)
6921da177e4SLinus Torvalds 		return NULL;
6931da177e4SLinus Torvalds 
694535f6b37SJosef 'Jeff' Sipek 	return list_first_entry(&lip->li_ail, xfs_log_item_t, li_ail);
6951da177e4SLinus Torvalds }
6961da177e4SLinus Torvalds 
6971da177e4SLinus Torvalds #ifdef DEBUG
6981da177e4SLinus Torvalds /*
6991da177e4SLinus Torvalds  * Check that the list is sorted as it should be.
7001da177e4SLinus Torvalds  */
7011da177e4SLinus Torvalds STATIC void
7021da177e4SLinus Torvalds xfs_ail_check(
70382fa9012SDavid Chinner 	struct xfs_ail	*ailp,
704de08dbc1SDavid Chinner 	xfs_log_item_t	*lip)
7051da177e4SLinus Torvalds {
7061da177e4SLinus Torvalds 	xfs_log_item_t	*prev_lip;
7071da177e4SLinus Torvalds 
708535f6b37SJosef 'Jeff' Sipek 	if (list_empty(&ailp->xa_ail))
7091da177e4SLinus Torvalds 		return;
7101da177e4SLinus Torvalds 
7111da177e4SLinus Torvalds 	/*
712de08dbc1SDavid Chinner 	 * Check the next and previous entries are valid.
713de08dbc1SDavid Chinner 	 */
714de08dbc1SDavid Chinner 	ASSERT((lip->li_flags & XFS_LI_IN_AIL) != 0);
715535f6b37SJosef 'Jeff' Sipek 	prev_lip = list_entry(lip->li_ail.prev, xfs_log_item_t, li_ail);
716535f6b37SJosef 'Jeff' Sipek 	if (&prev_lip->li_ail != &ailp->xa_ail)
717de08dbc1SDavid Chinner 		ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) <= 0);
718535f6b37SJosef 'Jeff' Sipek 
719535f6b37SJosef 'Jeff' Sipek 	prev_lip = list_entry(lip->li_ail.next, xfs_log_item_t, li_ail);
720535f6b37SJosef 'Jeff' Sipek 	if (&prev_lip->li_ail != &ailp->xa_ail)
721de08dbc1SDavid Chinner 		ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) >= 0);
722de08dbc1SDavid Chinner 
723de08dbc1SDavid Chinner 
724de08dbc1SDavid Chinner #ifdef XFS_TRANS_DEBUG
725de08dbc1SDavid Chinner 	/*
726535f6b37SJosef 'Jeff' Sipek 	 * Walk the list checking lsn ordering, and that every entry has the
727535f6b37SJosef 'Jeff' Sipek 	 * XFS_LI_IN_AIL flag set. This is really expensive, so only do it
728535f6b37SJosef 'Jeff' Sipek 	 * when specifically debugging the transaction subsystem.
7291da177e4SLinus Torvalds 	 */
730535f6b37SJosef 'Jeff' Sipek 	prev_lip = list_entry(&ailp->xa_ail, xfs_log_item_t, li_ail);
731535f6b37SJosef 'Jeff' Sipek 	list_for_each_entry(lip, &ailp->xa_ail, li_ail) {
732535f6b37SJosef 'Jeff' Sipek 		if (&prev_lip->li_ail != &ailp->xa_ail)
7331da177e4SLinus Torvalds 			ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) <= 0);
7341da177e4SLinus Torvalds 		ASSERT((lip->li_flags & XFS_LI_IN_AIL) != 0);
7351da177e4SLinus Torvalds 		prev_lip = lip;
7361da177e4SLinus Torvalds 	}
737de08dbc1SDavid Chinner #endif /* XFS_TRANS_DEBUG */
7381da177e4SLinus Torvalds }
7391da177e4SLinus Torvalds #endif /* DEBUG */
740