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 310bf6a5bdSDave Chinner struct workqueue_struct *xfs_ail_wq; /* AIL workqueue */ 320bf6a5bdSDave Chinner 331da177e4SLinus Torvalds #ifdef DEBUG 34cd4a3c50SDave Chinner /* 35cd4a3c50SDave Chinner * Check that the list is sorted as it should be. 36cd4a3c50SDave Chinner */ 37cd4a3c50SDave Chinner STATIC void 38cd4a3c50SDave Chinner xfs_ail_check( 39cd4a3c50SDave Chinner struct xfs_ail *ailp, 40cd4a3c50SDave Chinner xfs_log_item_t *lip) 41cd4a3c50SDave Chinner { 42cd4a3c50SDave Chinner xfs_log_item_t *prev_lip; 43cd4a3c50SDave Chinner 44cd4a3c50SDave Chinner if (list_empty(&ailp->xa_ail)) 45cd4a3c50SDave Chinner return; 46cd4a3c50SDave Chinner 47cd4a3c50SDave Chinner /* 48cd4a3c50SDave Chinner * Check the next and previous entries are valid. 49cd4a3c50SDave Chinner */ 50cd4a3c50SDave Chinner ASSERT((lip->li_flags & XFS_LI_IN_AIL) != 0); 51cd4a3c50SDave Chinner prev_lip = list_entry(lip->li_ail.prev, xfs_log_item_t, li_ail); 52cd4a3c50SDave Chinner if (&prev_lip->li_ail != &ailp->xa_ail) 53cd4a3c50SDave Chinner ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) <= 0); 54cd4a3c50SDave Chinner 55cd4a3c50SDave Chinner prev_lip = list_entry(lip->li_ail.next, xfs_log_item_t, li_ail); 56cd4a3c50SDave Chinner if (&prev_lip->li_ail != &ailp->xa_ail) 57cd4a3c50SDave Chinner ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) >= 0); 58cd4a3c50SDave Chinner 59cd4a3c50SDave Chinner 60cd4a3c50SDave Chinner #ifdef XFS_TRANS_DEBUG 61cd4a3c50SDave Chinner /* 62cd4a3c50SDave Chinner * Walk the list checking lsn ordering, and that every entry has the 63cd4a3c50SDave Chinner * XFS_LI_IN_AIL flag set. This is really expensive, so only do it 64cd4a3c50SDave Chinner * when specifically debugging the transaction subsystem. 65cd4a3c50SDave Chinner */ 66cd4a3c50SDave Chinner prev_lip = list_entry(&ailp->xa_ail, xfs_log_item_t, li_ail); 67cd4a3c50SDave Chinner list_for_each_entry(lip, &ailp->xa_ail, li_ail) { 68cd4a3c50SDave Chinner if (&prev_lip->li_ail != &ailp->xa_ail) 69cd4a3c50SDave Chinner ASSERT(XFS_LSN_CMP(prev_lip->li_lsn, lip->li_lsn) <= 0); 70cd4a3c50SDave Chinner ASSERT((lip->li_flags & XFS_LI_IN_AIL) != 0); 71cd4a3c50SDave Chinner prev_lip = lip; 72cd4a3c50SDave Chinner } 73cd4a3c50SDave Chinner #endif /* XFS_TRANS_DEBUG */ 74cd4a3c50SDave Chinner } 75cd4a3c50SDave Chinner #else /* !DEBUG */ 76de08dbc1SDavid Chinner #define xfs_ail_check(a,l) 771da177e4SLinus Torvalds #endif /* DEBUG */ 781da177e4SLinus Torvalds 79cd4a3c50SDave Chinner /* 80cd4a3c50SDave Chinner * Return a pointer to the first item in the AIL. If the AIL is empty, then 81cd4a3c50SDave Chinner * return NULL. 82cd4a3c50SDave Chinner */ 83cd4a3c50SDave Chinner static xfs_log_item_t * 84cd4a3c50SDave Chinner xfs_ail_min( 85cd4a3c50SDave Chinner struct xfs_ail *ailp) 86cd4a3c50SDave Chinner { 87cd4a3c50SDave Chinner if (list_empty(&ailp->xa_ail)) 88cd4a3c50SDave Chinner return NULL; 89cd4a3c50SDave Chinner 90cd4a3c50SDave Chinner return list_first_entry(&ailp->xa_ail, xfs_log_item_t, li_ail); 91cd4a3c50SDave Chinner } 921da177e4SLinus Torvalds 931da177e4SLinus Torvalds /* 94fd074841SDave Chinner * Return a pointer to the last item in the AIL. If the AIL is empty, then 95fd074841SDave Chinner * return NULL. 96fd074841SDave Chinner */ 97fd074841SDave Chinner static xfs_log_item_t * 98fd074841SDave Chinner xfs_ail_max( 99fd074841SDave Chinner struct xfs_ail *ailp) 100fd074841SDave Chinner { 101fd074841SDave Chinner if (list_empty(&ailp->xa_ail)) 102fd074841SDave Chinner return NULL; 103fd074841SDave Chinner 104fd074841SDave Chinner return list_entry(ailp->xa_ail.prev, xfs_log_item_t, li_ail); 105fd074841SDave Chinner } 106fd074841SDave Chinner 107fd074841SDave Chinner /* 108cd4a3c50SDave Chinner * Return a pointer to the item which follows the given item in the AIL. If 109cd4a3c50SDave Chinner * the given item is the last item in the list, then return NULL. 110cd4a3c50SDave Chinner */ 111cd4a3c50SDave Chinner static xfs_log_item_t * 112cd4a3c50SDave Chinner xfs_ail_next( 113cd4a3c50SDave Chinner struct xfs_ail *ailp, 114cd4a3c50SDave Chinner xfs_log_item_t *lip) 115cd4a3c50SDave Chinner { 116cd4a3c50SDave Chinner if (lip->li_ail.next == &ailp->xa_ail) 117cd4a3c50SDave Chinner return NULL; 118cd4a3c50SDave Chinner 119cd4a3c50SDave Chinner return list_first_entry(&lip->li_ail, xfs_log_item_t, li_ail); 120cd4a3c50SDave Chinner } 121cd4a3c50SDave Chinner 122cd4a3c50SDave Chinner /* 123cd4a3c50SDave Chinner * This is called by the log manager code to determine the LSN of the tail of 124cd4a3c50SDave Chinner * the log. This is exactly the LSN of the first item in the AIL. If the AIL 125cd4a3c50SDave Chinner * is empty, then this function returns 0. 1261da177e4SLinus Torvalds * 127cd4a3c50SDave Chinner * We need the AIL lock in order to get a coherent read of the lsn of the last 128cd4a3c50SDave Chinner * item in the AIL. 1291da177e4SLinus Torvalds */ 1301da177e4SLinus Torvalds xfs_lsn_t 131fd074841SDave Chinner xfs_ail_min_lsn( 1325b00f14fSDavid Chinner struct xfs_ail *ailp) 1331da177e4SLinus Torvalds { 134cd4a3c50SDave Chinner xfs_lsn_t lsn = 0; 1351da177e4SLinus Torvalds xfs_log_item_t *lip; 1361da177e4SLinus Torvalds 137c7e8f268SDavid Chinner spin_lock(&ailp->xa_lock); 1385b00f14fSDavid Chinner lip = xfs_ail_min(ailp); 139cd4a3c50SDave Chinner if (lip) 1401da177e4SLinus Torvalds lsn = lip->li_lsn; 141c7e8f268SDavid Chinner spin_unlock(&ailp->xa_lock); 1421da177e4SLinus Torvalds 1431da177e4SLinus Torvalds return lsn; 1441da177e4SLinus Torvalds } 1451da177e4SLinus Torvalds 1461da177e4SLinus Torvalds /* 147fd074841SDave Chinner * Return the maximum lsn held in the AIL, or zero if the AIL is empty. 148fd074841SDave Chinner */ 149fd074841SDave Chinner static xfs_lsn_t 150fd074841SDave Chinner xfs_ail_max_lsn( 151fd074841SDave Chinner struct xfs_ail *ailp) 152fd074841SDave Chinner { 153fd074841SDave Chinner xfs_lsn_t lsn = 0; 154fd074841SDave Chinner xfs_log_item_t *lip; 155fd074841SDave Chinner 156fd074841SDave Chinner spin_lock(&ailp->xa_lock); 157fd074841SDave Chinner lip = xfs_ail_max(ailp); 158fd074841SDave Chinner if (lip) 159fd074841SDave Chinner lsn = lip->li_lsn; 160fd074841SDave Chinner spin_unlock(&ailp->xa_lock); 161fd074841SDave Chinner 162fd074841SDave Chinner return lsn; 163fd074841SDave Chinner } 164fd074841SDave Chinner 165fd074841SDave Chinner /* 16627d8d5feSDavid Chinner * AIL traversal cursor initialisation. 16727d8d5feSDavid Chinner * 16827d8d5feSDavid Chinner * The cursor keeps track of where our current traversal is up 16927d8d5feSDavid Chinner * to by tracking the next ƣtem in the list for us. However, for 17027d8d5feSDavid Chinner * this to be safe, removing an object from the AIL needs to invalidate 17127d8d5feSDavid Chinner * any cursor that points to it. hence the traversal cursor needs to 17227d8d5feSDavid Chinner * be linked to the struct xfs_ail so that deletion can search all the 17327d8d5feSDavid Chinner * active cursors for invalidation. 17427d8d5feSDavid Chinner * 17527d8d5feSDavid Chinner * We don't link the push cursor because it is embedded in the struct 17627d8d5feSDavid Chinner * xfs_ail and hence easily findable. 17727d8d5feSDavid Chinner */ 1785b00f14fSDavid Chinner STATIC void 17927d8d5feSDavid Chinner xfs_trans_ail_cursor_init( 18027d8d5feSDavid Chinner struct xfs_ail *ailp, 18127d8d5feSDavid Chinner struct xfs_ail_cursor *cur) 18227d8d5feSDavid Chinner { 18327d8d5feSDavid Chinner cur->item = NULL; 18427d8d5feSDavid Chinner if (cur == &ailp->xa_cursors) 18527d8d5feSDavid Chinner return; 18627d8d5feSDavid Chinner 18727d8d5feSDavid Chinner cur->next = ailp->xa_cursors.next; 18827d8d5feSDavid Chinner ailp->xa_cursors.next = cur; 18927d8d5feSDavid Chinner } 19027d8d5feSDavid Chinner 19127d8d5feSDavid Chinner /* 19227d8d5feSDavid Chinner * Set the cursor to the next item, because when we look 19327d8d5feSDavid Chinner * up the cursor the current item may have been freed. 19427d8d5feSDavid Chinner */ 19527d8d5feSDavid Chinner STATIC void 19627d8d5feSDavid Chinner xfs_trans_ail_cursor_set( 19727d8d5feSDavid Chinner struct xfs_ail *ailp, 19827d8d5feSDavid Chinner struct xfs_ail_cursor *cur, 19927d8d5feSDavid Chinner struct xfs_log_item *lip) 20027d8d5feSDavid Chinner { 20127d8d5feSDavid Chinner if (lip) 20227d8d5feSDavid Chinner cur->item = xfs_ail_next(ailp, lip); 20327d8d5feSDavid Chinner } 20427d8d5feSDavid Chinner 20527d8d5feSDavid Chinner /* 20627d8d5feSDavid Chinner * Get the next item in the traversal and advance the cursor. 20727d8d5feSDavid Chinner * If the cursor was invalidated (inidicated by a lip of 1), 20827d8d5feSDavid Chinner * restart the traversal. 20927d8d5feSDavid Chinner */ 2105b00f14fSDavid Chinner struct xfs_log_item * 21127d8d5feSDavid Chinner xfs_trans_ail_cursor_next( 21227d8d5feSDavid Chinner struct xfs_ail *ailp, 21327d8d5feSDavid Chinner struct xfs_ail_cursor *cur) 21427d8d5feSDavid Chinner { 21527d8d5feSDavid Chinner struct xfs_log_item *lip = cur->item; 21627d8d5feSDavid Chinner 21727d8d5feSDavid Chinner if ((__psint_t)lip & 1) 21827d8d5feSDavid Chinner lip = xfs_ail_min(ailp); 21927d8d5feSDavid Chinner xfs_trans_ail_cursor_set(ailp, cur, lip); 22027d8d5feSDavid Chinner return lip; 22127d8d5feSDavid Chinner } 22227d8d5feSDavid Chinner 22327d8d5feSDavid Chinner /* 22427d8d5feSDavid Chinner * Now that the traversal is complete, we need to remove the cursor 22527d8d5feSDavid Chinner * from the list of traversing cursors. Avoid removing the embedded 2269da096fdSMalcolm Parsons * push cursor, but use the fact it is always present to make the 22727d8d5feSDavid Chinner * list deletion simple. 22827d8d5feSDavid Chinner */ 22927d8d5feSDavid Chinner void 23027d8d5feSDavid Chinner xfs_trans_ail_cursor_done( 23127d8d5feSDavid Chinner struct xfs_ail *ailp, 23227d8d5feSDavid Chinner struct xfs_ail_cursor *done) 23327d8d5feSDavid Chinner { 23427d8d5feSDavid Chinner struct xfs_ail_cursor *prev = NULL; 23527d8d5feSDavid Chinner struct xfs_ail_cursor *cur; 23627d8d5feSDavid Chinner 23727d8d5feSDavid Chinner done->item = NULL; 23827d8d5feSDavid Chinner if (done == &ailp->xa_cursors) 23927d8d5feSDavid Chinner return; 24027d8d5feSDavid Chinner prev = &ailp->xa_cursors; 24127d8d5feSDavid Chinner for (cur = prev->next; cur; prev = cur, cur = prev->next) { 24227d8d5feSDavid Chinner if (cur == done) { 24327d8d5feSDavid Chinner prev->next = cur->next; 24427d8d5feSDavid Chinner break; 24527d8d5feSDavid Chinner } 24627d8d5feSDavid Chinner } 24727d8d5feSDavid Chinner ASSERT(cur); 24827d8d5feSDavid Chinner } 24927d8d5feSDavid Chinner 25027d8d5feSDavid Chinner /* 2515b00f14fSDavid Chinner * Invalidate any cursor that is pointing to this item. This is 2525b00f14fSDavid Chinner * called when an item is removed from the AIL. Any cursor pointing 2535b00f14fSDavid Chinner * to this object is now invalid and the traversal needs to be 2545b00f14fSDavid Chinner * terminated so it doesn't reference a freed object. We set the 2555b00f14fSDavid Chinner * cursor item to a value of 1 so we can distinguish between an 2565b00f14fSDavid Chinner * invalidation and the end of the list when getting the next item 2575b00f14fSDavid Chinner * from the cursor. 2585b00f14fSDavid Chinner */ 2595b00f14fSDavid Chinner STATIC void 2605b00f14fSDavid Chinner xfs_trans_ail_cursor_clear( 2615b00f14fSDavid Chinner struct xfs_ail *ailp, 2625b00f14fSDavid Chinner struct xfs_log_item *lip) 2635b00f14fSDavid Chinner { 2645b00f14fSDavid Chinner struct xfs_ail_cursor *cur; 2655b00f14fSDavid Chinner 2665b00f14fSDavid Chinner /* need to search all cursors */ 2675b00f14fSDavid Chinner for (cur = &ailp->xa_cursors; cur; cur = cur->next) { 2685b00f14fSDavid Chinner if (cur->item == lip) 2695b00f14fSDavid Chinner cur->item = (struct xfs_log_item *) 2705b00f14fSDavid Chinner ((__psint_t)cur->item | 1); 2715b00f14fSDavid Chinner } 2725b00f14fSDavid Chinner } 2735b00f14fSDavid Chinner 2745b00f14fSDavid Chinner /* 275249a8c11SDavid Chinner * Return the item in the AIL with the current lsn. 276249a8c11SDavid Chinner * Return the current tree generation number for use 277249a8c11SDavid Chinner * in calls to xfs_trans_next_ail(). 278249a8c11SDavid Chinner */ 2795b00f14fSDavid Chinner xfs_log_item_t * 2805b00f14fSDavid Chinner xfs_trans_ail_cursor_first( 28127d8d5feSDavid Chinner struct xfs_ail *ailp, 28227d8d5feSDavid Chinner struct xfs_ail_cursor *cur, 283249a8c11SDavid Chinner xfs_lsn_t lsn) 284249a8c11SDavid Chinner { 285249a8c11SDavid Chinner xfs_log_item_t *lip; 286249a8c11SDavid Chinner 2875b00f14fSDavid Chinner xfs_trans_ail_cursor_init(ailp, cur); 28827d8d5feSDavid Chinner lip = xfs_ail_min(ailp); 289249a8c11SDavid Chinner if (lsn == 0) 2905b00f14fSDavid Chinner goto out; 291249a8c11SDavid Chinner 29227d8d5feSDavid Chinner list_for_each_entry(lip, &ailp->xa_ail, li_ail) { 2935b00f14fSDavid Chinner if (XFS_LSN_CMP(lip->li_lsn, lsn) >= 0) 2947ee49acfSDavid Chinner goto out; 2955b00f14fSDavid Chinner } 2965b00f14fSDavid Chinner lip = NULL; 2975b00f14fSDavid Chinner out: 29827d8d5feSDavid Chinner xfs_trans_ail_cursor_set(ailp, cur, lip); 299249a8c11SDavid Chinner return lip; 300249a8c11SDavid Chinner } 301535f6b37SJosef 'Jeff' Sipek 302249a8c11SDavid Chinner /* 303cd4a3c50SDave Chinner * splice the log item list into the AIL at the given LSN. 304cd4a3c50SDave Chinner */ 305cd4a3c50SDave Chinner static void 306cd4a3c50SDave Chinner xfs_ail_splice( 307cd4a3c50SDave Chinner struct xfs_ail *ailp, 308cd4a3c50SDave Chinner struct list_head *list, 309cd4a3c50SDave Chinner xfs_lsn_t lsn) 310cd4a3c50SDave Chinner { 311cd4a3c50SDave Chinner xfs_log_item_t *next_lip; 312cd4a3c50SDave Chinner 313cd4a3c50SDave Chinner /* If the list is empty, just insert the item. */ 314cd4a3c50SDave Chinner if (list_empty(&ailp->xa_ail)) { 315cd4a3c50SDave Chinner list_splice(list, &ailp->xa_ail); 316cd4a3c50SDave Chinner return; 317cd4a3c50SDave Chinner } 318cd4a3c50SDave Chinner 319cd4a3c50SDave Chinner list_for_each_entry_reverse(next_lip, &ailp->xa_ail, li_ail) { 320cd4a3c50SDave Chinner if (XFS_LSN_CMP(next_lip->li_lsn, lsn) <= 0) 321cd4a3c50SDave Chinner break; 322cd4a3c50SDave Chinner } 323cd4a3c50SDave Chinner 324cd4a3c50SDave Chinner ASSERT(&next_lip->li_ail == &ailp->xa_ail || 325cd4a3c50SDave Chinner XFS_LSN_CMP(next_lip->li_lsn, lsn) <= 0); 326cd4a3c50SDave Chinner 327cd4a3c50SDave Chinner list_splice_init(list, &next_lip->li_ail); 328cd4a3c50SDave Chinner } 329cd4a3c50SDave Chinner 330cd4a3c50SDave Chinner /* 331cd4a3c50SDave Chinner * Delete the given item from the AIL. Return a pointer to the item. 332cd4a3c50SDave Chinner */ 333cd4a3c50SDave Chinner static void 334cd4a3c50SDave Chinner xfs_ail_delete( 335cd4a3c50SDave Chinner struct xfs_ail *ailp, 336cd4a3c50SDave Chinner xfs_log_item_t *lip) 337cd4a3c50SDave Chinner { 338cd4a3c50SDave Chinner xfs_ail_check(ailp, lip); 339cd4a3c50SDave Chinner list_del(&lip->li_ail); 340cd4a3c50SDave Chinner xfs_trans_ail_cursor_clear(ailp, lip); 341cd4a3c50SDave Chinner } 342cd4a3c50SDave Chinner 343cd4a3c50SDave Chinner /* 3440bf6a5bdSDave Chinner * xfs_ail_worker does the work of pushing on the AIL. It will requeue itself 3450bf6a5bdSDave Chinner * to run at a later time if there is more work to do to complete the push. 346249a8c11SDavid Chinner */ 3470bf6a5bdSDave Chinner STATIC void 3480bf6a5bdSDave Chinner xfs_ail_worker( 3490bf6a5bdSDave Chinner struct work_struct *work) 350249a8c11SDavid Chinner { 3510bf6a5bdSDave Chinner struct xfs_ail *ailp = container_of(to_delayed_work(work), 3520bf6a5bdSDave Chinner struct xfs_ail, xa_work); 35382fa9012SDavid Chinner xfs_mount_t *mp = ailp->xa_mount; 35427d8d5feSDavid Chinner struct xfs_ail_cursor *cur = &ailp->xa_cursors; 3559e7004e7SDave Chinner xfs_log_item_t *lip; 3569e7004e7SDave Chinner xfs_lsn_t lsn; 357*fe0da767SDave Chinner xfs_lsn_t target; 3589e7004e7SDave Chinner long tout = 10; 3599e7004e7SDave Chinner int flush_log = 0; 3609e7004e7SDave Chinner int stuck = 0; 3619e7004e7SDave Chinner int count = 0; 362d808f617SDave Chinner int push_xfsbufd = 0; 3631da177e4SLinus Torvalds 364c7e8f268SDavid Chinner spin_lock(&ailp->xa_lock); 365*fe0da767SDave Chinner target = ailp->xa_target; 36627d8d5feSDavid Chinner xfs_trans_ail_cursor_init(ailp, cur); 3670bf6a5bdSDave Chinner lip = xfs_trans_ail_cursor_first(ailp, cur, ailp->xa_last_pushed_lsn); 368249a8c11SDavid Chinner if (!lip || XFS_FORCED_SHUTDOWN(mp)) { 3691da177e4SLinus Torvalds /* 370249a8c11SDavid Chinner * AIL is empty or our push has reached the end. 3711da177e4SLinus Torvalds */ 37227d8d5feSDavid Chinner xfs_trans_ail_cursor_done(ailp, cur); 373c7e8f268SDavid Chinner spin_unlock(&ailp->xa_lock); 3749e7004e7SDave Chinner goto out_done; 3751da177e4SLinus Torvalds } 3761da177e4SLinus Torvalds 3771da177e4SLinus Torvalds XFS_STATS_INC(xs_push_ail); 3781da177e4SLinus Torvalds 3791da177e4SLinus Torvalds /* 3801da177e4SLinus Torvalds * While the item we are looking at is below the given threshold 381249a8c11SDavid Chinner * try to flush it out. We'd like not to stop until we've at least 3821da177e4SLinus Torvalds * tried to push on everything in the AIL with an LSN less than 383249a8c11SDavid Chinner * the given threshold. 3841da177e4SLinus Torvalds * 385249a8c11SDavid Chinner * However, we will stop after a certain number of pushes and wait 386249a8c11SDavid Chinner * for a reduced timeout to fire before pushing further. This 387249a8c11SDavid Chinner * prevents use from spinning when we can't do anything or there is 388249a8c11SDavid Chinner * lots of contention on the AIL lists. 389249a8c11SDavid Chinner */ 390249a8c11SDavid Chinner lsn = lip->li_lsn; 39150e86686SDave Chinner while ((XFS_LSN_CMP(lip->li_lsn, target) <= 0)) { 392249a8c11SDavid Chinner int lock_result; 393249a8c11SDavid Chinner /* 394249a8c11SDavid Chinner * If we can lock the item without sleeping, unlock the AIL 395249a8c11SDavid Chinner * lock and flush the item. Then re-grab the AIL lock so we 396249a8c11SDavid Chinner * can look for the next item on the AIL. List changes are 397249a8c11SDavid Chinner * handled by the AIL lookup functions internally 398249a8c11SDavid Chinner * 399249a8c11SDavid Chinner * If we can't lock the item, either its holder will flush it 400249a8c11SDavid Chinner * or it is already being flushed or it is being relogged. In 401249a8c11SDavid Chinner * any of these case it is being taken care of and we can just 402249a8c11SDavid Chinner * skip to the next item in the list. 4031da177e4SLinus Torvalds */ 4041da177e4SLinus Torvalds lock_result = IOP_TRYLOCK(lip); 405c7e8f268SDavid Chinner spin_unlock(&ailp->xa_lock); 4061da177e4SLinus Torvalds switch (lock_result) { 4071da177e4SLinus Torvalds case XFS_ITEM_SUCCESS: 4081da177e4SLinus Torvalds XFS_STATS_INC(xs_push_ail_success); 4091da177e4SLinus Torvalds IOP_PUSH(lip); 4100bf6a5bdSDave Chinner ailp->xa_last_pushed_lsn = lsn; 4111da177e4SLinus Torvalds break; 4121da177e4SLinus Torvalds 4131da177e4SLinus Torvalds case XFS_ITEM_PUSHBUF: 4141da177e4SLinus Torvalds XFS_STATS_INC(xs_push_ail_pushbuf); 4151da177e4SLinus Torvalds IOP_PUSHBUF(lip); 4160bf6a5bdSDave Chinner ailp->xa_last_pushed_lsn = lsn; 417d808f617SDave Chinner push_xfsbufd = 1; 4181da177e4SLinus Torvalds break; 4191da177e4SLinus Torvalds 4201da177e4SLinus Torvalds case XFS_ITEM_PINNED: 4211da177e4SLinus Torvalds XFS_STATS_INC(xs_push_ail_pinned); 422249a8c11SDavid Chinner stuck++; 4231da177e4SLinus Torvalds flush_log = 1; 4241da177e4SLinus Torvalds break; 4251da177e4SLinus Torvalds 4261da177e4SLinus Torvalds case XFS_ITEM_LOCKED: 4271da177e4SLinus Torvalds XFS_STATS_INC(xs_push_ail_locked); 4280bf6a5bdSDave Chinner ailp->xa_last_pushed_lsn = lsn; 429249a8c11SDavid Chinner stuck++; 4301da177e4SLinus Torvalds break; 4311da177e4SLinus Torvalds 4321da177e4SLinus Torvalds default: 4331da177e4SLinus Torvalds ASSERT(0); 4341da177e4SLinus Torvalds break; 4351da177e4SLinus Torvalds } 4361da177e4SLinus Torvalds 437c7e8f268SDavid Chinner spin_lock(&ailp->xa_lock); 438249a8c11SDavid Chinner /* should we bother continuing? */ 439249a8c11SDavid Chinner if (XFS_FORCED_SHUTDOWN(mp)) 4401da177e4SLinus Torvalds break; 441249a8c11SDavid Chinner ASSERT(mp->m_log); 4421da177e4SLinus Torvalds 443249a8c11SDavid Chinner count++; 444249a8c11SDavid Chinner 445249a8c11SDavid Chinner /* 446249a8c11SDavid Chinner * Are there too many items we can't do anything with? 447249a8c11SDavid Chinner * If we we are skipping too many items because we can't flush 448249a8c11SDavid Chinner * them or they are already being flushed, we back off and 449249a8c11SDavid Chinner * given them time to complete whatever operation is being 450249a8c11SDavid Chinner * done. i.e. remove pressure from the AIL while we can't make 451249a8c11SDavid Chinner * progress so traversals don't slow down further inserts and 452249a8c11SDavid Chinner * removals to/from the AIL. 453249a8c11SDavid Chinner * 454249a8c11SDavid Chinner * The value of 100 is an arbitrary magic number based on 455249a8c11SDavid Chinner * observation. 456249a8c11SDavid Chinner */ 457249a8c11SDavid Chinner if (stuck > 100) 458249a8c11SDavid Chinner break; 459249a8c11SDavid Chinner 46027d8d5feSDavid Chinner lip = xfs_trans_ail_cursor_next(ailp, cur); 461249a8c11SDavid Chinner if (lip == NULL) 462249a8c11SDavid Chinner break; 463249a8c11SDavid Chinner lsn = lip->li_lsn; 4641da177e4SLinus Torvalds } 46527d8d5feSDavid Chinner xfs_trans_ail_cursor_done(ailp, cur); 466c7e8f268SDavid Chinner spin_unlock(&ailp->xa_lock); 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvalds if (flush_log) { 4691da177e4SLinus Torvalds /* 4701da177e4SLinus Torvalds * If something we need to push out was pinned, then 4711da177e4SLinus Torvalds * push out the log so it will become unpinned and 4721da177e4SLinus Torvalds * move forward in the AIL. 4731da177e4SLinus Torvalds */ 4741da177e4SLinus Torvalds XFS_STATS_INC(xs_push_ail_flush); 475a14a348bSChristoph Hellwig xfs_log_force(mp, 0); 4761da177e4SLinus Torvalds } 4771da177e4SLinus Torvalds 478d808f617SDave Chinner if (push_xfsbufd) { 479d808f617SDave Chinner /* we've got delayed write buffers to flush */ 480d808f617SDave Chinner wake_up_process(mp->m_ddev_targp->bt_task); 481d808f617SDave Chinner } 482d808f617SDave Chinner 4830bf6a5bdSDave Chinner /* assume we have more work to do in a short while */ 4849e7004e7SDave Chinner out_done: 48592d9cd10SDavid Chinner if (!count) { 48692d9cd10SDavid Chinner /* We're past our target or empty, so idle */ 4870bf6a5bdSDave Chinner ailp->xa_last_pushed_lsn = 0; 4880bf6a5bdSDave Chinner 4890bf6a5bdSDave Chinner /* 4900bf6a5bdSDave Chinner * Check for an updated push target before clearing the 4910bf6a5bdSDave Chinner * XFS_AIL_PUSHING_BIT. If the target changed, we've got more 4920bf6a5bdSDave Chinner * work to do. Wait a bit longer before starting that work. 4930bf6a5bdSDave Chinner */ 4940bf6a5bdSDave Chinner smp_rmb(); 495*fe0da767SDave Chinner if (XFS_LSN_CMP(ailp->xa_target, target) == 0) { 4960bf6a5bdSDave Chinner clear_bit(XFS_AIL_PUSHING_BIT, &ailp->xa_flags); 4970bf6a5bdSDave Chinner return; 4980bf6a5bdSDave Chinner } 4990bf6a5bdSDave Chinner tout = 50; 50092d9cd10SDavid Chinner } else if (XFS_LSN_CMP(lsn, target) >= 0) { 501249a8c11SDavid Chinner /* 50292d9cd10SDavid Chinner * We reached the target so wait a bit longer for I/O to 50392d9cd10SDavid Chinner * complete and remove pushed items from the AIL before we 50492d9cd10SDavid Chinner * start the next scan from the start of the AIL. 505249a8c11SDavid Chinner */ 506453eac8aSDave Chinner tout = 50; 5070bf6a5bdSDave Chinner ailp->xa_last_pushed_lsn = 0; 50827d8d5feSDavid Chinner } else if ((stuck * 100) / count > 90) { 509249a8c11SDavid Chinner /* 510249a8c11SDavid Chinner * Either there is a lot of contention on the AIL or we 511249a8c11SDavid Chinner * are stuck due to operations in progress. "Stuck" in this 512249a8c11SDavid Chinner * case is defined as >90% of the items we tried to push 513249a8c11SDavid Chinner * were stuck. 514249a8c11SDavid Chinner * 515249a8c11SDavid Chinner * Backoff a bit more to allow some I/O to complete before 516249a8c11SDavid Chinner * continuing from where we were. 517249a8c11SDavid Chinner */ 518453eac8aSDave Chinner tout = 20; 519453eac8aSDave Chinner } 5201da177e4SLinus Torvalds 5210bf6a5bdSDave Chinner /* There is more to do, requeue us. */ 5220bf6a5bdSDave Chinner queue_delayed_work(xfs_syncd_wq, &ailp->xa_work, 5230bf6a5bdSDave Chinner msecs_to_jiffies(tout)); 5240bf6a5bdSDave Chinner } 5250bf6a5bdSDave Chinner 5260bf6a5bdSDave Chinner /* 5270bf6a5bdSDave Chinner * This routine is called to move the tail of the AIL forward. It does this by 5280bf6a5bdSDave Chinner * trying to flush items in the AIL whose lsns are below the given 5290bf6a5bdSDave Chinner * threshold_lsn. 5300bf6a5bdSDave Chinner * 5310bf6a5bdSDave Chinner * The push is run asynchronously in a workqueue, which means the caller needs 5320bf6a5bdSDave Chinner * to handle waiting on the async flush for space to become available. 5330bf6a5bdSDave Chinner * We don't want to interrupt any push that is in progress, hence we only queue 5340bf6a5bdSDave Chinner * work if we set the pushing bit approriately. 5350bf6a5bdSDave Chinner * 5360bf6a5bdSDave Chinner * We do this unlocked - we only need to know whether there is anything in the 5370bf6a5bdSDave Chinner * AIL at the time we are called. We don't need to access the contents of 5380bf6a5bdSDave Chinner * any of the objects, so the lock is not needed. 5390bf6a5bdSDave Chinner */ 5400bf6a5bdSDave Chinner void 541fd074841SDave Chinner xfs_ail_push( 5420bf6a5bdSDave Chinner struct xfs_ail *ailp, 5430bf6a5bdSDave Chinner xfs_lsn_t threshold_lsn) 5440bf6a5bdSDave Chinner { 5450bf6a5bdSDave Chinner xfs_log_item_t *lip; 5460bf6a5bdSDave Chinner 5470bf6a5bdSDave Chinner lip = xfs_ail_min(ailp); 5480bf6a5bdSDave Chinner if (!lip || XFS_FORCED_SHUTDOWN(ailp->xa_mount) || 5490bf6a5bdSDave Chinner XFS_LSN_CMP(threshold_lsn, ailp->xa_target) <= 0) 5500bf6a5bdSDave Chinner return; 5510bf6a5bdSDave Chinner 5520bf6a5bdSDave Chinner /* 5530bf6a5bdSDave Chinner * Ensure that the new target is noticed in push code before it clears 5540bf6a5bdSDave Chinner * the XFS_AIL_PUSHING_BIT. 5550bf6a5bdSDave Chinner */ 5560bf6a5bdSDave Chinner smp_wmb(); 557*fe0da767SDave Chinner xfs_trans_ail_copy_lsn(ailp, &ailp->xa_target, &threshold_lsn); 5580bf6a5bdSDave Chinner if (!test_and_set_bit(XFS_AIL_PUSHING_BIT, &ailp->xa_flags)) 5590bf6a5bdSDave Chinner queue_delayed_work(xfs_syncd_wq, &ailp->xa_work, 0); 5600bf6a5bdSDave Chinner } 5611da177e4SLinus Torvalds 5621da177e4SLinus Torvalds /* 563fd074841SDave Chinner * Push out all items in the AIL immediately 564fd074841SDave Chinner */ 565fd074841SDave Chinner void 566fd074841SDave Chinner xfs_ail_push_all( 567fd074841SDave Chinner struct xfs_ail *ailp) 568fd074841SDave Chinner { 569fd074841SDave Chinner xfs_lsn_t threshold_lsn = xfs_ail_max_lsn(ailp); 570fd074841SDave Chinner 571fd074841SDave Chinner if (threshold_lsn) 572fd074841SDave Chinner xfs_ail_push(ailp, threshold_lsn); 573fd074841SDave Chinner } 574fd074841SDave Chinner 575fd074841SDave Chinner /* 5761da177e4SLinus Torvalds * This is to be called when an item is unlocked that may have 5771da177e4SLinus Torvalds * been in the AIL. It will wake up the first member of the AIL 5781da177e4SLinus Torvalds * wait list if this item's unlocking might allow it to progress. 5791da177e4SLinus Torvalds * If the item is in the AIL, then we need to get the AIL lock 5801da177e4SLinus Torvalds * while doing our checking so we don't race with someone going 5811da177e4SLinus Torvalds * to sleep waiting for this event in xfs_trans_push_ail(). 5821da177e4SLinus Torvalds */ 5831da177e4SLinus Torvalds void 5841da177e4SLinus Torvalds xfs_trans_unlocked_item( 585783a2f65SDavid Chinner struct xfs_ail *ailp, 5861da177e4SLinus Torvalds xfs_log_item_t *lip) 5871da177e4SLinus Torvalds { 5881da177e4SLinus Torvalds xfs_log_item_t *min_lip; 5891da177e4SLinus Torvalds 5901da177e4SLinus Torvalds /* 5911da177e4SLinus Torvalds * If we're forcibly shutting down, we may have 5921da177e4SLinus Torvalds * unlocked log items arbitrarily. The last thing 5931da177e4SLinus Torvalds * we want to do is to move the tail of the log 5941da177e4SLinus Torvalds * over some potentially valid data. 5951da177e4SLinus Torvalds */ 5961da177e4SLinus Torvalds if (!(lip->li_flags & XFS_LI_IN_AIL) || 597783a2f65SDavid Chinner XFS_FORCED_SHUTDOWN(ailp->xa_mount)) { 5981da177e4SLinus Torvalds return; 5991da177e4SLinus Torvalds } 6001da177e4SLinus Torvalds 6011da177e4SLinus Torvalds /* 6021da177e4SLinus Torvalds * This is the one case where we can call into xfs_ail_min() 6031da177e4SLinus Torvalds * without holding the AIL lock because we only care about the 6041da177e4SLinus Torvalds * case where we are at the tail of the AIL. If the object isn't 6051da177e4SLinus Torvalds * at the tail, it doesn't matter what result we get back. This 6061da177e4SLinus Torvalds * is slightly racy because since we were just unlocked, we could 6071da177e4SLinus Torvalds * go to sleep between the call to xfs_ail_min and the call to 6081da177e4SLinus Torvalds * xfs_log_move_tail, have someone else lock us, commit to us disk, 6091da177e4SLinus Torvalds * move us out of the tail of the AIL, and then we wake up. However, 6101da177e4SLinus Torvalds * the call to xfs_log_move_tail() doesn't do anything if there's 6111da177e4SLinus Torvalds * not enough free space to wake people up so we're safe calling it. 6121da177e4SLinus Torvalds */ 613783a2f65SDavid Chinner min_lip = xfs_ail_min(ailp); 6141da177e4SLinus Torvalds 6151da177e4SLinus Torvalds if (min_lip == lip) 616783a2f65SDavid Chinner xfs_log_move_tail(ailp->xa_mount, 1); 6171da177e4SLinus Torvalds } /* xfs_trans_unlocked_item */ 6181da177e4SLinus Torvalds 6191da177e4SLinus Torvalds /* 6200e57f6a3SDave Chinner * xfs_trans_ail_update - bulk AIL insertion operation. 6210e57f6a3SDave Chinner * 6220e57f6a3SDave Chinner * @xfs_trans_ail_update takes an array of log items that all need to be 6230e57f6a3SDave Chinner * positioned at the same LSN in the AIL. If an item is not in the AIL, it will 6240e57f6a3SDave Chinner * be added. Otherwise, it will be repositioned by removing it and re-adding 6250e57f6a3SDave Chinner * it to the AIL. If we move the first item in the AIL, update the log tail to 6260e57f6a3SDave Chinner * match the new minimum LSN in the AIL. 6270e57f6a3SDave Chinner * 6280e57f6a3SDave Chinner * This function takes the AIL lock once to execute the update operations on 6290e57f6a3SDave Chinner * all the items in the array, and as such should not be called with the AIL 6300e57f6a3SDave Chinner * lock held. As a result, once we have the AIL lock, we need to check each log 6310e57f6a3SDave Chinner * item LSN to confirm it needs to be moved forward in the AIL. 6320e57f6a3SDave Chinner * 6330e57f6a3SDave Chinner * To optimise the insert operation, we delete all the items from the AIL in 6340e57f6a3SDave Chinner * the first pass, moving them into a temporary list, then splice the temporary 6350e57f6a3SDave Chinner * list into the correct position in the AIL. This avoids needing to do an 6360e57f6a3SDave Chinner * insert operation on every item. 6370e57f6a3SDave Chinner * 6380e57f6a3SDave Chinner * This function must be called with the AIL lock held. The lock is dropped 6390e57f6a3SDave Chinner * before returning. 6400e57f6a3SDave Chinner */ 6410e57f6a3SDave Chinner void 6420e57f6a3SDave Chinner xfs_trans_ail_update_bulk( 6430e57f6a3SDave Chinner struct xfs_ail *ailp, 6440e57f6a3SDave Chinner struct xfs_log_item **log_items, 6450e57f6a3SDave Chinner int nr_items, 6460e57f6a3SDave Chinner xfs_lsn_t lsn) __releases(ailp->xa_lock) 6470e57f6a3SDave Chinner { 6480e57f6a3SDave Chinner xfs_log_item_t *mlip; 6490e57f6a3SDave Chinner xfs_lsn_t tail_lsn; 6500e57f6a3SDave Chinner int mlip_changed = 0; 6510e57f6a3SDave Chinner int i; 6520e57f6a3SDave Chinner LIST_HEAD(tmp); 6530e57f6a3SDave Chinner 6540e57f6a3SDave Chinner mlip = xfs_ail_min(ailp); 6550e57f6a3SDave Chinner 6560e57f6a3SDave Chinner for (i = 0; i < nr_items; i++) { 6570e57f6a3SDave Chinner struct xfs_log_item *lip = log_items[i]; 6580e57f6a3SDave Chinner if (lip->li_flags & XFS_LI_IN_AIL) { 6590e57f6a3SDave Chinner /* check if we really need to move the item */ 6600e57f6a3SDave Chinner if (XFS_LSN_CMP(lsn, lip->li_lsn) <= 0) 6610e57f6a3SDave Chinner continue; 6620e57f6a3SDave Chinner 6630e57f6a3SDave Chinner xfs_ail_delete(ailp, lip); 6640e57f6a3SDave Chinner if (mlip == lip) 6650e57f6a3SDave Chinner mlip_changed = 1; 6660e57f6a3SDave Chinner } else { 6670e57f6a3SDave Chinner lip->li_flags |= XFS_LI_IN_AIL; 6680e57f6a3SDave Chinner } 6690e57f6a3SDave Chinner lip->li_lsn = lsn; 6700e57f6a3SDave Chinner list_add(&lip->li_ail, &tmp); 6710e57f6a3SDave Chinner } 6720e57f6a3SDave Chinner 6730e57f6a3SDave Chinner xfs_ail_splice(ailp, &tmp, lsn); 6740e57f6a3SDave Chinner 6750e57f6a3SDave Chinner if (!mlip_changed) { 6760e57f6a3SDave Chinner spin_unlock(&ailp->xa_lock); 6770e57f6a3SDave Chinner return; 6780e57f6a3SDave Chinner } 6790e57f6a3SDave Chinner 6800e57f6a3SDave Chinner /* 6810e57f6a3SDave Chinner * It is not safe to access mlip after the AIL lock is dropped, so we 6820e57f6a3SDave Chinner * must get a copy of li_lsn before we do so. This is especially 6830e57f6a3SDave Chinner * important on 32-bit platforms where accessing and updating 64-bit 6840e57f6a3SDave Chinner * values like li_lsn is not atomic. 6850e57f6a3SDave Chinner */ 6860e57f6a3SDave Chinner mlip = xfs_ail_min(ailp); 6870e57f6a3SDave Chinner tail_lsn = mlip->li_lsn; 6880e57f6a3SDave Chinner spin_unlock(&ailp->xa_lock); 6890e57f6a3SDave Chinner xfs_log_move_tail(ailp->xa_mount, tail_lsn); 6900e57f6a3SDave Chinner } 6910e57f6a3SDave Chinner 6920e57f6a3SDave Chinner /* 69330136832SDave Chinner * xfs_trans_ail_delete_bulk - remove multiple log items from the AIL 69430136832SDave Chinner * 69530136832SDave Chinner * @xfs_trans_ail_delete_bulk takes an array of log items that all need to 69630136832SDave Chinner * removed from the AIL. The caller is already holding the AIL lock, and done 69730136832SDave Chinner * all the checks necessary to ensure the items passed in via @log_items are 69830136832SDave Chinner * ready for deletion. This includes checking that the items are in the AIL. 69930136832SDave Chinner * 70030136832SDave Chinner * For each log item to be removed, unlink it from the AIL, clear the IN_AIL 70130136832SDave Chinner * flag from the item and reset the item's lsn to 0. If we remove the first 70230136832SDave Chinner * item in the AIL, update the log tail to match the new minimum LSN in the 70330136832SDave Chinner * AIL. 70430136832SDave Chinner * 70530136832SDave Chinner * This function will not drop the AIL lock until all items are removed from 70630136832SDave Chinner * the AIL to minimise the amount of lock traffic on the AIL. This does not 70730136832SDave Chinner * greatly increase the AIL hold time, but does significantly reduce the amount 70830136832SDave Chinner * of traffic on the lock, especially during IO completion. 70930136832SDave Chinner * 71030136832SDave Chinner * This function must be called with the AIL lock held. The lock is dropped 71130136832SDave Chinner * before returning. 71230136832SDave Chinner */ 71330136832SDave Chinner void 71430136832SDave Chinner xfs_trans_ail_delete_bulk( 71530136832SDave Chinner struct xfs_ail *ailp, 71630136832SDave Chinner struct xfs_log_item **log_items, 71730136832SDave Chinner int nr_items) __releases(ailp->xa_lock) 71830136832SDave Chinner { 71930136832SDave Chinner xfs_log_item_t *mlip; 72030136832SDave Chinner xfs_lsn_t tail_lsn; 72130136832SDave Chinner int mlip_changed = 0; 72230136832SDave Chinner int i; 72330136832SDave Chinner 72430136832SDave Chinner mlip = xfs_ail_min(ailp); 72530136832SDave Chinner 72630136832SDave Chinner for (i = 0; i < nr_items; i++) { 72730136832SDave Chinner struct xfs_log_item *lip = log_items[i]; 72830136832SDave Chinner if (!(lip->li_flags & XFS_LI_IN_AIL)) { 72930136832SDave Chinner struct xfs_mount *mp = ailp->xa_mount; 73030136832SDave Chinner 73130136832SDave Chinner spin_unlock(&ailp->xa_lock); 73230136832SDave Chinner if (!XFS_FORCED_SHUTDOWN(mp)) { 7336a19d939SDave Chinner xfs_alert_tag(mp, XFS_PTAG_AILDELETE, 73430136832SDave Chinner "%s: attempting to delete a log item that is not in the AIL", 73530136832SDave Chinner __func__); 73630136832SDave Chinner xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE); 73730136832SDave Chinner } 73830136832SDave Chinner return; 73930136832SDave Chinner } 74030136832SDave Chinner 74130136832SDave Chinner xfs_ail_delete(ailp, lip); 74230136832SDave Chinner lip->li_flags &= ~XFS_LI_IN_AIL; 74330136832SDave Chinner lip->li_lsn = 0; 74430136832SDave Chinner if (mlip == lip) 74530136832SDave Chinner mlip_changed = 1; 74630136832SDave Chinner } 74730136832SDave Chinner 74830136832SDave Chinner if (!mlip_changed) { 74930136832SDave Chinner spin_unlock(&ailp->xa_lock); 75030136832SDave Chinner return; 75130136832SDave Chinner } 75230136832SDave Chinner 75330136832SDave Chinner /* 75430136832SDave Chinner * It is not safe to access mlip after the AIL lock is dropped, so we 75530136832SDave Chinner * must get a copy of li_lsn before we do so. This is especially 75630136832SDave Chinner * important on 32-bit platforms where accessing and updating 64-bit 75730136832SDave Chinner * values like li_lsn is not atomic. It is possible we've emptied the 75830136832SDave Chinner * AIL here, so if that is the case, pass an LSN of 0 to the tail move. 75930136832SDave Chinner */ 76030136832SDave Chinner mlip = xfs_ail_min(ailp); 76130136832SDave Chinner tail_lsn = mlip ? mlip->li_lsn : 0; 76230136832SDave Chinner spin_unlock(&ailp->xa_lock); 76330136832SDave Chinner xfs_log_move_tail(ailp->xa_mount, tail_lsn); 76430136832SDave Chinner } 7651da177e4SLinus Torvalds 7661da177e4SLinus Torvalds /* 7671da177e4SLinus Torvalds * The active item list (AIL) is a doubly linked list of log 7681da177e4SLinus Torvalds * items sorted by ascending lsn. The base of the list is 7691da177e4SLinus Torvalds * a forw/back pointer pair embedded in the xfs mount structure. 7701da177e4SLinus Torvalds * The base is initialized with both pointers pointing to the 7711da177e4SLinus Torvalds * base. This case always needs to be distinguished, because 7721da177e4SLinus Torvalds * the base has no lsn to look at. We almost always insert 7731da177e4SLinus Torvalds * at the end of the list, so on inserts we search from the 7741da177e4SLinus Torvalds * end of the list to find where the new item belongs. 7751da177e4SLinus Torvalds */ 7761da177e4SLinus Torvalds 7771da177e4SLinus Torvalds /* 7781da177e4SLinus Torvalds * Initialize the doubly linked list to point only to itself. 7791da177e4SLinus Torvalds */ 780249a8c11SDavid Chinner int 7811da177e4SLinus Torvalds xfs_trans_ail_init( 7821da177e4SLinus Torvalds xfs_mount_t *mp) 7831da177e4SLinus Torvalds { 78482fa9012SDavid Chinner struct xfs_ail *ailp; 78582fa9012SDavid Chinner 78682fa9012SDavid Chinner ailp = kmem_zalloc(sizeof(struct xfs_ail), KM_MAYFAIL); 78782fa9012SDavid Chinner if (!ailp) 78882fa9012SDavid Chinner return ENOMEM; 78982fa9012SDavid Chinner 79082fa9012SDavid Chinner ailp->xa_mount = mp; 79182fa9012SDavid Chinner INIT_LIST_HEAD(&ailp->xa_ail); 792c7e8f268SDavid Chinner spin_lock_init(&ailp->xa_lock); 7930bf6a5bdSDave Chinner INIT_DELAYED_WORK(&ailp->xa_work, xfs_ail_worker); 79427d8d5feSDavid Chinner mp->m_ail = ailp; 79527d8d5feSDavid Chinner return 0; 796249a8c11SDavid Chinner } 797249a8c11SDavid Chinner 798249a8c11SDavid Chinner void 799249a8c11SDavid Chinner xfs_trans_ail_destroy( 800249a8c11SDavid Chinner xfs_mount_t *mp) 801249a8c11SDavid Chinner { 80282fa9012SDavid Chinner struct xfs_ail *ailp = mp->m_ail; 80382fa9012SDavid Chinner 8040bf6a5bdSDave Chinner cancel_delayed_work_sync(&ailp->xa_work); 80582fa9012SDavid Chinner kmem_free(ailp); 8061da177e4SLinus Torvalds } 807