blob: 6dd2c043efcd33a7177c315e891fcc561a3017af [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
27#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_dinode.h"
33#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_btree.h"
35#include "xfs_ialloc.h"
36#include "xfs_alloc.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000037#include "xfs_extent_busy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_quota.h"
Jeff Liu4f3b5782013-01-28 21:25:35 +080040#include "xfs_qm.h"
Nathan Scotta844f452005-11-02 14:38:42 +110041#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_trans_space.h"
Niv Sardi322ff6b2008-08-13 16:05:49 +100043#include "xfs_inode_item.h"
Jeff Liu4f3b5782013-01-28 21:25:35 +080044#include "xfs_log_priv.h"
45#include "xfs_buf_item.h"
Dave Chinnered3b4d62010-05-21 12:07:08 +100046#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Nathan Scott8f794052006-03-14 13:32:41 +110048kmem_zone_t *xfs_trans_zone;
Christoph Hellwige98c4142010-06-23 18:11:15 +100049kmem_zone_t *xfs_log_item_desc_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Jeff Liu4f3b5782013-01-28 21:25:35 +080051/*
52 * A buffer has a format structure overhead in the log in addition
53 * to the data, so we need to take this into account when reserving
54 * space in a transaction for a buffer. Round the space required up
55 * to a multiple of 128 bytes so that we don't change the historical
56 * reservation that has been used for this overhead.
57 */
58STATIC uint
59xfs_buf_log_overhead(void)
60{
61 return round_up(sizeof(struct xlog_op_header) +
62 sizeof(struct xfs_buf_log_format), 128);
63}
64
65/*
66 * Calculate out transaction log reservation per item in bytes.
67 *
68 * The nbufs argument is used to indicate the number of items that
69 * will be changed in a transaction. size is used to tell how many
70 * bytes should be reserved per item.
71 */
72STATIC uint
73xfs_calc_buf_res(
74 uint nbufs,
75 uint size)
76{
77 return nbufs * (size + xfs_buf_log_overhead());
78}
Christoph Hellwig025101d2010-05-04 13:53:48 +000079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
Christoph Hellwig025101d2010-05-04 13:53:48 +000081 * Various log reservation values.
82 *
83 * These are based on the size of the file system block because that is what
84 * most transactions manipulate. Each adds in an additional 128 bytes per
85 * item logged to try to account for the overhead of the transaction mechanism.
86 *
87 * Note: Most of the reservations underestimate the number of allocation
88 * groups into which they could free extents in the xfs_bmap_finish() call.
89 * This is because the number in the worst case is quite high and quite
90 * unusual. In order to fix this we need to change xfs_bmap_finish() to free
91 * extents in only a single AG at a time. This will require changes to the
92 * EFI code as well, however, so that the EFI for the extents not freed is
93 * logged again in each transaction. See SGI PV #261917.
94 *
95 * Reservation functions here avoid a huge stack in xfs_trans_init due to
96 * register overflow from temporaries in the calculations.
97 */
98
99
100/*
101 * In a write transaction we can allocate a maximum of 2
102 * extents. This gives:
103 * the inode getting the new extents: inode size
104 * the inode's bmap btree: max depth * block size
105 * the agfs of the ags from which the extents are allocated: 2 * sector
106 * the superblock free block counter: sector size
107 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
108 * And the bmap_finish transaction can free bmap blocks in a join:
109 * the agfs of the ags containing the blocks: 2 * sector size
110 * the agfls of the ags containing the blocks: 2 * sector size
111 * the super block free block counter: sector size
112 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
Nathan Scott8f794052006-03-14 13:32:41 +1100113 */
Nathan Scott8f794052006-03-14 13:32:41 +1100114STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000115xfs_calc_write_reservation(
116 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100117{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000118 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600119 MAX((xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
120 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK),
121 XFS_FSB_TO_B(mp, 1)) +
122 xfs_calc_buf_res(3, mp->m_sb.sb_sectsize) +
123 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 2),
124 XFS_FSB_TO_B(mp, 1))),
125 (xfs_calc_buf_res(5, mp->m_sb.sb_sectsize) +
126 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 2),
127 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100128}
129
Christoph Hellwig025101d2010-05-04 13:53:48 +0000130/*
131 * In truncating a file we free up to two extents at once. We can modify:
132 * the inode being truncated: inode size
133 * the inode's bmap btree: (max depth + 1) * block size
134 * And the bmap_finish transaction can free the blocks and bmap blocks:
135 * the agf for each of the ags: 4 * sector size
136 * the agfl for each of the ags: 4 * sector size
137 * the super block to reflect the freed blocks: sector size
138 * worst case split in allocation btrees per extent assuming 4 extents:
139 * 4 exts * 2 trees * (2 * max depth - 1) * block size
140 * the inode btree: max depth * blocksize
141 * the allocation btrees: 2 trees * (max depth - 1) * block size
142 */
Nathan Scott8f794052006-03-14 13:32:41 +1100143STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000144xfs_calc_itruncate_reservation(
145 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100146{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000147 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600148 MAX((xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
149 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK) + 1,
150 XFS_FSB_TO_B(mp, 1))),
151 (xfs_calc_buf_res(9, mp->m_sb.sb_sectsize) +
152 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 4),
153 XFS_FSB_TO_B(mp, 1)) +
154 xfs_calc_buf_res(5, 0) +
155 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
156 XFS_FSB_TO_B(mp, 1)) +
157 xfs_calc_buf_res(2 + XFS_IALLOC_BLOCKS(mp) +
158 mp->m_in_maxlevels, 0)));
Nathan Scott8f794052006-03-14 13:32:41 +1100159}
160
Christoph Hellwig025101d2010-05-04 13:53:48 +0000161/*
162 * In renaming a files we can modify:
163 * the four inodes involved: 4 * inode size
164 * the two directory btrees: 2 * (max depth + v2) * dir block size
165 * the two directory bmap btrees: 2 * max depth * block size
166 * And the bmap_finish transaction can free dir and bmap blocks (two sets
167 * of bmap blocks) giving:
168 * the agf for the ags in which the blocks live: 3 * sector size
169 * the agfl for the ags in which the blocks live: 3 * sector size
170 * the superblock for the free block count: sector size
171 * the allocation btrees: 3 exts * 2 trees * (2 * max depth - 1) * block size
172 */
Nathan Scott8f794052006-03-14 13:32:41 +1100173STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000174xfs_calc_rename_reservation(
175 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100176{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000177 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600178 MAX((xfs_calc_buf_res(4, mp->m_sb.sb_inodesize) +
179 xfs_calc_buf_res(2 * XFS_DIROP_LOG_COUNT(mp),
180 XFS_FSB_TO_B(mp, 1))),
181 (xfs_calc_buf_res(7, mp->m_sb.sb_sectsize) +
182 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 3),
183 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100184}
185
Christoph Hellwig025101d2010-05-04 13:53:48 +0000186/*
187 * For creating a link to an inode:
188 * the parent directory inode: inode size
189 * the linked inode: inode size
190 * the directory btree could split: (max depth + v2) * dir block size
191 * the directory bmap btree could join or split: (max depth + v2) * blocksize
192 * And the bmap_finish transaction can free some bmap blocks giving:
193 * the agf for the ag in which the blocks live: sector size
194 * the agfl for the ag in which the blocks live: sector size
195 * the superblock for the free block count: sector size
196 * the allocation btrees: 2 trees * (2 * max depth - 1) * block size
197 */
Nathan Scott8f794052006-03-14 13:32:41 +1100198STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000199xfs_calc_link_reservation(
200 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100201{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000202 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600203 MAX((xfs_calc_buf_res(2, mp->m_sb.sb_inodesize) +
204 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp),
205 XFS_FSB_TO_B(mp, 1))),
206 (xfs_calc_buf_res(3, mp->m_sb.sb_sectsize) +
207 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
208 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100209}
210
Christoph Hellwig025101d2010-05-04 13:53:48 +0000211/*
212 * For removing a directory entry we can modify:
213 * the parent directory inode: inode size
214 * the removed inode: inode size
215 * the directory btree could join: (max depth + v2) * dir block size
216 * the directory bmap btree could join or split: (max depth + v2) * blocksize
217 * And the bmap_finish transaction can free the dir and bmap blocks giving:
218 * the agf for the ag in which the blocks live: 2 * sector size
219 * the agfl for the ag in which the blocks live: 2 * sector size
220 * the superblock for the free block count: sector size
221 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
222 */
Nathan Scott8f794052006-03-14 13:32:41 +1100223STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000224xfs_calc_remove_reservation(
225 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100226{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000227 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600228 MAX((xfs_calc_buf_res(2, mp->m_sb.sb_inodesize) +
229 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp),
230 XFS_FSB_TO_B(mp, 1))),
231 (xfs_calc_buf_res(5, mp->m_sb.sb_sectsize) +
232 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 2),
233 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100234}
235
Christoph Hellwig025101d2010-05-04 13:53:48 +0000236/*
237 * For symlink we can modify:
238 * the parent directory inode: inode size
239 * the new inode: inode size
240 * the inode btree entry: 1 block
241 * the directory btree: (max depth + v2) * dir block size
242 * the directory inode's bmap btree: (max depth + v2) * block size
243 * the blocks for the symlink: 1 kB
244 * Or in the first xact we allocate some inodes giving:
245 * the agi and agf of the ag getting the new inodes: 2 * sectorsize
246 * the inode blocks allocated: XFS_IALLOC_BLOCKS * blocksize
247 * the inode btree: max depth * blocksize
248 * the allocation btrees: 2 trees * (2 * max depth - 1) * block size
249 */
Nathan Scott8f794052006-03-14 13:32:41 +1100250STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000251xfs_calc_symlink_reservation(
252 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100253{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000254 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600255 MAX((xfs_calc_buf_res(2, mp->m_sb.sb_inodesize) +
256 xfs_calc_buf_res(1, XFS_FSB_TO_B(mp, 1)) +
257 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp),
258 XFS_FSB_TO_B(mp, 1)) +
259 xfs_calc_buf_res(1, 1024)),
260 (xfs_calc_buf_res(2, mp->m_sb.sb_sectsize) +
261 xfs_calc_buf_res(XFS_IALLOC_BLOCKS(mp),
262 XFS_FSB_TO_B(mp, 1)) +
263 xfs_calc_buf_res(mp->m_in_maxlevels,
264 XFS_FSB_TO_B(mp, 1)) +
265 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
266 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100267}
268
Christoph Hellwig025101d2010-05-04 13:53:48 +0000269/*
270 * For create we can modify:
271 * the parent directory inode: inode size
272 * the new inode: inode size
273 * the inode btree entry: block size
274 * the superblock for the nlink flag: sector size
275 * the directory btree: (max depth + v2) * dir block size
276 * the directory inode's bmap btree: (max depth + v2) * block size
277 * Or in the first xact we allocate some inodes giving:
278 * the agi and agf of the ag getting the new inodes: 2 * sectorsize
279 * the superblock for the nlink flag: sector size
280 * the inode blocks allocated: XFS_IALLOC_BLOCKS * blocksize
281 * the inode btree: max depth * blocksize
282 * the allocation btrees: 2 trees * (max depth - 1) * block size
283 */
Nathan Scott8f794052006-03-14 13:32:41 +1100284STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000285xfs_calc_create_reservation(
286 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100287{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000288 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600289 MAX((xfs_calc_buf_res(2, mp->m_sb.sb_inodesize) +
290 xfs_calc_buf_res(1, mp->m_sb.sb_sectsize) +
291 (uint)XFS_FSB_TO_B(mp, 1) +
292 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp),
293 XFS_FSB_TO_B(mp, 1))),
294 (xfs_calc_buf_res(2, mp->m_sb.sb_sectsize) +
Christoph Hellwig025101d2010-05-04 13:53:48 +0000295 mp->m_sb.sb_sectsize +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600296 xfs_calc_buf_res(XFS_IALLOC_BLOCKS(mp),
297 XFS_FSB_TO_B(mp, 1)) +
298 xfs_calc_buf_res(mp->m_in_maxlevels,
299 XFS_FSB_TO_B(mp, 1)) +
300 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
301 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100302}
303
Christoph Hellwig025101d2010-05-04 13:53:48 +0000304/*
305 * Making a new directory is the same as creating a new file.
306 */
Nathan Scott8f794052006-03-14 13:32:41 +1100307STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000308xfs_calc_mkdir_reservation(
309 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100310{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000311 return xfs_calc_create_reservation(mp);
Nathan Scott8f794052006-03-14 13:32:41 +1100312}
313
Christoph Hellwig025101d2010-05-04 13:53:48 +0000314/*
315 * In freeing an inode we can modify:
316 * the inode being freed: inode size
317 * the super block free inode counter: sector size
318 * the agi hash list and counters: sector size
319 * the inode btree entry: block size
320 * the on disk inode before ours in the agi hash list: inode cluster size
321 * the inode btree: max depth * blocksize
322 * the allocation btrees: 2 trees * (max depth - 1) * block size
323 */
Nathan Scott8f794052006-03-14 13:32:41 +1100324STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000325xfs_calc_ifree_reservation(
326 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100327{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000328 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600329 xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
330 xfs_calc_buf_res(2, mp->m_sb.sb_sectsize) +
331 xfs_calc_buf_res(1, XFS_FSB_TO_B(mp, 1)) +
Christoph Hellwig025101d2010-05-04 13:53:48 +0000332 MAX((__uint16_t)XFS_FSB_TO_B(mp, 1),
333 XFS_INODE_CLUSTER_SIZE(mp)) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600334 xfs_calc_buf_res(1, 0) +
335 xfs_calc_buf_res(2 + XFS_IALLOC_BLOCKS(mp) +
336 mp->m_in_maxlevels, 0) +
337 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
338 XFS_FSB_TO_B(mp, 1));
Nathan Scott8f794052006-03-14 13:32:41 +1100339}
340
Christoph Hellwig025101d2010-05-04 13:53:48 +0000341/*
342 * When only changing the inode we log the inode and possibly the superblock
343 * We also add a bit of slop for the transaction stuff.
344 */
Nathan Scott8f794052006-03-14 13:32:41 +1100345STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000346xfs_calc_ichange_reservation(
347 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100348{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000349 return XFS_DQUOT_LOGRES(mp) +
350 mp->m_sb.sb_inodesize +
351 mp->m_sb.sb_sectsize +
352 512;
353
Nathan Scott8f794052006-03-14 13:32:41 +1100354}
355
Christoph Hellwig025101d2010-05-04 13:53:48 +0000356/*
357 * Growing the data section of the filesystem.
358 * superblock
359 * agi and agf
360 * allocation btrees
361 */
Nathan Scott8f794052006-03-14 13:32:41 +1100362STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000363xfs_calc_growdata_reservation(
364 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100365{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600366 return xfs_calc_buf_res(3, mp->m_sb.sb_sectsize) +
367 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
368 XFS_FSB_TO_B(mp, 1));
Nathan Scott8f794052006-03-14 13:32:41 +1100369}
370
Christoph Hellwig025101d2010-05-04 13:53:48 +0000371/*
372 * Growing the rt section of the filesystem.
373 * In the first set of transactions (ALLOC) we allocate space to the
374 * bitmap or summary files.
375 * superblock: sector size
376 * agf of the ag from which the extent is allocated: sector size
377 * bmap btree for bitmap/summary inode: max depth * blocksize
378 * bitmap/summary inode: inode size
379 * allocation btrees for 1 block alloc: 2 * (2 * maxdepth - 1) * blocksize
380 */
Nathan Scott8f794052006-03-14 13:32:41 +1100381STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000382xfs_calc_growrtalloc_reservation(
383 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100384{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600385 return xfs_calc_buf_res(2, mp->m_sb.sb_sectsize) +
386 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK),
387 XFS_FSB_TO_B(mp, 1)) +
388 xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
389 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
390 XFS_FSB_TO_B(mp, 1));
Nathan Scott8f794052006-03-14 13:32:41 +1100391}
392
Christoph Hellwig025101d2010-05-04 13:53:48 +0000393/*
394 * Growing the rt section of the filesystem.
395 * In the second set of transactions (ZERO) we zero the new metadata blocks.
396 * one bitmap/summary block: blocksize
397 */
Nathan Scott8f794052006-03-14 13:32:41 +1100398STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000399xfs_calc_growrtzero_reservation(
400 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100401{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600402 return xfs_calc_buf_res(1, mp->m_sb.sb_blocksize);
Nathan Scott8f794052006-03-14 13:32:41 +1100403}
404
Christoph Hellwig025101d2010-05-04 13:53:48 +0000405/*
406 * Growing the rt section of the filesystem.
407 * In the third set of transactions (FREE) we update metadata without
408 * allocating any new blocks.
409 * superblock: sector size
410 * bitmap inode: inode size
411 * summary inode: inode size
412 * one bitmap block: blocksize
413 * summary blocks: new summary size
414 */
Nathan Scott8f794052006-03-14 13:32:41 +1100415STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000416xfs_calc_growrtfree_reservation(
417 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100418{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600419 return xfs_calc_buf_res(1, mp->m_sb.sb_sectsize) +
420 xfs_calc_buf_res(2, mp->m_sb.sb_inodesize) +
421 xfs_calc_buf_res(1, mp->m_sb.sb_blocksize) +
422 xfs_calc_buf_res(1, mp->m_rsumsize);
Nathan Scott8f794052006-03-14 13:32:41 +1100423}
424
Christoph Hellwig025101d2010-05-04 13:53:48 +0000425/*
426 * Logging the inode modification timestamp on a synchronous write.
427 * inode
428 */
Nathan Scott8f794052006-03-14 13:32:41 +1100429STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000430xfs_calc_swrite_reservation(
431 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100432{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600433 return xfs_calc_buf_res(1, mp->m_sb.sb_inodesize);
Nathan Scott8f794052006-03-14 13:32:41 +1100434}
435
Christoph Hellwig025101d2010-05-04 13:53:48 +0000436/*
437 * Logging the inode mode bits when writing a setuid/setgid file
438 * inode
439 */
Nathan Scott8f794052006-03-14 13:32:41 +1100440STATIC uint
441xfs_calc_writeid_reservation(xfs_mount_t *mp)
442{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600443 return xfs_calc_buf_res(1, mp->m_sb.sb_inodesize);
Nathan Scott8f794052006-03-14 13:32:41 +1100444}
445
Christoph Hellwig025101d2010-05-04 13:53:48 +0000446/*
447 * Converting the inode from non-attributed to attributed.
448 * the inode being converted: inode size
449 * agf block and superblock (for block allocation)
450 * the new block (directory sized)
451 * bmap blocks for the new directory block
452 * allocation btrees
453 */
Nathan Scott8f794052006-03-14 13:32:41 +1100454STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000455xfs_calc_addafork_reservation(
456 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100457{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000458 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600459 xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
460 xfs_calc_buf_res(2, mp->m_sb.sb_sectsize) +
461 xfs_calc_buf_res(1, mp->m_dirblksize) +
462 xfs_calc_buf_res(XFS_DAENTER_BMAP1B(mp, XFS_DATA_FORK) + 1,
463 XFS_FSB_TO_B(mp, 1)) +
464 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 1),
465 XFS_FSB_TO_B(mp, 1));
Nathan Scott8f794052006-03-14 13:32:41 +1100466}
467
Christoph Hellwig025101d2010-05-04 13:53:48 +0000468/*
469 * Removing the attribute fork of a file
470 * the inode being truncated: inode size
471 * the inode's bmap btree: max depth * block size
472 * And the bmap_finish transaction can free the blocks and bmap blocks:
473 * the agf for each of the ags: 4 * sector size
474 * the agfl for each of the ags: 4 * sector size
475 * the super block to reflect the freed blocks: sector size
476 * worst case split in allocation btrees per extent assuming 4 extents:
477 * 4 exts * 2 trees * (2 * max depth - 1) * block size
478 */
Nathan Scott8f794052006-03-14 13:32:41 +1100479STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000480xfs_calc_attrinval_reservation(
481 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100482{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600483 return MAX((xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
484 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp, XFS_ATTR_FORK),
485 XFS_FSB_TO_B(mp, 1))),
486 (xfs_calc_buf_res(9, mp->m_sb.sb_sectsize) +
487 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 4),
488 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100489}
490
Christoph Hellwig025101d2010-05-04 13:53:48 +0000491/*
492 * Setting an attribute.
493 * the inode getting the attribute
494 * the superblock for allocations
495 * the agfs extents are allocated from
496 * the attribute btree * max depth
497 * the inode allocation btree
498 * Since attribute transaction space is dependent on the size of the attribute,
499 * the calculation is done partially at mount time and partially at runtime.
500 */
Nathan Scott8f794052006-03-14 13:32:41 +1100501STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000502xfs_calc_attrset_reservation(
503 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100504{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000505 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600506 xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
507 xfs_calc_buf_res(1, mp->m_sb.sb_sectsize) +
508 xfs_calc_buf_res(XFS_DA_NODE_MAXDEPTH, XFS_FSB_TO_B(mp, 1));
Nathan Scott8f794052006-03-14 13:32:41 +1100509}
510
Christoph Hellwig025101d2010-05-04 13:53:48 +0000511/*
512 * Removing an attribute.
513 * the inode: inode size
514 * the attribute btree could join: max depth * block size
515 * the inode bmap btree could join or split: max depth * block size
516 * And the bmap_finish transaction can free the attr blocks freed giving:
517 * the agf for the ag in which the blocks live: 2 * sector size
518 * the agfl for the ag in which the blocks live: 2 * sector size
519 * the superblock for the free block count: sector size
520 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
521 */
Nathan Scott8f794052006-03-14 13:32:41 +1100522STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000523xfs_calc_attrrm_reservation(
524 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100525{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000526 return XFS_DQUOT_LOGRES(mp) +
Jeff Liu5b292ae2013-02-01 14:39:29 -0600527 MAX((xfs_calc_buf_res(1, mp->m_sb.sb_inodesize) +
528 xfs_calc_buf_res(XFS_DA_NODE_MAXDEPTH,
529 XFS_FSB_TO_B(mp, 1)) +
530 (uint)XFS_FSB_TO_B(mp,
531 XFS_BM_MAXLEVELS(mp, XFS_ATTR_FORK)) +
532 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp, XFS_DATA_FORK), 0)),
533 (xfs_calc_buf_res(5, mp->m_sb.sb_sectsize) +
534 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp, 2),
535 XFS_FSB_TO_B(mp, 1))));
Nathan Scott8f794052006-03-14 13:32:41 +1100536}
537
Christoph Hellwig025101d2010-05-04 13:53:48 +0000538/*
539 * Clearing a bad agino number in an agi hash bucket.
540 */
Nathan Scott8f794052006-03-14 13:32:41 +1100541STATIC uint
Christoph Hellwig025101d2010-05-04 13:53:48 +0000542xfs_calc_clear_agi_bucket_reservation(
543 struct xfs_mount *mp)
Nathan Scott8f794052006-03-14 13:32:41 +1100544{
Jeff Liu5b292ae2013-02-01 14:39:29 -0600545 return xfs_calc_buf_res(1, mp->m_sb.sb_sectsize);
Nathan Scott8f794052006-03-14 13:32:41 +1100546}
547
548/*
Jeff Liub0c10b982013-01-28 21:26:16 +0800549 * Clearing the quotaflags in the superblock.
550 * the super block for changing quota flags: sector size
551 */
552STATIC uint
553xfs_calc_qm_sbchange_reservation(
554 struct xfs_mount *mp)
555{
556 return xfs_calc_buf_res(1, mp->m_sb.sb_sectsize);
557}
558
559/*
Jeff Liuf0f2df92013-01-28 21:26:49 +0800560 * Adjusting quota limits.
561 * the xfs_disk_dquot_t: sizeof(struct xfs_disk_dquot)
562 */
563STATIC uint
564xfs_calc_qm_setqlim_reservation(
565 struct xfs_mount *mp)
566{
567 return xfs_calc_buf_res(1, sizeof(struct xfs_disk_dquot));
568}
569
570/*
Jeff Liu48001042013-01-28 21:27:04 +0800571 * Allocating quota on disk if needed.
572 * the write transaction log space: XFS_WRITE_LOG_RES(mp)
573 * the unit of quota allocation: one system block size
574 */
575STATIC uint
576xfs_calc_qm_dqalloc_reservation(
577 struct xfs_mount *mp)
578{
579 return XFS_WRITE_LOG_RES(mp) +
580 xfs_calc_buf_res(1,
581 XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB) - 1);
582}
583
584/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 * Initialize the precomputed transaction reservation values
586 * in the mount structure.
587 */
588void
589xfs_trans_init(
Christoph Hellwig025101d2010-05-04 13:53:48 +0000590 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Christoph Hellwig025101d2010-05-04 13:53:48 +0000592 struct xfs_trans_reservations *resp = &mp->m_reservations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Nathan Scott8f794052006-03-14 13:32:41 +1100594 resp->tr_write = xfs_calc_write_reservation(mp);
595 resp->tr_itruncate = xfs_calc_itruncate_reservation(mp);
596 resp->tr_rename = xfs_calc_rename_reservation(mp);
597 resp->tr_link = xfs_calc_link_reservation(mp);
598 resp->tr_remove = xfs_calc_remove_reservation(mp);
599 resp->tr_symlink = xfs_calc_symlink_reservation(mp);
600 resp->tr_create = xfs_calc_create_reservation(mp);
601 resp->tr_mkdir = xfs_calc_mkdir_reservation(mp);
602 resp->tr_ifree = xfs_calc_ifree_reservation(mp);
603 resp->tr_ichange = xfs_calc_ichange_reservation(mp);
604 resp->tr_growdata = xfs_calc_growdata_reservation(mp);
605 resp->tr_swrite = xfs_calc_swrite_reservation(mp);
606 resp->tr_writeid = xfs_calc_writeid_reservation(mp);
607 resp->tr_addafork = xfs_calc_addafork_reservation(mp);
608 resp->tr_attrinval = xfs_calc_attrinval_reservation(mp);
609 resp->tr_attrset = xfs_calc_attrset_reservation(mp);
610 resp->tr_attrrm = xfs_calc_attrrm_reservation(mp);
611 resp->tr_clearagi = xfs_calc_clear_agi_bucket_reservation(mp);
612 resp->tr_growrtalloc = xfs_calc_growrtalloc_reservation(mp);
613 resp->tr_growrtzero = xfs_calc_growrtzero_reservation(mp);
614 resp->tr_growrtfree = xfs_calc_growrtfree_reservation(mp);
Jeff Liub0c10b982013-01-28 21:26:16 +0800615 resp->tr_qm_sbchange = xfs_calc_qm_sbchange_reservation(mp);
Jeff Liuf0f2df92013-01-28 21:26:49 +0800616 resp->tr_qm_setqlim = xfs_calc_qm_setqlim_reservation(mp);
Jeff Liu48001042013-01-28 21:27:04 +0800617 resp->tr_qm_dqalloc = xfs_calc_qm_dqalloc_reservation(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/*
621 * This routine is called to allocate a transaction structure.
622 * The type parameter indicates the type of the transaction. These
623 * are enumerated in xfs_trans.h.
Alex Elderb2ce3972011-07-11 09:51:44 -0500624 *
625 * Dynamically allocate the transaction structure from the transaction
626 * zone, initialize it, and return it to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Alex Elderb2ce3972011-07-11 09:51:44 -0500628xfs_trans_t *
629xfs_trans_alloc(
630 xfs_mount_t *mp,
631 uint type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Jan Karad9457dc2012-06-12 16:20:39 +0200633 xfs_trans_t *tp;
634
635 sb_start_intwrite(mp->m_super);
636 tp = _xfs_trans_alloc(mp, type, KM_SLEEP);
637 tp->t_flags |= XFS_TRANS_FREEZE_PROT;
638 return tp;
Alex Elderb2ce3972011-07-11 09:51:44 -0500639}
640
641xfs_trans_t *
642_xfs_trans_alloc(
643 xfs_mount_t *mp,
644 uint type,
Al Viro77ba7872012-04-02 06:24:04 -0400645 xfs_km_flags_t memflags)
Alex Elderb2ce3972011-07-11 09:51:44 -0500646{
647 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Jan Karad9457dc2012-06-12 16:20:39 +0200649 WARN_ON(mp->m_super->s_writers.frozen == SB_FREEZE_COMPLETE);
Nathan Scott34327e12006-06-09 17:11:55 +1000650 atomic_inc(&mp->m_active_trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000652 tp = kmem_zone_zalloc(xfs_trans_zone, memflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 tp->t_magic = XFS_TRANS_MAGIC;
654 tp->t_type = type;
655 tp->t_mountp = mp;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000656 INIT_LIST_HEAD(&tp->t_items);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000657 INIT_LIST_HEAD(&tp->t_busy);
Nathan Scott34327e12006-06-09 17:11:55 +1000658 return tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/*
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100662 * Free the transaction structure. If there is more clean up
663 * to do when the structure is freed, add it here.
664 */
665STATIC void
666xfs_trans_free(
Dave Chinnered3b4d62010-05-21 12:07:08 +1000667 struct xfs_trans *tp)
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100668{
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000669 xfs_extent_busy_sort(&tp->t_busy);
670 xfs_extent_busy_clear(tp->t_mountp, &tp->t_busy, false);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000671
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100672 atomic_dec(&tp->t_mountp->m_active_trans);
Jan Karad9457dc2012-06-12 16:20:39 +0200673 if (tp->t_flags & XFS_TRANS_FREEZE_PROT)
674 sb_end_intwrite(tp->t_mountp->m_super);
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +1100675 xfs_trans_free_dqinfo(tp);
676 kmem_zone_free(xfs_trans_zone, tp);
677}
678
679/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * This is called to create a new transaction which will share the
681 * permanent log reservation of the given transaction. The remaining
682 * unused block and rt extent reservations are also inherited. This
683 * implies that the original transaction is no longer allowed to allocate
684 * blocks. Locks and log items, however, are no inherited. They must
685 * be added to the new transaction explicitly.
686 */
687xfs_trans_t *
688xfs_trans_dup(
689 xfs_trans_t *tp)
690{
691 xfs_trans_t *ntp;
692
693 ntp = kmem_zone_zalloc(xfs_trans_zone, KM_SLEEP);
694
695 /*
696 * Initialize the new transaction structure.
697 */
698 ntp->t_magic = XFS_TRANS_MAGIC;
699 ntp->t_type = tp->t_type;
700 ntp->t_mountp = tp->t_mountp;
Christoph Hellwige98c4142010-06-23 18:11:15 +1000701 INIT_LIST_HEAD(&ntp->t_items);
Dave Chinnered3b4d62010-05-21 12:07:08 +1000702 INIT_LIST_HEAD(&ntp->t_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ASSERT(tp->t_ticket != NULL);
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100706
Jan Karad9457dc2012-06-12 16:20:39 +0200707 ntp->t_flags = XFS_TRANS_PERM_LOG_RES |
708 (tp->t_flags & XFS_TRANS_RESERVE) |
709 (tp->t_flags & XFS_TRANS_FREEZE_PROT);
710 /* We gave our writer reference to the new transaction */
711 tp->t_flags &= ~XFS_TRANS_FREEZE_PROT;
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100712 ntp->t_ticket = xfs_log_ticket_get(tp->t_ticket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 ntp->t_blk_res = tp->t_blk_res - tp->t_blk_res_used;
714 tp->t_blk_res = tp->t_blk_res_used;
715 ntp->t_rtx_res = tp->t_rtx_res - tp->t_rtx_res_used;
716 tp->t_rtx_res = tp->t_rtx_res_used;
Nathan Scott59c1b082006-06-09 14:59:13 +1000717 ntp->t_pflags = tp->t_pflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Christoph Hellwig7d095252009-06-08 15:33:32 +0200719 xfs_trans_dup_dqinfo(tp, ntp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 atomic_inc(&tp->t_mountp->m_active_trans);
722 return ntp;
723}
724
725/*
726 * This is called to reserve free disk blocks and log space for the
727 * given transaction. This must be done before allocating any resources
728 * within the transaction.
729 *
730 * This will return ENOSPC if there are not enough blocks available.
731 * It will sleep waiting for available log space.
732 * The only valid value for the flags parameter is XFS_RES_LOG_PERM, which
733 * is used by long running transactions. If any one of the reservations
734 * fails then they will all be backed out.
735 *
736 * This does not do quota reservations. That typically is done by the
737 * caller afterwards.
738 */
739int
740xfs_trans_reserve(
741 xfs_trans_t *tp,
742 uint blocks,
743 uint logspace,
744 uint rtextents,
745 uint flags,
746 uint logcount)
747{
Nathan Scott59c1b082006-06-09 14:59:13 +1000748 int error = 0;
749 int rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /* Mark this thread as being in a transaction */
Nathan Scott59c1b082006-06-09 14:59:13 +1000752 current_set_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /*
755 * Attempt to reserve the needed disk blocks by decrementing
756 * the number needed from the number available. This will
757 * fail if the count would go below zero.
758 */
759 if (blocks > 0) {
Christoph Hellwig96540c72010-09-30 02:25:55 +0000760 error = xfs_icsb_modify_counters(tp->t_mountp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100761 -((int64_t)blocks), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (error != 0) {
Nathan Scott59c1b082006-06-09 14:59:13 +1000763 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return (XFS_ERROR(ENOSPC));
765 }
766 tp->t_blk_res += blocks;
767 }
768
769 /*
770 * Reserve the log space needed for this transaction.
771 */
772 if (logspace > 0) {
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000773 bool permanent = false;
774
775 ASSERT(tp->t_log_res == 0 || tp->t_log_res == logspace);
776 ASSERT(tp->t_log_count == 0 || tp->t_log_count == logcount);
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (flags & XFS_TRANS_PERM_LOG_RES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 tp->t_flags |= XFS_TRANS_PERM_LOG_RES;
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000780 permanent = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 } else {
782 ASSERT(tp->t_ticket == NULL);
783 ASSERT(!(tp->t_flags & XFS_TRANS_PERM_LOG_RES));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000786 if (tp->t_ticket != NULL) {
787 ASSERT(flags & XFS_TRANS_PERM_LOG_RES);
788 error = xfs_log_regrant(tp->t_mountp, tp->t_ticket);
789 } else {
790 error = xfs_log_reserve(tp->t_mountp, logspace,
791 logcount, &tp->t_ticket,
792 XFS_TRANSACTION, permanent,
793 tp->t_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000795
796 if (error)
797 goto undo_blocks;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 tp->t_log_res = logspace;
800 tp->t_log_count = logcount;
801 }
802
803 /*
804 * Attempt to reserve the needed realtime extents by decrementing
805 * the number needed from the number available. This will
806 * fail if the count would go below zero.
807 */
808 if (rtextents > 0) {
809 error = xfs_mod_incore_sb(tp->t_mountp, XFS_SBS_FREXTENTS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100810 -((int64_t)rtextents), rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (error) {
812 error = XFS_ERROR(ENOSPC);
813 goto undo_log;
814 }
815 tp->t_rtx_res += rtextents;
816 }
817
818 return 0;
819
820 /*
821 * Error cases jump to one of these labels to undo any
822 * reservations which have already been performed.
823 */
824undo_log:
825 if (logspace > 0) {
Christoph Hellwig9006fb92012-02-20 02:31:31 +0000826 int log_flags;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (flags & XFS_TRANS_PERM_LOG_RES) {
829 log_flags = XFS_LOG_REL_PERM_RESERV;
830 } else {
831 log_flags = 0;
832 }
833 xfs_log_done(tp->t_mountp, tp->t_ticket, NULL, log_flags);
834 tp->t_ticket = NULL;
835 tp->t_log_res = 0;
836 tp->t_flags &= ~XFS_TRANS_PERM_LOG_RES;
837 }
838
839undo_blocks:
840 if (blocks > 0) {
Christoph Hellwig96540c72010-09-30 02:25:55 +0000841 xfs_icsb_modify_counters(tp->t_mountp, XFS_SBS_FDBLOCKS,
David Chinner20f4ebf2007-02-10 18:36:10 +1100842 (int64_t)blocks, rsvd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 tp->t_blk_res = 0;
844 }
845
Nathan Scott59c1b082006-06-09 14:59:13 +1000846 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Nathan Scott59c1b082006-06-09 14:59:13 +1000848 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 * Record the indicated change to the given field for application
853 * to the file system's superblock when the transaction commits.
854 * For now, just store the change in the transaction structure.
855 *
856 * Mark the transaction structure to indicate that the superblock
857 * needs to be updated before committing.
David Chinner92821e22007-05-24 15:26:31 +1000858 *
859 * Because we may not be keeping track of allocated/free inodes and
860 * used filesystem blocks in the superblock, we do not mark the
861 * superblock dirty in this transaction if we modify these fields.
862 * We still need to update the transaction deltas so that they get
863 * applied to the incore superblock, but we don't want them to
864 * cause the superblock to get locked and logged if these are the
865 * only fields in the superblock that the transaction modifies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
867void
868xfs_trans_mod_sb(
869 xfs_trans_t *tp,
870 uint field,
David Chinner20f4ebf2007-02-10 18:36:10 +1100871 int64_t delta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
David Chinner92821e22007-05-24 15:26:31 +1000873 uint32_t flags = (XFS_TRANS_DIRTY|XFS_TRANS_SB_DIRTY);
874 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 switch (field) {
877 case XFS_TRANS_SB_ICOUNT:
878 tp->t_icount_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000879 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
880 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 break;
882 case XFS_TRANS_SB_IFREE:
883 tp->t_ifree_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000884 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
885 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
887 case XFS_TRANS_SB_FDBLOCKS:
888 /*
889 * Track the number of blocks allocated in the
890 * transaction. Make sure it does not exceed the
891 * number reserved.
892 */
893 if (delta < 0) {
894 tp->t_blk_res_used += (uint)-delta;
895 ASSERT(tp->t_blk_res_used <= tp->t_blk_res);
896 }
897 tp->t_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000898 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
899 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 break;
901 case XFS_TRANS_SB_RES_FDBLOCKS:
902 /*
903 * The allocation has already been applied to the
904 * in-core superblock's counter. This should only
905 * be applied to the on-disk superblock.
906 */
907 ASSERT(delta < 0);
908 tp->t_res_fdblocks_delta += delta;
David Chinner92821e22007-05-24 15:26:31 +1000909 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
910 flags &= ~XFS_TRANS_SB_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 break;
912 case XFS_TRANS_SB_FREXTENTS:
913 /*
914 * Track the number of blocks allocated in the
915 * transaction. Make sure it does not exceed the
916 * number reserved.
917 */
918 if (delta < 0) {
919 tp->t_rtx_res_used += (uint)-delta;
920 ASSERT(tp->t_rtx_res_used <= tp->t_rtx_res);
921 }
922 tp->t_frextents_delta += delta;
923 break;
924 case XFS_TRANS_SB_RES_FREXTENTS:
925 /*
926 * The allocation has already been applied to the
Nathan Scottc41564b2006-03-29 08:55:14 +1000927 * in-core superblock's counter. This should only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 * be applied to the on-disk superblock.
929 */
930 ASSERT(delta < 0);
931 tp->t_res_frextents_delta += delta;
932 break;
933 case XFS_TRANS_SB_DBLOCKS:
934 ASSERT(delta > 0);
935 tp->t_dblocks_delta += delta;
936 break;
937 case XFS_TRANS_SB_AGCOUNT:
938 ASSERT(delta > 0);
939 tp->t_agcount_delta += delta;
940 break;
941 case XFS_TRANS_SB_IMAXPCT:
942 tp->t_imaxpct_delta += delta;
943 break;
944 case XFS_TRANS_SB_REXTSIZE:
945 tp->t_rextsize_delta += delta;
946 break;
947 case XFS_TRANS_SB_RBMBLOCKS:
948 tp->t_rbmblocks_delta += delta;
949 break;
950 case XFS_TRANS_SB_RBLOCKS:
951 tp->t_rblocks_delta += delta;
952 break;
953 case XFS_TRANS_SB_REXTENTS:
954 tp->t_rextents_delta += delta;
955 break;
956 case XFS_TRANS_SB_REXTSLOG:
957 tp->t_rextslog_delta += delta;
958 break;
959 default:
960 ASSERT(0);
961 return;
962 }
963
David Chinner210c6f12007-05-24 15:26:51 +1000964 tp->t_flags |= flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967/*
968 * xfs_trans_apply_sb_deltas() is called from the commit code
969 * to bring the superblock buffer into the current transaction
970 * and modify it as requested by earlier calls to xfs_trans_mod_sb().
971 *
972 * For now we just look at each field allowed to change and change
973 * it if necessary.
974 */
975STATIC void
976xfs_trans_apply_sb_deltas(
977 xfs_trans_t *tp)
978{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000979 xfs_dsb_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 xfs_buf_t *bp;
981 int whole = 0;
982
983 bp = xfs_trans_getsb(tp, tp->t_mountp, 0);
984 sbp = XFS_BUF_TO_SBP(bp);
985
986 /*
987 * Check that superblock mods match the mods made to AGF counters.
988 */
989 ASSERT((tp->t_fdblocks_delta + tp->t_res_fdblocks_delta) ==
990 (tp->t_ag_freeblks_delta + tp->t_ag_flist_delta +
991 tp->t_ag_btree_delta));
992
David Chinner92821e22007-05-24 15:26:31 +1000993 /*
994 * Only update the superblock counters if we are logging them
995 */
996 if (!xfs_sb_version_haslazysbcount(&(tp->t_mountp->m_sb))) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000997 if (tp->t_icount_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800998 be64_add_cpu(&sbp->sb_icount, tp->t_icount_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000999 if (tp->t_ifree_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001000 be64_add_cpu(&sbp->sb_ifree, tp->t_ifree_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001001 if (tp->t_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001002 be64_add_cpu(&sbp->sb_fdblocks, tp->t_fdblocks_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001003 if (tp->t_res_fdblocks_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001004 be64_add_cpu(&sbp->sb_fdblocks, tp->t_res_fdblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001007 if (tp->t_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001008 be64_add_cpu(&sbp->sb_frextents, tp->t_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001009 if (tp->t_res_frextents_delta)
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001010 be64_add_cpu(&sbp->sb_frextents, tp->t_res_frextents_delta);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001011
1012 if (tp->t_dblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001013 be64_add_cpu(&sbp->sb_dblocks, tp->t_dblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 whole = 1;
1015 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001016 if (tp->t_agcount_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001017 be32_add_cpu(&sbp->sb_agcount, tp->t_agcount_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 whole = 1;
1019 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001020 if (tp->t_imaxpct_delta) {
1021 sbp->sb_imax_pct += tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 whole = 1;
1023 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001024 if (tp->t_rextsize_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001025 be32_add_cpu(&sbp->sb_rextsize, tp->t_rextsize_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 whole = 1;
1027 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001028 if (tp->t_rbmblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001029 be32_add_cpu(&sbp->sb_rbmblocks, tp->t_rbmblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 whole = 1;
1031 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001032 if (tp->t_rblocks_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001033 be64_add_cpu(&sbp->sb_rblocks, tp->t_rblocks_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 whole = 1;
1035 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001036 if (tp->t_rextents_delta) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001037 be64_add_cpu(&sbp->sb_rextents, tp->t_rextents_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 whole = 1;
1039 }
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001040 if (tp->t_rextslog_delta) {
1041 sbp->sb_rextslog += tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 whole = 1;
1043 }
1044
1045 if (whole)
1046 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001047 * Log the whole thing, the fields are noncontiguous.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001049 xfs_trans_log_buf(tp, bp, 0, sizeof(xfs_dsb_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 else
1051 /*
1052 * Since all the modifiable fields are contiguous, we
1053 * can get away with this.
1054 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001055 xfs_trans_log_buf(tp, bp, offsetof(xfs_dsb_t, sb_icount),
1056 offsetof(xfs_dsb_t, sb_frextents) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 sizeof(sbp->sb_frextents) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060/*
David Chinner45c34142007-06-18 16:49:44 +10001061 * xfs_trans_unreserve_and_mod_sb() is called to release unused reservations
1062 * and apply superblock counter changes to the in-core superblock. The
1063 * t_res_fdblocks_delta and t_res_frextents_delta fields are explicitly NOT
1064 * applied to the in-core superblock. The idea is that that has already been
1065 * done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 *
1067 * This is done efficiently with a single call to xfs_mod_incore_sb_batch().
David Chinner45c34142007-06-18 16:49:44 +10001068 * However, we have to ensure that we only modify each superblock field only
1069 * once because the application of the delta values may not be atomic. That can
1070 * lead to ENOSPC races occurring if we have two separate modifcations of the
1071 * free space counter to put back the entire reservation and then take away
1072 * what we used.
1073 *
1074 * If we are not logging superblock counters, then the inode allocated/free and
1075 * used block counts are not updated in the on disk superblock. In this case,
1076 * XFS_TRANS_SB_DIRTY will not be set when the transaction is updated but we
1077 * still need to update the incore superblock with the changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 */
Dave Chinner71e330b2010-05-21 14:37:18 +10001079void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080xfs_trans_unreserve_and_mod_sb(
1081 xfs_trans_t *tp)
1082{
Christoph Hellwig1b040712010-09-30 02:25:56 +00001083 xfs_mod_sb_t msb[9]; /* If you add cases, add entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 xfs_mod_sb_t *msbp;
David Chinner92821e22007-05-24 15:26:31 +10001085 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /* REFERENCED */
1087 int error;
1088 int rsvd;
David Chinner45c34142007-06-18 16:49:44 +10001089 int64_t blkdelta = 0;
1090 int64_t rtxdelta = 0;
Christoph Hellwig1b040712010-09-30 02:25:56 +00001091 int64_t idelta = 0;
1092 int64_t ifreedelta = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 msbp = msb;
1095 rsvd = (tp->t_flags & XFS_TRANS_RESERVE) != 0;
1096
Christoph Hellwig1b040712010-09-30 02:25:56 +00001097 /* calculate deltas */
David Chinner45c34142007-06-18 16:49:44 +10001098 if (tp->t_blk_res > 0)
1099 blkdelta = tp->t_blk_res;
David Chinner45c34142007-06-18 16:49:44 +10001100 if ((tp->t_fdblocks_delta != 0) &&
1101 (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
1102 (tp->t_flags & XFS_TRANS_SB_DIRTY)))
1103 blkdelta += tp->t_fdblocks_delta;
1104
David Chinner45c34142007-06-18 16:49:44 +10001105 if (tp->t_rtx_res > 0)
1106 rtxdelta = tp->t_rtx_res;
David Chinner45c34142007-06-18 16:49:44 +10001107 if ((tp->t_frextents_delta != 0) &&
1108 (tp->t_flags & XFS_TRANS_SB_DIRTY))
1109 rtxdelta += tp->t_frextents_delta;
1110
Christoph Hellwig1b040712010-09-30 02:25:56 +00001111 if (xfs_sb_version_haslazysbcount(&mp->m_sb) ||
1112 (tp->t_flags & XFS_TRANS_SB_DIRTY)) {
1113 idelta = tp->t_icount_delta;
1114 ifreedelta = tp->t_ifree_delta;
1115 }
1116
1117 /* apply the per-cpu counters */
1118 if (blkdelta) {
1119 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
1120 blkdelta, rsvd);
1121 if (error)
1122 goto out;
1123 }
1124
1125 if (idelta) {
1126 error = xfs_icsb_modify_counters(mp, XFS_SBS_ICOUNT,
1127 idelta, rsvd);
1128 if (error)
1129 goto out_undo_fdblocks;
1130 }
1131
1132 if (ifreedelta) {
1133 error = xfs_icsb_modify_counters(mp, XFS_SBS_IFREE,
1134 ifreedelta, rsvd);
1135 if (error)
1136 goto out_undo_icount;
1137 }
1138
1139 /* apply remaining deltas */
David Chinner45c34142007-06-18 16:49:44 +10001140 if (rtxdelta != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 msbp->msb_field = XFS_SBS_FREXTENTS;
David Chinner45c34142007-06-18 16:49:44 +10001142 msbp->msb_delta = rtxdelta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 msbp++;
1144 }
1145
David Chinner92821e22007-05-24 15:26:31 +10001146 if (tp->t_flags & XFS_TRANS_SB_DIRTY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (tp->t_dblocks_delta != 0) {
1148 msbp->msb_field = XFS_SBS_DBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +11001149 msbp->msb_delta = tp->t_dblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 msbp++;
1151 }
1152 if (tp->t_agcount_delta != 0) {
1153 msbp->msb_field = XFS_SBS_AGCOUNT;
David Chinner20f4ebf2007-02-10 18:36:10 +11001154 msbp->msb_delta = tp->t_agcount_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 msbp++;
1156 }
1157 if (tp->t_imaxpct_delta != 0) {
1158 msbp->msb_field = XFS_SBS_IMAX_PCT;
David Chinner20f4ebf2007-02-10 18:36:10 +11001159 msbp->msb_delta = tp->t_imaxpct_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 msbp++;
1161 }
1162 if (tp->t_rextsize_delta != 0) {
1163 msbp->msb_field = XFS_SBS_REXTSIZE;
David Chinner20f4ebf2007-02-10 18:36:10 +11001164 msbp->msb_delta = tp->t_rextsize_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 msbp++;
1166 }
1167 if (tp->t_rbmblocks_delta != 0) {
1168 msbp->msb_field = XFS_SBS_RBMBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +11001169 msbp->msb_delta = tp->t_rbmblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 msbp++;
1171 }
1172 if (tp->t_rblocks_delta != 0) {
1173 msbp->msb_field = XFS_SBS_RBLOCKS;
David Chinner20f4ebf2007-02-10 18:36:10 +11001174 msbp->msb_delta = tp->t_rblocks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 msbp++;
1176 }
1177 if (tp->t_rextents_delta != 0) {
1178 msbp->msb_field = XFS_SBS_REXTENTS;
David Chinner20f4ebf2007-02-10 18:36:10 +11001179 msbp->msb_delta = tp->t_rextents_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 msbp++;
1181 }
1182 if (tp->t_rextslog_delta != 0) {
1183 msbp->msb_field = XFS_SBS_REXTSLOG;
David Chinner20f4ebf2007-02-10 18:36:10 +11001184 msbp->msb_delta = tp->t_rextslog_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 msbp++;
1186 }
1187 }
1188
1189 /*
1190 * If we need to change anything, do it.
1191 */
1192 if (msbp > msb) {
1193 error = xfs_mod_incore_sb_batch(tp->t_mountp, msb,
1194 (uint)(msbp - msb), rsvd);
Christoph Hellwig1b040712010-09-30 02:25:56 +00001195 if (error)
1196 goto out_undo_ifreecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Christoph Hellwig1b040712010-09-30 02:25:56 +00001198
1199 return;
1200
1201out_undo_ifreecount:
1202 if (ifreedelta)
1203 xfs_icsb_modify_counters(mp, XFS_SBS_IFREE, -ifreedelta, rsvd);
1204out_undo_icount:
1205 if (idelta)
1206 xfs_icsb_modify_counters(mp, XFS_SBS_ICOUNT, -idelta, rsvd);
1207out_undo_fdblocks:
1208 if (blkdelta)
1209 xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS, -blkdelta, rsvd);
1210out:
Jesper Juhl1884bd82010-12-25 20:14:53 +00001211 ASSERT(error == 0);
Christoph Hellwig1b040712010-09-30 02:25:56 +00001212 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213}
1214
Dave Chinner09243782010-03-08 11:28:28 +11001215/*
Christoph Hellwige98c4142010-06-23 18:11:15 +10001216 * Add the given log item to the transaction's list of log items.
1217 *
1218 * The log item will now point to its new descriptor with its li_desc field.
1219 */
1220void
1221xfs_trans_add_item(
1222 struct xfs_trans *tp,
1223 struct xfs_log_item *lip)
1224{
1225 struct xfs_log_item_desc *lidp;
1226
Jesper Juhlf65020a2012-02-13 20:51:05 +00001227 ASSERT(lip->li_mountp == tp->t_mountp);
1228 ASSERT(lip->li_ailp == tp->t_mountp->m_ail);
Christoph Hellwige98c4142010-06-23 18:11:15 +10001229
Dave Chinner43869702010-07-20 17:53:44 +10001230 lidp = kmem_zone_zalloc(xfs_log_item_desc_zone, KM_SLEEP | KM_NOFS);
Christoph Hellwige98c4142010-06-23 18:11:15 +10001231
1232 lidp->lid_item = lip;
1233 lidp->lid_flags = 0;
Christoph Hellwige98c4142010-06-23 18:11:15 +10001234 list_add_tail(&lidp->lid_trans, &tp->t_items);
1235
1236 lip->li_desc = lidp;
1237}
1238
1239STATIC void
1240xfs_trans_free_item_desc(
1241 struct xfs_log_item_desc *lidp)
1242{
1243 list_del_init(&lidp->lid_trans);
1244 kmem_zone_free(xfs_log_item_desc_zone, lidp);
1245}
1246
1247/*
1248 * Unlink and free the given descriptor.
1249 */
1250void
1251xfs_trans_del_item(
1252 struct xfs_log_item *lip)
1253{
1254 xfs_trans_free_item_desc(lip->li_desc);
1255 lip->li_desc = NULL;
1256}
1257
1258/*
1259 * Unlock all of the items of a transaction and free all the descriptors
1260 * of that transaction.
1261 */
Dave Chinnerd17c7012010-08-24 11:42:52 +10001262void
Christoph Hellwige98c4142010-06-23 18:11:15 +10001263xfs_trans_free_items(
1264 struct xfs_trans *tp,
1265 xfs_lsn_t commit_lsn,
1266 int flags)
1267{
1268 struct xfs_log_item_desc *lidp, *next;
1269
1270 list_for_each_entry_safe(lidp, next, &tp->t_items, lid_trans) {
1271 struct xfs_log_item *lip = lidp->lid_item;
1272
1273 lip->li_desc = NULL;
1274
1275 if (commit_lsn != NULLCOMMITLSN)
1276 IOP_COMMITTING(lip, commit_lsn);
1277 if (flags & XFS_TRANS_ABORT)
1278 lip->li_flags |= XFS_LI_ABORTED;
1279 IOP_UNLOCK(lip);
1280
1281 xfs_trans_free_item_desc(lidp);
1282 }
1283}
1284
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001285static inline void
1286xfs_log_item_batch_insert(
1287 struct xfs_ail *ailp,
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001288 struct xfs_ail_cursor *cur,
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001289 struct xfs_log_item **log_items,
1290 int nr_items,
1291 xfs_lsn_t commit_lsn)
1292{
1293 int i;
1294
1295 spin_lock(&ailp->xa_lock);
1296 /* xfs_trans_ail_update_bulk drops ailp->xa_lock */
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001297 xfs_trans_ail_update_bulk(ailp, cur, log_items, nr_items, commit_lsn);
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001298
1299 for (i = 0; i < nr_items; i++)
1300 IOP_UNPIN(log_items[i], 0);
1301}
1302
1303/*
1304 * Bulk operation version of xfs_trans_committed that takes a log vector of
1305 * items to insert into the AIL. This uses bulk AIL insertion techniques to
1306 * minimise lock traffic.
Dave Chinnere34a3142011-01-27 12:13:35 +11001307 *
1308 * If we are called with the aborted flag set, it is because a log write during
1309 * a CIL checkpoint commit has failed. In this case, all the items in the
1310 * checkpoint have already gone through IOP_COMMITED and IOP_UNLOCK, which
1311 * means that checkpoint commit abort handling is treated exactly the same
1312 * as an iclog write error even though we haven't started any IO yet. Hence in
1313 * this case all we need to do is IOP_COMMITTED processing, followed by an
1314 * IOP_UNPIN(aborted) call.
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001315 *
1316 * The AIL cursor is used to optimise the insert process. If commit_lsn is not
1317 * at the end of the AIL, the insert cursor avoids the need to walk
1318 * the AIL to find the insertion point on every xfs_log_item_batch_insert()
1319 * call. This saves a lot of needless list walking and is a net win, even
1320 * though it slightly increases that amount of AIL lock traffic to set it up
1321 * and tear it down.
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001322 */
1323void
1324xfs_trans_committed_bulk(
1325 struct xfs_ail *ailp,
1326 struct xfs_log_vec *log_vector,
1327 xfs_lsn_t commit_lsn,
1328 int aborted)
1329{
1330#define LOG_ITEM_BATCH_SIZE 32
1331 struct xfs_log_item *log_items[LOG_ITEM_BATCH_SIZE];
1332 struct xfs_log_vec *lv;
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001333 struct xfs_ail_cursor cur;
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001334 int i = 0;
1335
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001336 spin_lock(&ailp->xa_lock);
1337 xfs_trans_ail_cursor_last(ailp, &cur, commit_lsn);
1338 spin_unlock(&ailp->xa_lock);
1339
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001340 /* unpin all the log items */
1341 for (lv = log_vector; lv; lv = lv->lv_next ) {
1342 struct xfs_log_item *lip = lv->lv_item;
1343 xfs_lsn_t item_lsn;
1344
1345 if (aborted)
1346 lip->li_flags |= XFS_LI_ABORTED;
1347 item_lsn = IOP_COMMITTED(lip, commit_lsn);
1348
Dave Chinner1316d4d2011-07-04 05:27:36 +00001349 /* item_lsn of -1 means the item needs no further processing */
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001350 if (XFS_LSN_CMP(item_lsn, (xfs_lsn_t)-1) == 0)
1351 continue;
1352
Dave Chinnere34a3142011-01-27 12:13:35 +11001353 /*
1354 * if we are aborting the operation, no point in inserting the
1355 * object into the AIL as we are in a shutdown situation.
1356 */
1357 if (aborted) {
1358 ASSERT(XFS_FORCED_SHUTDOWN(ailp->xa_mount));
1359 IOP_UNPIN(lip, 1);
1360 continue;
1361 }
1362
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001363 if (item_lsn != commit_lsn) {
1364
1365 /*
1366 * Not a bulk update option due to unusual item_lsn.
1367 * Push into AIL immediately, rechecking the lsn once
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001368 * we have the ail lock. Then unpin the item. This does
1369 * not affect the AIL cursor the bulk insert path is
1370 * using.
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001371 */
1372 spin_lock(&ailp->xa_lock);
1373 if (XFS_LSN_CMP(item_lsn, lip->li_lsn) > 0)
1374 xfs_trans_ail_update(ailp, lip, item_lsn);
1375 else
1376 spin_unlock(&ailp->xa_lock);
1377 IOP_UNPIN(lip, 0);
1378 continue;
1379 }
1380
1381 /* Item is a candidate for bulk AIL insert. */
1382 log_items[i++] = lv->lv_item;
1383 if (i >= LOG_ITEM_BATCH_SIZE) {
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001384 xfs_log_item_batch_insert(ailp, &cur, log_items,
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001385 LOG_ITEM_BATCH_SIZE, commit_lsn);
1386 i = 0;
1387 }
1388 }
1389
1390 /* make sure we insert the remainder! */
1391 if (i)
Dave Chinner1d8c95a2011-07-18 03:40:16 +00001392 xfs_log_item_batch_insert(ailp, &cur, log_items, i, commit_lsn);
1393
1394 spin_lock(&ailp->xa_lock);
1395 xfs_trans_ail_cursor_done(ailp, &cur);
1396 spin_unlock(&ailp->xa_lock);
Dave Chinner0e57f6a2010-12-20 12:02:19 +11001397}
1398
Dave Chinnerb1c1b5b2010-03-23 10:11:05 +11001399/*
Christoph Hellwigb1037052011-09-19 14:55:51 +00001400 * Commit the given transaction to the log.
Dave Chinner09243782010-03-08 11:28:28 +11001401 *
1402 * XFS disk error handling mechanism is not based on a typical
1403 * transaction abort mechanism. Logically after the filesystem
1404 * gets marked 'SHUTDOWN', we can't let any new transactions
1405 * be durable - ie. committed to disk - because some metadata might
1406 * be inconsistent. In such cases, this returns an error, and the
1407 * caller may assume that all locked objects joined to the transaction
1408 * have already been unlocked as if the commit had succeeded.
1409 * Do not reference the transaction structure after this call.
1410 */
Dave Chinner09243782010-03-08 11:28:28 +11001411int
Christoph Hellwigb1037052011-09-19 14:55:51 +00001412xfs_trans_commit(
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001413 struct xfs_trans *tp,
Christoph Hellwigb1037052011-09-19 14:55:51 +00001414 uint flags)
Dave Chinner09243782010-03-08 11:28:28 +11001415{
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001416 struct xfs_mount *mp = tp->t_mountp;
Dave Chinner09243782010-03-08 11:28:28 +11001417 xfs_lsn_t commit_lsn = -1;
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001418 int error = 0;
Dave Chinner09243782010-03-08 11:28:28 +11001419 int log_flags = 0;
1420 int sync = tp->t_flags & XFS_TRANS_SYNC;
Dave Chinner09243782010-03-08 11:28:28 +11001421
1422 /*
1423 * Determine whether this commit is releasing a permanent
1424 * log reservation or not.
1425 */
1426 if (flags & XFS_TRANS_RELEASE_LOG_RES) {
1427 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
1428 log_flags = XFS_LOG_REL_PERM_RESERV;
1429 }
1430
1431 /*
1432 * If there is nothing to be logged by the transaction,
1433 * then unlock all of the items associated with the
1434 * transaction and free the transaction structure.
1435 * Also make sure to return any reserved blocks to
1436 * the free pool.
1437 */
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001438 if (!(tp->t_flags & XFS_TRANS_DIRTY))
1439 goto out_unreserve;
1440
1441 if (XFS_FORCED_SHUTDOWN(mp)) {
1442 error = XFS_ERROR(EIO);
1443 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +11001444 }
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001445
Dave Chinner09243782010-03-08 11:28:28 +11001446 ASSERT(tp->t_ticket != NULL);
1447
1448 /*
1449 * If we need to update the superblock, then do it now.
1450 */
1451 if (tp->t_flags & XFS_TRANS_SB_DIRTY)
1452 xfs_trans_apply_sb_deltas(tp);
1453 xfs_trans_apply_dquot_deltas(tp);
1454
Christoph Hellwig0244b962011-12-06 21:58:08 +00001455 error = xfs_log_commit_cil(mp, tp, &commit_lsn, flags);
Dave Chinner09243782010-03-08 11:28:28 +11001456 if (error == ENOMEM) {
1457 xfs_force_shutdown(mp, SHUTDOWN_LOG_IO_ERROR);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001458 error = XFS_ERROR(EIO);
1459 goto out_unreserve;
Dave Chinner09243782010-03-08 11:28:28 +11001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Christoph Hellwig0244b962011-12-06 21:58:08 +00001462 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
1463 xfs_trans_free(tp);
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 /*
1466 * If the transaction needs to be synchronous, then force the
1467 * log out now and wait for it.
1468 */
1469 if (sync) {
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001470 if (!error) {
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001471 error = _xfs_log_force_lsn(mp, commit_lsn,
Christoph Hellwigb1037052011-09-19 14:55:51 +00001472 XFS_LOG_SYNC, NULL);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 XFS_STATS_INC(xs_trans_sync);
1475 } else {
1476 XFS_STATS_INC(xs_trans_async);
1477 }
1478
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001479 return error;
1480
1481out_unreserve:
1482 xfs_trans_unreserve_and_mod_sb(tp);
1483
1484 /*
1485 * It is indeed possible for the transaction to be not dirty but
1486 * the dqinfo portion to be. All that means is that we have some
1487 * (non-persistent) quota reservations that need to be unreserved.
1488 */
1489 xfs_trans_unreserve_and_mod_dquots(tp);
1490 if (tp->t_ticket) {
1491 commit_lsn = xfs_log_done(mp, tp->t_ticket, NULL, log_flags);
1492 if (commit_lsn == -1 && !error)
1493 error = XFS_ERROR(EIO);
1494 }
1495 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Dave Chinner71e330b2010-05-21 14:37:18 +10001496 xfs_trans_free_items(tp, NULLCOMMITLSN, error ? XFS_TRANS_ABORT : 0);
Christoph Hellwiga3ccd2c2010-03-15 12:52:49 +11001497 xfs_trans_free(tp);
1498
1499 XFS_STATS_INC(xs_trans_empty);
1500 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 * Unlock all of the transaction's items and free the transaction.
1505 * The transaction must not have modified any of its items, because
1506 * there is no way to restore them to their previous state.
1507 *
1508 * If the transaction has made a log reservation, make sure to release
1509 * it as well.
1510 */
1511void
1512xfs_trans_cancel(
1513 xfs_trans_t *tp,
1514 int flags)
1515{
1516 int log_flags;
Ryan Hankins0733af22006-01-11 15:36:44 +11001517 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 /*
1520 * See if the caller is being too lazy to figure out if
1521 * the transaction really needs an abort.
1522 */
1523 if ((flags & XFS_TRANS_ABORT) && !(tp->t_flags & XFS_TRANS_DIRTY))
1524 flags &= ~XFS_TRANS_ABORT;
1525 /*
1526 * See if the caller is relying on us to shut down the
1527 * filesystem. This happens in paths where we detect
1528 * corruption and decide to give up.
1529 */
Nathan Scott60a204f2006-01-11 15:37:00 +11001530 if ((tp->t_flags & XFS_TRANS_DIRTY) && !XFS_FORCED_SHUTDOWN(mp)) {
Ryan Hankins0733af22006-01-11 15:36:44 +11001531 XFS_ERROR_REPORT("xfs_trans_cancel", XFS_ERRLEVEL_LOW, mp);
Nathan Scott7d04a332006-06-09 14:58:38 +10001532 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Nathan Scott60a204f2006-01-11 15:37:00 +11001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534#ifdef DEBUG
Christoph Hellwige98c4142010-06-23 18:11:15 +10001535 if (!(flags & XFS_TRANS_ABORT) && !XFS_FORCED_SHUTDOWN(mp)) {
1536 struct xfs_log_item_desc *lidp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Christoph Hellwige98c4142010-06-23 18:11:15 +10001538 list_for_each_entry(lidp, &tp->t_items, lid_trans)
1539 ASSERT(!(lidp->lid_item->li_type == XFS_LI_EFD));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541#endif
1542 xfs_trans_unreserve_and_mod_sb(tp);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001543 xfs_trans_unreserve_and_mod_dquots(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 if (tp->t_ticket) {
1546 if (flags & XFS_TRANS_RELEASE_LOG_RES) {
1547 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
1548 log_flags = XFS_LOG_REL_PERM_RESERV;
1549 } else {
1550 log_flags = 0;
1551 }
Ryan Hankins0733af22006-01-11 15:36:44 +11001552 xfs_log_done(mp, tp->t_ticket, NULL, log_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554
1555 /* mark this thread as no longer being in a transaction */
Nathan Scott59c1b082006-06-09 14:59:13 +10001556 current_restore_flags_nested(&tp->t_pflags, PF_FSTRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Dave Chinner71e330b2010-05-21 14:37:18 +10001558 xfs_trans_free_items(tp, NULLCOMMITLSN, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 xfs_trans_free(tp);
1560}
1561
Niv Sardi322ff6b2008-08-13 16:05:49 +10001562/*
1563 * Roll from one trans in the sequence of PERMANENT transactions to
1564 * the next: permanent transactions are only flushed out when
1565 * committed with XFS_TRANS_RELEASE_LOG_RES, but we still want as soon
1566 * as possible to let chunks of it go to the log. So we commit the
1567 * chunk we've been working on and get a new transaction to continue.
1568 */
1569int
1570xfs_trans_roll(
1571 struct xfs_trans **tpp,
1572 struct xfs_inode *dp)
1573{
1574 struct xfs_trans *trans;
1575 unsigned int logres, count;
1576 int error;
1577
1578 /*
1579 * Ensure that the inode is always logged.
1580 */
1581 trans = *tpp;
1582 xfs_trans_log_inode(trans, dp, XFS_ILOG_CORE);
1583
1584 /*
1585 * Copy the critical parameters from one trans to the next.
1586 */
1587 logres = trans->t_log_res;
1588 count = trans->t_log_count;
1589 *tpp = xfs_trans_dup(trans);
1590
1591 /*
1592 * Commit the current transaction.
1593 * If this commit failed, then it'd just unlock those items that
1594 * are not marked ihold. That also means that a filesystem shutdown
1595 * is in progress. The caller takes the responsibility to cancel
1596 * the duplicate transaction that gets returned.
1597 */
1598 error = xfs_trans_commit(trans, 0);
1599 if (error)
1600 return (error);
1601
1602 trans = *tpp;
1603
1604 /*
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001605 * transaction commit worked ok so we can drop the extra ticket
1606 * reference that we gained in xfs_trans_dup()
1607 */
1608 xfs_log_ticket_put(trans->t_ticket);
1609
1610
1611 /*
Niv Sardi322ff6b2008-08-13 16:05:49 +10001612 * Reserve space in the log for th next transaction.
1613 * This also pushes items in the "AIL", the list of logged items,
1614 * out to disk if they are taking up space at the tail of the log
1615 * that we want to use. This requires that either nothing be locked
1616 * across this call, or that anything that is locked be logged in
1617 * the prior and the next transactions.
1618 */
1619 error = xfs_trans_reserve(trans, 0, logres, 0,
1620 XFS_TRANS_PERM_LOG_RES, count);
1621 /*
1622 * Ensure that the inode is in the new transaction and locked.
1623 */
1624 if (error)
1625 return error;
1626
Christoph Hellwigddc34152011-09-19 15:00:54 +00001627 xfs_trans_ijoin(trans, dp, 0);
Niv Sardi322ff6b2008-08-13 16:05:49 +10001628 return 0;
1629}