blob: 2bff229951277d3f8d0ec3151006fa2644855fd8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
30#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_dir2_sf.h"
36#include "xfs_attr_sf.h"
37#include "xfs_dinode.h"
38#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_btree.h"
40#include "xfs_ialloc.h"
41#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_quota.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_trans_space.h"
Niv Sardi322ff6b2008-08-13 16:05:49 +100046#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48
49STATIC void xfs_trans_apply_sb_deltas(xfs_trans_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050STATIC void xfs_trans_uncommit(xfs_trans_t *, uint);
51STATIC void xfs_trans_committed(xfs_trans_t *, int);
52STATIC void xfs_trans_chunk_committed(xfs_log_item_chunk_t *, xfs_lsn_t, int);
53STATIC void xfs_trans_free(xfs_trans_t *);
54
Nathan Scott8f794052006-03-14 13:32:41 +110055kmem_zone_t *xfs_trans_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57
58/*
Nathan Scott8f794052006-03-14 13:32:41 +110059 * Reservation functions here avoid a huge stack in xfs_trans_init
60 * due to register overflow from temporaries in the calculations.
61 */
62
63STATIC uint
64xfs_calc_write_reservation(xfs_mount_t *mp)
65{
66 return XFS_CALC_WRITE_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
67}
68
69STATIC uint
70xfs_calc_itruncate_reservation(xfs_mount_t *mp)
71{
72 return XFS_CALC_ITRUNCATE_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
73}
74
75STATIC uint
76xfs_calc_rename_reservation(xfs_mount_t *mp)
77{
78 return XFS_CALC_RENAME_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
79}
80
81STATIC uint
82xfs_calc_link_reservation(xfs_mount_t *mp)
83{
Nathan Scott2ddd5922006-03-17 17:25:46 +110084 return XFS_CALC_LINK_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
Nathan Scott8f794052006-03-14 13:32:41 +110085}
86
87STATIC uint
88xfs_calc_remove_reservation(xfs_mount_t *mp)
89{
90 return XFS_CALC_REMOVE_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
91}
92
93STATIC uint
94xfs_calc_symlink_reservation(xfs_mount_t *mp)
95{
96 return XFS_CALC_SYMLINK_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
97}
98
99STATIC uint
100xfs_calc_create_reservation(xfs_mount_t *mp)
101{
102 return XFS_CALC_CREATE_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
103}
104
105STATIC uint
106xfs_calc_mkdir_reservation(xfs_mount_t *mp)
107{
108 return XFS_CALC_MKDIR_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
109}
110
111STATIC uint
112xfs_calc_ifree_reservation(xfs_mount_t *mp)
113{
114 return XFS_CALC_IFREE_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
115}
116
117STATIC uint
118xfs_calc_ichange_reservation(xfs_mount_t *mp)
119{
120 return XFS_CALC_ICHANGE_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
121}
122
123STATIC uint
124xfs_calc_growdata_reservation(xfs_mount_t *mp)
125{
126 return XFS_CALC_GROWDATA_LOG_RES(mp);
127}
128
129STATIC uint
130xfs_calc_growrtalloc_reservation(xfs_mount_t *mp)
131{
132 return XFS_CALC_GROWRTALLOC_LOG_RES(mp);
133}
134
135STATIC uint
136xfs_calc_growrtzero_reservation(xfs_mount_t *mp)
137{
138 return XFS_CALC_GROWRTZERO_LOG_RES(mp);
139}
140
141STATIC uint
142xfs_calc_growrtfree_reservation(xfs_mount_t *mp)
143{
144 return XFS_CALC_GROWRTFREE_LOG_RES(mp);
145}
146
147STATIC uint
148xfs_calc_swrite_reservation(xfs_mount_t *mp)
149{
150 return XFS_CALC_SWRITE_LOG_RES(mp);
151}
152
153STATIC uint
154xfs_calc_writeid_reservation(xfs_mount_t *mp)
155{
156 return XFS_CALC_WRITEID_LOG_RES(mp);
157}
158
159STATIC uint
160xfs_calc_addafork_reservation(xfs_mount_t *mp)
161{
162 return XFS_CALC_ADDAFORK_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
163}
164
165STATIC uint
166xfs_calc_attrinval_reservation(xfs_mount_t *mp)
167{
168 return XFS_CALC_ATTRINVAL_LOG_RES(mp);
169}
170
171STATIC uint
172xfs_calc_attrset_reservation(xfs_mount_t *mp)
173{
174 return XFS_CALC_ATTRSET_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
175}
176
177STATIC uint
178xfs_calc_attrrm_reservation(xfs_mount_t *mp)
179{
180 return XFS_CALC_ATTRRM_LOG_RES(mp) + XFS_DQUOT_LOGRES(mp);
181}
182
183STATIC uint
184xfs_calc_clear_agi_bucket_reservation(xfs_mount_t *mp)
185{
186 return XFS_CALC_CLEAR_AGI_BUCKET_LOG_RES(mp);
187}
188
189/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * Initialize the precomputed transaction reservation values
191 * in the mount structure.
192 */
193void
194xfs_trans_init(
195 xfs_mount_t *mp)
196{
197 xfs_trans_reservations_t *resp;
198
199 resp = &(mp->m_reservations);
Nathan Scott8f794052006-03-14 13:32:41 +1100200 resp->tr_write = xfs_calc_write_reservation(mp);
201 resp->tr_itruncate = xfs_calc_itruncate_reservation(mp);
202 resp->tr_rename = xfs_calc_rename_reservation(mp);
203 resp->tr_link = xfs_calc_link_reservation(mp);
204 resp->tr_remove = xfs_calc_remove_reservation(mp);
205 resp->tr_symlink = xfs_calc_symlink_reservation(mp);
206 resp->tr_create = xfs_calc_create_reservation(mp);
207 resp->tr_mkdir = xfs_calc_mkdir_reservation(mp);
208 resp->tr_ifree = xfs_calc_ifree_reservation(mp);
209 resp->tr_ichange = xfs_calc_ichange_reservation(mp);
210 resp->tr_growdata = xfs_calc_growdata_reservation(mp);
211 resp->tr_swrite = xfs_calc_swrite_reservation(mp);
212 resp->tr_writeid = xfs_calc_writeid_reservation(mp);
213 resp->tr_addafork = xfs_calc_addafork_reservation(mp);
214 resp->tr_attrinval = xfs_calc_attrinval_reservation(mp);
215 resp->tr_attrset = xfs_calc_attrset_reservation(mp);
216 resp->tr_attrrm = xfs_calc_attrrm_reservation(mp);
217 resp->tr_clearagi = xfs_calc_clear_agi_bucket_reservation(mp);
218 resp->tr_growrtalloc = xfs_calc_growrtalloc_reservation(mp);
219 resp->tr_growrtzero = xfs_calc_growrtzero_reservation(mp);
220 resp->tr_growrtfree = xfs_calc_growrtfree_reservation(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223/*
224 * This routine is called to allocate a transaction structure.
225 * The type parameter indicates the type of the transaction. These
226 * are enumerated in xfs_trans.h.
227 *
228 * Dynamically allocate the transaction structure from the transaction
229 * zone, initialize it, and return it to the caller.
230 */
231xfs_trans_t *
232xfs_trans_alloc(
233 xfs_mount_t *mp,
234 uint type)
235{
Christoph Hellwigb267ce92007-08-30 17:21:30 +1000236 xfs_wait_for_freeze(mp, SB_FREEZE_TRANS);
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000237 return _xfs_trans_alloc(mp, type, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240xfs_trans_t *
241_xfs_trans_alloc(
242 xfs_mount_t *mp,
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000243 uint type,
244 uint memflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 xfs_trans_t *tp;
247
Nathan Scott34327e12006-06-09 17:11:55 +1000248 atomic_inc(&mp->m_active_trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000250 tp = kmem_zone_zalloc(xfs_trans_zone, memflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 tp->t_magic = XFS_TRANS_MAGIC;
252 tp->t_type = type;
253 tp->t_mountp = mp;
254 tp->t_items_free = XFS_LIC_NUM_SLOTS;
255 tp->t_busy_free = XFS_LBC_NUM_SLOTS;
Eric Sandeen39dab9d2008-08-13 16:10:52 +1000256 xfs_lic_init(&(tp->t_items));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 XFS_LBC_INIT(&(tp->t_busy));
Nathan Scott34327e12006-06-09 17:11:55 +1000258 return tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261/*
262 * This is called to create a new transaction which will share the
263 * permanent log reservation of the given transaction. The remaining
264 * unused block and rt extent reservations are also inherited. This
265 * implies that the original transaction is no longer allowed to allocate
266 * blocks. Locks and log items, however, are no inherited. They must
267 * be added to the new transaction explicitly.
268 */
269xfs_trans_t *
270xfs_trans_dup(
271 xfs_trans_t *tp)
272{
273 xfs_trans_t *ntp;
274
275 ntp = kmem_zone_zalloc(xfs_trans_zone, KM_SLEEP);
276
277 /*
278 * Initialize the new transaction structure.
279 */
280 ntp->t_magic = XFS_TRANS_MAGIC;
281 ntp->t_type = tp->t_type;
282 ntp->t_mountp = tp->t_mountp;
283 ntp->t_items_free = XFS_LIC_NUM_SLOTS;
284 ntp->t_busy_free = XFS_LBC_NUM_SLOTS;
Eric Sandeen39dab9d2008-08-13 16:10:52 +1000285 xfs_lic_init(&(ntp->t_items));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 XFS_LBC_INIT(&(ntp->t_busy));
287
288 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 ASSERT(tp->t_ticket != NULL);
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 ntp->t_flags = XFS_TRANS_PERM_LOG_RES | (tp->t_flags & XFS_TRANS_RESERVE);
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100292 ntp->t_ticket = xfs_log_ticket_get(tp->t_ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 ntp->t_blk_res = tp->t_blk_res - tp->t_blk_res_used;
294 tp->t_blk_res = tp->t_blk_res_used;
295 ntp->t_rtx_res = tp->t_rtx_res - tp->t_rtx_res_used;
296 tp->t_rtx_res = tp->t_rtx_res_used;
Nathan Scott59c1b082006-06-09 14:59:13 +1000297 ntp->t_pflags = tp->t_pflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Christoph Hellwig7d095252009-06-08 15:33:32 +0200299 xfs_trans_dup_dqinfo(tp, ntp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 atomic_inc(&tp->t_mountp->m_active_trans);
302 return ntp;
303}
304
305/*
306 * This is called to reserve free disk blocks and log space for the
307 * given transaction. This must be done before allocating any resources
308 * within the transaction.
309 *
310 * This will return ENOSPC if there are not enough blocks available.
311 * It will sleep waiting for available log space.
312 * The only valid value for the flags parameter is XFS_RES_LOG_PERM, which
313 * is used by long running transactions. If any one of the reservations
314 * fails then they will all be backed out.
315 *
316 * This does not do quota reservations. That typically is done by the
317 * caller afterwards.
318 */
319int
320xfs_trans_reserve(
321 xfs_trans_t *tp,
322 uint blocks,
323 uint logspace,
324 uint rtextents,
325 uint flags,
326 uint logcount)
327{
328 int log_flags;
Nathan Scott59c1b082006-06-09 14:59:13 +1000329 int error = 0;
330 int rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* Mark this thread as being in a transaction */
Nathan Scott59c1b082006-06-09 14:59:13 +1000333 current_set_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Attempt to reserve the needed disk blocks by decrementing
337 * the number needed from the number available. This will
338 * fail if the count would go below zero.
339 */
340 if (blocks > 0) {
341 error = xfs_mod_incore_sb(tp->t_mountp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100342 -((int64_t)blocks), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (error != 0) {
Nathan Scott59c1b082006-06-09 14:59:13 +1000344 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return (XFS_ERROR(ENOSPC));
346 }
347 tp->t_blk_res += blocks;
348 }
349
350 /*
351 * Reserve the log space needed for this transaction.
352 */
353 if (logspace > 0) {
354 ASSERT((tp->t_log_res == 0) || (tp->t_log_res == logspace));
355 ASSERT((tp->t_log_count == 0) ||
356 (tp->t_log_count == logcount));
357 if (flags & XFS_TRANS_PERM_LOG_RES) {
358 log_flags = XFS_LOG_PERM_RESERV;
359 tp->t_flags |= XFS_TRANS_PERM_LOG_RES;
360 } else {
361 ASSERT(tp->t_ticket == NULL);
362 ASSERT(!(tp->t_flags & XFS_TRANS_PERM_LOG_RES));
363 log_flags = 0;
364 }
365
366 error = xfs_log_reserve(tp->t_mountp, logspace, logcount,
367 &tp->t_ticket,
Tim Shimmin7e9c6392005-09-02 16:42:05 +1000368 XFS_TRANSACTION, log_flags, tp->t_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (error) {
370 goto undo_blocks;
371 }
372 tp->t_log_res = logspace;
373 tp->t_log_count = logcount;
374 }
375
376 /*
377 * Attempt to reserve the needed realtime extents by decrementing
378 * the number needed from the number available. This will
379 * fail if the count would go below zero.
380 */
381 if (rtextents > 0) {
382 error = xfs_mod_incore_sb(tp->t_mountp, XFS_SBS_FREXTENTS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100383 -((int64_t)rtextents), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (error) {
385 error = XFS_ERROR(ENOSPC);
386 goto undo_log;
387 }
388 tp->t_rtx_res += rtextents;
389 }
390
391 return 0;
392
393 /*
394 * Error cases jump to one of these labels to undo any
395 * reservations which have already been performed.
396 */
397undo_log:
398 if (logspace > 0) {
399 if (flags & XFS_TRANS_PERM_LOG_RES) {
400 log_flags = XFS_LOG_REL_PERM_RESERV;
401 } else {
402 log_flags = 0;
403 }
404 xfs_log_done(tp->t_mountp, tp->t_ticket, NULL, log_flags);
405 tp->t_ticket = NULL;
406 tp->t_log_res = 0;
407 tp->t_flags &= ~XFS_TRANS_PERM_LOG_RES;
408 }
409
410undo_blocks:
411 if (blocks > 0) {
412 (void) xfs_mod_incore_sb(tp->t_mountp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100413 (int64_t)blocks, rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 tp->t_blk_res = 0;
415 }
416
Nathan Scott59c1b082006-06-09 14:59:13 +1000417 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Nathan Scott59c1b082006-06-09 14:59:13 +1000419 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422
423/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * Record the indicated change to the given field for application
425 * to the file system's superblock when the transaction commits.
426 * For now, just store the change in the transaction structure.
427 *
428 * Mark the transaction structure to indicate that the superblock
429 * needs to be updated before committing.
David Chinner92821e22007-05-24 15:26:31 +1000430 *
431 * Because we may not be keeping track of allocated/free inodes and
432 * used filesystem blocks in the superblock, we do not mark the
433 * superblock dirty in this transaction if we modify these fields.
434 * We still need to update the transaction deltas so that they get
435 * applied to the incore superblock, but we don't want them to
436 * cause the superblock to get locked and logged if these are the
437 * only fields in the superblock that the transaction modifies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 */
439void
440xfs_trans_mod_sb(
441 xfs_trans_t *tp,
442 uint field,
David Chinner20f4ebf2007-02-10 18:36:10 +1100443 int64_t delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
David Chinner92821e22007-05-24 15:26:31 +1000445 uint32_t flags = (XFS_TRANS_DIRTY|XFS_TRANS_SB_DIRTY);
446 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 switch (field) {
449 case XFS_TRANS_SB_ICOUNT:
450 tp->t_icount_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000451 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
452 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 case XFS_TRANS_SB_IFREE:
455 tp->t_ifree_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000456 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
457 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 break;
459 case XFS_TRANS_SB_FDBLOCKS:
460 /*
461 * Track the number of blocks allocated in the
462 * transaction. Make sure it does not exceed the
463 * number reserved.
464 */
465 if (delta < 0) {
466 tp->t_blk_res_used += (uint)-delta;
467 ASSERT(tp->t_blk_res_used <= tp->t_blk_res);
468 }
469 tp->t_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000470 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
471 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 case XFS_TRANS_SB_RES_FDBLOCKS:
474 /*
475 * The allocation has already been applied to the
476 * in-core superblock's counter. This should only
477 * be applied to the on-disk superblock.
478 */
479 ASSERT(delta < 0);
480 tp->t_res_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000481 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
482 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 break;
484 case XFS_TRANS_SB_FREXTENTS:
485 /*
486 * Track the number of blocks allocated in the
487 * transaction. Make sure it does not exceed the
488 * number reserved.
489 */
490 if (delta < 0) {
491 tp->t_rtx_res_used += (uint)-delta;
492 ASSERT(tp->t_rtx_res_used <= tp->t_rtx_res);
493 }
494 tp->t_frextents_delta += delta;
495 break;
496 case XFS_TRANS_SB_RES_FREXTENTS:
497 /*
498 * The allocation has already been applied to the
Nathan Scottc41564b2006-03-29 08:55:14 +1000499 * in-core superblock's counter. This should only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * be applied to the on-disk superblock.
501 */
502 ASSERT(delta < 0);
503 tp->t_res_frextents_delta += delta;
504 break;
505 case XFS_TRANS_SB_DBLOCKS:
506 ASSERT(delta > 0);
507 tp->t_dblocks_delta += delta;
508 break;
509 case XFS_TRANS_SB_AGCOUNT:
510 ASSERT(delta > 0);
511 tp->t_agcount_delta += delta;
512 break;
513 case XFS_TRANS_SB_IMAXPCT:
514 tp->t_imaxpct_delta += delta;
515 break;
516 case XFS_TRANS_SB_REXTSIZE:
517 tp->t_rextsize_delta += delta;
518 break;
519 case XFS_TRANS_SB_RBMBLOCKS:
520 tp->t_rbmblocks_delta += delta;
521 break;
522 case XFS_TRANS_SB_RBLOCKS:
523 tp->t_rblocks_delta += delta;
524 break;
525 case XFS_TRANS_SB_REXTENTS:
526 tp->t_rextents_delta += delta;
527 break;
528 case XFS_TRANS_SB_REXTSLOG:
529 tp->t_rextslog_delta += delta;
530 break;
531 default:
532 ASSERT(0);
533 return;
534 }
535
David Chinner210c6f12007-05-24 15:26:51 +1000536 tp->t_flags |= flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539/*
540 * xfs_trans_apply_sb_deltas() is called from the commit code
541 * to bring the superblock buffer into the current transaction
542 * and modify it as requested by earlier calls to xfs_trans_mod_sb().
543 *
544 * For now we just look at each field allowed to change and change
545 * it if necessary.
546 */
547STATIC void
548xfs_trans_apply_sb_deltas(
549 xfs_trans_t *tp)
550{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000551 xfs_dsb_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 xfs_buf_t *bp;
553 int whole = 0;
554
555 bp = xfs_trans_getsb(tp, tp->t_mountp, 0);
556 sbp = XFS_BUF_TO_SBP(bp);
557
558 /*
559 * Check that superblock mods match the mods made to AGF counters.
560 */
561 ASSERT((tp->t_fdblocks_delta + tp->t_res_fdblocks_delta) ==
562 (tp->t_ag_freeblks_delta + tp->t_ag_flist_delta +
563 tp->t_ag_btree_delta));
564
David Chinner92821e22007-05-24 15:26:31 +1000565 /*
566 * Only update the superblock counters if we are logging them
567 */
568 if (!xfs_sb_version_haslazysbcount(&(tp->t_mountp->m_sb))) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000569 if (tp->t_icount_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800570 be64_add_cpu(&sbp->sb_icount, tp->t_icount_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000571 if (tp->t_ifree_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800572 be64_add_cpu(&sbp->sb_ifree, tp->t_ifree_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000573 if (tp->t_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800574 be64_add_cpu(&sbp->sb_fdblocks, tp->t_fdblocks_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000575 if (tp->t_res_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800576 be64_add_cpu(&sbp->sb_fdblocks, tp->t_res_fdblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000579 if (tp->t_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800580 be64_add_cpu(&sbp->sb_frextents, tp->t_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000581 if (tp->t_res_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800582 be64_add_cpu(&sbp->sb_frextents, tp->t_res_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000583
584 if (tp->t_dblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800585 be64_add_cpu(&sbp->sb_dblocks, tp->t_dblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 whole = 1;
587 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000588 if (tp->t_agcount_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800589 be32_add_cpu(&sbp->sb_agcount, tp->t_agcount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 whole = 1;
591 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000592 if (tp->t_imaxpct_delta) {
593 sbp->sb_imax_pct += tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 whole = 1;
595 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000596 if (tp->t_rextsize_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800597 be32_add_cpu(&sbp->sb_rextsize, tp->t_rextsize_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 whole = 1;
599 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000600 if (tp->t_rbmblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800601 be32_add_cpu(&sbp->sb_rbmblocks, tp->t_rbmblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 whole = 1;
603 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000604 if (tp->t_rblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800605 be64_add_cpu(&sbp->sb_rblocks, tp->t_rblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 whole = 1;
607 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000608 if (tp->t_rextents_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800609 be64_add_cpu(&sbp->sb_rextents, tp->t_rextents_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 whole = 1;
611 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000612 if (tp->t_rextslog_delta) {
613 sbp->sb_rextslog += tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 whole = 1;
615 }
616
617 if (whole)
618 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000619 * Log the whole thing, the fields are noncontiguous.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000621 xfs_trans_log_buf(tp, bp, 0, sizeof(xfs_dsb_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 else
623 /*
624 * Since all the modifiable fields are contiguous, we
625 * can get away with this.
626 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000627 xfs_trans_log_buf(tp, bp, offsetof(xfs_dsb_t, sb_icount),
628 offsetof(xfs_dsb_t, sb_frextents) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 sizeof(sbp->sb_frextents) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632/*
David Chinner45c34142007-06-18 16:49:44 +1000633 * xfs_trans_unreserve_and_mod_sb() is called to release unused reservations
634 * and apply superblock counter changes to the in-core superblock. The
635 * t_res_fdblocks_delta and t_res_frextents_delta fields are explicitly NOT
636 * applied to the in-core superblock. The idea is that that has already been
637 * done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 *
639 * This is done efficiently with a single call to xfs_mod_incore_sb_batch().
David Chinner45c34142007-06-18 16:49:44 +1000640 * However, we have to ensure that we only modify each superblock field only
641 * once because the application of the delta values may not be atomic. That can
642 * lead to ENOSPC races occurring if we have two separate modifcations of the
643 * free space counter to put back the entire reservation and then take away
644 * what we used.
645 *
646 * If we are not logging superblock counters, then the inode allocated/free and
647 * used block counts are not updated in the on disk superblock. In this case,
648 * XFS_TRANS_SB_DIRTY will not be set when the transaction is updated but we
649 * still need to update the incore superblock with the changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000651STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652xfs_trans_unreserve_and_mod_sb(
653 xfs_trans_t *tp)
654{
655 xfs_mod_sb_t msb[14]; /* If you add cases, add entries */
656 xfs_mod_sb_t *msbp;
David Chinner92821e22007-05-24 15:26:31 +1000657 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* REFERENCED */
659 int error;
660 int rsvd;
David Chinner45c34142007-06-18 16:49:44 +1000661 int64_t blkdelta = 0;
662 int64_t rtxdelta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 msbp = msb;
665 rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
666
David Chinner45c34142007-06-18 16:49:44 +1000667 /* calculate free blocks delta */
668 if (tp->t_blk_res > 0)
669 blkdelta = tp->t_blk_res;
670
671 if ((tp->t_fdblocks_delta != 0) &&
672 (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
673 (tp->t_flags & XFS_TRANS_SB_DIRTY)))
674 blkdelta += tp->t_fdblocks_delta;
675
676 if (blkdelta != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 msbp->msb_field = XFS_SBS_FDBLOCKS;
David Chinner45c34142007-06-18 16:49:44 +1000678 msbp->msb_delta = blkdelta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 msbp++;
680 }
681
David Chinner45c34142007-06-18 16:49:44 +1000682 /* calculate free realtime extents delta */
683 if (tp->t_rtx_res > 0)
684 rtxdelta = tp->t_rtx_res;
685
686 if ((tp->t_frextents_delta != 0) &&
687 (tp->t_flags & XFS_TRANS_SB_DIRTY))
688 rtxdelta += tp->t_frextents_delta;
689
690 if (rtxdelta != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 msbp->msb_field = XFS_SBS_FREXTENTS;
David Chinner45c34142007-06-18 16:49:44 +1000692 msbp->msb_delta = rtxdelta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 msbp++;
694 }
695
David Chinner45c34142007-06-18 16:49:44 +1000696 /* apply remaining deltas */
697
David Chinner92821e22007-05-24 15:26:31 +1000698 if (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
699 (tp->t_flags & XFS_TRANS_SB_DIRTY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (tp->t_icount_delta != 0) {
701 msbp->msb_field = XFS_SBS_ICOUNT;
David Chinner20f4ebf2007-02-10 18:36:10 +1100702 msbp->msb_delta = tp->t_icount_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 msbp++;
704 }
705 if (tp->t_ifree_delta != 0) {
706 msbp->msb_field = XFS_SBS_IFREE;
David Chinner20f4ebf2007-02-10 18:36:10 +1100707 msbp->msb_delta = tp->t_ifree_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 msbp++;
709 }
David Chinner92821e22007-05-24 15:26:31 +1000710 }
711
712 if (tp->t_flags & XFS_TRANS_SB_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (tp->t_dblocks_delta != 0) {
714 msbp->msb_field = XFS_SBS_DBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100715 msbp->msb_delta = tp->t_dblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 msbp++;
717 }
718 if (tp->t_agcount_delta != 0) {
719 msbp->msb_field = XFS_SBS_AGCOUNT;
David Chinner20f4ebf2007-02-10 18:36:10 +1100720 msbp->msb_delta = tp->t_agcount_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 msbp++;
722 }
723 if (tp->t_imaxpct_delta != 0) {
724 msbp->msb_field = XFS_SBS_IMAX_PCT;
David Chinner20f4ebf2007-02-10 18:36:10 +1100725 msbp->msb_delta = tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 msbp++;
727 }
728 if (tp->t_rextsize_delta != 0) {
729 msbp->msb_field = XFS_SBS_REXTSIZE;
David Chinner20f4ebf2007-02-10 18:36:10 +1100730 msbp->msb_delta = tp->t_rextsize_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 msbp++;
732 }
733 if (tp->t_rbmblocks_delta != 0) {
734 msbp->msb_field = XFS_SBS_RBMBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100735 msbp->msb_delta = tp->t_rbmblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 msbp++;
737 }
738 if (tp->t_rblocks_delta != 0) {
739 msbp->msb_field = XFS_SBS_RBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100740 msbp->msb_delta = tp->t_rblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 msbp++;
742 }
743 if (tp->t_rextents_delta != 0) {
744 msbp->msb_field = XFS_SBS_REXTENTS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100745 msbp->msb_delta = tp->t_rextents_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 msbp++;
747 }
748 if (tp->t_rextslog_delta != 0) {
749 msbp->msb_field = XFS_SBS_REXTSLOG;
David Chinner20f4ebf2007-02-10 18:36:10 +1100750 msbp->msb_delta = tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 msbp++;
752 }
753 }
754
755 /*
756 * If we need to change anything, do it.
757 */
758 if (msbp > msb) {
759 error = xfs_mod_incore_sb_batch(tp->t_mountp, msb,
760 (uint)(msbp - msb), rsvd);
761 ASSERT(error == 0);
762 }
763}
764
Dave Chinner09243782010-03-08 11:28:28 +1100765/*
766 * Total up the number of log iovecs needed to commit this
767 * transaction. The transaction itself needs one for the
768 * transaction header. Ask each dirty item in turn how many
769 * it needs to get the total.
770 */
771static uint
772xfs_trans_count_vecs(
773 xfs_trans_t *tp)
774{
775 int nvecs;
776 xfs_log_item_desc_t *lidp;
777
778 nvecs = 1;
779 lidp = xfs_trans_first_item(tp);
780 ASSERT(lidp != NULL);
781
782 /* In the non-debug case we need to start bailing out if we
783 * didn't find a log_item here, return zero and let trans_commit
784 * deal with it.
785 */
786 if (lidp == NULL)
787 return 0;
788
789 while (lidp != NULL) {
790 /*
791 * Skip items which aren't dirty in this transaction.
792 */
793 if (!(lidp->lid_flags & XFS_LID_DIRTY)) {
794 lidp = xfs_trans_next_item(tp, lidp);
795 continue;
796 }
797 lidp->lid_size = IOP_SIZE(lidp->lid_item);
798 nvecs += lidp->lid_size;
799 lidp = xfs_trans_next_item(tp, lidp);
800 }
801
802 return nvecs;
803}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805/*
Dave Chinner09243782010-03-08 11:28:28 +1100806 * Fill in the vector with pointers to data to be logged
807 * by this transaction. The transaction header takes
808 * the first vector, and then each dirty item takes the
809 * number of vectors it indicated it needed in xfs_trans_count_vecs().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 *
Dave Chinner09243782010-03-08 11:28:28 +1100811 * As each item fills in the entries it needs, also pin the item
812 * so that it cannot be flushed out until the log write completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 */
Dave Chinner09243782010-03-08 11:28:28 +1100814static void
815xfs_trans_fill_vecs(
816 struct xfs_trans *tp,
817 struct xfs_log_iovec *log_vector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Dave Chinner09243782010-03-08 11:28:28 +1100819 xfs_log_item_desc_t *lidp;
820 struct xfs_log_iovec *vecp;
821 uint nitems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /*
Dave Chinner09243782010-03-08 11:28:28 +1100824 * Skip over the entry for the transaction header, we'll
825 * fill that in at the end.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
Dave Chinner09243782010-03-08 11:28:28 +1100827 vecp = log_vector + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Dave Chinner09243782010-03-08 11:28:28 +1100829 nitems = 0;
830 lidp = xfs_trans_first_item(tp);
831 ASSERT(lidp);
832 while (lidp) {
833 /* Skip items which aren't dirty in this transaction. */
834 if (!(lidp->lid_flags & XFS_LID_DIRTY)) {
835 lidp = xfs_trans_next_item(tp, lidp);
836 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Dave Chinner09243782010-03-08 11:28:28 +1100838
839 /*
840 * The item may be marked dirty but not log anything. This can
841 * be used to get called when a transaction is committed.
842 */
843 if (lidp->lid_size)
844 nitems++;
845 IOP_FORMAT(lidp->lid_item, vecp);
846 vecp += lidp->lid_size;
847 IOP_PIN(lidp->lid_item);
848 lidp = xfs_trans_next_item(tp, lidp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 /*
Dave Chinner09243782010-03-08 11:28:28 +1100852 * Now that we've counted the number of items in this transaction, fill
853 * in the transaction header. Note that the transaction header does not
854 * have a log item.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
Dave Chinner09243782010-03-08 11:28:28 +1100856 tp->t_header.th_magic = XFS_TRANS_HEADER_MAGIC;
857 tp->t_header.th_type = tp->t_type;
858 tp->t_header.th_num_items = nitems;
859 log_vector->i_addr = (xfs_caddr_t)&tp->t_header;
860 log_vector->i_len = sizeof(xfs_trans_header_t);
861 log_vector->i_type = XLOG_REG_TYPE_TRANSHDR;
862}
863
864/*
865 * Format the transaction direct to the iclog. This isolates the physical
866 * transaction commit operation from the logical operation and hence allows
867 * other methods to be introduced without affecting the existing commit path.
868 */
869static int
870xfs_trans_commit_iclog(
871 struct xfs_mount *mp,
872 struct xfs_trans *tp,
873 xfs_lsn_t *commit_lsn,
874 int flags)
875{
876 int shutdown;
877 int error;
878 int log_flags = 0;
879 struct xlog_in_core *commit_iclog;
880#define XFS_TRANS_LOGVEC_COUNT 16
881 struct xfs_log_iovec log_vector_fast[XFS_TRANS_LOGVEC_COUNT];
882 struct xfs_log_iovec *log_vector;
883 uint nvec;
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 /*
887 * Ask each log item how many log_vector entries it will
888 * need so we can figure out how many to allocate.
889 * Try to avoid the kmem_alloc() call in the common case
890 * by using a vector from the stack when it fits.
891 */
892 nvec = xfs_trans_count_vecs(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (nvec == 0) {
Dave Chinner09243782010-03-08 11:28:28 +1100894 return ENOMEM; /* triggers a shutdown! */
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100895 } else if (nvec <= XFS_TRANS_LOGVEC_COUNT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 log_vector = log_vector_fast;
897 } else {
898 log_vector = (xfs_log_iovec_t *)kmem_alloc(nvec *
899 sizeof(xfs_log_iovec_t),
900 KM_SLEEP);
901 }
902
903 /*
904 * Fill in the log_vector and pin the logged items, and
905 * then write the transaction to the log.
906 */
907 xfs_trans_fill_vecs(tp, log_vector);
908
Dave Chinner09243782010-03-08 11:28:28 +1100909 if (flags & XFS_TRANS_RELEASE_LOG_RES)
910 log_flags = XFS_LOG_REL_PERM_RESERV;
911
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100912 error = xfs_log_write(mp, log_vector, nvec, tp->t_ticket, &(tp->t_lsn));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /*
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100915 * The transaction is committed incore here, and can go out to disk
916 * at any time after this call. However, all the items associated
917 * with the transaction are still locked and pinned in memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 */
Dave Chinner09243782010-03-08 11:28:28 +1100919 *commit_lsn = xfs_log_done(mp, tp->t_ticket, &commit_iclog, log_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Dave Chinner09243782010-03-08 11:28:28 +1100921 tp->t_commit_lsn = *commit_lsn;
922 if (nvec > XFS_TRANS_LOGVEC_COUNT)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000923 kmem_free(log_vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /*
926 * If we got a log write error. Unpin the logitems that we
927 * had pinned, clean up, free trans structure, and return error.
928 */
Dave Chinner09243782010-03-08 11:28:28 +1100929 if (error || *commit_lsn == -1) {
Nathan Scott59c1b082006-06-09 14:59:13 +1000930 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 xfs_trans_uncommit(tp, flags|XFS_TRANS_ABORT);
932 return XFS_ERROR(EIO);
933 }
934
935 /*
936 * Once the transaction has committed, unused
937 * reservations need to be released and changes to
938 * the superblock need to be reflected in the in-core
939 * version. Do that now.
940 */
941 xfs_trans_unreserve_and_mod_sb(tp);
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /*
944 * Tell the LM to call the transaction completion routine
945 * when the log write with LSN commit_lsn completes (e.g.
946 * when the transaction commit really hits the on-disk log).
947 * After this call we cannot reference tp, because the call
948 * can happen at any time and the call will free the transaction
949 * structure pointed to by tp. The only case where we call
950 * the completion routine (xfs_trans_committed) directly is
951 * if the log is turned off on a debug kernel or we're
952 * running in simulation mode (the log is explicitly turned
953 * off).
954 */
955 tp->t_logcb.cb_func = (void(*)(void*, int))xfs_trans_committed;
956 tp->t_logcb.cb_arg = tp;
957
958 /*
959 * We need to pass the iclog buffer which was used for the
960 * transaction commit record into this function, and attach
961 * the callback to it. The callback must be attached before
962 * the items are unlocked to avoid racing with other threads
963 * waiting for an item to unlock.
964 */
965 shutdown = xfs_log_notify(mp, commit_iclog, &(tp->t_logcb));
966
967 /*
968 * Mark this thread as no longer being in a transaction
969 */
Nathan Scott59c1b082006-06-09 14:59:13 +1000970 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /*
973 * Once all the items of the transaction have been copied
974 * to the in core log and the callback is attached, the
975 * items can be unlocked.
976 *
977 * This will free descriptors pointing to items which were
978 * not logged since there is nothing more to do with them.
979 * For items which were logged, we will keep pointers to them
980 * so they can be unpinned after the transaction commits to disk.
981 * This will also stamp each modified meta-data item with
982 * the commit lsn of this transaction for dependency tracking
983 * purposes.
984 */
Dave Chinner09243782010-03-08 11:28:28 +1100985 xfs_trans_unlock_items(tp, *commit_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 /*
988 * If we detected a log error earlier, finish committing
989 * the transaction now (unpin log items, etc).
990 *
991 * Order is critical here, to avoid using the transaction
992 * pointer after its been freed (by xfs_trans_committed
993 * either here now, or as a callback). We cannot do this
994 * step inside xfs_log_notify as was done earlier because
995 * of this issue.
996 */
997 if (shutdown)
998 xfs_trans_committed(tp, XFS_LI_ABORTED);
999
1000 /*
1001 * Now that the xfs_trans_committed callback has been attached,
1002 * and the items are released we can finally allow the iclog to
1003 * go to disk.
1004 */
Dave Chinner09243782010-03-08 11:28:28 +11001005 return xfs_log_release_iclog(mp, commit_iclog);
1006}
1007
1008
1009/*
1010 * xfs_trans_commit
1011 *
1012 * Commit the given transaction to the log a/synchronously.
1013 *
1014 * XFS disk error handling mechanism is not based on a typical
1015 * transaction abort mechanism. Logically after the filesystem
1016 * gets marked 'SHUTDOWN', we can't let any new transactions
1017 * be durable - ie. committed to disk - because some metadata might
1018 * be inconsistent. In such cases, this returns an error, and the
1019 * caller may assume that all locked objects joined to the transaction
1020 * have already been unlocked as if the commit had succeeded.
1021 * Do not reference the transaction structure after this call.
1022 */
Dave Chinner09243782010-03-08 11:28:28 +11001023int
1024_xfs_trans_commit(
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001025 struct xfs_trans *tp,
1026 uint flags,
1027 int *log_flushed)
Dave Chinner09243782010-03-08 11:28:28 +11001028{
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001029 struct xfs_mount *mp = tp->t_mountp;
Dave Chinner09243782010-03-08 11:28:28 +11001030 xfs_lsn_t commit_lsn = -1;
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001031 int error = 0;
Dave Chinner09243782010-03-08 11:28:28 +11001032 int log_flags = 0;
1033 int sync = tp->t_flags & XFS_TRANS_SYNC;
Dave Chinner09243782010-03-08 11:28:28 +11001034
1035 /*
1036 * Determine whether this commit is releasing a permanent
1037 * log reservation or not.
1038 */
1039 if (flags & XFS_TRANS_RELEASE_LOG_RES) {
1040 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
1041 log_flags = XFS_LOG_REL_PERM_RESERV;
1042 }
1043
1044 /*
1045 * If there is nothing to be logged by the transaction,
1046 * then unlock all of the items associated with the
1047 * transaction and free the transaction structure.
1048 * Also make sure to return any reserved blocks to
1049 * the free pool.
1050 */
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001051 if (!(tp->t_flags & XFS_TRANS_DIRTY))
1052 goto out_unreserve;
1053
1054 if (XFS_FORCED_SHUTDOWN(mp)) {
1055 error = XFS_ERROR(EIO);
1056 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +11001057 }
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001058
Dave Chinner09243782010-03-08 11:28:28 +11001059 ASSERT(tp->t_ticket != NULL);
1060
1061 /*
1062 * If we need to update the superblock, then do it now.
1063 */
1064 if (tp->t_flags & XFS_TRANS_SB_DIRTY)
1065 xfs_trans_apply_sb_deltas(tp);
1066 xfs_trans_apply_dquot_deltas(tp);
1067
1068 error = xfs_trans_commit_iclog(mp, tp, &commit_lsn, flags);
1069 if (error == ENOMEM) {
1070 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001071 error = XFS_ERROR(EIO);
1072 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +11001073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 /*
1076 * If the transaction needs to be synchronous, then force the
1077 * log out now and wait for it.
1078 */
1079 if (sync) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001080 if (!error) {
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001081 error = _xfs_log_force_lsn(mp, commit_lsn,
1082 XFS_LOG_SYNC, log_flushed);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 XFS_STATS_INC(xs_trans_sync);
1085 } else {
1086 XFS_STATS_INC(xs_trans_async);
1087 }
1088
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001089 return error;
1090
1091out_unreserve:
1092 xfs_trans_unreserve_and_mod_sb(tp);
1093
1094 /*
1095 * It is indeed possible for the transaction to be not dirty but
1096 * the dqinfo portion to be. All that means is that we have some
1097 * (non-persistent) quota reservations that need to be unreserved.
1098 */
1099 xfs_trans_unreserve_and_mod_dquots(tp);
1100 if (tp->t_ticket) {
1101 commit_lsn = xfs_log_done(mp, tp->t_ticket, NULL, log_flags);
1102 if (commit_lsn == -1 && !error)
1103 error = XFS_ERROR(EIO);
1104 }
1105 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
1106 xfs_trans_free_items(tp, error ? XFS_TRANS_ABORT : 0);
1107 xfs_trans_free_busy(tp);
1108 xfs_trans_free(tp);
1109
1110 XFS_STATS_INC(xs_trans_empty);
1111 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114/*
1115 * Called from the trans_commit code when we notice that
1116 * the filesystem is in the middle of a forced shutdown.
1117 */
1118STATIC void
1119xfs_trans_uncommit(
1120 xfs_trans_t *tp,
1121 uint flags)
1122{
1123 xfs_log_item_desc_t *lidp;
1124
1125 for (lidp = xfs_trans_first_item(tp);
1126 lidp != NULL;
1127 lidp = xfs_trans_next_item(tp, lidp)) {
1128 /*
1129 * Unpin all but those that aren't dirty.
1130 */
1131 if (lidp->lid_flags & XFS_LID_DIRTY)
1132 IOP_UNPIN_REMOVE(lidp->lid_item, tp);
1133 }
1134
1135 xfs_trans_unreserve_and_mod_sb(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001136 xfs_trans_unreserve_and_mod_dquots(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 xfs_trans_free_items(tp, flags);
1139 xfs_trans_free_busy(tp);
1140 xfs_trans_free(tp);
1141}
1142
1143/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * Unlock all of the transaction's items and free the transaction.
1145 * The transaction must not have modified any of its items, because
1146 * there is no way to restore them to their previous state.
1147 *
1148 * If the transaction has made a log reservation, make sure to release
1149 * it as well.
1150 */
1151void
1152xfs_trans_cancel(
1153 xfs_trans_t *tp,
1154 int flags)
1155{
1156 int log_flags;
1157#ifdef DEBUG
1158 xfs_log_item_chunk_t *licp;
1159 xfs_log_item_desc_t *lidp;
1160 xfs_log_item_t *lip;
1161 int i;
1162#endif
Ryan Hankins0733af22006-01-11 15:36:44 +11001163 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 /*
1166 * See if the caller is being too lazy to figure out if
1167 * the transaction really needs an abort.
1168 */
1169 if ((flags & XFS_TRANS_ABORT) && !(tp->t_flags & XFS_TRANS_DIRTY))
1170 flags &= ~XFS_TRANS_ABORT;
1171 /*
1172 * See if the caller is relying on us to shut down the
1173 * filesystem. This happens in paths where we detect
1174 * corruption and decide to give up.
1175 */
Nathan Scott60a204f2006-01-11 15:37:00 +11001176 if ((tp->t_flags & XFS_TRANS_DIRTY) && !XFS_FORCED_SHUTDOWN(mp)) {
Ryan Hankins0733af22006-01-11 15:36:44 +11001177 XFS_ERROR_REPORT("xfs_trans_cancel", XFS_ERRLEVEL_LOW, mp);
Nathan Scott7d04a332006-06-09 14:58:38 +10001178 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Nathan Scott60a204f2006-01-11 15:37:00 +11001179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180#ifdef DEBUG
1181 if (!(flags & XFS_TRANS_ABORT)) {
1182 licp = &(tp->t_items);
1183 while (licp != NULL) {
1184 lidp = licp->lic_descs;
1185 for (i = 0; i < licp->lic_unused; i++, lidp++) {
Eric Sandeen39dab9d2008-08-13 16:10:52 +10001186 if (xfs_lic_isfree(licp, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 continue;
1188 }
1189
1190 lip = lidp->lid_item;
Ryan Hankins0733af22006-01-11 15:36:44 +11001191 if (!XFS_FORCED_SHUTDOWN(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 ASSERT(!(lip->li_type == XFS_LI_EFD));
1193 }
1194 licp = licp->lic_next;
1195 }
1196 }
1197#endif
1198 xfs_trans_unreserve_and_mod_sb(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001199 xfs_trans_unreserve_and_mod_dquots(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 if (tp->t_ticket) {
1202 if (flags & XFS_TRANS_RELEASE_LOG_RES) {
1203 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
1204 log_flags = XFS_LOG_REL_PERM_RESERV;
1205 } else {
1206 log_flags = 0;
1207 }
Ryan Hankins0733af22006-01-11 15:36:44 +11001208 xfs_log_done(mp, tp->t_ticket, NULL, log_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210
1211 /* mark this thread as no longer being in a transaction */
Nathan Scott59c1b082006-06-09 14:59:13 +10001212 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 xfs_trans_free_items(tp, flags);
1215 xfs_trans_free_busy(tp);
1216 xfs_trans_free(tp);
1217}
1218
1219
1220/*
1221 * Free the transaction structure. If there is more clean up
1222 * to do when the structure is freed, add it here.
1223 */
1224STATIC void
1225xfs_trans_free(
1226 xfs_trans_t *tp)
1227{
1228 atomic_dec(&tp->t_mountp->m_active_trans);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001229 xfs_trans_free_dqinfo(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 kmem_zone_free(xfs_trans_zone, tp);
1231}
1232
Niv Sardi322ff6b2008-08-13 16:05:49 +10001233/*
1234 * Roll from one trans in the sequence of PERMANENT transactions to
1235 * the next: permanent transactions are only flushed out when
1236 * committed with XFS_TRANS_RELEASE_LOG_RES, but we still want as soon
1237 * as possible to let chunks of it go to the log. So we commit the
1238 * chunk we've been working on and get a new transaction to continue.
1239 */
1240int
1241xfs_trans_roll(
1242 struct xfs_trans **tpp,
1243 struct xfs_inode *dp)
1244{
1245 struct xfs_trans *trans;
1246 unsigned int logres, count;
1247 int error;
1248
1249 /*
1250 * Ensure that the inode is always logged.
1251 */
1252 trans = *tpp;
1253 xfs_trans_log_inode(trans, dp, XFS_ILOG_CORE);
1254
1255 /*
1256 * Copy the critical parameters from one trans to the next.
1257 */
1258 logres = trans->t_log_res;
1259 count = trans->t_log_count;
1260 *tpp = xfs_trans_dup(trans);
1261
1262 /*
1263 * Commit the current transaction.
1264 * If this commit failed, then it'd just unlock those items that
1265 * are not marked ihold. That also means that a filesystem shutdown
1266 * is in progress. The caller takes the responsibility to cancel
1267 * the duplicate transaction that gets returned.
1268 */
1269 error = xfs_trans_commit(trans, 0);
1270 if (error)
1271 return (error);
1272
1273 trans = *tpp;
1274
1275 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001276 * transaction commit worked ok so we can drop the extra ticket
1277 * reference that we gained in xfs_trans_dup()
1278 */
1279 xfs_log_ticket_put(trans->t_ticket);
1280
1281
1282 /*
Niv Sardi322ff6b2008-08-13 16:05:49 +10001283 * Reserve space in the log for th next transaction.
1284 * This also pushes items in the "AIL", the list of logged items,
1285 * out to disk if they are taking up space at the tail of the log
1286 * that we want to use. This requires that either nothing be locked
1287 * across this call, or that anything that is locked be logged in
1288 * the prior and the next transactions.
1289 */
1290 error = xfs_trans_reserve(trans, 0, logres, 0,
1291 XFS_TRANS_PERM_LOG_RES, count);
1292 /*
1293 * Ensure that the inode is in the new transaction and locked.
1294 */
1295 if (error)
1296 return error;
1297
1298 xfs_trans_ijoin(trans, dp, XFS_ILOCK_EXCL);
1299 xfs_trans_ihold(trans, dp);
1300 return 0;
1301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303/*
1304 * THIS SHOULD BE REWRITTEN TO USE xfs_trans_next_item().
1305 *
1306 * This is typically called by the LM when a transaction has been fully
1307 * committed to disk. It needs to unpin the items which have
1308 * been logged by the transaction and update their positions
1309 * in the AIL if necessary.
1310 * This also gets called when the transactions didn't get written out
1311 * because of an I/O error. Abortflag & XFS_LI_ABORTED is set then.
1312 *
1313 * Call xfs_trans_chunk_committed() to process the items in
1314 * each chunk.
1315 */
1316STATIC void
1317xfs_trans_committed(
1318 xfs_trans_t *tp,
1319 int abortflag)
1320{
1321 xfs_log_item_chunk_t *licp;
1322 xfs_log_item_chunk_t *next_licp;
1323 xfs_log_busy_chunk_t *lbcp;
1324 xfs_log_busy_slot_t *lbsp;
1325 int i;
1326
1327 /*
1328 * Call the transaction's completion callback if there
1329 * is one.
1330 */
1331 if (tp->t_callback != NULL) {
1332 tp->t_callback(tp, tp->t_callarg);
1333 }
1334
1335 /*
1336 * Special case the chunk embedded in the transaction.
1337 */
1338 licp = &(tp->t_items);
Eric Sandeen39dab9d2008-08-13 16:10:52 +10001339 if (!(xfs_lic_are_all_free(licp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 xfs_trans_chunk_committed(licp, tp->t_lsn, abortflag);
1341 }
1342
1343 /*
1344 * Process the items in each chunk in turn.
1345 */
1346 licp = licp->lic_next;
1347 while (licp != NULL) {
Eric Sandeen39dab9d2008-08-13 16:10:52 +10001348 ASSERT(!xfs_lic_are_all_free(licp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 xfs_trans_chunk_committed(licp, tp->t_lsn, abortflag);
1350 next_licp = licp->lic_next;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001351 kmem_free(licp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 licp = next_licp;
1353 }
1354
1355 /*
1356 * Clear all the per-AG busy list items listed in this transaction
1357 */
1358 lbcp = &tp->t_busy;
1359 while (lbcp != NULL) {
1360 for (i = 0, lbsp = lbcp->lbc_busy; i < lbcp->lbc_unused; i++, lbsp++) {
1361 if (!XFS_LBC_ISFREE(lbcp, i)) {
1362 xfs_alloc_clear_busy(tp, lbsp->lbc_ag,
1363 lbsp->lbc_idx);
1364 }
1365 }
1366 lbcp = lbcp->lbc_next;
1367 }
1368 xfs_trans_free_busy(tp);
1369
1370 /*
1371 * That's it for the transaction structure. Free it.
1372 */
1373 xfs_trans_free(tp);
1374}
1375
1376/*
1377 * This is called to perform the commit processing for each
1378 * item described by the given chunk.
1379 *
1380 * The commit processing consists of unlocking items which were
1381 * held locked with the SYNC_UNLOCK attribute, calling the committed
1382 * routine of each logged item, updating the item's position in the AIL
1383 * if necessary, and unpinning each item. If the committed routine
1384 * returns -1, then do nothing further with the item because it
1385 * may have been freed.
1386 *
1387 * Since items are unlocked when they are copied to the incore
1388 * log, it is possible for two transactions to be completing
1389 * and manipulating the same item simultaneously. The AIL lock
1390 * will protect the lsn field of each item. The value of this
1391 * field can never go backwards.
1392 *
1393 * We unpin the items after repositioning them in the AIL, because
1394 * otherwise they could be immediately flushed and we'd have to race
1395 * with the flusher trying to pull the item from the AIL as we add it.
1396 */
1397STATIC void
1398xfs_trans_chunk_committed(
1399 xfs_log_item_chunk_t *licp,
1400 xfs_lsn_t lsn,
1401 int aborted)
1402{
1403 xfs_log_item_desc_t *lidp;
1404 xfs_log_item_t *lip;
1405 xfs_lsn_t item_lsn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 lidp = licp->lic_descs;
1409 for (i = 0; i < licp->lic_unused; i++, lidp++) {
David Chinnerfc1829f2008-10-30 17:39:46 +11001410 struct xfs_ail *ailp;
1411
Eric Sandeen39dab9d2008-08-13 16:10:52 +10001412 if (xfs_lic_isfree(licp, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 continue;
1414 }
1415
1416 lip = lidp->lid_item;
1417 if (aborted)
1418 lip->li_flags |= XFS_LI_ABORTED;
1419
1420 /*
1421 * Send in the ABORTED flag to the COMMITTED routine
1422 * so that it knows whether the transaction was aborted
1423 * or not.
1424 */
1425 item_lsn = IOP_COMMITTED(lip, lsn);
1426
1427 /*
1428 * If the committed routine returns -1, make
1429 * no more references to the item.
1430 */
1431 if (XFS_LSN_CMP(item_lsn, (xfs_lsn_t)-1) == 0) {
1432 continue;
1433 }
1434
1435 /*
1436 * If the returned lsn is greater than what it
1437 * contained before, update the location of the
1438 * item in the AIL. If it is not, then do nothing.
1439 * Items can never move backwards in the AIL.
1440 *
1441 * While the new lsn should usually be greater, it
1442 * is possible that a later transaction completing
1443 * simultaneously with an earlier one using the
1444 * same item could complete first with a higher lsn.
1445 * This would cause the earlier transaction to fail
1446 * the test below.
1447 */
David Chinnerfc1829f2008-10-30 17:39:46 +11001448 ailp = lip->li_ailp;
1449 spin_lock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 if (XFS_LSN_CMP(item_lsn, lip->li_lsn) > 0) {
1451 /*
1452 * This will set the item's lsn to item_lsn
1453 * and update the position of the item in
1454 * the AIL.
1455 *
David Chinner783a2f62008-10-30 17:39:58 +11001456 * xfs_trans_ail_update() drops the AIL lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 */
David Chinner783a2f62008-10-30 17:39:58 +11001458 xfs_trans_ail_update(ailp, lip, item_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 } else {
David Chinnerfc1829f2008-10-30 17:39:46 +11001460 spin_unlock(&ailp->xa_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462
1463 /*
1464 * Now that we've repositioned the item in the AIL,
1465 * unpin it so it can be flushed. Pass information
1466 * about buffer stale state down from the log item
1467 * flags, if anyone else stales the buffer we do not
1468 * want to pay any attention to it.
1469 */
Dave Chinner8e123852010-03-08 11:26:03 +11001470 IOP_UNPIN(lip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
1472}