blob: 8d1595f9fd502b1c3a50237b4e049788b341a161 [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.
Christoph Hellwige98c4142010-06-23 18:11:15 +10003 * Copyright (C) 2010 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110021#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
28#include "xfs_error.h"
Dave Chinner57062782013-10-15 09:17:51 +110029#include "xfs_da_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_dinode.h"
34#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_btree.h"
36#include "xfs_ialloc.h"
37#include "xfs_alloc.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000038#include "xfs_extent_busy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_quota.h"
Dave Chinner239880e2013-10-23 10:50:10 +110041#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110042#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_trans_space.h"
Dave Chinner239880e2013-10-23 10:50:10 +110044#include "xfs_qm.h"
Niv Sardi322ff6b2008-08-13 16:05:49 +100045#include "xfs_inode_item.h"
Dave Chinner239880e2013-10-23 10:50:10 +110046#include "xfs_log.h"
Jeff Liu4f3b5782013-01-28 21:25:35 +080047#include "xfs_log_priv.h"
48#include "xfs_buf_item.h"
Dave Chinnered3b4d62010-05-21 12:07:08 +100049#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Nathan Scott8f794052006-03-14 13:32:41 +110051kmem_zone_t *xfs_trans_zone;
Christoph Hellwige98c4142010-06-23 18:11:15 +100052kmem_zone_t *xfs_log_item_desc_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Jeff Liu4f3b5782013-01-28 21:25:35 +080054/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * Initialize the precomputed transaction reservation values
56 * in the mount structure.
57 */
58void
59xfs_trans_init(
Christoph Hellwig025101d2010-05-04 13:53:48 +000060 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Jie Liu3d3c8b52013-08-12 20:49:59 +100062 xfs_trans_resv_calc(mp, M_RES(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65/*
66 * This routine is called to allocate a transaction structure.
67 * The type parameter indicates the type of the transaction. These
68 * are enumerated in xfs_trans.h.
Alex Elderb2ce3972011-07-11 09:51:44 -050069 *
70 * Dynamically allocate the transaction structure from the transaction
71 * zone, initialize it, and return it to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
Alex Elderb2ce3972011-07-11 09:51:44 -050073xfs_trans_t *
74xfs_trans_alloc(
75 xfs_mount_t *mp,
76 uint type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Jan Karad9457dc2012-06-12 16:20:39 +020078 xfs_trans_t *tp;
79
80 sb_start_intwrite(mp->m_super);
81 tp = _xfs_trans_alloc(mp, type, KM_SLEEP);
82 tp->t_flags |= XFS_TRANS_FREEZE_PROT;
83 return tp;
Alex Elderb2ce3972011-07-11 09:51:44 -050084}
85
86xfs_trans_t *
87_xfs_trans_alloc(
88 xfs_mount_t *mp,
89 uint type,
Al Viro77ba7872012-04-02 06:24:04 -040090 xfs_km_flags_t memflags)
Alex Elderb2ce3972011-07-11 09:51:44 -050091{
92 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Jan Karad9457dc2012-06-12 16:20:39 +020094 WARN_ON(mp->m_super->s_writers.frozen == SB_FREEZE_COMPLETE);
Nathan Scott34327e12006-06-09 17:11:55 +100095 atomic_inc(&mp->m_active_trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Christoph Hellwig80641dc2009-10-19 04:00:03 +000097 tp = kmem_zone_zalloc(xfs_trans_zone, memflags);
Dave Chinner2a3c0ac2013-08-12 20:49:28 +100098 tp->t_magic = XFS_TRANS_HEADER_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 tp->t_type = type;
100 tp->t_mountp = mp;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000101 INIT_LIST_HEAD(&tp->t_items);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000102 INIT_LIST_HEAD(&tp->t_busy);
Nathan Scott34327e12006-06-09 17:11:55 +1000103 return tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106/*
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100107 * Free the transaction structure. If there is more clean up
108 * to do when the structure is freed, add it here.
109 */
110STATIC void
111xfs_trans_free(
Dave Chinnered3b4d62010-05-21 12:07:08 +1000112 struct xfs_trans *tp)
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100113{
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000114 xfs_extent_busy_sort(&tp->t_busy);
115 xfs_extent_busy_clear(tp->t_mountp, &tp->t_busy, false);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000116
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100117 atomic_dec(&tp->t_mountp->m_active_trans);
Jan Karad9457dc2012-06-12 16:20:39 +0200118 if (tp->t_flags & XFS_TRANS_FREEZE_PROT)
119 sb_end_intwrite(tp->t_mountp->m_super);
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100120 xfs_trans_free_dqinfo(tp);
121 kmem_zone_free(xfs_trans_zone, tp);
122}
123
124/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * This is called to create a new transaction which will share the
126 * permanent log reservation of the given transaction. The remaining
127 * unused block and rt extent reservations are also inherited. This
128 * implies that the original transaction is no longer allowed to allocate
129 * blocks. Locks and log items, however, are no inherited. They must
130 * be added to the new transaction explicitly.
131 */
132xfs_trans_t *
133xfs_trans_dup(
134 xfs_trans_t *tp)
135{
136 xfs_trans_t *ntp;
137
138 ntp = kmem_zone_zalloc(xfs_trans_zone, KM_SLEEP);
139
140 /*
141 * Initialize the new transaction structure.
142 */
Dave Chinner2a3c0ac2013-08-12 20:49:28 +1000143 ntp->t_magic = XFS_TRANS_HEADER_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ntp->t_type = tp->t_type;
145 ntp->t_mountp = tp->t_mountp;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000146 INIT_LIST_HEAD(&ntp->t_items);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000147 INIT_LIST_HEAD(&ntp->t_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 ASSERT(tp->t_ticket != NULL);
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100151
Jan Karad9457dc2012-06-12 16:20:39 +0200152 ntp->t_flags = XFS_TRANS_PERM_LOG_RES |
153 (tp->t_flags & XFS_TRANS_RESERVE) |
154 (tp->t_flags & XFS_TRANS_FREEZE_PROT);
155 /* We gave our writer reference to the new transaction */
156 tp->t_flags &= ~XFS_TRANS_FREEZE_PROT;
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100157 ntp->t_ticket = xfs_log_ticket_get(tp->t_ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 ntp->t_blk_res = tp->t_blk_res - tp->t_blk_res_used;
159 tp->t_blk_res = tp->t_blk_res_used;
160 ntp->t_rtx_res = tp->t_rtx_res - tp->t_rtx_res_used;
161 tp->t_rtx_res = tp->t_rtx_res_used;
Nathan Scott59c1b082006-06-09 14:59:13 +1000162 ntp->t_pflags = tp->t_pflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Christoph Hellwig7d095252009-06-08 15:33:32 +0200164 xfs_trans_dup_dqinfo(tp, ntp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 atomic_inc(&tp->t_mountp->m_active_trans);
167 return ntp;
168}
169
170/*
171 * This is called to reserve free disk blocks and log space for the
172 * given transaction. This must be done before allocating any resources
173 * within the transaction.
174 *
175 * This will return ENOSPC if there are not enough blocks available.
176 * It will sleep waiting for available log space.
177 * The only valid value for the flags parameter is XFS_RES_LOG_PERM, which
178 * is used by long running transactions. If any one of the reservations
179 * fails then they will all be backed out.
180 *
181 * This does not do quota reservations. That typically is done by the
182 * caller afterwards.
183 */
184int
185xfs_trans_reserve(
Jie Liu3d3c8b52013-08-12 20:49:59 +1000186 struct xfs_trans *tp,
187 struct xfs_trans_res *resp,
188 uint blocks,
189 uint rtextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Nathan Scott59c1b082006-06-09 14:59:13 +1000191 int error = 0;
192 int rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* Mark this thread as being in a transaction */
Nathan Scott59c1b082006-06-09 14:59:13 +1000195 current_set_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /*
198 * Attempt to reserve the needed disk blocks by decrementing
199 * the number needed from the number available. This will
200 * fail if the count would go below zero.
201 */
202 if (blocks > 0) {
Christoph Hellwig96540c72010-09-30 02:25:55 +0000203 error = xfs_icsb_modify_counters(tp->t_mountp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100204 -((int64_t)blocks), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (error != 0) {
Nathan Scott59c1b082006-06-09 14:59:13 +1000206 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return (XFS_ERROR(ENOSPC));
208 }
209 tp->t_blk_res += blocks;
210 }
211
212 /*
213 * Reserve the log space needed for this transaction.
214 */
Jie Liu3d3c8b52013-08-12 20:49:59 +1000215 if (resp->tr_logres > 0) {
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000216 bool permanent = false;
217
Jie Liu3d3c8b52013-08-12 20:49:59 +1000218 ASSERT(tp->t_log_res == 0 ||
219 tp->t_log_res == resp->tr_logres);
220 ASSERT(tp->t_log_count == 0 ||
221 tp->t_log_count == resp->tr_logcount);
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000222
Jie Liu3d3c8b52013-08-12 20:49:59 +1000223 if (resp->tr_logflags & XFS_TRANS_PERM_LOG_RES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 tp->t_flags |= XFS_TRANS_PERM_LOG_RES;
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000225 permanent = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 } else {
227 ASSERT(tp->t_ticket == NULL);
228 ASSERT(!(tp->t_flags & XFS_TRANS_PERM_LOG_RES));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000231 if (tp->t_ticket != NULL) {
Jie Liu3d3c8b52013-08-12 20:49:59 +1000232 ASSERT(resp->tr_logflags & XFS_TRANS_PERM_LOG_RES);
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000233 error = xfs_log_regrant(tp->t_mountp, tp->t_ticket);
234 } else {
Jie Liu3d3c8b52013-08-12 20:49:59 +1000235 error = xfs_log_reserve(tp->t_mountp,
236 resp->tr_logres,
237 resp->tr_logcount,
238 &tp->t_ticket, XFS_TRANSACTION,
239 permanent, tp->t_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000241
242 if (error)
243 goto undo_blocks;
244
Jie Liu3d3c8b52013-08-12 20:49:59 +1000245 tp->t_log_res = resp->tr_logres;
246 tp->t_log_count = resp->tr_logcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248
249 /*
250 * Attempt to reserve the needed realtime extents by decrementing
251 * the number needed from the number available. This will
252 * fail if the count would go below zero.
253 */
254 if (rtextents > 0) {
255 error = xfs_mod_incore_sb(tp->t_mountp, XFS_SBS_FREXTENTS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100256 -((int64_t)rtextents), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (error) {
258 error = XFS_ERROR(ENOSPC);
259 goto undo_log;
260 }
261 tp->t_rtx_res += rtextents;
262 }
263
264 return 0;
265
266 /*
267 * Error cases jump to one of these labels to undo any
268 * reservations which have already been performed.
269 */
270undo_log:
Jie Liu3d3c8b52013-08-12 20:49:59 +1000271 if (resp->tr_logres > 0) {
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000272 int log_flags;
273
Jie Liu3d3c8b52013-08-12 20:49:59 +1000274 if (resp->tr_logflags & XFS_TRANS_PERM_LOG_RES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 log_flags = XFS_LOG_REL_PERM_RESERV;
276 } else {
277 log_flags = 0;
278 }
279 xfs_log_done(tp->t_mountp, tp->t_ticket, NULL, log_flags);
280 tp->t_ticket = NULL;
281 tp->t_log_res = 0;
282 tp->t_flags &= ~XFS_TRANS_PERM_LOG_RES;
283 }
284
285undo_blocks:
286 if (blocks > 0) {
Christoph Hellwig96540c72010-09-30 02:25:55 +0000287 xfs_icsb_modify_counters(tp->t_mountp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100288 (int64_t)blocks, rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 tp->t_blk_res = 0;
290 }
291
Nathan Scott59c1b082006-06-09 14:59:13 +1000292 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Nathan Scott59c1b082006-06-09 14:59:13 +1000294 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * Record the indicated change to the given field for application
299 * to the file system's superblock when the transaction commits.
300 * For now, just store the change in the transaction structure.
301 *
302 * Mark the transaction structure to indicate that the superblock
303 * needs to be updated before committing.
David Chinner92821e22007-05-24 15:26:31 +1000304 *
305 * Because we may not be keeping track of allocated/free inodes and
306 * used filesystem blocks in the superblock, we do not mark the
307 * superblock dirty in this transaction if we modify these fields.
308 * We still need to update the transaction deltas so that they get
309 * applied to the incore superblock, but we don't want them to
310 * cause the superblock to get locked and logged if these are the
311 * only fields in the superblock that the transaction modifies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
313void
314xfs_trans_mod_sb(
315 xfs_trans_t *tp,
316 uint field,
David Chinner20f4ebf2007-02-10 18:36:10 +1100317 int64_t delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
David Chinner92821e22007-05-24 15:26:31 +1000319 uint32_t flags = (XFS_TRANS_DIRTY|XFS_TRANS_SB_DIRTY);
320 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 switch (field) {
323 case XFS_TRANS_SB_ICOUNT:
324 tp->t_icount_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000325 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
326 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 break;
328 case XFS_TRANS_SB_IFREE:
329 tp->t_ifree_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000330 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
331 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 break;
333 case XFS_TRANS_SB_FDBLOCKS:
334 /*
335 * Track the number of blocks allocated in the
336 * transaction. Make sure it does not exceed the
337 * number reserved.
338 */
339 if (delta < 0) {
340 tp->t_blk_res_used += (uint)-delta;
341 ASSERT(tp->t_blk_res_used <= tp->t_blk_res);
342 }
343 tp->t_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000344 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
345 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 break;
347 case XFS_TRANS_SB_RES_FDBLOCKS:
348 /*
349 * The allocation has already been applied to the
350 * in-core superblock's counter. This should only
351 * be applied to the on-disk superblock.
352 */
353 ASSERT(delta < 0);
354 tp->t_res_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000355 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
356 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 break;
358 case XFS_TRANS_SB_FREXTENTS:
359 /*
360 * Track the number of blocks allocated in the
361 * transaction. Make sure it does not exceed the
362 * number reserved.
363 */
364 if (delta < 0) {
365 tp->t_rtx_res_used += (uint)-delta;
366 ASSERT(tp->t_rtx_res_used <= tp->t_rtx_res);
367 }
368 tp->t_frextents_delta += delta;
369 break;
370 case XFS_TRANS_SB_RES_FREXTENTS:
371 /*
372 * The allocation has already been applied to the
Nathan Scottc41564b2006-03-29 08:55:14 +1000373 * in-core superblock's counter. This should only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * be applied to the on-disk superblock.
375 */
376 ASSERT(delta < 0);
377 tp->t_res_frextents_delta += delta;
378 break;
379 case XFS_TRANS_SB_DBLOCKS:
380 ASSERT(delta > 0);
381 tp->t_dblocks_delta += delta;
382 break;
383 case XFS_TRANS_SB_AGCOUNT:
384 ASSERT(delta > 0);
385 tp->t_agcount_delta += delta;
386 break;
387 case XFS_TRANS_SB_IMAXPCT:
388 tp->t_imaxpct_delta += delta;
389 break;
390 case XFS_TRANS_SB_REXTSIZE:
391 tp->t_rextsize_delta += delta;
392 break;
393 case XFS_TRANS_SB_RBMBLOCKS:
394 tp->t_rbmblocks_delta += delta;
395 break;
396 case XFS_TRANS_SB_RBLOCKS:
397 tp->t_rblocks_delta += delta;
398 break;
399 case XFS_TRANS_SB_REXTENTS:
400 tp->t_rextents_delta += delta;
401 break;
402 case XFS_TRANS_SB_REXTSLOG:
403 tp->t_rextslog_delta += delta;
404 break;
405 default:
406 ASSERT(0);
407 return;
408 }
409
David Chinner210c6f12007-05-24 15:26:51 +1000410 tp->t_flags |= flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413/*
414 * xfs_trans_apply_sb_deltas() is called from the commit code
415 * to bring the superblock buffer into the current transaction
416 * and modify it as requested by earlier calls to xfs_trans_mod_sb().
417 *
418 * For now we just look at each field allowed to change and change
419 * it if necessary.
420 */
421STATIC void
422xfs_trans_apply_sb_deltas(
423 xfs_trans_t *tp)
424{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000425 xfs_dsb_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 xfs_buf_t *bp;
427 int whole = 0;
428
429 bp = xfs_trans_getsb(tp, tp->t_mountp, 0);
430 sbp = XFS_BUF_TO_SBP(bp);
431
432 /*
433 * Check that superblock mods match the mods made to AGF counters.
434 */
435 ASSERT((tp->t_fdblocks_delta + tp->t_res_fdblocks_delta) ==
436 (tp->t_ag_freeblks_delta + tp->t_ag_flist_delta +
437 tp->t_ag_btree_delta));
438
David Chinner92821e22007-05-24 15:26:31 +1000439 /*
440 * Only update the superblock counters if we are logging them
441 */
442 if (!xfs_sb_version_haslazysbcount(&(tp->t_mountp->m_sb))) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000443 if (tp->t_icount_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800444 be64_add_cpu(&sbp->sb_icount, tp->t_icount_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000445 if (tp->t_ifree_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800446 be64_add_cpu(&sbp->sb_ifree, tp->t_ifree_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000447 if (tp->t_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800448 be64_add_cpu(&sbp->sb_fdblocks, tp->t_fdblocks_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000449 if (tp->t_res_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800450 be64_add_cpu(&sbp->sb_fdblocks, tp->t_res_fdblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000453 if (tp->t_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800454 be64_add_cpu(&sbp->sb_frextents, tp->t_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000455 if (tp->t_res_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800456 be64_add_cpu(&sbp->sb_frextents, tp->t_res_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000457
458 if (tp->t_dblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800459 be64_add_cpu(&sbp->sb_dblocks, tp->t_dblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 whole = 1;
461 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000462 if (tp->t_agcount_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800463 be32_add_cpu(&sbp->sb_agcount, tp->t_agcount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 whole = 1;
465 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000466 if (tp->t_imaxpct_delta) {
467 sbp->sb_imax_pct += tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 whole = 1;
469 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000470 if (tp->t_rextsize_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800471 be32_add_cpu(&sbp->sb_rextsize, tp->t_rextsize_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 whole = 1;
473 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000474 if (tp->t_rbmblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800475 be32_add_cpu(&sbp->sb_rbmblocks, tp->t_rbmblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 whole = 1;
477 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000478 if (tp->t_rblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800479 be64_add_cpu(&sbp->sb_rblocks, tp->t_rblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 whole = 1;
481 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000482 if (tp->t_rextents_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800483 be64_add_cpu(&sbp->sb_rextents, tp->t_rextents_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 whole = 1;
485 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000486 if (tp->t_rextslog_delta) {
487 sbp->sb_rextslog += tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 whole = 1;
489 }
490
491 if (whole)
492 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000493 * Log the whole thing, the fields are noncontiguous.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000495 xfs_trans_log_buf(tp, bp, 0, sizeof(xfs_dsb_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 else
497 /*
498 * Since all the modifiable fields are contiguous, we
499 * can get away with this.
500 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000501 xfs_trans_log_buf(tp, bp, offsetof(xfs_dsb_t, sb_icount),
502 offsetof(xfs_dsb_t, sb_frextents) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 sizeof(sbp->sb_frextents) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506/*
David Chinner45c34142007-06-18 16:49:44 +1000507 * xfs_trans_unreserve_and_mod_sb() is called to release unused reservations
508 * and apply superblock counter changes to the in-core superblock. The
509 * t_res_fdblocks_delta and t_res_frextents_delta fields are explicitly NOT
510 * applied to the in-core superblock. The idea is that that has already been
511 * done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 *
513 * This is done efficiently with a single call to xfs_mod_incore_sb_batch().
David Chinner45c34142007-06-18 16:49:44 +1000514 * However, we have to ensure that we only modify each superblock field only
515 * once because the application of the delta values may not be atomic. That can
516 * lead to ENOSPC races occurring if we have two separate modifcations of the
517 * free space counter to put back the entire reservation and then take away
518 * what we used.
519 *
520 * If we are not logging superblock counters, then the inode allocated/free and
521 * used block counts are not updated in the on disk superblock. In this case,
522 * XFS_TRANS_SB_DIRTY will not be set when the transaction is updated but we
523 * still need to update the incore superblock with the changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 */
Dave Chinner71e330b2010-05-21 14:37:18 +1000525void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526xfs_trans_unreserve_and_mod_sb(
527 xfs_trans_t *tp)
528{
Christoph Hellwig1b040712010-09-30 02:25:56 +0000529 xfs_mod_sb_t msb[9]; /* If you add cases, add entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 xfs_mod_sb_t *msbp;
David Chinner92821e22007-05-24 15:26:31 +1000531 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* REFERENCED */
533 int error;
534 int rsvd;
David Chinner45c34142007-06-18 16:49:44 +1000535 int64_t blkdelta = 0;
536 int64_t rtxdelta = 0;
Christoph Hellwig1b040712010-09-30 02:25:56 +0000537 int64_t idelta = 0;
538 int64_t ifreedelta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 msbp = msb;
541 rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
542
Christoph Hellwig1b040712010-09-30 02:25:56 +0000543 /* calculate deltas */
David Chinner45c34142007-06-18 16:49:44 +1000544 if (tp->t_blk_res > 0)
545 blkdelta = tp->t_blk_res;
David Chinner45c34142007-06-18 16:49:44 +1000546 if ((tp->t_fdblocks_delta != 0) &&
547 (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
548 (tp->t_flags & XFS_TRANS_SB_DIRTY)))
549 blkdelta += tp->t_fdblocks_delta;
550
David Chinner45c34142007-06-18 16:49:44 +1000551 if (tp->t_rtx_res > 0)
552 rtxdelta = tp->t_rtx_res;
David Chinner45c34142007-06-18 16:49:44 +1000553 if ((tp->t_frextents_delta != 0) &&
554 (tp->t_flags & XFS_TRANS_SB_DIRTY))
555 rtxdelta += tp->t_frextents_delta;
556
Christoph Hellwig1b040712010-09-30 02:25:56 +0000557 if (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
558 (tp->t_flags & XFS_TRANS_SB_DIRTY)) {
559 idelta = tp->t_icount_delta;
560 ifreedelta = tp->t_ifree_delta;
561 }
562
563 /* apply the per-cpu counters */
564 if (blkdelta) {
565 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
566 blkdelta, rsvd);
567 if (error)
568 goto out;
569 }
570
571 if (idelta) {
572 error = xfs_icsb_modify_counters(mp, XFS_SBS_ICOUNT,
573 idelta, rsvd);
574 if (error)
575 goto out_undo_fdblocks;
576 }
577
578 if (ifreedelta) {
579 error = xfs_icsb_modify_counters(mp, XFS_SBS_IFREE,
580 ifreedelta, rsvd);
581 if (error)
582 goto out_undo_icount;
583 }
584
585 /* apply remaining deltas */
David Chinner45c34142007-06-18 16:49:44 +1000586 if (rtxdelta != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 msbp->msb_field = XFS_SBS_FREXTENTS;
David Chinner45c34142007-06-18 16:49:44 +1000588 msbp->msb_delta = rtxdelta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 msbp++;
590 }
591
David Chinner92821e22007-05-24 15:26:31 +1000592 if (tp->t_flags & XFS_TRANS_SB_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (tp->t_dblocks_delta != 0) {
594 msbp->msb_field = XFS_SBS_DBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100595 msbp->msb_delta = tp->t_dblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 msbp++;
597 }
598 if (tp->t_agcount_delta != 0) {
599 msbp->msb_field = XFS_SBS_AGCOUNT;
David Chinner20f4ebf2007-02-10 18:36:10 +1100600 msbp->msb_delta = tp->t_agcount_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 msbp++;
602 }
603 if (tp->t_imaxpct_delta != 0) {
604 msbp->msb_field = XFS_SBS_IMAX_PCT;
David Chinner20f4ebf2007-02-10 18:36:10 +1100605 msbp->msb_delta = tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 msbp++;
607 }
608 if (tp->t_rextsize_delta != 0) {
609 msbp->msb_field = XFS_SBS_REXTSIZE;
David Chinner20f4ebf2007-02-10 18:36:10 +1100610 msbp->msb_delta = tp->t_rextsize_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 msbp++;
612 }
613 if (tp->t_rbmblocks_delta != 0) {
614 msbp->msb_field = XFS_SBS_RBMBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100615 msbp->msb_delta = tp->t_rbmblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 msbp++;
617 }
618 if (tp->t_rblocks_delta != 0) {
619 msbp->msb_field = XFS_SBS_RBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100620 msbp->msb_delta = tp->t_rblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 msbp++;
622 }
623 if (tp->t_rextents_delta != 0) {
624 msbp->msb_field = XFS_SBS_REXTENTS;
David Chinner20f4ebf2007-02-10 18:36:10 +1100625 msbp->msb_delta = tp->t_rextents_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 msbp++;
627 }
628 if (tp->t_rextslog_delta != 0) {
629 msbp->msb_field = XFS_SBS_REXTSLOG;
David Chinner20f4ebf2007-02-10 18:36:10 +1100630 msbp->msb_delta = tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 msbp++;
632 }
633 }
634
635 /*
636 * If we need to change anything, do it.
637 */
638 if (msbp > msb) {
639 error = xfs_mod_incore_sb_batch(tp->t_mountp, msb,
640 (uint)(msbp - msb), rsvd);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000641 if (error)
642 goto out_undo_ifreecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
Christoph Hellwig1b040712010-09-30 02:25:56 +0000644
645 return;
646
647out_undo_ifreecount:
648 if (ifreedelta)
649 xfs_icsb_modify_counters(mp, XFS_SBS_IFREE, -ifreedelta, rsvd);
650out_undo_icount:
651 if (idelta)
652 xfs_icsb_modify_counters(mp, XFS_SBS_ICOUNT, -idelta, rsvd);
653out_undo_fdblocks:
654 if (blkdelta)
655 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, -blkdelta, rsvd);
656out:
Jesper Juhl1884bd82010-12-25 20:14:53 +0000657 ASSERT(error == 0);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000658 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
Dave Chinner09243782010-03-08 11:28:28 +1100661/*
Christoph Hellwige98c4142010-06-23 18:11:15 +1000662 * Add the given log item to the transaction's list of log items.
663 *
664 * The log item will now point to its new descriptor with its li_desc field.
665 */
666void
667xfs_trans_add_item(
668 struct xfs_trans *tp,
669 struct xfs_log_item *lip)
670{
671 struct xfs_log_item_desc *lidp;
672
Jesper Juhlf65020a2012-02-13 20:51:05 +0000673 ASSERT(lip->li_mountp == tp->t_mountp);
674 ASSERT(lip->li_ailp == tp->t_mountp->m_ail);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000675
Dave Chinner43869702010-07-20 17:53:44 +1000676 lidp = kmem_zone_zalloc(xfs_log_item_desc_zone, KM_SLEEP | KM_NOFS);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000677
678 lidp->lid_item = lip;
679 lidp->lid_flags = 0;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000680 list_add_tail(&lidp->lid_trans, &tp->t_items);
681
682 lip->li_desc = lidp;
683}
684
685STATIC void
686xfs_trans_free_item_desc(
687 struct xfs_log_item_desc *lidp)
688{
689 list_del_init(&lidp->lid_trans);
690 kmem_zone_free(xfs_log_item_desc_zone, lidp);
691}
692
693/*
694 * Unlink and free the given descriptor.
695 */
696void
697xfs_trans_del_item(
698 struct xfs_log_item *lip)
699{
700 xfs_trans_free_item_desc(lip->li_desc);
701 lip->li_desc = NULL;
702}
703
704/*
705 * Unlock all of the items of a transaction and free all the descriptors
706 * of that transaction.
707 */
Dave Chinnerd17c7012010-08-24 11:42:52 +1000708void
Christoph Hellwige98c4142010-06-23 18:11:15 +1000709xfs_trans_free_items(
710 struct xfs_trans *tp,
711 xfs_lsn_t commit_lsn,
712 int flags)
713{
714 struct xfs_log_item_desc *lidp, *next;
715
716 list_for_each_entry_safe(lidp, next, &tp->t_items, lid_trans) {
717 struct xfs_log_item *lip = lidp->lid_item;
718
719 lip->li_desc = NULL;
720
721 if (commit_lsn != NULLCOMMITLSN)
Dave Chinner904c17e2013-08-28 21:12:03 +1000722 lip->li_ops->iop_committing(lip, commit_lsn);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000723 if (flags & XFS_TRANS_ABORT)
724 lip->li_flags |= XFS_LI_ABORTED;
Dave Chinner904c17e2013-08-28 21:12:03 +1000725 lip->li_ops->iop_unlock(lip);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000726
727 xfs_trans_free_item_desc(lidp);
728 }
729}
730
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100731static inline void
732xfs_log_item_batch_insert(
733 struct xfs_ail *ailp,
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000734 struct xfs_ail_cursor *cur,
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100735 struct xfs_log_item **log_items,
736 int nr_items,
737 xfs_lsn_t commit_lsn)
738{
739 int i;
740
741 spin_lock(&ailp->xa_lock);
742 /* xfs_trans_ail_update_bulk drops ailp->xa_lock */
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000743 xfs_trans_ail_update_bulk(ailp, cur, log_items, nr_items, commit_lsn);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100744
Dave Chinner904c17e2013-08-28 21:12:03 +1000745 for (i = 0; i < nr_items; i++) {
746 struct xfs_log_item *lip = log_items[i];
747
748 lip->li_ops->iop_unpin(lip, 0);
749 }
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100750}
751
752/*
753 * Bulk operation version of xfs_trans_committed that takes a log vector of
754 * items to insert into the AIL. This uses bulk AIL insertion techniques to
755 * minimise lock traffic.
Dave Chinnere34a3142011-01-27 12:13:35 +1100756 *
757 * If we are called with the aborted flag set, it is because a log write during
758 * a CIL checkpoint commit has failed. In this case, all the items in the
Dave Chinner904c17e2013-08-28 21:12:03 +1000759 * checkpoint have already gone through iop_commited and iop_unlock, which
Dave Chinnere34a3142011-01-27 12:13:35 +1100760 * means that checkpoint commit abort handling is treated exactly the same
761 * as an iclog write error even though we haven't started any IO yet. Hence in
Dave Chinner904c17e2013-08-28 21:12:03 +1000762 * this case all we need to do is iop_committed processing, followed by an
763 * iop_unpin(aborted) call.
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000764 *
765 * The AIL cursor is used to optimise the insert process. If commit_lsn is not
766 * at the end of the AIL, the insert cursor avoids the need to walk
767 * the AIL to find the insertion point on every xfs_log_item_batch_insert()
768 * call. This saves a lot of needless list walking and is a net win, even
769 * though it slightly increases that amount of AIL lock traffic to set it up
770 * and tear it down.
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100771 */
772void
773xfs_trans_committed_bulk(
774 struct xfs_ail *ailp,
775 struct xfs_log_vec *log_vector,
776 xfs_lsn_t commit_lsn,
777 int aborted)
778{
779#define LOG_ITEM_BATCH_SIZE 32
780 struct xfs_log_item *log_items[LOG_ITEM_BATCH_SIZE];
781 struct xfs_log_vec *lv;
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000782 struct xfs_ail_cursor cur;
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100783 int i = 0;
784
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000785 spin_lock(&ailp->xa_lock);
786 xfs_trans_ail_cursor_last(ailp, &cur, commit_lsn);
787 spin_unlock(&ailp->xa_lock);
788
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100789 /* unpin all the log items */
790 for (lv = log_vector; lv; lv = lv->lv_next ) {
791 struct xfs_log_item *lip = lv->lv_item;
792 xfs_lsn_t item_lsn;
793
794 if (aborted)
795 lip->li_flags |= XFS_LI_ABORTED;
Dave Chinner904c17e2013-08-28 21:12:03 +1000796 item_lsn = lip->li_ops->iop_committed(lip, commit_lsn);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100797
Dave Chinner1316d4d2011-07-04 05:27:36 +0000798 /* item_lsn of -1 means the item needs no further processing */
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100799 if (XFS_LSN_CMP(item_lsn, (xfs_lsn_t)-1) == 0)
800 continue;
801
Dave Chinnere34a3142011-01-27 12:13:35 +1100802 /*
803 * if we are aborting the operation, no point in inserting the
804 * object into the AIL as we are in a shutdown situation.
805 */
806 if (aborted) {
807 ASSERT(XFS_FORCED_SHUTDOWN(ailp->xa_mount));
Dave Chinner904c17e2013-08-28 21:12:03 +1000808 lip->li_ops->iop_unpin(lip, 1);
Dave Chinnere34a3142011-01-27 12:13:35 +1100809 continue;
810 }
811
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100812 if (item_lsn != commit_lsn) {
813
814 /*
815 * Not a bulk update option due to unusual item_lsn.
816 * Push into AIL immediately, rechecking the lsn once
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000817 * we have the ail lock. Then unpin the item. This does
818 * not affect the AIL cursor the bulk insert path is
819 * using.
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100820 */
821 spin_lock(&ailp->xa_lock);
822 if (XFS_LSN_CMP(item_lsn, lip->li_lsn) > 0)
823 xfs_trans_ail_update(ailp, lip, item_lsn);
824 else
825 spin_unlock(&ailp->xa_lock);
Dave Chinner904c17e2013-08-28 21:12:03 +1000826 lip->li_ops->iop_unpin(lip, 0);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100827 continue;
828 }
829
830 /* Item is a candidate for bulk AIL insert. */
831 log_items[i++] = lv->lv_item;
832 if (i >= LOG_ITEM_BATCH_SIZE) {
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000833 xfs_log_item_batch_insert(ailp, &cur, log_items,
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100834 LOG_ITEM_BATCH_SIZE, commit_lsn);
835 i = 0;
836 }
837 }
838
839 /* make sure we insert the remainder! */
840 if (i)
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000841 xfs_log_item_batch_insert(ailp, &cur, log_items, i, commit_lsn);
842
843 spin_lock(&ailp->xa_lock);
844 xfs_trans_ail_cursor_done(ailp, &cur);
845 spin_unlock(&ailp->xa_lock);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100846}
847
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100848/*
Christoph Hellwigb1037052011-09-19 14:55:51 +0000849 * Commit the given transaction to the log.
Dave Chinner09243782010-03-08 11:28:28 +1100850 *
851 * XFS disk error handling mechanism is not based on a typical
852 * transaction abort mechanism. Logically after the filesystem
853 * gets marked 'SHUTDOWN', we can't let any new transactions
854 * be durable - ie. committed to disk - because some metadata might
855 * be inconsistent. In such cases, this returns an error, and the
856 * caller may assume that all locked objects joined to the transaction
857 * have already been unlocked as if the commit had succeeded.
858 * Do not reference the transaction structure after this call.
859 */
Dave Chinner09243782010-03-08 11:28:28 +1100860int
Christoph Hellwigb1037052011-09-19 14:55:51 +0000861xfs_trans_commit(
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100862 struct xfs_trans *tp,
Christoph Hellwigb1037052011-09-19 14:55:51 +0000863 uint flags)
Dave Chinner09243782010-03-08 11:28:28 +1100864{
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100865 struct xfs_mount *mp = tp->t_mountp;
Dave Chinner09243782010-03-08 11:28:28 +1100866 xfs_lsn_t commit_lsn = -1;
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100867 int error = 0;
Dave Chinner09243782010-03-08 11:28:28 +1100868 int log_flags = 0;
869 int sync = tp->t_flags & XFS_TRANS_SYNC;
Dave Chinner09243782010-03-08 11:28:28 +1100870
871 /*
872 * Determine whether this commit is releasing a permanent
873 * log reservation or not.
874 */
875 if (flags & XFS_TRANS_RELEASE_LOG_RES) {
876 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
877 log_flags = XFS_LOG_REL_PERM_RESERV;
878 }
879
880 /*
881 * If there is nothing to be logged by the transaction,
882 * then unlock all of the items associated with the
883 * transaction and free the transaction structure.
884 * Also make sure to return any reserved blocks to
885 * the free pool.
886 */
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100887 if (!(tp->t_flags & XFS_TRANS_DIRTY))
888 goto out_unreserve;
889
890 if (XFS_FORCED_SHUTDOWN(mp)) {
891 error = XFS_ERROR(EIO);
892 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +1100893 }
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100894
Dave Chinner09243782010-03-08 11:28:28 +1100895 ASSERT(tp->t_ticket != NULL);
896
897 /*
898 * If we need to update the superblock, then do it now.
899 */
900 if (tp->t_flags & XFS_TRANS_SB_DIRTY)
901 xfs_trans_apply_sb_deltas(tp);
902 xfs_trans_apply_dquot_deltas(tp);
903
Christoph Hellwig0244b962011-12-06 21:58:08 +0000904 error = xfs_log_commit_cil(mp, tp, &commit_lsn, flags);
Dave Chinner09243782010-03-08 11:28:28 +1100905 if (error == ENOMEM) {
906 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100907 error = XFS_ERROR(EIO);
908 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +1100909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Christoph Hellwig0244b962011-12-06 21:58:08 +0000911 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
912 xfs_trans_free(tp);
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /*
915 * If the transaction needs to be synchronous, then force the
916 * log out now and wait for it.
917 */
918 if (sync) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100919 if (!error) {
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000920 error = _xfs_log_force_lsn(mp, commit_lsn,
Christoph Hellwigb1037052011-09-19 14:55:51 +0000921 XFS_LOG_SYNC, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 XFS_STATS_INC(xs_trans_sync);
924 } else {
925 XFS_STATS_INC(xs_trans_async);
926 }
927
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100928 return error;
929
930out_unreserve:
931 xfs_trans_unreserve_and_mod_sb(tp);
932
933 /*
934 * It is indeed possible for the transaction to be not dirty but
935 * the dqinfo portion to be. All that means is that we have some
936 * (non-persistent) quota reservations that need to be unreserved.
937 */
938 xfs_trans_unreserve_and_mod_dquots(tp);
939 if (tp->t_ticket) {
940 commit_lsn = xfs_log_done(mp, tp->t_ticket, NULL, log_flags);
941 if (commit_lsn == -1 && !error)
942 error = XFS_ERROR(EIO);
943 }
944 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Dave Chinner71e330b2010-05-21 14:37:18 +1000945 xfs_trans_free_items(tp, NULLCOMMITLSN, error ? XFS_TRANS_ABORT : 0);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100946 xfs_trans_free(tp);
947
948 XFS_STATS_INC(xs_trans_empty);
949 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 * Unlock all of the transaction's items and free the transaction.
954 * The transaction must not have modified any of its items, because
955 * there is no way to restore them to their previous state.
956 *
957 * If the transaction has made a log reservation, make sure to release
958 * it as well.
959 */
960void
961xfs_trans_cancel(
962 xfs_trans_t *tp,
963 int flags)
964{
965 int log_flags;
Ryan Hankins0733af22006-01-11 15:36:44 +1100966 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 /*
969 * See if the caller is being too lazy to figure out if
970 * the transaction really needs an abort.
971 */
972 if ((flags & XFS_TRANS_ABORT) && !(tp->t_flags & XFS_TRANS_DIRTY))
973 flags &= ~XFS_TRANS_ABORT;
974 /*
975 * See if the caller is relying on us to shut down the
976 * filesystem. This happens in paths where we detect
977 * corruption and decide to give up.
978 */
Nathan Scott60a204f2006-01-11 15:37:00 +1100979 if ((tp->t_flags & XFS_TRANS_DIRTY) && !XFS_FORCED_SHUTDOWN(mp)) {
Ryan Hankins0733af22006-01-11 15:36:44 +1100980 XFS_ERROR_REPORT("xfs_trans_cancel", XFS_ERRLEVEL_LOW, mp);
Nathan Scott7d04a332006-06-09 14:58:38 +1000981 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Nathan Scott60a204f2006-01-11 15:37:00 +1100982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983#ifdef DEBUG
Christoph Hellwige98c4142010-06-23 18:11:15 +1000984 if (!(flags & XFS_TRANS_ABORT) && !XFS_FORCED_SHUTDOWN(mp)) {
985 struct xfs_log_item_desc *lidp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Christoph Hellwige98c4142010-06-23 18:11:15 +1000987 list_for_each_entry(lidp, &tp->t_items, lid_trans)
988 ASSERT(!(lidp->lid_item->li_type == XFS_LI_EFD));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990#endif
991 xfs_trans_unreserve_and_mod_sb(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200992 xfs_trans_unreserve_and_mod_dquots(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if (tp->t_ticket) {
995 if (flags & XFS_TRANS_RELEASE_LOG_RES) {
996 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
997 log_flags = XFS_LOG_REL_PERM_RESERV;
998 } else {
999 log_flags = 0;
1000 }
Ryan Hankins0733af22006-01-11 15:36:44 +11001001 xfs_log_done(mp, tp->t_ticket, NULL, log_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003
1004 /* mark this thread as no longer being in a transaction */
Nathan Scott59c1b082006-06-09 14:59:13 +10001005 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Dave Chinner71e330b2010-05-21 14:37:18 +10001007 xfs_trans_free_items(tp, NULLCOMMITLSN, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 xfs_trans_free(tp);
1009}
1010
Niv Sardi322ff6b2008-08-13 16:05:49 +10001011/*
1012 * Roll from one trans in the sequence of PERMANENT transactions to
1013 * the next: permanent transactions are only flushed out when
1014 * committed with XFS_TRANS_RELEASE_LOG_RES, but we still want as soon
1015 * as possible to let chunks of it go to the log. So we commit the
1016 * chunk we've been working on and get a new transaction to continue.
1017 */
1018int
1019xfs_trans_roll(
1020 struct xfs_trans **tpp,
1021 struct xfs_inode *dp)
1022{
1023 struct xfs_trans *trans;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001024 struct xfs_trans_res tres;
Niv Sardi322ff6b2008-08-13 16:05:49 +10001025 int error;
1026
1027 /*
1028 * Ensure that the inode is always logged.
1029 */
1030 trans = *tpp;
1031 xfs_trans_log_inode(trans, dp, XFS_ILOG_CORE);
1032
1033 /*
1034 * Copy the critical parameters from one trans to the next.
1035 */
Jie Liu3d3c8b52013-08-12 20:49:59 +10001036 tres.tr_logres = trans->t_log_res;
1037 tres.tr_logcount = trans->t_log_count;
Niv Sardi322ff6b2008-08-13 16:05:49 +10001038 *tpp = xfs_trans_dup(trans);
1039
1040 /*
1041 * Commit the current transaction.
1042 * If this commit failed, then it'd just unlock those items that
1043 * are not marked ihold. That also means that a filesystem shutdown
1044 * is in progress. The caller takes the responsibility to cancel
1045 * the duplicate transaction that gets returned.
1046 */
1047 error = xfs_trans_commit(trans, 0);
1048 if (error)
1049 return (error);
1050
1051 trans = *tpp;
1052
1053 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001054 * transaction commit worked ok so we can drop the extra ticket
1055 * reference that we gained in xfs_trans_dup()
1056 */
1057 xfs_log_ticket_put(trans->t_ticket);
1058
1059
1060 /*
Niv Sardi322ff6b2008-08-13 16:05:49 +10001061 * Reserve space in the log for th next transaction.
1062 * This also pushes items in the "AIL", the list of logged items,
1063 * out to disk if they are taking up space at the tail of the log
1064 * that we want to use. This requires that either nothing be locked
1065 * across this call, or that anything that is locked be logged in
1066 * the prior and the next transactions.
1067 */
Jie Liu3d3c8b52013-08-12 20:49:59 +10001068 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
1069 error = xfs_trans_reserve(trans, &tres, 0, 0);
Niv Sardi322ff6b2008-08-13 16:05:49 +10001070 /*
1071 * Ensure that the inode is in the new transaction and locked.
1072 */
1073 if (error)
1074 return error;
1075
Christoph Hellwigddc34152011-09-19 15:00:54 +00001076 xfs_trans_ijoin(trans, dp, 0);
Niv Sardi322ff6b2008-08-13 16:05:49 +10001077 return 0;
1078}