blob: 86f92df32c428c857892c9b99a13f65f6f44e87b [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 Chinner70a98832013-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_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_inode.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000027#include "xfs_extent_busy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_quota.h"
Dave Chinner239880e2013-10-23 10:50:10 +110029#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_trans_priv.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_log.h"
Dave Chinnered3b4d62010-05-21 12:07:08 +100032#include "xfs_trace.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Nathan Scott8f794052006-03-14 13:32:41 +110035kmem_zone_t *xfs_trans_zone;
Christoph Hellwige98c4142010-06-23 18:11:15 +100036kmem_zone_t *xfs_log_item_desc_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Darrick J. Wongb872af22018-01-08 10:51:26 -080038#if defined(CONFIG_TRACEPOINTS)
39static void
40xfs_trans_trace_reservations(
41 struct xfs_mount *mp)
42{
43 struct xfs_trans_res resv;
44 struct xfs_trans_res *res;
45 struct xfs_trans_res *end_res;
46 int i;
47
48 res = (struct xfs_trans_res *)M_RES(mp);
49 end_res = (struct xfs_trans_res *)(M_RES(mp) + 1);
50 for (i = 0; res < end_res; i++, res++)
51 trace_xfs_trans_resv_calc(mp, i, res);
52 xfs_log_get_max_trans_res(mp, &resv);
53 trace_xfs_trans_resv_calc(mp, -1, &resv);
54}
55#else
56# define xfs_trans_trace_reservations(mp)
57#endif
58
Jeff Liu4f3b5782013-01-28 21:25:35 +080059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * Initialize the precomputed transaction reservation values
61 * in the mount structure.
62 */
63void
64xfs_trans_init(
Christoph Hellwig025101d2010-05-04 13:53:48 +000065 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Jie Liu3d3c8b52013-08-12 20:49:59 +100067 xfs_trans_resv_calc(mp, M_RES(mp));
Darrick J. Wongb872af22018-01-08 10:51:26 -080068 xfs_trans_trace_reservations(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71/*
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +110072 * Free the transaction structure. If there is more clean up
73 * to do when the structure is freed, add it here.
74 */
75STATIC void
76xfs_trans_free(
Dave Chinnered3b4d62010-05-21 12:07:08 +100077 struct xfs_trans *tp)
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +110078{
Dave Chinner4ecbfe62012-04-29 10:41:10 +000079 xfs_extent_busy_sort(&tp->t_busy);
80 xfs_extent_busy_clear(tp->t_mountp, &tp->t_busy, false);
Dave Chinnered3b4d62010-05-21 12:07:08 +100081
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +110082 atomic_dec(&tp->t_mountp->m_active_trans);
Christoph Hellwig253f4912016-04-06 09:19:55 +100083 if (!(tp->t_flags & XFS_TRANS_NO_WRITECOUNT))
Jan Karad9457dc2012-06-12 16:20:39 +020084 sb_end_intwrite(tp->t_mountp->m_super);
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +110085 xfs_trans_free_dqinfo(tp);
86 kmem_zone_free(xfs_trans_zone, tp);
87}
88
89/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * This is called to create a new transaction which will share the
91 * permanent log reservation of the given transaction. The remaining
92 * unused block and rt extent reservations are also inherited. This
93 * implies that the original transaction is no longer allowed to allocate
94 * blocks. Locks and log items, however, are no inherited. They must
95 * be added to the new transaction explicitly.
96 */
Christoph Hellwig2e6db6c2015-06-04 13:47:29 +100097STATIC xfs_trans_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -070098xfs_trans_dup(
99 xfs_trans_t *tp)
100{
101 xfs_trans_t *ntp;
102
103 ntp = kmem_zone_zalloc(xfs_trans_zone, KM_SLEEP);
104
105 /*
106 * Initialize the new transaction structure.
107 */
Dave Chinner2a3c0ac2013-08-12 20:49:28 +1000108 ntp->t_magic = XFS_TRANS_HEADER_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ntp->t_mountp = tp->t_mountp;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000110 INIT_LIST_HEAD(&ntp->t_items);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000111 INIT_LIST_HEAD(&ntp->t_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 ASSERT(tp->t_ticket != NULL);
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100115
Jan Karad9457dc2012-06-12 16:20:39 +0200116 ntp->t_flags = XFS_TRANS_PERM_LOG_RES |
117 (tp->t_flags & XFS_TRANS_RESERVE) |
Christoph Hellwig253f4912016-04-06 09:19:55 +1000118 (tp->t_flags & XFS_TRANS_NO_WRITECOUNT);
Jan Karad9457dc2012-06-12 16:20:39 +0200119 /* We gave our writer reference to the new transaction */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000120 tp->t_flags |= XFS_TRANS_NO_WRITECOUNT;
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100121 ntp->t_ticket = xfs_log_ticket_get(tp->t_ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 ntp->t_blk_res = tp->t_blk_res - tp->t_blk_res_used;
123 tp->t_blk_res = tp->t_blk_res_used;
124 ntp->t_rtx_res = tp->t_rtx_res - tp->t_rtx_res_used;
125 tp->t_rtx_res = tp->t_rtx_res_used;
Nathan Scott59c1b082006-06-09 14:59:13 +1000126 ntp->t_pflags = tp->t_pflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Christoph Hellwig7d095252009-06-08 15:33:32 +0200128 xfs_trans_dup_dqinfo(tp, ntp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 atomic_inc(&tp->t_mountp->m_active_trans);
131 return ntp;
132}
133
134/*
135 * This is called to reserve free disk blocks and log space for the
136 * given transaction. This must be done before allocating any resources
137 * within the transaction.
138 *
139 * This will return ENOSPC if there are not enough blocks available.
140 * It will sleep waiting for available log space.
141 * The only valid value for the flags parameter is XFS_RES_LOG_PERM, which
142 * is used by long running transactions. If any one of the reservations
143 * fails then they will all be backed out.
144 *
145 * This does not do quota reservations. That typically is done by the
146 * caller afterwards.
147 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000148static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149xfs_trans_reserve(
Jie Liu3d3c8b52013-08-12 20:49:59 +1000150 struct xfs_trans *tp,
151 struct xfs_trans_res *resp,
152 uint blocks,
153 uint rtextents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Nathan Scott59c1b082006-06-09 14:59:13 +1000155 int error = 0;
Dave Chinner0d485ad2015-02-23 21:22:03 +1100156 bool rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* Mark this thread as being in a transaction */
Michal Hocko90707332017-05-03 14:53:12 -0700159 current_set_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /*
162 * Attempt to reserve the needed disk blocks by decrementing
163 * the number needed from the number available. This will
164 * fail if the count would go below zero.
165 */
166 if (blocks > 0) {
Dave Chinner0d485ad2015-02-23 21:22:03 +1100167 error = xfs_mod_fdblocks(tp->t_mountp, -((int64_t)blocks), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (error != 0) {
Michal Hocko90707332017-05-03 14:53:12 -0700169 current_restore_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Dave Chinner24513372014-06-25 14:58:08 +1000170 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172 tp->t_blk_res += blocks;
173 }
174
175 /*
176 * Reserve the log space needed for this transaction.
177 */
Jie Liu3d3c8b52013-08-12 20:49:59 +1000178 if (resp->tr_logres > 0) {
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000179 bool permanent = false;
180
Jie Liu3d3c8b52013-08-12 20:49:59 +1000181 ASSERT(tp->t_log_res == 0 ||
182 tp->t_log_res == resp->tr_logres);
183 ASSERT(tp->t_log_count == 0 ||
184 tp->t_log_count == resp->tr_logcount);
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000185
Jie Liu3d3c8b52013-08-12 20:49:59 +1000186 if (resp->tr_logflags & XFS_TRANS_PERM_LOG_RES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 tp->t_flags |= XFS_TRANS_PERM_LOG_RES;
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000188 permanent = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 } else {
190 ASSERT(tp->t_ticket == NULL);
191 ASSERT(!(tp->t_flags & XFS_TRANS_PERM_LOG_RES));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000194 if (tp->t_ticket != NULL) {
Jie Liu3d3c8b52013-08-12 20:49:59 +1000195 ASSERT(resp->tr_logflags & XFS_TRANS_PERM_LOG_RES);
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000196 error = xfs_log_regrant(tp->t_mountp, tp->t_ticket);
197 } else {
Jie Liu3d3c8b52013-08-12 20:49:59 +1000198 error = xfs_log_reserve(tp->t_mountp,
199 resp->tr_logres,
200 resp->tr_logcount,
201 &tp->t_ticket, XFS_TRANSACTION,
Christoph Hellwig710b1e22016-04-06 09:20:36 +1000202 permanent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000204
205 if (error)
206 goto undo_blocks;
207
Jie Liu3d3c8b52013-08-12 20:49:59 +1000208 tp->t_log_res = resp->tr_logres;
209 tp->t_log_count = resp->tr_logcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
212 /*
213 * Attempt to reserve the needed realtime extents by decrementing
214 * the number needed from the number available. This will
215 * fail if the count would go below zero.
216 */
217 if (rtextents > 0) {
Dave Chinnerbab98bb2015-02-23 21:22:54 +1100218 error = xfs_mod_frextents(tp->t_mountp, -((int64_t)rtextents));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +1000220 error = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 goto undo_log;
222 }
223 tp->t_rtx_res += rtextents;
224 }
225
226 return 0;
227
228 /*
229 * Error cases jump to one of these labels to undo any
230 * reservations which have already been performed.
231 */
232undo_log:
Jie Liu3d3c8b52013-08-12 20:49:59 +1000233 if (resp->tr_logres > 0) {
Christoph Hellwigf78c3902015-06-04 13:48:20 +1000234 xfs_log_done(tp->t_mountp, tp->t_ticket, NULL, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 tp->t_ticket = NULL;
236 tp->t_log_res = 0;
237 tp->t_flags &= ~XFS_TRANS_PERM_LOG_RES;
238 }
239
240undo_blocks:
241 if (blocks > 0) {
Eryu Guana27f6ef2016-09-14 07:39:07 +1000242 xfs_mod_fdblocks(tp->t_mountp, (int64_t)blocks, rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 tp->t_blk_res = 0;
244 }
245
Michal Hocko90707332017-05-03 14:53:12 -0700246 current_restore_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Nathan Scott59c1b082006-06-09 14:59:13 +1000248 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Christoph Hellwig253f4912016-04-06 09:19:55 +1000251int
252xfs_trans_alloc(
253 struct xfs_mount *mp,
254 struct xfs_trans_res *resp,
255 uint blocks,
256 uint rtextents,
257 uint flags,
258 struct xfs_trans **tpp)
259{
260 struct xfs_trans *tp;
261 int error;
262
263 if (!(flags & XFS_TRANS_NO_WRITECOUNT))
264 sb_start_intwrite(mp->m_super);
265
266 WARN_ON(mp->m_super->s_writers.frozen == SB_FREEZE_COMPLETE);
267 atomic_inc(&mp->m_active_trans);
268
269 tp = kmem_zone_zalloc(xfs_trans_zone,
270 (flags & XFS_TRANS_NOFS) ? KM_NOFS : KM_SLEEP);
271 tp->t_magic = XFS_TRANS_HEADER_MAGIC;
272 tp->t_flags = flags;
273 tp->t_mountp = mp;
274 INIT_LIST_HEAD(&tp->t_items);
275 INIT_LIST_HEAD(&tp->t_busy);
276
277 error = xfs_trans_reserve(tp, resp, blocks, rtextents);
278 if (error) {
279 xfs_trans_cancel(tp);
280 return error;
281 }
282
283 *tpp = tp;
284 return 0;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/*
Darrick J. Wonge89c0412017-03-28 14:56:37 -0700288 * Create an empty transaction with no reservation. This is a defensive
289 * mechanism for routines that query metadata without actually modifying
290 * them -- if the metadata being queried is somehow cross-linked (think a
291 * btree block pointer that points higher in the tree), we risk deadlock.
292 * However, blocks grabbed as part of a transaction can be re-grabbed.
293 * The verifiers will notice the corrupt block and the operation will fail
294 * back to userspace without deadlocking.
295 *
296 * Note the zero-length reservation; this transaction MUST be cancelled
297 * without any dirty data.
298 */
299int
300xfs_trans_alloc_empty(
301 struct xfs_mount *mp,
302 struct xfs_trans **tpp)
303{
304 struct xfs_trans_res resv = {0};
305
306 return xfs_trans_alloc(mp, &resv, 0, 0, XFS_TRANS_NO_WRITECOUNT, tpp);
307}
308
309/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * Record the indicated change to the given field for application
311 * to the file system's superblock when the transaction commits.
312 * For now, just store the change in the transaction structure.
313 *
314 * Mark the transaction structure to indicate that the superblock
315 * needs to be updated before committing.
David Chinner92821e22007-05-24 15:26:31 +1000316 *
317 * Because we may not be keeping track of allocated/free inodes and
318 * used filesystem blocks in the superblock, we do not mark the
319 * superblock dirty in this transaction if we modify these fields.
320 * We still need to update the transaction deltas so that they get
321 * applied to the incore superblock, but we don't want them to
322 * cause the superblock to get locked and logged if these are the
323 * only fields in the superblock that the transaction modifies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 */
325void
326xfs_trans_mod_sb(
327 xfs_trans_t *tp,
328 uint field,
David Chinner20f4ebf2007-02-10 18:36:10 +1100329 int64_t delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
David Chinner92821e22007-05-24 15:26:31 +1000331 uint32_t flags = (XFS_TRANS_DIRTY|XFS_TRANS_SB_DIRTY);
332 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 switch (field) {
335 case XFS_TRANS_SB_ICOUNT:
336 tp->t_icount_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000337 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
338 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
340 case XFS_TRANS_SB_IFREE:
341 tp->t_ifree_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000342 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
343 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
345 case XFS_TRANS_SB_FDBLOCKS:
346 /*
347 * Track the number of blocks allocated in the
348 * transaction. Make sure it does not exceed the
349 * number reserved.
350 */
351 if (delta < 0) {
352 tp->t_blk_res_used += (uint)-delta;
353 ASSERT(tp->t_blk_res_used <= tp->t_blk_res);
354 }
355 tp->t_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000356 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
357 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 break;
359 case XFS_TRANS_SB_RES_FDBLOCKS:
360 /*
361 * The allocation has already been applied to the
362 * in-core superblock's counter. This should only
363 * be applied to the on-disk superblock.
364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 tp->t_res_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000366 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
367 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 break;
369 case XFS_TRANS_SB_FREXTENTS:
370 /*
371 * Track the number of blocks allocated in the
372 * transaction. Make sure it does not exceed the
373 * number reserved.
374 */
375 if (delta < 0) {
376 tp->t_rtx_res_used += (uint)-delta;
377 ASSERT(tp->t_rtx_res_used <= tp->t_rtx_res);
378 }
379 tp->t_frextents_delta += delta;
380 break;
381 case XFS_TRANS_SB_RES_FREXTENTS:
382 /*
383 * The allocation has already been applied to the
Nathan Scottc41564b2006-03-29 08:55:14 +1000384 * in-core superblock's counter. This should only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * be applied to the on-disk superblock.
386 */
387 ASSERT(delta < 0);
388 tp->t_res_frextents_delta += delta;
389 break;
390 case XFS_TRANS_SB_DBLOCKS:
391 ASSERT(delta > 0);
392 tp->t_dblocks_delta += delta;
393 break;
394 case XFS_TRANS_SB_AGCOUNT:
395 ASSERT(delta > 0);
396 tp->t_agcount_delta += delta;
397 break;
398 case XFS_TRANS_SB_IMAXPCT:
399 tp->t_imaxpct_delta += delta;
400 break;
401 case XFS_TRANS_SB_REXTSIZE:
402 tp->t_rextsize_delta += delta;
403 break;
404 case XFS_TRANS_SB_RBMBLOCKS:
405 tp->t_rbmblocks_delta += delta;
406 break;
407 case XFS_TRANS_SB_RBLOCKS:
408 tp->t_rblocks_delta += delta;
409 break;
410 case XFS_TRANS_SB_REXTENTS:
411 tp->t_rextents_delta += delta;
412 break;
413 case XFS_TRANS_SB_REXTSLOG:
414 tp->t_rextslog_delta += delta;
415 break;
416 default:
417 ASSERT(0);
418 return;
419 }
420
David Chinner210c6f12007-05-24 15:26:51 +1000421 tp->t_flags |= flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424/*
425 * xfs_trans_apply_sb_deltas() is called from the commit code
426 * to bring the superblock buffer into the current transaction
427 * and modify it as requested by earlier calls to xfs_trans_mod_sb().
428 *
429 * For now we just look at each field allowed to change and change
430 * it if necessary.
431 */
432STATIC void
433xfs_trans_apply_sb_deltas(
434 xfs_trans_t *tp)
435{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000436 xfs_dsb_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 xfs_buf_t *bp;
438 int whole = 0;
439
440 bp = xfs_trans_getsb(tp, tp->t_mountp, 0);
441 sbp = XFS_BUF_TO_SBP(bp);
442
443 /*
444 * Check that superblock mods match the mods made to AGF counters.
445 */
446 ASSERT((tp->t_fdblocks_delta + tp->t_res_fdblocks_delta) ==
447 (tp->t_ag_freeblks_delta + tp->t_ag_flist_delta +
448 tp->t_ag_btree_delta));
449
David Chinner92821e22007-05-24 15:26:31 +1000450 /*
451 * Only update the superblock counters if we are logging them
452 */
453 if (!xfs_sb_version_haslazysbcount(&(tp->t_mountp->m_sb))) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000454 if (tp->t_icount_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800455 be64_add_cpu(&sbp->sb_icount, tp->t_icount_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000456 if (tp->t_ifree_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800457 be64_add_cpu(&sbp->sb_ifree, tp->t_ifree_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000458 if (tp->t_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800459 be64_add_cpu(&sbp->sb_fdblocks, tp->t_fdblocks_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000460 if (tp->t_res_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800461 be64_add_cpu(&sbp->sb_fdblocks, tp->t_res_fdblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000464 if (tp->t_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800465 be64_add_cpu(&sbp->sb_frextents, tp->t_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000466 if (tp->t_res_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800467 be64_add_cpu(&sbp->sb_frextents, tp->t_res_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000468
469 if (tp->t_dblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800470 be64_add_cpu(&sbp->sb_dblocks, tp->t_dblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 whole = 1;
472 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000473 if (tp->t_agcount_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800474 be32_add_cpu(&sbp->sb_agcount, tp->t_agcount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 whole = 1;
476 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000477 if (tp->t_imaxpct_delta) {
478 sbp->sb_imax_pct += tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 whole = 1;
480 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000481 if (tp->t_rextsize_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800482 be32_add_cpu(&sbp->sb_rextsize, tp->t_rextsize_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 whole = 1;
484 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000485 if (tp->t_rbmblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800486 be32_add_cpu(&sbp->sb_rbmblocks, tp->t_rbmblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 whole = 1;
488 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000489 if (tp->t_rblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800490 be64_add_cpu(&sbp->sb_rblocks, tp->t_rblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 whole = 1;
492 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000493 if (tp->t_rextents_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800494 be64_add_cpu(&sbp->sb_rextents, tp->t_rextents_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 whole = 1;
496 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000497 if (tp->t_rextslog_delta) {
498 sbp->sb_rextslog += tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 whole = 1;
500 }
501
Dave Chinner3443a3b2015-01-22 09:30:23 +1100502 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_SB_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (whole)
504 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000505 * Log the whole thing, the fields are noncontiguous.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000507 xfs_trans_log_buf(tp, bp, 0, sizeof(xfs_dsb_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 else
509 /*
510 * Since all the modifiable fields are contiguous, we
511 * can get away with this.
512 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000513 xfs_trans_log_buf(tp, bp, offsetof(xfs_dsb_t, sb_icount),
514 offsetof(xfs_dsb_t, sb_frextents) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 sizeof(sbp->sb_frextents) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100518STATIC int
519xfs_sb_mod8(
520 uint8_t *field,
521 int8_t delta)
522{
523 int8_t counter = *field;
524
525 counter += delta;
526 if (counter < 0) {
527 ASSERT(0);
528 return -EINVAL;
529 }
530 *field = counter;
531 return 0;
532}
533
534STATIC int
535xfs_sb_mod32(
536 uint32_t *field,
537 int32_t delta)
538{
539 int32_t counter = *field;
540
541 counter += delta;
542 if (counter < 0) {
543 ASSERT(0);
544 return -EINVAL;
545 }
546 *field = counter;
547 return 0;
548}
549
550STATIC int
551xfs_sb_mod64(
552 uint64_t *field,
553 int64_t delta)
554{
555 int64_t counter = *field;
556
557 counter += delta;
558 if (counter < 0) {
559 ASSERT(0);
560 return -EINVAL;
561 }
562 *field = counter;
563 return 0;
564}
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566/*
David Chinner45c34142007-06-18 16:49:44 +1000567 * xfs_trans_unreserve_and_mod_sb() is called to release unused reservations
568 * and apply superblock counter changes to the in-core superblock. The
569 * t_res_fdblocks_delta and t_res_frextents_delta fields are explicitly NOT
570 * applied to the in-core superblock. The idea is that that has already been
571 * done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 *
David Chinner45c34142007-06-18 16:49:44 +1000573 * If we are not logging superblock counters, then the inode allocated/free and
574 * used block counts are not updated in the on disk superblock. In this case,
575 * XFS_TRANS_SB_DIRTY will not be set when the transaction is updated but we
576 * still need to update the incore superblock with the changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
Dave Chinner71e330b2010-05-21 14:37:18 +1000578void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579xfs_trans_unreserve_and_mod_sb(
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100580 struct xfs_trans *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100582 struct xfs_mount *mp = tp->t_mountp;
583 bool rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
584 int64_t blkdelta = 0;
585 int64_t rtxdelta = 0;
586 int64_t idelta = 0;
587 int64_t ifreedelta = 0;
588 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Christoph Hellwig1b040712010-09-30 02:25:56 +0000590 /* calculate deltas */
David Chinner45c34142007-06-18 16:49:44 +1000591 if (tp->t_blk_res > 0)
592 blkdelta = tp->t_blk_res;
David Chinner45c34142007-06-18 16:49:44 +1000593 if ((tp->t_fdblocks_delta != 0) &&
594 (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
595 (tp->t_flags & XFS_TRANS_SB_DIRTY)))
596 blkdelta += tp->t_fdblocks_delta;
597
David Chinner45c34142007-06-18 16:49:44 +1000598 if (tp->t_rtx_res > 0)
599 rtxdelta = tp->t_rtx_res;
David Chinner45c34142007-06-18 16:49:44 +1000600 if ((tp->t_frextents_delta != 0) &&
601 (tp->t_flags & XFS_TRANS_SB_DIRTY))
602 rtxdelta += tp->t_frextents_delta;
603
Christoph Hellwig1b040712010-09-30 02:25:56 +0000604 if (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
605 (tp->t_flags & XFS_TRANS_SB_DIRTY)) {
606 idelta = tp->t_icount_delta;
607 ifreedelta = tp->t_ifree_delta;
608 }
609
610 /* apply the per-cpu counters */
611 if (blkdelta) {
Dave Chinner0d485ad2015-02-23 21:22:03 +1100612 error = xfs_mod_fdblocks(mp, blkdelta, rsvd);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000613 if (error)
614 goto out;
615 }
616
617 if (idelta) {
Dave Chinner501ab322015-02-23 21:19:28 +1100618 error = xfs_mod_icount(mp, idelta);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000619 if (error)
620 goto out_undo_fdblocks;
621 }
622
623 if (ifreedelta) {
Dave Chinnere88b64e2015-02-23 21:19:53 +1100624 error = xfs_mod_ifree(mp, ifreedelta);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000625 if (error)
626 goto out_undo_icount;
627 }
628
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100629 if (rtxdelta == 0 && !(tp->t_flags & XFS_TRANS_SB_DIRTY))
630 return;
631
Christoph Hellwig1b040712010-09-30 02:25:56 +0000632 /* apply remaining deltas */
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100633 spin_lock(&mp->m_sb_lock);
Dave Chinnerbab98bb2015-02-23 21:22:54 +1100634 if (rtxdelta) {
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100635 error = xfs_sb_mod64(&mp->m_sb.sb_frextents, rtxdelta);
Dave Chinnerbab98bb2015-02-23 21:22:54 +1100636 if (error)
637 goto out_undo_ifree;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100640 if (tp->t_dblocks_delta != 0) {
641 error = xfs_sb_mod64(&mp->m_sb.sb_dblocks, tp->t_dblocks_delta);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000642 if (error)
Dave Chinnerbab98bb2015-02-23 21:22:54 +1100643 goto out_undo_frextents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100645 if (tp->t_agcount_delta != 0) {
646 error = xfs_sb_mod32(&mp->m_sb.sb_agcount, tp->t_agcount_delta);
647 if (error)
648 goto out_undo_dblocks;
649 }
650 if (tp->t_imaxpct_delta != 0) {
651 error = xfs_sb_mod8(&mp->m_sb.sb_imax_pct, tp->t_imaxpct_delta);
652 if (error)
653 goto out_undo_agcount;
654 }
655 if (tp->t_rextsize_delta != 0) {
656 error = xfs_sb_mod32(&mp->m_sb.sb_rextsize,
657 tp->t_rextsize_delta);
658 if (error)
659 goto out_undo_imaxpct;
660 }
661 if (tp->t_rbmblocks_delta != 0) {
662 error = xfs_sb_mod32(&mp->m_sb.sb_rbmblocks,
663 tp->t_rbmblocks_delta);
664 if (error)
665 goto out_undo_rextsize;
666 }
667 if (tp->t_rblocks_delta != 0) {
668 error = xfs_sb_mod64(&mp->m_sb.sb_rblocks, tp->t_rblocks_delta);
669 if (error)
670 goto out_undo_rbmblocks;
671 }
672 if (tp->t_rextents_delta != 0) {
673 error = xfs_sb_mod64(&mp->m_sb.sb_rextents,
674 tp->t_rextents_delta);
675 if (error)
676 goto out_undo_rblocks;
677 }
678 if (tp->t_rextslog_delta != 0) {
679 error = xfs_sb_mod8(&mp->m_sb.sb_rextslog,
680 tp->t_rextslog_delta);
681 if (error)
682 goto out_undo_rextents;
683 }
684 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000685 return;
686
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100687out_undo_rextents:
688 if (tp->t_rextents_delta)
689 xfs_sb_mod64(&mp->m_sb.sb_rextents, -tp->t_rextents_delta);
690out_undo_rblocks:
691 if (tp->t_rblocks_delta)
692 xfs_sb_mod64(&mp->m_sb.sb_rblocks, -tp->t_rblocks_delta);
693out_undo_rbmblocks:
694 if (tp->t_rbmblocks_delta)
695 xfs_sb_mod32(&mp->m_sb.sb_rbmblocks, -tp->t_rbmblocks_delta);
696out_undo_rextsize:
697 if (tp->t_rextsize_delta)
698 xfs_sb_mod32(&mp->m_sb.sb_rextsize, -tp->t_rextsize_delta);
699out_undo_imaxpct:
700 if (tp->t_rextsize_delta)
701 xfs_sb_mod8(&mp->m_sb.sb_imax_pct, -tp->t_imaxpct_delta);
702out_undo_agcount:
703 if (tp->t_agcount_delta)
704 xfs_sb_mod32(&mp->m_sb.sb_agcount, -tp->t_agcount_delta);
705out_undo_dblocks:
706 if (tp->t_dblocks_delta)
707 xfs_sb_mod64(&mp->m_sb.sb_dblocks, -tp->t_dblocks_delta);
Dave Chinnerbab98bb2015-02-23 21:22:54 +1100708out_undo_frextents:
709 if (rtxdelta)
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100710 xfs_sb_mod64(&mp->m_sb.sb_frextents, -rtxdelta);
Dave Chinnerbab98bb2015-02-23 21:22:54 +1100711out_undo_ifree:
Dave Chinner0bd5dded2015-02-23 21:24:11 +1100712 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000713 if (ifreedelta)
Dave Chinnere88b64e2015-02-23 21:19:53 +1100714 xfs_mod_ifree(mp, -ifreedelta);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000715out_undo_icount:
716 if (idelta)
Dave Chinner501ab322015-02-23 21:19:28 +1100717 xfs_mod_icount(mp, -idelta);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000718out_undo_fdblocks:
719 if (blkdelta)
Dave Chinner0d485ad2015-02-23 21:22:03 +1100720 xfs_mod_fdblocks(mp, -blkdelta, rsvd);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000721out:
Jesper Juhl1884bd82010-12-25 20:14:53 +0000722 ASSERT(error == 0);
Christoph Hellwig1b040712010-09-30 02:25:56 +0000723 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Dave Chinner09243782010-03-08 11:28:28 +1100726/*
Christoph Hellwige98c4142010-06-23 18:11:15 +1000727 * Add the given log item to the transaction's list of log items.
728 *
729 * The log item will now point to its new descriptor with its li_desc field.
730 */
731void
732xfs_trans_add_item(
733 struct xfs_trans *tp,
734 struct xfs_log_item *lip)
735{
736 struct xfs_log_item_desc *lidp;
737
Jesper Juhlf65020a2012-02-13 20:51:05 +0000738 ASSERT(lip->li_mountp == tp->t_mountp);
739 ASSERT(lip->li_ailp == tp->t_mountp->m_ail);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000740
Dave Chinner43869702010-07-20 17:53:44 +1000741 lidp = kmem_zone_zalloc(xfs_log_item_desc_zone, KM_SLEEP | KM_NOFS);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000742
743 lidp->lid_item = lip;
744 lidp->lid_flags = 0;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000745 list_add_tail(&lidp->lid_trans, &tp->t_items);
746
747 lip->li_desc = lidp;
748}
749
750STATIC void
751xfs_trans_free_item_desc(
752 struct xfs_log_item_desc *lidp)
753{
754 list_del_init(&lidp->lid_trans);
755 kmem_zone_free(xfs_log_item_desc_zone, lidp);
756}
757
758/*
759 * Unlink and free the given descriptor.
760 */
761void
762xfs_trans_del_item(
763 struct xfs_log_item *lip)
764{
765 xfs_trans_free_item_desc(lip->li_desc);
766 lip->li_desc = NULL;
767}
768
769/*
770 * Unlock all of the items of a transaction and free all the descriptors
771 * of that transaction.
772 */
Dave Chinnerd17c7012010-08-24 11:42:52 +1000773void
Christoph Hellwige98c4142010-06-23 18:11:15 +1000774xfs_trans_free_items(
775 struct xfs_trans *tp,
776 xfs_lsn_t commit_lsn,
Christoph Hellwigeacb24e2015-06-04 13:47:43 +1000777 bool abort)
Christoph Hellwige98c4142010-06-23 18:11:15 +1000778{
779 struct xfs_log_item_desc *lidp, *next;
780
781 list_for_each_entry_safe(lidp, next, &tp->t_items, lid_trans) {
782 struct xfs_log_item *lip = lidp->lid_item;
783
784 lip->li_desc = NULL;
785
786 if (commit_lsn != NULLCOMMITLSN)
Dave Chinner904c17e2013-08-28 21:12:03 +1000787 lip->li_ops->iop_committing(lip, commit_lsn);
Christoph Hellwigeacb24e2015-06-04 13:47:43 +1000788 if (abort)
Christoph Hellwige98c4142010-06-23 18:11:15 +1000789 lip->li_flags |= XFS_LI_ABORTED;
Dave Chinner904c17e2013-08-28 21:12:03 +1000790 lip->li_ops->iop_unlock(lip);
Christoph Hellwige98c4142010-06-23 18:11:15 +1000791
792 xfs_trans_free_item_desc(lidp);
793 }
794}
795
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100796static inline void
797xfs_log_item_batch_insert(
798 struct xfs_ail *ailp,
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000799 struct xfs_ail_cursor *cur,
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100800 struct xfs_log_item **log_items,
801 int nr_items,
802 xfs_lsn_t commit_lsn)
803{
804 int i;
805
806 spin_lock(&ailp->xa_lock);
807 /* xfs_trans_ail_update_bulk drops ailp->xa_lock */
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000808 xfs_trans_ail_update_bulk(ailp, cur, log_items, nr_items, commit_lsn);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100809
Dave Chinner904c17e2013-08-28 21:12:03 +1000810 for (i = 0; i < nr_items; i++) {
811 struct xfs_log_item *lip = log_items[i];
812
813 lip->li_ops->iop_unpin(lip, 0);
814 }
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100815}
816
817/*
818 * Bulk operation version of xfs_trans_committed that takes a log vector of
819 * items to insert into the AIL. This uses bulk AIL insertion techniques to
820 * minimise lock traffic.
Dave Chinnere34a3142011-01-27 12:13:35 +1100821 *
822 * If we are called with the aborted flag set, it is because a log write during
823 * a CIL checkpoint commit has failed. In this case, all the items in the
Dave Chinner904c17e2013-08-28 21:12:03 +1000824 * checkpoint have already gone through iop_commited and iop_unlock, which
Dave Chinnere34a3142011-01-27 12:13:35 +1100825 * means that checkpoint commit abort handling is treated exactly the same
826 * as an iclog write error even though we haven't started any IO yet. Hence in
Dave Chinner904c17e2013-08-28 21:12:03 +1000827 * this case all we need to do is iop_committed processing, followed by an
828 * iop_unpin(aborted) call.
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000829 *
830 * The AIL cursor is used to optimise the insert process. If commit_lsn is not
831 * at the end of the AIL, the insert cursor avoids the need to walk
832 * the AIL to find the insertion point on every xfs_log_item_batch_insert()
833 * call. This saves a lot of needless list walking and is a net win, even
834 * though it slightly increases that amount of AIL lock traffic to set it up
835 * and tear it down.
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100836 */
837void
838xfs_trans_committed_bulk(
839 struct xfs_ail *ailp,
840 struct xfs_log_vec *log_vector,
841 xfs_lsn_t commit_lsn,
842 int aborted)
843{
844#define LOG_ITEM_BATCH_SIZE 32
845 struct xfs_log_item *log_items[LOG_ITEM_BATCH_SIZE];
846 struct xfs_log_vec *lv;
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000847 struct xfs_ail_cursor cur;
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100848 int i = 0;
849
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000850 spin_lock(&ailp->xa_lock);
851 xfs_trans_ail_cursor_last(ailp, &cur, commit_lsn);
852 spin_unlock(&ailp->xa_lock);
853
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100854 /* unpin all the log items */
855 for (lv = log_vector; lv; lv = lv->lv_next ) {
856 struct xfs_log_item *lip = lv->lv_item;
857 xfs_lsn_t item_lsn;
858
859 if (aborted)
860 lip->li_flags |= XFS_LI_ABORTED;
Dave Chinner904c17e2013-08-28 21:12:03 +1000861 item_lsn = lip->li_ops->iop_committed(lip, commit_lsn);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100862
Dave Chinner1316d4d2011-07-04 05:27:36 +0000863 /* item_lsn of -1 means the item needs no further processing */
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100864 if (XFS_LSN_CMP(item_lsn, (xfs_lsn_t)-1) == 0)
865 continue;
866
Dave Chinnere34a3142011-01-27 12:13:35 +1100867 /*
868 * if we are aborting the operation, no point in inserting the
869 * object into the AIL as we are in a shutdown situation.
870 */
871 if (aborted) {
872 ASSERT(XFS_FORCED_SHUTDOWN(ailp->xa_mount));
Dave Chinner904c17e2013-08-28 21:12:03 +1000873 lip->li_ops->iop_unpin(lip, 1);
Dave Chinnere34a3142011-01-27 12:13:35 +1100874 continue;
875 }
876
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100877 if (item_lsn != commit_lsn) {
878
879 /*
880 * Not a bulk update option due to unusual item_lsn.
881 * Push into AIL immediately, rechecking the lsn once
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000882 * we have the ail lock. Then unpin the item. This does
883 * not affect the AIL cursor the bulk insert path is
884 * using.
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100885 */
886 spin_lock(&ailp->xa_lock);
887 if (XFS_LSN_CMP(item_lsn, lip->li_lsn) > 0)
888 xfs_trans_ail_update(ailp, lip, item_lsn);
889 else
890 spin_unlock(&ailp->xa_lock);
Dave Chinner904c17e2013-08-28 21:12:03 +1000891 lip->li_ops->iop_unpin(lip, 0);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100892 continue;
893 }
894
895 /* Item is a candidate for bulk AIL insert. */
896 log_items[i++] = lv->lv_item;
897 if (i >= LOG_ITEM_BATCH_SIZE) {
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000898 xfs_log_item_batch_insert(ailp, &cur, log_items,
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100899 LOG_ITEM_BATCH_SIZE, commit_lsn);
900 i = 0;
901 }
902 }
903
904 /* make sure we insert the remainder! */
905 if (i)
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000906 xfs_log_item_batch_insert(ailp, &cur, log_items, i, commit_lsn);
907
908 spin_lock(&ailp->xa_lock);
Eric Sandeene4a1e292014-04-14 19:06:05 +1000909 xfs_trans_ail_cursor_done(&cur);
Dave Chinner1d8c95a2011-07-18 03:40:16 +0000910 spin_unlock(&ailp->xa_lock);
Dave Chinner0e57f6a2010-12-20 12:02:19 +1100911}
912
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100913/*
Christoph Hellwigb1037052011-09-19 14:55:51 +0000914 * Commit the given transaction to the log.
Dave Chinner09243782010-03-08 11:28:28 +1100915 *
916 * XFS disk error handling mechanism is not based on a typical
917 * transaction abort mechanism. Logically after the filesystem
918 * gets marked 'SHUTDOWN', we can't let any new transactions
919 * be durable - ie. committed to disk - because some metadata might
920 * be inconsistent. In such cases, this returns an error, and the
921 * caller may assume that all locked objects joined to the transaction
922 * have already been unlocked as if the commit had succeeded.
923 * Do not reference the transaction structure after this call.
924 */
Christoph Hellwig70393312015-06-04 13:48:08 +1000925static int
926__xfs_trans_commit(
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100927 struct xfs_trans *tp,
Christoph Hellwig70393312015-06-04 13:48:08 +1000928 bool regrant)
Dave Chinner09243782010-03-08 11:28:28 +1100929{
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100930 struct xfs_mount *mp = tp->t_mountp;
Dave Chinner09243782010-03-08 11:28:28 +1100931 xfs_lsn_t commit_lsn = -1;
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100932 int error = 0;
Dave Chinner09243782010-03-08 11:28:28 +1100933 int sync = tp->t_flags & XFS_TRANS_SYNC;
Dave Chinner09243782010-03-08 11:28:28 +1100934
935 /*
Dave Chinner09243782010-03-08 11:28:28 +1100936 * If there is nothing to be logged by the transaction,
937 * then unlock all of the items associated with the
938 * transaction and free the transaction structure.
939 * Also make sure to return any reserved blocks to
940 * the free pool.
941 */
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100942 if (!(tp->t_flags & XFS_TRANS_DIRTY))
943 goto out_unreserve;
944
945 if (XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000946 error = -EIO;
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100947 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +1100948 }
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100949
Dave Chinner09243782010-03-08 11:28:28 +1100950 ASSERT(tp->t_ticket != NULL);
951
952 /*
953 * If we need to update the superblock, then do it now.
954 */
955 if (tp->t_flags & XFS_TRANS_SB_DIRTY)
956 xfs_trans_apply_sb_deltas(tp);
957 xfs_trans_apply_dquot_deltas(tp);
958
Christoph Hellwig70393312015-06-04 13:48:08 +1000959 xfs_log_commit_cil(mp, tp, &commit_lsn, regrant);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Michal Hocko90707332017-05-03 14:53:12 -0700961 current_restore_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Christoph Hellwig0244b962011-12-06 21:58:08 +0000962 xfs_trans_free(tp);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 /*
965 * If the transaction needs to be synchronous, then force the
966 * log out now and wait for it.
967 */
968 if (sync) {
Jie Liuc6f97262014-02-07 15:26:07 +1100969 error = _xfs_log_force_lsn(mp, commit_lsn, XFS_LOG_SYNC, NULL);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100970 XFS_STATS_INC(mp, xs_trans_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 } else {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100972 XFS_STATS_INC(mp, xs_trans_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100975 return error;
976
977out_unreserve:
978 xfs_trans_unreserve_and_mod_sb(tp);
979
980 /*
981 * It is indeed possible for the transaction to be not dirty but
982 * the dqinfo portion to be. All that means is that we have some
983 * (non-persistent) quota reservations that need to be unreserved.
984 */
985 xfs_trans_unreserve_and_mod_dquots(tp);
986 if (tp->t_ticket) {
Christoph Hellwigf78c3902015-06-04 13:48:20 +1000987 commit_lsn = xfs_log_done(mp, tp->t_ticket, NULL, regrant);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100988 if (commit_lsn == -1 && !error)
Dave Chinner24513372014-06-25 14:58:08 +1000989 error = -EIO;
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100990 }
Michal Hocko90707332017-05-03 14:53:12 -0700991 current_restore_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Christoph Hellwigeacb24e2015-06-04 13:47:43 +1000992 xfs_trans_free_items(tp, NULLCOMMITLSN, !!error);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100993 xfs_trans_free(tp);
994
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100995 XFS_STATS_INC(mp, xs_trans_empty);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +1100996 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Christoph Hellwig70393312015-06-04 13:48:08 +1000999int
1000xfs_trans_commit(
1001 struct xfs_trans *tp)
1002{
1003 return __xfs_trans_commit(tp, false);
1004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 * Unlock all of the transaction's items and free the transaction.
1008 * The transaction must not have modified any of its items, because
1009 * there is no way to restore them to their previous state.
1010 *
1011 * If the transaction has made a log reservation, make sure to release
1012 * it as well.
1013 */
1014void
1015xfs_trans_cancel(
Christoph Hellwig4906e212015-06-04 13:47:56 +10001016 struct xfs_trans *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Christoph Hellwig4906e212015-06-04 13:47:56 +10001018 struct xfs_mount *mp = tp->t_mountp;
1019 bool dirty = (tp->t_flags & XFS_TRANS_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * See if the caller is relying on us to shut down the
1023 * filesystem. This happens in paths where we detect
1024 * corruption and decide to give up.
1025 */
Christoph Hellwig4906e212015-06-04 13:47:56 +10001026 if (dirty && !XFS_FORCED_SHUTDOWN(mp)) {
Ryan Hankins0733af22006-01-11 15:36:44 +11001027 XFS_ERROR_REPORT("xfs_trans_cancel", XFS_ERRLEVEL_LOW, mp);
Nathan Scott7d04a332006-06-09 14:58:38 +10001028 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Nathan Scott60a204f2006-01-11 15:37:00 +11001029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#ifdef DEBUG
Christoph Hellwig4906e212015-06-04 13:47:56 +10001031 if (!dirty && !XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwige98c4142010-06-23 18:11:15 +10001032 struct xfs_log_item_desc *lidp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Christoph Hellwige98c4142010-06-23 18:11:15 +10001034 list_for_each_entry(lidp, &tp->t_items, lid_trans)
1035 ASSERT(!(lidp->lid_item->li_type == XFS_LI_EFD));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037#endif
1038 xfs_trans_unreserve_and_mod_sb(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001039 xfs_trans_unreserve_and_mod_dquots(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Christoph Hellwigf78c3902015-06-04 13:48:20 +10001041 if (tp->t_ticket)
1042 xfs_log_done(mp, tp->t_ticket, NULL, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /* mark this thread as no longer being in a transaction */
Michal Hocko90707332017-05-03 14:53:12 -07001045 current_restore_flags_nested(&tp->t_pflags, PF_MEMALLOC_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Christoph Hellwig4906e212015-06-04 13:47:56 +10001047 xfs_trans_free_items(tp, NULLCOMMITLSN, dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 xfs_trans_free(tp);
1049}
1050
Niv Sardi322ff6b2008-08-13 16:05:49 +10001051/*
1052 * Roll from one trans in the sequence of PERMANENT transactions to
1053 * the next: permanent transactions are only flushed out when
Christoph Hellwig70393312015-06-04 13:48:08 +10001054 * committed with xfs_trans_commit(), but we still want as soon
Niv Sardi322ff6b2008-08-13 16:05:49 +10001055 * as possible to let chunks of it go to the log. So we commit the
1056 * chunk we've been working on and get a new transaction to continue.
1057 */
1058int
Christoph Hellwig254133f2017-04-06 16:00:11 -07001059xfs_trans_roll(
Christoph Hellwig411350d2017-08-28 10:21:03 -07001060 struct xfs_trans **tpp)
Niv Sardi322ff6b2008-08-13 16:05:49 +10001061{
Christoph Hellwig411350d2017-08-28 10:21:03 -07001062 struct xfs_trans *trans = *tpp;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001063 struct xfs_trans_res tres;
Niv Sardi322ff6b2008-08-13 16:05:49 +10001064 int error;
1065
1066 /*
Niv Sardi322ff6b2008-08-13 16:05:49 +10001067 * Copy the critical parameters from one trans to the next.
1068 */
Jie Liu3d3c8b52013-08-12 20:49:59 +10001069 tres.tr_logres = trans->t_log_res;
1070 tres.tr_logcount = trans->t_log_count;
Christoph Hellwig411350d2017-08-28 10:21:03 -07001071
Niv Sardi322ff6b2008-08-13 16:05:49 +10001072 *tpp = xfs_trans_dup(trans);
1073
1074 /*
1075 * Commit the current transaction.
1076 * If this commit failed, then it'd just unlock those items that
1077 * are not marked ihold. That also means that a filesystem shutdown
1078 * is in progress. The caller takes the responsibility to cancel
1079 * the duplicate transaction that gets returned.
1080 */
Christoph Hellwig70393312015-06-04 13:48:08 +10001081 error = __xfs_trans_commit(trans, true);
Niv Sardi322ff6b2008-08-13 16:05:49 +10001082 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001083 return error;
Niv Sardi322ff6b2008-08-13 16:05:49 +10001084
Niv Sardi322ff6b2008-08-13 16:05:49 +10001085 /*
Christoph Hellwig411350d2017-08-28 10:21:03 -07001086 * Reserve space in the log for the next transaction.
Niv Sardi322ff6b2008-08-13 16:05:49 +10001087 * This also pushes items in the "AIL", the list of logged items,
1088 * out to disk if they are taking up space at the tail of the log
1089 * that we want to use. This requires that either nothing be locked
1090 * across this call, or that anything that is locked be logged in
1091 * the prior and the next transactions.
1092 */
Jie Liu3d3c8b52013-08-12 20:49:59 +10001093 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
Christoph Hellwig411350d2017-08-28 10:21:03 -07001094 return xfs_trans_reserve(*tpp, &tres, 0, 0);
Niv Sardi322ff6b2008-08-13 16:05:49 +10001095}