xref: /openbmc/linux/fs/xfs/xfs_trans_ail.c (revision 9da096fd)
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_dmapi.h"
281da177e4SLinus Torvalds #include "xfs_mount.h"
291da177e4SLinus Torvalds #include "xfs_trans_priv.h"
301da177e4SLinus Torvalds #include "xfs_error.h"
311da177e4SLinus Torvalds 
3282fa9012SDavid Chinner STATIC void xfs_ail_insert(struct xfs_ail *, xfs_log_item_t *);
3382fa9012SDavid Chinner STATIC xfs_log_item_t * xfs_ail_delete(struct xfs_ail *, xfs_log_item_t *);
3482fa9012SDavid Chinner STATIC xfs_log_item_t * xfs_ail_min(struct xfs_ail *);
3582fa9012SDavid Chinner STATIC xfs_log_item_t * xfs_ail_next(struct xfs_ail *, xfs_log_item_t *);
361da177e4SLinus Torvalds 
371da177e4SLinus Torvalds #ifdef DEBUG
3882fa9012SDavid Chinner STATIC void xfs_ail_check(struct xfs_ail *, xfs_log_item_t *);
391da177e4SLinus Torvalds #else
40de08dbc1SDavid Chinner #define	xfs_ail_check(a,l)
411da177e4SLinus Torvalds #endif /* DEBUG */
421da177e4SLinus Torvalds 
431da177e4SLinus Torvalds 
441da177e4SLinus Torvalds /*
451da177e4SLinus Torvalds  * This is called by the log manager code to determine the LSN
461da177e4SLinus Torvalds  * of the tail of the log.  This is exactly the LSN of the first
471da177e4SLinus Torvalds  * item in the AIL.  If the AIL is empty, then this function
481da177e4SLinus Torvalds  * returns 0.
491da177e4SLinus Torvalds  *
501da177e4SLinus Torvalds  * We need the AIL lock in order to get a coherent read of the
511da177e4SLinus Torvalds  * lsn of the last item in the AIL.
521da177e4SLinus Torvalds  */
531da177e4SLinus Torvalds xfs_lsn_t
545b00f14fSDavid Chinner xfs_trans_ail_tail(
555b00f14fSDavid Chinner 	struct xfs_ail	*ailp)
561da177e4SLinus Torvalds {
571da177e4SLinus Torvalds 	xfs_lsn_t	lsn;
581da177e4SLinus Torvalds 	xfs_log_item_t	*lip;
591da177e4SLinus Torvalds 
60c7e8f268SDavid Chinner 	spin_lock(&ailp->xa_lock);
615b00f14fSDavid Chinner 	lip = xfs_ail_min(ailp);
621da177e4SLinus Torvalds 	if (lip == NULL) {
631da177e4SLinus Torvalds 		lsn = (xfs_lsn_t)0;
641da177e4SLinus Torvalds 	} else {
651da177e4SLinus Torvalds 		lsn = lip->li_lsn;
661da177e4SLinus Torvalds 	}
67c7e8f268SDavid Chinner 	spin_unlock(&ailp->xa_lock);
681da177e4SLinus Torvalds 
691da177e4SLinus Torvalds 	return lsn;
701da177e4SLinus Torvalds }
711da177e4SLinus Torvalds 
721da177e4SLinus Torvalds /*
731da177e4SLinus Torvalds  * xfs_trans_push_ail
741da177e4SLinus Torvalds  *
75249a8c11SDavid Chinner  * This routine is called to move the tail of the AIL forward.  It does this by
76249a8c11SDavid Chinner  * trying to flush items in the AIL whose lsns are below the given
77249a8c11SDavid Chinner  * threshold_lsn.
781da177e4SLinus Torvalds  *
79249a8c11SDavid Chinner  * the push is run asynchronously in a separate thread, so we return the tail
80249a8c11SDavid Chinner  * of the log right now instead of the tail after the push. This means we will
81249a8c11SDavid Chinner  * either continue right away, or we will sleep waiting on the async thread to
829da096fdSMalcolm Parsons  * do its work.
83249a8c11SDavid Chinner  *
84249a8c11SDavid Chinner  * We do this unlocked - we only need to know whether there is anything in the
85249a8c11SDavid Chinner  * AIL at the time we are called. We don't need to access the contents of
86249a8c11SDavid Chinner  * any of the objects, so the lock is not needed.
871da177e4SLinus Torvalds  */
88249a8c11SDavid Chinner void
89783a2f65SDavid Chinner xfs_trans_ail_push(
90783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
911da177e4SLinus Torvalds 	xfs_lsn_t	threshold_lsn)
921da177e4SLinus Torvalds {
93249a8c11SDavid Chinner 	xfs_log_item_t	*lip;
94249a8c11SDavid Chinner 
95783a2f65SDavid Chinner 	lip = xfs_ail_min(ailp);
96783a2f65SDavid Chinner 	if (lip && !XFS_FORCED_SHUTDOWN(ailp->xa_mount)) {
97783a2f65SDavid Chinner 		if (XFS_LSN_CMP(threshold_lsn, ailp->xa_target) > 0)
98783a2f65SDavid Chinner 			xfsaild_wakeup(ailp, threshold_lsn);
99249a8c11SDavid Chinner 	}
100249a8c11SDavid Chinner }
101249a8c11SDavid Chinner 
102249a8c11SDavid Chinner /*
10327d8d5feSDavid Chinner  * AIL traversal cursor initialisation.
10427d8d5feSDavid Chinner  *
10527d8d5feSDavid Chinner  * The cursor keeps track of where our current traversal is up
10627d8d5feSDavid Chinner  * to by tracking the next ƣtem in the list for us. However, for
10727d8d5feSDavid Chinner  * this to be safe, removing an object from the AIL needs to invalidate
10827d8d5feSDavid Chinner  * any cursor that points to it. hence the traversal cursor needs to
10927d8d5feSDavid Chinner  * be linked to the struct xfs_ail so that deletion can search all the
11027d8d5feSDavid Chinner  * active cursors for invalidation.
11127d8d5feSDavid Chinner  *
11227d8d5feSDavid Chinner  * We don't link the push cursor because it is embedded in the struct
11327d8d5feSDavid Chinner  * xfs_ail and hence easily findable.
11427d8d5feSDavid Chinner  */
1155b00f14fSDavid Chinner STATIC void
11627d8d5feSDavid Chinner xfs_trans_ail_cursor_init(
11727d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
11827d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
11927d8d5feSDavid Chinner {
12027d8d5feSDavid Chinner 	cur->item = NULL;
12127d8d5feSDavid Chinner 	if (cur == &ailp->xa_cursors)
12227d8d5feSDavid Chinner 		return;
12327d8d5feSDavid Chinner 
12427d8d5feSDavid Chinner 	cur->next = ailp->xa_cursors.next;
12527d8d5feSDavid Chinner 	ailp->xa_cursors.next = cur;
12627d8d5feSDavid Chinner }
12727d8d5feSDavid Chinner 
12827d8d5feSDavid Chinner /*
12927d8d5feSDavid Chinner  * Set the cursor to the next item, because when we look
13027d8d5feSDavid Chinner  * up the cursor the current item may have been freed.
13127d8d5feSDavid Chinner  */
13227d8d5feSDavid Chinner STATIC void
13327d8d5feSDavid Chinner xfs_trans_ail_cursor_set(
13427d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
13527d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur,
13627d8d5feSDavid Chinner 	struct xfs_log_item	*lip)
13727d8d5feSDavid Chinner {
13827d8d5feSDavid Chinner 	if (lip)
13927d8d5feSDavid Chinner 		cur->item = xfs_ail_next(ailp, lip);
14027d8d5feSDavid Chinner }
14127d8d5feSDavid Chinner 
14227d8d5feSDavid Chinner /*
14327d8d5feSDavid Chinner  * Get the next item in the traversal and advance the cursor.
14427d8d5feSDavid Chinner  * If the cursor was invalidated (inidicated by a lip of 1),
14527d8d5feSDavid Chinner  * restart the traversal.
14627d8d5feSDavid Chinner  */
1475b00f14fSDavid Chinner struct xfs_log_item *
14827d8d5feSDavid Chinner xfs_trans_ail_cursor_next(
14927d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
15027d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur)
15127d8d5feSDavid Chinner {
15227d8d5feSDavid Chinner 	struct xfs_log_item	*lip = cur->item;
15327d8d5feSDavid Chinner 
15427d8d5feSDavid Chinner 	if ((__psint_t)lip & 1)
15527d8d5feSDavid Chinner 		lip = xfs_ail_min(ailp);
15627d8d5feSDavid Chinner 	xfs_trans_ail_cursor_set(ailp, cur, lip);
15727d8d5feSDavid Chinner 	return lip;
15827d8d5feSDavid Chinner }
15927d8d5feSDavid Chinner 
16027d8d5feSDavid Chinner /*
16127d8d5feSDavid Chinner  * Now that the traversal is complete, we need to remove the cursor
16227d8d5feSDavid Chinner  * from the list of traversing cursors. Avoid removing the embedded
1639da096fdSMalcolm Parsons  * push cursor, but use the fact it is always present to make the
16427d8d5feSDavid Chinner  * list deletion simple.
16527d8d5feSDavid Chinner  */
16627d8d5feSDavid Chinner void
16727d8d5feSDavid Chinner xfs_trans_ail_cursor_done(
16827d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
16927d8d5feSDavid Chinner 	struct xfs_ail_cursor	*done)
17027d8d5feSDavid Chinner {
17127d8d5feSDavid Chinner 	struct xfs_ail_cursor	*prev = NULL;
17227d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur;
17327d8d5feSDavid Chinner 
17427d8d5feSDavid Chinner 	done->item = NULL;
17527d8d5feSDavid Chinner 	if (done == &ailp->xa_cursors)
17627d8d5feSDavid Chinner 		return;
17727d8d5feSDavid Chinner 	prev = &ailp->xa_cursors;
17827d8d5feSDavid Chinner 	for (cur = prev->next; cur; prev = cur, cur = prev->next) {
17927d8d5feSDavid Chinner 		if (cur == done) {
18027d8d5feSDavid Chinner 			prev->next = cur->next;
18127d8d5feSDavid Chinner 			break;
18227d8d5feSDavid Chinner 		}
18327d8d5feSDavid Chinner 	}
18427d8d5feSDavid Chinner 	ASSERT(cur);
18527d8d5feSDavid Chinner }
18627d8d5feSDavid Chinner 
18727d8d5feSDavid Chinner /*
1885b00f14fSDavid Chinner  * Invalidate any cursor that is pointing to this item. This is
1895b00f14fSDavid Chinner  * called when an item is removed from the AIL. Any cursor pointing
1905b00f14fSDavid Chinner  * to this object is now invalid and the traversal needs to be
1915b00f14fSDavid Chinner  * terminated so it doesn't reference a freed object. We set the
1925b00f14fSDavid Chinner  * cursor item to a value of 1 so we can distinguish between an
1935b00f14fSDavid Chinner  * invalidation and the end of the list when getting the next item
1945b00f14fSDavid Chinner  * from the cursor.
1955b00f14fSDavid Chinner  */
1965b00f14fSDavid Chinner STATIC void
1975b00f14fSDavid Chinner xfs_trans_ail_cursor_clear(
1985b00f14fSDavid Chinner 	struct xfs_ail		*ailp,
1995b00f14fSDavid Chinner 	struct xfs_log_item	*lip)
2005b00f14fSDavid Chinner {
2015b00f14fSDavid Chinner 	struct xfs_ail_cursor	*cur;
2025b00f14fSDavid Chinner 
2035b00f14fSDavid Chinner 	/* need to search all cursors */
2045b00f14fSDavid Chinner 	for (cur = &ailp->xa_cursors; cur; cur = cur->next) {
2055b00f14fSDavid Chinner 		if (cur->item == lip)
2065b00f14fSDavid Chinner 			cur->item = (struct xfs_log_item *)
2075b00f14fSDavid Chinner 					((__psint_t)cur->item | 1);
2085b00f14fSDavid Chinner 	}
2095b00f14fSDavid Chinner }
2105b00f14fSDavid Chinner 
2115b00f14fSDavid Chinner /*
212249a8c11SDavid Chinner  * Return the item in the AIL with the current lsn.
213249a8c11SDavid Chinner  * Return the current tree generation number for use
214249a8c11SDavid Chinner  * in calls to xfs_trans_next_ail().
215249a8c11SDavid Chinner  */
2165b00f14fSDavid Chinner xfs_log_item_t *
2175b00f14fSDavid Chinner xfs_trans_ail_cursor_first(
21827d8d5feSDavid Chinner 	struct xfs_ail		*ailp,
21927d8d5feSDavid Chinner 	struct xfs_ail_cursor	*cur,
220249a8c11SDavid Chinner 	xfs_lsn_t		lsn)
221249a8c11SDavid Chinner {
222249a8c11SDavid Chinner 	xfs_log_item_t		*lip;
223249a8c11SDavid Chinner 
2245b00f14fSDavid Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
22527d8d5feSDavid Chinner 	lip = xfs_ail_min(ailp);
226249a8c11SDavid Chinner 	if (lsn == 0)
2275b00f14fSDavid Chinner 		goto out;
228249a8c11SDavid Chinner 
22927d8d5feSDavid Chinner 	list_for_each_entry(lip, &ailp->xa_ail, li_ail) {
2305b00f14fSDavid Chinner 		if (XFS_LSN_CMP(lip->li_lsn, lsn) >= 0)
2317ee49acfSDavid Chinner 			goto out;
2325b00f14fSDavid Chinner 	}
2335b00f14fSDavid Chinner 	lip = NULL;
2345b00f14fSDavid Chinner out:
23527d8d5feSDavid Chinner 	xfs_trans_ail_cursor_set(ailp, cur, lip);
236249a8c11SDavid Chinner 	return lip;
237249a8c11SDavid Chinner }
238535f6b37SJosef 'Jeff' Sipek 
239249a8c11SDavid Chinner /*
240249a8c11SDavid Chinner  * Function that does the work of pushing on the AIL
241249a8c11SDavid Chinner  */
242249a8c11SDavid Chinner long
243249a8c11SDavid Chinner xfsaild_push(
24482fa9012SDavid Chinner 	struct xfs_ail	*ailp,
245249a8c11SDavid Chinner 	xfs_lsn_t	*last_lsn)
246249a8c11SDavid Chinner {
247249a8c11SDavid Chinner 	long		tout = 1000; /* milliseconds */
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;
2551da177e4SLinus Torvalds 
256c7e8f268SDavid Chinner 	spin_lock(&ailp->xa_lock);
25727d8d5feSDavid Chinner 	xfs_trans_ail_cursor_init(ailp, cur);
2585b00f14fSDavid Chinner 	lip = xfs_trans_ail_cursor_first(ailp, cur, *last_lsn);
259249a8c11SDavid Chinner 	if (!lip || XFS_FORCED_SHUTDOWN(mp)) {
2601da177e4SLinus Torvalds 		/*
261249a8c11SDavid Chinner 		 * AIL is empty or our push has reached the end.
2621da177e4SLinus Torvalds 		 */
26327d8d5feSDavid Chinner 		xfs_trans_ail_cursor_done(ailp, cur);
264c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
265249a8c11SDavid Chinner 		last_pushed_lsn = 0;
26627d8d5feSDavid Chinner 		return tout;
2671da177e4SLinus Torvalds 	}
2681da177e4SLinus Torvalds 
2691da177e4SLinus Torvalds 	XFS_STATS_INC(xs_push_ail);
2701da177e4SLinus Torvalds 
2711da177e4SLinus Torvalds 	/*
2721da177e4SLinus Torvalds 	 * While the item we are looking at is below the given threshold
273249a8c11SDavid Chinner 	 * try to flush it out. We'd like not to stop until we've at least
2741da177e4SLinus Torvalds 	 * tried to push on everything in the AIL with an LSN less than
275249a8c11SDavid Chinner 	 * the given threshold.
2761da177e4SLinus Torvalds 	 *
277249a8c11SDavid Chinner 	 * However, we will stop after a certain number of pushes and wait
278249a8c11SDavid Chinner 	 * for a reduced timeout to fire before pushing further. This
279249a8c11SDavid Chinner 	 * prevents use from spinning when we can't do anything or there is
280249a8c11SDavid Chinner 	 * lots of contention on the AIL lists.
281249a8c11SDavid Chinner 	 */
282249a8c11SDavid Chinner 	tout = 10;
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;
3111da177e4SLinus Torvalds 			break;
3121da177e4SLinus Torvalds 
3131da177e4SLinus Torvalds 		case XFS_ITEM_PINNED:
3141da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_pinned);
315249a8c11SDavid Chinner 			stuck++;
3161da177e4SLinus Torvalds 			flush_log = 1;
3171da177e4SLinus Torvalds 			break;
3181da177e4SLinus Torvalds 
3191da177e4SLinus Torvalds 		case XFS_ITEM_LOCKED:
3201da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_locked);
321249a8c11SDavid Chinner 			last_pushed_lsn = lsn;
322249a8c11SDavid Chinner 			stuck++;
3231da177e4SLinus Torvalds 			break;
3241da177e4SLinus Torvalds 
3251da177e4SLinus Torvalds 		case XFS_ITEM_FLUSHING:
3261da177e4SLinus Torvalds 			XFS_STATS_INC(xs_push_ail_flushing);
327249a8c11SDavid Chinner 			last_pushed_lsn = lsn;
328249a8c11SDavid Chinner 			stuck++;
3291da177e4SLinus Torvalds 			break;
3301da177e4SLinus Torvalds 
3311da177e4SLinus Torvalds 		default:
3321da177e4SLinus Torvalds 			ASSERT(0);
3331da177e4SLinus Torvalds 			break;
3341da177e4SLinus Torvalds 		}
3351da177e4SLinus Torvalds 
336c7e8f268SDavid Chinner 		spin_lock(&ailp->xa_lock);
337249a8c11SDavid Chinner 		/* should we bother continuing? */
338249a8c11SDavid Chinner 		if (XFS_FORCED_SHUTDOWN(mp))
3391da177e4SLinus Torvalds 			break;
340249a8c11SDavid Chinner 		ASSERT(mp->m_log);
3411da177e4SLinus Torvalds 
342249a8c11SDavid Chinner 		count++;
343249a8c11SDavid Chinner 
344249a8c11SDavid Chinner 		/*
345249a8c11SDavid Chinner 		 * Are there too many items we can't do anything with?
346249a8c11SDavid Chinner 		 * If we we are skipping too many items because we can't flush
347249a8c11SDavid Chinner 		 * them or they are already being flushed, we back off and
348249a8c11SDavid Chinner 		 * given them time to complete whatever operation is being
349249a8c11SDavid Chinner 		 * done. i.e. remove pressure from the AIL while we can't make
350249a8c11SDavid Chinner 		 * progress so traversals don't slow down further inserts and
351249a8c11SDavid Chinner 		 * removals to/from the AIL.
352249a8c11SDavid Chinner 		 *
353249a8c11SDavid Chinner 		 * The value of 100 is an arbitrary magic number based on
354249a8c11SDavid Chinner 		 * observation.
355249a8c11SDavid Chinner 		 */
356249a8c11SDavid Chinner 		if (stuck > 100)
357249a8c11SDavid Chinner 			break;
358249a8c11SDavid Chinner 
35927d8d5feSDavid Chinner 		lip = xfs_trans_ail_cursor_next(ailp, cur);
360249a8c11SDavid Chinner 		if (lip == NULL)
361249a8c11SDavid Chinner 			break;
362249a8c11SDavid Chinner 		lsn = lip->li_lsn;
3631da177e4SLinus Torvalds 	}
36427d8d5feSDavid Chinner 	xfs_trans_ail_cursor_done(ailp, cur);
365c7e8f268SDavid Chinner 	spin_unlock(&ailp->xa_lock);
3661da177e4SLinus Torvalds 
3671da177e4SLinus Torvalds 	if (flush_log) {
3681da177e4SLinus Torvalds 		/*
3691da177e4SLinus Torvalds 		 * If something we need to push out was pinned, then
3701da177e4SLinus Torvalds 		 * push out the log so it will become unpinned and
3711da177e4SLinus Torvalds 		 * move forward in the AIL.
3721da177e4SLinus Torvalds 		 */
3731da177e4SLinus Torvalds 		XFS_STATS_INC(xs_push_ail_flush);
3741da177e4SLinus Torvalds 		xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
3751da177e4SLinus Torvalds 	}
3761da177e4SLinus Torvalds 
37792d9cd10SDavid Chinner 	if (!count) {
37892d9cd10SDavid Chinner 		/* We're past our target or empty, so idle */
37992d9cd10SDavid Chinner 		tout = 1000;
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 		 */
386249a8c11SDavid Chinner 		tout += 20;
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 		 */
398249a8c11SDavid Chinner 		tout += 10;
3991da177e4SLinus Torvalds 	}
400249a8c11SDavid Chinner 	*last_lsn = last_pushed_lsn;
401249a8c11SDavid Chinner 	return tout;
402249a8c11SDavid Chinner }	/* xfsaild_push */
4031da177e4SLinus Torvalds 
4041da177e4SLinus Torvalds 
4051da177e4SLinus Torvalds /*
4061da177e4SLinus Torvalds  * This is to be called when an item is unlocked that may have
4071da177e4SLinus Torvalds  * been in the AIL.  It will wake up the first member of the AIL
4081da177e4SLinus Torvalds  * wait list if this item's unlocking might allow it to progress.
4091da177e4SLinus Torvalds  * If the item is in the AIL, then we need to get the AIL lock
4101da177e4SLinus Torvalds  * while doing our checking so we don't race with someone going
4111da177e4SLinus Torvalds  * to sleep waiting for this event in xfs_trans_push_ail().
4121da177e4SLinus Torvalds  */
4131da177e4SLinus Torvalds void
4141da177e4SLinus Torvalds xfs_trans_unlocked_item(
415783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
4161da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
4171da177e4SLinus Torvalds {
4181da177e4SLinus Torvalds 	xfs_log_item_t	*min_lip;
4191da177e4SLinus Torvalds 
4201da177e4SLinus Torvalds 	/*
4211da177e4SLinus Torvalds 	 * If we're forcibly shutting down, we may have
4221da177e4SLinus Torvalds 	 * unlocked log items arbitrarily. The last thing
4231da177e4SLinus Torvalds 	 * we want to do is to move the tail of the log
4241da177e4SLinus Torvalds 	 * over some potentially valid data.
4251da177e4SLinus Torvalds 	 */
4261da177e4SLinus Torvalds 	if (!(lip->li_flags & XFS_LI_IN_AIL) ||
427783a2f65SDavid Chinner 	    XFS_FORCED_SHUTDOWN(ailp->xa_mount)) {
4281da177e4SLinus Torvalds 		return;
4291da177e4SLinus Torvalds 	}
4301da177e4SLinus Torvalds 
4311da177e4SLinus Torvalds 	/*
4321da177e4SLinus Torvalds 	 * This is the one case where we can call into xfs_ail_min()
4331da177e4SLinus Torvalds 	 * without holding the AIL lock because we only care about the
4341da177e4SLinus Torvalds 	 * case where we are at the tail of the AIL.  If the object isn't
4351da177e4SLinus Torvalds 	 * at the tail, it doesn't matter what result we get back.  This
4361da177e4SLinus Torvalds 	 * is slightly racy because since we were just unlocked, we could
4371da177e4SLinus Torvalds 	 * go to sleep between the call to xfs_ail_min and the call to
4381da177e4SLinus Torvalds 	 * xfs_log_move_tail, have someone else lock us, commit to us disk,
4391da177e4SLinus Torvalds 	 * move us out of the tail of the AIL, and then we wake up.  However,
4401da177e4SLinus Torvalds 	 * the call to xfs_log_move_tail() doesn't do anything if there's
4411da177e4SLinus Torvalds 	 * not enough free space to wake people up so we're safe calling it.
4421da177e4SLinus Torvalds 	 */
443783a2f65SDavid Chinner 	min_lip = xfs_ail_min(ailp);
4441da177e4SLinus Torvalds 
4451da177e4SLinus Torvalds 	if (min_lip == lip)
446783a2f65SDavid Chinner 		xfs_log_move_tail(ailp->xa_mount, 1);
4471da177e4SLinus Torvalds }	/* xfs_trans_unlocked_item */
4481da177e4SLinus Torvalds 
4491da177e4SLinus Torvalds 
4501da177e4SLinus Torvalds /*
4511da177e4SLinus Torvalds  * Update the position of the item in the AIL with the new
4521da177e4SLinus Torvalds  * lsn.  If it is not yet in the AIL, add it.  Otherwise, move
4531da177e4SLinus Torvalds  * it to its new position by removing it and re-adding it.
4541da177e4SLinus Torvalds  *
4551da177e4SLinus Torvalds  * Wakeup anyone with an lsn less than the item's lsn.  If the item
4561da177e4SLinus Torvalds  * we move in the AIL is the minimum one, update the tail lsn in the
4571da177e4SLinus Torvalds  * log manager.
4581da177e4SLinus Torvalds  *
4591da177e4SLinus Torvalds  * This function must be called with the AIL lock held.  The lock
460287f3dadSDonald Douwsma  * is dropped before returning.
4611da177e4SLinus Torvalds  */
4621da177e4SLinus Torvalds void
463783a2f65SDavid Chinner xfs_trans_ail_update(
464783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
4651da177e4SLinus Torvalds 	xfs_log_item_t	*lip,
466c7e8f268SDavid Chinner 	xfs_lsn_t	lsn) __releases(ailp->xa_lock)
4671da177e4SLinus Torvalds {
4681da177e4SLinus Torvalds 	xfs_log_item_t		*dlip = NULL;
4691da177e4SLinus Torvalds 	xfs_log_item_t		*mlip;	/* ptr to minimum lip */
4701da177e4SLinus Torvalds 
471c7e8f268SDavid Chinner 	mlip = xfs_ail_min(ailp);
4721da177e4SLinus Torvalds 
4731da177e4SLinus Torvalds 	if (lip->li_flags & XFS_LI_IN_AIL) {
474c7e8f268SDavid Chinner 		dlip = xfs_ail_delete(ailp, lip);
4751da177e4SLinus Torvalds 		ASSERT(dlip == lip);
476c7e8f268SDavid Chinner 		xfs_trans_ail_cursor_clear(ailp, dlip);
4771da177e4SLinus Torvalds 	} else {
4781da177e4SLinus Torvalds 		lip->li_flags |= XFS_LI_IN_AIL;
4791da177e4SLinus Torvalds 	}
4801da177e4SLinus Torvalds 
4811da177e4SLinus Torvalds 	lip->li_lsn = lsn;
482c7e8f268SDavid Chinner 	xfs_ail_insert(ailp, lip);
4831da177e4SLinus Torvalds 
4841da177e4SLinus Torvalds 	if (mlip == dlip) {
485c7e8f268SDavid Chinner 		mlip = xfs_ail_min(ailp);
486c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
487783a2f65SDavid Chinner 		xfs_log_move_tail(ailp->xa_mount, mlip->li_lsn);
4881da177e4SLinus Torvalds 	} else {
489c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
4901da177e4SLinus Torvalds 	}
4911da177e4SLinus Torvalds 
4921da177e4SLinus Torvalds 
4931da177e4SLinus Torvalds }	/* xfs_trans_update_ail */
4941da177e4SLinus Torvalds 
4951da177e4SLinus Torvalds /*
4961da177e4SLinus Torvalds  * Delete the given item from the AIL.  It must already be in
4971da177e4SLinus Torvalds  * the AIL.
4981da177e4SLinus Torvalds  *
4991da177e4SLinus Torvalds  * Wakeup anyone with an lsn less than item's lsn.    If the item
5001da177e4SLinus Torvalds  * we delete in the AIL is the minimum one, update the tail lsn in the
5011da177e4SLinus Torvalds  * log manager.
5021da177e4SLinus Torvalds  *
5031da177e4SLinus Torvalds  * Clear the IN_AIL flag from the item, reset its lsn to 0, and
5041da177e4SLinus Torvalds  * bump the AIL's generation count to indicate that the tree
5051da177e4SLinus Torvalds  * has changed.
5061da177e4SLinus Torvalds  *
5071da177e4SLinus Torvalds  * This function must be called with the AIL lock held.  The lock
508287f3dadSDonald Douwsma  * is dropped before returning.
5091da177e4SLinus Torvalds  */
5101da177e4SLinus Torvalds void
511783a2f65SDavid Chinner xfs_trans_ail_delete(
512783a2f65SDavid Chinner 	struct xfs_ail	*ailp,
513c7e8f268SDavid Chinner 	xfs_log_item_t	*lip) __releases(ailp->xa_lock)
5141da177e4SLinus Torvalds {
5151da177e4SLinus Torvalds 	xfs_log_item_t		*dlip;
5161da177e4SLinus Torvalds 	xfs_log_item_t		*mlip;
5171da177e4SLinus Torvalds 
5181da177e4SLinus Torvalds 	if (lip->li_flags & XFS_LI_IN_AIL) {
519c7e8f268SDavid Chinner 		mlip = xfs_ail_min(ailp);
520c7e8f268SDavid Chinner 		dlip = xfs_ail_delete(ailp, lip);
5211da177e4SLinus Torvalds 		ASSERT(dlip == lip);
522c7e8f268SDavid Chinner 		xfs_trans_ail_cursor_clear(ailp, dlip);
5231da177e4SLinus Torvalds 
5241da177e4SLinus Torvalds 
5251da177e4SLinus Torvalds 		lip->li_flags &= ~XFS_LI_IN_AIL;
5261da177e4SLinus Torvalds 		lip->li_lsn = 0;
5271da177e4SLinus Torvalds 
5281da177e4SLinus Torvalds 		if (mlip == dlip) {
529c7e8f268SDavid Chinner 			mlip = xfs_ail_min(ailp);
530c7e8f268SDavid Chinner 			spin_unlock(&ailp->xa_lock);
531783a2f65SDavid Chinner 			xfs_log_move_tail(ailp->xa_mount,
532783a2f65SDavid Chinner 						(mlip ? mlip->li_lsn : 0));
5331da177e4SLinus Torvalds 		} else {
534c7e8f268SDavid Chinner 			spin_unlock(&ailp->xa_lock);
5351da177e4SLinus Torvalds 		}
5361da177e4SLinus Torvalds 	}
5371da177e4SLinus Torvalds 	else {
5381da177e4SLinus Torvalds 		/*
5391da177e4SLinus Torvalds 		 * If the file system is not being shutdown, we are in
5401da177e4SLinus Torvalds 		 * serious trouble if we get to this stage.
5411da177e4SLinus Torvalds 		 */
542783a2f65SDavid Chinner 		struct xfs_mount	*mp = ailp->xa_mount;
543783a2f65SDavid Chinner 
544c7e8f268SDavid Chinner 		spin_unlock(&ailp->xa_lock);
545c7e8f268SDavid Chinner 		if (!XFS_FORCED_SHUTDOWN(mp)) {
5461da177e4SLinus Torvalds 			xfs_cmn_err(XFS_PTAG_AILDELETE, CE_ALERT, mp,
5477d04a335SNathan Scott 		"%s: attempting to delete a log item that is not in the AIL",
54834a622b2SHarvey Harrison 					__func__);
5497d04a335SNathan Scott 			xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
5501da177e4SLinus Torvalds 		}
5511da177e4SLinus Torvalds 	}
5521da177e4SLinus Torvalds }
5531da177e4SLinus Torvalds 
5541da177e4SLinus Torvalds 
5551da177e4SLinus Torvalds 
5561da177e4SLinus Torvalds /*
5571da177e4SLinus Torvalds  * The active item list (AIL) is a doubly linked list of log
5581da177e4SLinus Torvalds  * items sorted by ascending lsn.  The base of the list is
5591da177e4SLinus Torvalds  * a forw/back pointer pair embedded in the xfs mount structure.
5601da177e4SLinus Torvalds  * The base is initialized with both pointers pointing to the
5611da177e4SLinus Torvalds  * base.  This case always needs to be distinguished, because
5621da177e4SLinus Torvalds  * the base has no lsn to look at.  We almost always insert
5631da177e4SLinus Torvalds  * at the end of the list, so on inserts we search from the
5641da177e4SLinus Torvalds  * end of the list to find where the new item belongs.
5651da177e4SLinus Torvalds  */
5661da177e4SLinus Torvalds 
5671da177e4SLinus Torvalds /*
5681da177e4SLinus Torvalds  * Initialize the doubly linked list to point only to itself.
5691da177e4SLinus Torvalds  */
570249a8c11SDavid Chinner int
5711da177e4SLinus Torvalds xfs_trans_ail_init(
5721da177e4SLinus Torvalds 	xfs_mount_t	*mp)
5731da177e4SLinus Torvalds {
57482fa9012SDavid Chinner 	struct xfs_ail	*ailp;
57527d8d5feSDavid Chinner 	int		error;
57682fa9012SDavid Chinner 
57782fa9012SDavid Chinner 	ailp = kmem_zalloc(sizeof(struct xfs_ail), KM_MAYFAIL);
57882fa9012SDavid Chinner 	if (!ailp)
57982fa9012SDavid Chinner 		return ENOMEM;
58082fa9012SDavid Chinner 
58182fa9012SDavid Chinner 	ailp->xa_mount = mp;
58282fa9012SDavid Chinner 	INIT_LIST_HEAD(&ailp->xa_ail);
583c7e8f268SDavid Chinner 	spin_lock_init(&ailp->xa_lock);
58427d8d5feSDavid Chinner 	error = xfsaild_start(ailp);
58527d8d5feSDavid Chinner 	if (error)
58627d8d5feSDavid Chinner 		goto out_free_ailp;
58727d8d5feSDavid Chinner 	mp->m_ail = ailp;
58827d8d5feSDavid Chinner 	return 0;
58927d8d5feSDavid Chinner 
59027d8d5feSDavid Chinner out_free_ailp:
59127d8d5feSDavid Chinner 	kmem_free(ailp);
59227d8d5feSDavid Chinner 	return error;
593249a8c11SDavid Chinner }
594249a8c11SDavid Chinner 
595249a8c11SDavid Chinner void
596249a8c11SDavid Chinner xfs_trans_ail_destroy(
597249a8c11SDavid Chinner 	xfs_mount_t	*mp)
598249a8c11SDavid Chinner {
59982fa9012SDavid Chinner 	struct xfs_ail	*ailp = mp->m_ail;
60082fa9012SDavid Chinner 
60182fa9012SDavid Chinner 	xfsaild_stop(ailp);
60282fa9012SDavid Chinner 	kmem_free(ailp);
6031da177e4SLinus Torvalds }
6041da177e4SLinus Torvalds 
6051da177e4SLinus Torvalds /*
6061da177e4SLinus Torvalds  * Insert the given log item into the AIL.
6071da177e4SLinus Torvalds  * We almost always insert at the end of the list, so on inserts
6081da177e4SLinus Torvalds  * we search from the end of the list to find where the
6091da177e4SLinus Torvalds  * new item belongs.
6101da177e4SLinus Torvalds  */
6111da177e4SLinus Torvalds STATIC void
6121da177e4SLinus Torvalds xfs_ail_insert(
61382fa9012SDavid Chinner 	struct xfs_ail	*ailp,
6141da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
6151da177e4SLinus Torvalds /* ARGSUSED */
6161da177e4SLinus Torvalds {
6171da177e4SLinus Torvalds 	xfs_log_item_t	*next_lip;
6181da177e4SLinus Torvalds 
6191da177e4SLinus Torvalds 	/*
6201da177e4SLinus Torvalds 	 * If the list is empty, just insert the item.
6211da177e4SLinus Torvalds 	 */
622535f6b37SJosef 'Jeff' Sipek 	if (list_empty(&ailp->xa_ail)) {
623535f6b37SJosef 'Jeff' Sipek 		list_add(&lip->li_ail, &ailp->xa_ail);
6241da177e4SLinus Torvalds 		return;
6251da177e4SLinus Torvalds 	}
6261da177e4SLinus Torvalds 
627535f6b37SJosef 'Jeff' Sipek 	list_for_each_entry_reverse(next_lip, &ailp->xa_ail, li_ail) {
628535f6b37SJosef 'Jeff' Sipek 		if (XFS_LSN_CMP(next_lip->li_lsn, lip->li_lsn) <= 0)
629535f6b37SJosef 'Jeff' Sipek 			break;
6301da177e4SLinus Torvalds 	}
6311da177e4SLinus Torvalds 
632535f6b37SJosef 'Jeff' Sipek 	ASSERT((&next_lip->li_ail == &ailp->xa_ail) ||
633535f6b37SJosef 'Jeff' Sipek 	       (XFS_LSN_CMP(next_lip->li_lsn, lip->li_lsn) <= 0));
634535f6b37SJosef 'Jeff' Sipek 
635535f6b37SJosef 'Jeff' Sipek 	list_add(&lip->li_ail, &next_lip->li_ail);
636535f6b37SJosef 'Jeff' Sipek 
637535f6b37SJosef 'Jeff' Sipek 	xfs_ail_check(ailp, lip);
6381da177e4SLinus Torvalds 	return;
6391da177e4SLinus Torvalds }
6401da177e4SLinus Torvalds 
6411da177e4SLinus Torvalds /*
6421da177e4SLinus Torvalds  * Delete the given item from the AIL.  Return a pointer to the item.
6431da177e4SLinus Torvalds  */
6441da177e4SLinus Torvalds /*ARGSUSED*/
6451da177e4SLinus Torvalds STATIC xfs_log_item_t *
6461da177e4SLinus Torvalds xfs_ail_delete(
64782fa9012SDavid Chinner 	struct xfs_ail	*ailp,
6481da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
6491da177e4SLinus Torvalds /* ARGSUSED */
6501da177e4SLinus Torvalds {
651535f6b37SJosef 'Jeff' Sipek 	xfs_ail_check(ailp, lip);
652535f6b37SJosef 'Jeff' Sipek 
653535f6b37SJosef 'Jeff' Sipek 	list_del(&lip->li_ail);
6541da177e4SLinus Torvalds 
6551da177e4SLinus Torvalds 	return lip;
6561da177e4SLinus Torvalds }
6571da177e4SLinus Torvalds 
6581da177e4SLinus Torvalds /*
6591da177e4SLinus Torvalds  * Return a pointer to the first item in the AIL.
6601da177e4SLinus Torvalds  * If the AIL is empty, then return NULL.
6611da177e4SLinus Torvalds  */
6621da177e4SLinus Torvalds STATIC xfs_log_item_t *
6631da177e4SLinus Torvalds xfs_ail_min(
66482fa9012SDavid Chinner 	struct xfs_ail	*ailp)
6651da177e4SLinus Torvalds /* ARGSUSED */
6661da177e4SLinus Torvalds {
667535f6b37SJosef 'Jeff' Sipek 	if (list_empty(&ailp->xa_ail))
6681da177e4SLinus Torvalds 		return NULL;
669535f6b37SJosef 'Jeff' Sipek 
670535f6b37SJosef 'Jeff' Sipek 	return list_first_entry(&ailp->xa_ail, xfs_log_item_t, li_ail);
6711da177e4SLinus Torvalds }
6721da177e4SLinus Torvalds 
6731da177e4SLinus Torvalds /*
6741da177e4SLinus Torvalds  * Return a pointer to the item which follows
6751da177e4SLinus Torvalds  * the given item in the AIL.  If the given item
6761da177e4SLinus Torvalds  * is the last item in the list, then return NULL.
6771da177e4SLinus Torvalds  */
6781da177e4SLinus Torvalds STATIC xfs_log_item_t *
6791da177e4SLinus Torvalds xfs_ail_next(
68082fa9012SDavid Chinner 	struct xfs_ail	*ailp,
6811da177e4SLinus Torvalds 	xfs_log_item_t	*lip)
6821da177e4SLinus Torvalds /* ARGSUSED */
6831da177e4SLinus Torvalds {
684535f6b37SJosef 'Jeff' Sipek 	if (lip->li_ail.next == &ailp->xa_ail)
6851da177e4SLinus Torvalds 		return NULL;
6861da177e4SLinus Torvalds 
687535f6b37SJosef 'Jeff' Sipek 	return list_first_entry(&lip->li_ail, xfs_log_item_t, li_ail);
6881da177e4SLinus Torvalds }
6891da177e4SLinus Torvalds 
6901da177e4SLinus Torvalds #ifdef DEBUG
6911da177e4SLinus Torvalds /*
6921da177e4SLinus Torvalds  * Check that the list is sorted as it should be.
6931da177e4SLinus Torvalds  */
6941da177e4SLinus Torvalds STATIC void
6951da177e4SLinus Torvalds xfs_ail_check(
69682fa9012SDavid Chinner 	struct xfs_ail	*ailp,
697de08dbc1SDavid Chinner 	xfs_log_item_t	*lip)
6981da177e4SLinus Torvalds {
6991da177e4SLinus Torvalds 	xfs_log_item_t	*prev_lip;
7001da177e4SLinus Torvalds 
701535f6b37SJosef 'Jeff' Sipek 	if (list_empty(&ailp->xa_ail))
7021da177e4SLinus Torvalds 		return;
7031da177e4SLinus Torvalds 
7041da177e4SLinus Torvalds 	/*
705de08dbc1SDavid Chinner 	 * Check the next and previous entries are valid.
706de08dbc1SDavid Chinner 	 */
707de08dbc1SDavid Chinner 	ASSERT((lip->li_flags & XFS_LI_IN_AIL) != 0);
708535f6b37SJosef 'Jeff' Sipek 	prev_lip = list_entry(lip->li_ail.prev, xfs_log_item_t, li_ail);
709535f6b37SJosef 'Jeff' Sipek 	if (&prev_lip->li_ail != &ailp->xa_ail)
710de08dbc1SDavid Chinner 		ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) <= 0);
711535f6b37SJosef 'Jeff' Sipek 
712535f6b37SJosef 'Jeff' Sipek 	prev_lip = list_entry(lip->li_ail.next, xfs_log_item_t, li_ail);
713535f6b37SJosef 'Jeff' Sipek 	if (&prev_lip->li_ail != &ailp->xa_ail)
714de08dbc1SDavid Chinner 		ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) >= 0);
715de08dbc1SDavid Chinner 
716de08dbc1SDavid Chinner 
717de08dbc1SDavid Chinner #ifdef XFS_TRANS_DEBUG
718de08dbc1SDavid Chinner 	/*
719535f6b37SJosef 'Jeff' Sipek 	 * Walk the list checking lsn ordering, and that every entry has the
720535f6b37SJosef 'Jeff' Sipek 	 * XFS_LI_IN_AIL flag set. This is really expensive, so only do it
721535f6b37SJosef 'Jeff' Sipek 	 * when specifically debugging the transaction subsystem.
7221da177e4SLinus Torvalds 	 */
723535f6b37SJosef 'Jeff' Sipek 	prev_lip = list_entry(&ailp->xa_ail, xfs_log_item_t, li_ail);
724535f6b37SJosef 'Jeff' Sipek 	list_for_each_entry(lip, &ailp->xa_ail, li_ail) {
725535f6b37SJosef 'Jeff' Sipek 		if (&prev_lip->li_ail != &ailp->xa_ail)
7261da177e4SLinus Torvalds 			ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) <= 0);
7271da177e4SLinus Torvalds 		ASSERT((lip->li_flags & XFS_LI_IN_AIL) != 0);
7281da177e4SLinus Torvalds 		prev_lip = lip;
7291da177e4SLinus Torvalds 	}
730de08dbc1SDavid Chinner #endif /* XFS_TRANS_DEBUG */
7311da177e4SLinus Torvalds }
7321da177e4SLinus Torvalds #endif /* DEBUG */
733