2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * Copyright (C) 2010 Red Hat, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
10 * 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.
15 * 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
21 #include "xfs_shared.h"
22 #include "xfs_format.h"
23 #include "xfs_log_format.h"
24 #include "xfs_trans_resv.h"
27 #include "xfs_mount.h"
28 #include "xfs_da_format.h"
29 #include "xfs_inode.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_ialloc.h"
32 #include "xfs_quota.h"
33 #include "xfs_trans.h"
35 #include "xfs_trans_space.h"
36 #include "xfs_trace.h"
39 * A buffer has a format structure overhead in the log in addition
40 * to the data, so we need to take this into account when reserving
41 * space in a transaction for a buffer. Round the space required up
42 * to a multiple of 128 bytes so that we don't change the historical
43 * reservation that has been used for this overhead.
46 xfs_buf_log_overhead(void)
48 return round_up(sizeof(struct xlog_op_header
) +
49 sizeof(struct xfs_buf_log_format
), 128);
53 * Calculate out transaction log reservation per item in bytes.
55 * The nbufs argument is used to indicate the number of items that
56 * will be changed in a transaction. size is used to tell how many
57 * bytes should be reserved per item.
64 return nbufs
* (size
+ xfs_buf_log_overhead());
68 * Logging inodes is really tricksy. They are logged in memory format,
69 * which means that what we write into the log doesn't directly translate into
70 * the amount of space they use on disk.
72 * Case in point - btree format forks in memory format use more space than the
73 * on-disk format. In memory, the buffer contains a normal btree block header so
74 * the btree code can treat it as though it is just another generic buffer.
75 * However, when we write it to the inode fork, we don't write all of this
76 * header as it isn't needed. e.g. the root is only ever in the inode, so
77 * there's no need for sibling pointers which would waste 16 bytes of space.
79 * Hence when we have an inode with a maximally sized btree format fork, then
80 * amount of information we actually log is greater than the size of the inode
81 * on disk. Hence we need an inode reservation function that calculates all this
82 * correctly. So, we log:
84 * - log op headers for object
85 * - inode log format object
86 * - the entire inode contents (core + 2 forks)
87 * - two bmap btree block headers
94 return ninodes
* (sizeof(struct xlog_op_header
) +
95 sizeof(struct xfs_inode_log_format
) +
96 mp
->m_sb
.sb_inodesize
+
97 2 * XFS_BMBT_BLOCK_LEN(mp
));
101 * Various log reservation values.
103 * These are based on the size of the file system block because that is what
104 * most transactions manipulate. Each adds in an additional 128 bytes per
105 * item logged to try to account for the overhead of the transaction mechanism.
107 * Note: Most of the reservations underestimate the number of allocation
108 * groups into which they could free extents in the xfs_bmap_finish() call.
109 * This is because the number in the worst case is quite high and quite
110 * unusual. In order to fix this we need to change xfs_bmap_finish() to free
111 * extents in only a single AG at a time. This will require changes to the
112 * EFI code as well, however, so that the EFI for the extents not freed is
113 * logged again in each transaction. See SGI PV #261917.
115 * Reservation functions here avoid a huge stack in xfs_trans_init due to
116 * register overflow from temporaries in the calculations.
121 * In a write transaction we can allocate a maximum of 2
122 * extents. This gives:
123 * the inode getting the new extents: inode size
124 * the inode's bmap btree: max depth * block size
125 * the agfs of the ags from which the extents are allocated: 2 * sector
126 * the superblock free block counter: sector size
127 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
128 * And the bmap_finish transaction can free bmap blocks in a join:
129 * the agfs of the ags containing the blocks: 2 * sector size
130 * the agfls of the ags containing the blocks: 2 * sector size
131 * the super block free block counter: sector size
132 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
135 xfs_calc_write_reservation(
136 struct xfs_mount
*mp
)
138 return XFS_DQUOT_LOGRES(mp
) +
139 MAX((xfs_calc_inode_res(mp
, 1) +
140 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
),
141 XFS_FSB_TO_B(mp
, 1)) +
142 xfs_calc_buf_res(3, mp
->m_sb
.sb_sectsize
) +
143 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 2),
144 XFS_FSB_TO_B(mp
, 1))),
145 (xfs_calc_buf_res(5, mp
->m_sb
.sb_sectsize
) +
146 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 2),
147 XFS_FSB_TO_B(mp
, 1))));
151 * In truncating a file we free up to two extents at once. We can modify:
152 * the inode being truncated: inode size
153 * the inode's bmap btree: (max depth + 1) * block size
154 * And the bmap_finish transaction can free the blocks and bmap blocks:
155 * the agf for each of the ags: 4 * sector size
156 * the agfl for each of the ags: 4 * sector size
157 * the super block to reflect the freed blocks: sector size
158 * worst case split in allocation btrees per extent assuming 4 extents:
159 * 4 exts * 2 trees * (2 * max depth - 1) * block size
160 * the inode btree: max depth * blocksize
161 * the allocation btrees: 2 trees * (max depth - 1) * block size
164 xfs_calc_itruncate_reservation(
165 struct xfs_mount
*mp
)
167 return XFS_DQUOT_LOGRES(mp
) +
168 MAX((xfs_calc_inode_res(mp
, 1) +
169 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
) + 1,
170 XFS_FSB_TO_B(mp
, 1))),
171 (xfs_calc_buf_res(9, mp
->m_sb
.sb_sectsize
) +
172 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 4),
173 XFS_FSB_TO_B(mp
, 1)) +
174 xfs_calc_buf_res(5, 0) +
175 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
176 XFS_FSB_TO_B(mp
, 1)) +
177 xfs_calc_buf_res(2 + XFS_IALLOC_BLOCKS(mp
) +
178 mp
->m_in_maxlevels
, 0)));
182 * In renaming a files we can modify:
183 * the four inodes involved: 4 * inode size
184 * the two directory btrees: 2 * (max depth + v2) * dir block size
185 * the two directory bmap btrees: 2 * max depth * block size
186 * And the bmap_finish transaction can free dir and bmap blocks (two sets
187 * of bmap blocks) giving:
188 * the agf for the ags in which the blocks live: 3 * sector size
189 * the agfl for the ags in which the blocks live: 3 * sector size
190 * the superblock for the free block count: sector size
191 * the allocation btrees: 3 exts * 2 trees * (2 * max depth - 1) * block size
194 xfs_calc_rename_reservation(
195 struct xfs_mount
*mp
)
197 return XFS_DQUOT_LOGRES(mp
) +
198 MAX((xfs_calc_inode_res(mp
, 4) +
199 xfs_calc_buf_res(2 * XFS_DIROP_LOG_COUNT(mp
),
200 XFS_FSB_TO_B(mp
, 1))),
201 (xfs_calc_buf_res(7, mp
->m_sb
.sb_sectsize
) +
202 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 3),
203 XFS_FSB_TO_B(mp
, 1))));
207 * For creating a link to an inode:
208 * the parent directory inode: inode size
209 * the linked inode: inode size
210 * the directory btree could split: (max depth + v2) * dir block size
211 * the directory bmap btree could join or split: (max depth + v2) * blocksize
212 * And the bmap_finish transaction can free some bmap blocks giving:
213 * the agf for the ag in which the blocks live: sector size
214 * the agfl for the ag in which the blocks live: sector size
215 * the superblock for the free block count: sector size
216 * the allocation btrees: 2 trees * (2 * max depth - 1) * block size
219 xfs_calc_link_reservation(
220 struct xfs_mount
*mp
)
222 return XFS_DQUOT_LOGRES(mp
) +
223 MAX((xfs_calc_inode_res(mp
, 2) +
224 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp
),
225 XFS_FSB_TO_B(mp
, 1))),
226 (xfs_calc_buf_res(3, mp
->m_sb
.sb_sectsize
) +
227 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
228 XFS_FSB_TO_B(mp
, 1))));
232 * For removing a directory entry we can modify:
233 * the parent directory inode: inode size
234 * the removed inode: inode size
235 * the directory btree could join: (max depth + v2) * dir block size
236 * the directory bmap btree could join or split: (max depth + v2) * blocksize
237 * And the bmap_finish transaction can free the dir and bmap blocks giving:
238 * the agf for the ag in which the blocks live: 2 * sector size
239 * the agfl for the ag in which the blocks live: 2 * sector size
240 * the superblock for the free block count: sector size
241 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
244 xfs_calc_remove_reservation(
245 struct xfs_mount
*mp
)
247 return XFS_DQUOT_LOGRES(mp
) +
248 MAX((xfs_calc_inode_res(mp
, 2) +
249 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp
),
250 XFS_FSB_TO_B(mp
, 1))),
251 (xfs_calc_buf_res(5, mp
->m_sb
.sb_sectsize
) +
252 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 2),
253 XFS_FSB_TO_B(mp
, 1))));
257 * For create, break it in to the two cases that the transaction
258 * covers. We start with the modify case - allocation done by modification
259 * of the state of existing inodes - and the allocation case.
263 * For create we can modify:
264 * the parent directory inode: inode size
265 * the new inode: inode size
266 * the inode btree entry: block size
267 * the superblock for the nlink flag: sector size
268 * the directory btree: (max depth + v2) * dir block size
269 * the directory inode's bmap btree: (max depth + v2) * block size
272 xfs_calc_create_resv_modify(
273 struct xfs_mount
*mp
)
275 return xfs_calc_inode_res(mp
, 2) +
276 xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
) +
277 (uint
)XFS_FSB_TO_B(mp
, 1) +
278 xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp
), XFS_FSB_TO_B(mp
, 1));
282 * For create we can allocate some inodes giving:
283 * the agi and agf of the ag getting the new inodes: 2 * sectorsize
284 * the superblock for the nlink flag: sector size
285 * the inode blocks allocated: XFS_IALLOC_BLOCKS * blocksize
286 * the inode btree: max depth * blocksize
287 * the allocation btrees: 2 trees * (max depth - 1) * block size
290 xfs_calc_create_resv_alloc(
291 struct xfs_mount
*mp
)
293 return xfs_calc_buf_res(2, mp
->m_sb
.sb_sectsize
) +
294 mp
->m_sb
.sb_sectsize
+
295 xfs_calc_buf_res(XFS_IALLOC_BLOCKS(mp
), XFS_FSB_TO_B(mp
, 1)) +
296 xfs_calc_buf_res(mp
->m_in_maxlevels
, XFS_FSB_TO_B(mp
, 1)) +
297 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
298 XFS_FSB_TO_B(mp
, 1));
302 __xfs_calc_create_reservation(
303 struct xfs_mount
*mp
)
305 return XFS_DQUOT_LOGRES(mp
) +
306 MAX(xfs_calc_create_resv_alloc(mp
),
307 xfs_calc_create_resv_modify(mp
));
311 * For icreate we can allocate some inodes giving:
312 * the agi and agf of the ag getting the new inodes: 2 * sectorsize
313 * the superblock for the nlink flag: sector size
314 * the inode btree: max depth * blocksize
315 * the allocation btrees: 2 trees * (max depth - 1) * block size
318 xfs_calc_icreate_resv_alloc(
319 struct xfs_mount
*mp
)
321 return xfs_calc_buf_res(2, mp
->m_sb
.sb_sectsize
) +
322 mp
->m_sb
.sb_sectsize
+
323 xfs_calc_buf_res(mp
->m_in_maxlevels
, XFS_FSB_TO_B(mp
, 1)) +
324 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
325 XFS_FSB_TO_B(mp
, 1));
329 xfs_calc_icreate_reservation(xfs_mount_t
*mp
)
331 return XFS_DQUOT_LOGRES(mp
) +
332 MAX(xfs_calc_icreate_resv_alloc(mp
),
333 xfs_calc_create_resv_modify(mp
));
337 xfs_calc_create_reservation(
338 struct xfs_mount
*mp
)
340 if (xfs_sb_version_hascrc(&mp
->m_sb
))
341 return xfs_calc_icreate_reservation(mp
);
342 return __xfs_calc_create_reservation(mp
);
347 * Making a new directory is the same as creating a new file.
350 xfs_calc_mkdir_reservation(
351 struct xfs_mount
*mp
)
353 return xfs_calc_create_reservation(mp
);
358 * Making a new symplink is the same as creating a new file, but
359 * with the added blocks for remote symlink data which can be up to 1kB in
360 * length (MAXPATHLEN).
363 xfs_calc_symlink_reservation(
364 struct xfs_mount
*mp
)
366 return xfs_calc_create_reservation(mp
) +
367 xfs_calc_buf_res(1, MAXPATHLEN
);
371 * In freeing an inode we can modify:
372 * the inode being freed: inode size
373 * the super block free inode counter: sector size
374 * the agi hash list and counters: sector size
375 * the inode btree entry: block size
376 * the on disk inode before ours in the agi hash list: inode cluster size
377 * the inode btree: max depth * blocksize
378 * the allocation btrees: 2 trees * (max depth - 1) * block size
381 xfs_calc_ifree_reservation(
382 struct xfs_mount
*mp
)
384 return XFS_DQUOT_LOGRES(mp
) +
385 xfs_calc_inode_res(mp
, 1) +
386 xfs_calc_buf_res(2, mp
->m_sb
.sb_sectsize
) +
387 xfs_calc_buf_res(1, XFS_FSB_TO_B(mp
, 1)) +
388 MAX((__uint16_t
)XFS_FSB_TO_B(mp
, 1),
389 XFS_INODE_CLUSTER_SIZE(mp
)) +
390 xfs_calc_buf_res(1, 0) +
391 xfs_calc_buf_res(2 + XFS_IALLOC_BLOCKS(mp
) +
392 mp
->m_in_maxlevels
, 0) +
393 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
394 XFS_FSB_TO_B(mp
, 1));
398 * When only changing the inode we log the inode and possibly the superblock
399 * We also add a bit of slop for the transaction stuff.
402 xfs_calc_ichange_reservation(
403 struct xfs_mount
*mp
)
405 return XFS_DQUOT_LOGRES(mp
) +
406 xfs_calc_inode_res(mp
, 1) +
407 xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
);
412 * Growing the data section of the filesystem.
418 xfs_calc_growdata_reservation(
419 struct xfs_mount
*mp
)
421 return xfs_calc_buf_res(3, mp
->m_sb
.sb_sectsize
) +
422 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
423 XFS_FSB_TO_B(mp
, 1));
427 * Growing the rt section of the filesystem.
428 * In the first set of transactions (ALLOC) we allocate space to the
429 * bitmap or summary files.
430 * superblock: sector size
431 * agf of the ag from which the extent is allocated: sector size
432 * bmap btree for bitmap/summary inode: max depth * blocksize
433 * bitmap/summary inode: inode size
434 * allocation btrees for 1 block alloc: 2 * (2 * maxdepth - 1) * blocksize
437 xfs_calc_growrtalloc_reservation(
438 struct xfs_mount
*mp
)
440 return xfs_calc_buf_res(2, mp
->m_sb
.sb_sectsize
) +
441 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
),
442 XFS_FSB_TO_B(mp
, 1)) +
443 xfs_calc_inode_res(mp
, 1) +
444 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
445 XFS_FSB_TO_B(mp
, 1));
449 * Growing the rt section of the filesystem.
450 * In the second set of transactions (ZERO) we zero the new metadata blocks.
451 * one bitmap/summary block: blocksize
454 xfs_calc_growrtzero_reservation(
455 struct xfs_mount
*mp
)
457 return xfs_calc_buf_res(1, mp
->m_sb
.sb_blocksize
);
461 * Growing the rt section of the filesystem.
462 * In the third set of transactions (FREE) we update metadata without
463 * allocating any new blocks.
464 * superblock: sector size
465 * bitmap inode: inode size
466 * summary inode: inode size
467 * one bitmap block: blocksize
468 * summary blocks: new summary size
471 xfs_calc_growrtfree_reservation(
472 struct xfs_mount
*mp
)
474 return xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
) +
475 xfs_calc_inode_res(mp
, 2) +
476 xfs_calc_buf_res(1, mp
->m_sb
.sb_blocksize
) +
477 xfs_calc_buf_res(1, mp
->m_rsumsize
);
481 * Logging the inode modification timestamp on a synchronous write.
485 xfs_calc_swrite_reservation(
486 struct xfs_mount
*mp
)
488 return xfs_calc_inode_res(mp
, 1);
492 * Logging the inode mode bits when writing a setuid/setgid file
496 xfs_calc_writeid_reservation(
497 struct xfs_mount
*mp
)
499 return xfs_calc_inode_res(mp
, 1);
503 * Converting the inode from non-attributed to attributed.
504 * the inode being converted: inode size
505 * agf block and superblock (for block allocation)
506 * the new block (directory sized)
507 * bmap blocks for the new directory block
511 xfs_calc_addafork_reservation(
512 struct xfs_mount
*mp
)
514 return XFS_DQUOT_LOGRES(mp
) +
515 xfs_calc_inode_res(mp
, 1) +
516 xfs_calc_buf_res(2, mp
->m_sb
.sb_sectsize
) +
517 xfs_calc_buf_res(1, mp
->m_dirblksize
) +
518 xfs_calc_buf_res(XFS_DAENTER_BMAP1B(mp
, XFS_DATA_FORK
) + 1,
519 XFS_FSB_TO_B(mp
, 1)) +
520 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 1),
521 XFS_FSB_TO_B(mp
, 1));
525 * Removing the attribute fork of a file
526 * the inode being truncated: inode size
527 * the inode's bmap btree: max depth * block size
528 * And the bmap_finish transaction can free the blocks and bmap blocks:
529 * the agf for each of the ags: 4 * sector size
530 * the agfl for each of the ags: 4 * sector size
531 * the super block to reflect the freed blocks: sector size
532 * worst case split in allocation btrees per extent assuming 4 extents:
533 * 4 exts * 2 trees * (2 * max depth - 1) * block size
536 xfs_calc_attrinval_reservation(
537 struct xfs_mount
*mp
)
539 return MAX((xfs_calc_inode_res(mp
, 1) +
540 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp
, XFS_ATTR_FORK
),
541 XFS_FSB_TO_B(mp
, 1))),
542 (xfs_calc_buf_res(9, mp
->m_sb
.sb_sectsize
) +
543 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 4),
544 XFS_FSB_TO_B(mp
, 1))));
548 * Setting an attribute at mount time.
549 * the inode getting the attribute
550 * the superblock for allocations
551 * the agfs extents are allocated from
552 * the attribute btree * max depth
553 * the inode allocation btree
554 * Since attribute transaction space is dependent on the size of the attribute,
555 * the calculation is done partially at mount time and partially at runtime(see
559 xfs_calc_attrsetm_reservation(
560 struct xfs_mount
*mp
)
562 return XFS_DQUOT_LOGRES(mp
) +
563 xfs_calc_inode_res(mp
, 1) +
564 xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
) +
565 xfs_calc_buf_res(XFS_DA_NODE_MAXDEPTH
, XFS_FSB_TO_B(mp
, 1));
569 * Setting an attribute at runtime, transaction space unit per block.
570 * the superblock for allocations: sector size
571 * the inode bmap btree could join or split: max depth * block size
572 * Since the runtime attribute transaction space is dependent on the total
573 * blocks needed for the 1st bmap, here we calculate out the space unit for
574 * one block so that the caller could figure out the total space according
575 * to the attibute extent length in blocks by:
576 * ext * M_RES(mp)->tr_attrsetrt.tr_logres
579 xfs_calc_attrsetrt_reservation(
580 struct xfs_mount
*mp
)
582 return xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
) +
583 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp
, XFS_ATTR_FORK
),
584 XFS_FSB_TO_B(mp
, 1));
588 * Removing an attribute.
589 * the inode: inode size
590 * the attribute btree could join: max depth * block size
591 * the inode bmap btree could join or split: max depth * block size
592 * And the bmap_finish transaction can free the attr blocks freed giving:
593 * the agf for the ag in which the blocks live: 2 * sector size
594 * the agfl for the ag in which the blocks live: 2 * sector size
595 * the superblock for the free block count: sector size
596 * the allocation btrees: 2 exts * 2 trees * (2 * max depth - 1) * block size
599 xfs_calc_attrrm_reservation(
600 struct xfs_mount
*mp
)
602 return XFS_DQUOT_LOGRES(mp
) +
603 MAX((xfs_calc_inode_res(mp
, 1) +
604 xfs_calc_buf_res(XFS_DA_NODE_MAXDEPTH
,
605 XFS_FSB_TO_B(mp
, 1)) +
606 (uint
)XFS_FSB_TO_B(mp
,
607 XFS_BM_MAXLEVELS(mp
, XFS_ATTR_FORK
)) +
608 xfs_calc_buf_res(XFS_BM_MAXLEVELS(mp
, XFS_DATA_FORK
), 0)),
609 (xfs_calc_buf_res(5, mp
->m_sb
.sb_sectsize
) +
610 xfs_calc_buf_res(XFS_ALLOCFREE_LOG_COUNT(mp
, 2),
611 XFS_FSB_TO_B(mp
, 1))));
615 * Clearing a bad agino number in an agi hash bucket.
618 xfs_calc_clear_agi_bucket_reservation(
619 struct xfs_mount
*mp
)
621 return xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
);
625 * Clearing the quotaflags in the superblock.
626 * the super block for changing quota flags: sector size
629 xfs_calc_qm_sbchange_reservation(
630 struct xfs_mount
*mp
)
632 return xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
);
636 * Adjusting quota limits.
637 * the xfs_disk_dquot_t: sizeof(struct xfs_disk_dquot)
640 xfs_calc_qm_setqlim_reservation(
641 struct xfs_mount
*mp
)
643 return xfs_calc_buf_res(1, sizeof(struct xfs_disk_dquot
));
647 * Allocating quota on disk if needed.
648 * the write transaction log space: M_RES(mp)->tr_write.tr_logres
649 * the unit of quota allocation: one system block size
652 xfs_calc_qm_dqalloc_reservation(
653 struct xfs_mount
*mp
)
655 ASSERT(M_RES(mp
)->tr_write
.tr_logres
);
656 return M_RES(mp
)->tr_write
.tr_logres
+
658 XFS_FSB_TO_B(mp
, XFS_DQUOT_CLUSTER_SIZE_FSB
) - 1);
662 * Turning off quotas.
663 * the xfs_qoff_logitem_t: sizeof(struct xfs_qoff_logitem) * 2
664 * the superblock for the quota flags: sector size
667 xfs_calc_qm_quotaoff_reservation(
668 struct xfs_mount
*mp
)
670 return sizeof(struct xfs_qoff_logitem
) * 2 +
671 xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
);
675 * End of turning off quotas.
676 * the xfs_qoff_logitem_t: sizeof(struct xfs_qoff_logitem) * 2
679 xfs_calc_qm_quotaoff_end_reservation(
680 struct xfs_mount
*mp
)
682 return sizeof(struct xfs_qoff_logitem
) * 2;
686 * Syncing the incore super block changes to disk.
687 * the super block to reflect the changes: sector size
690 xfs_calc_sb_reservation(
691 struct xfs_mount
*mp
)
693 return xfs_calc_buf_res(1, mp
->m_sb
.sb_sectsize
);
698 struct xfs_mount
*mp
,
699 struct xfs_trans_resv
*resp
)
702 * The following transactions are logged in physical format and
703 * require a permanent reservation on space.
705 resp
->tr_write
.tr_logres
= xfs_calc_write_reservation(mp
);
706 resp
->tr_write
.tr_logcount
= XFS_WRITE_LOG_COUNT
;
707 resp
->tr_write
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
709 resp
->tr_itruncate
.tr_logres
= xfs_calc_itruncate_reservation(mp
);
710 resp
->tr_itruncate
.tr_logcount
= XFS_ITRUNCATE_LOG_COUNT
;
711 resp
->tr_itruncate
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
713 resp
->tr_rename
.tr_logres
= xfs_calc_rename_reservation(mp
);
714 resp
->tr_rename
.tr_logcount
= XFS_RENAME_LOG_COUNT
;
715 resp
->tr_rename
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
717 resp
->tr_link
.tr_logres
= xfs_calc_link_reservation(mp
);
718 resp
->tr_link
.tr_logcount
= XFS_LINK_LOG_COUNT
;
719 resp
->tr_link
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
721 resp
->tr_remove
.tr_logres
= xfs_calc_remove_reservation(mp
);
722 resp
->tr_remove
.tr_logcount
= XFS_REMOVE_LOG_COUNT
;
723 resp
->tr_remove
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
725 resp
->tr_symlink
.tr_logres
= xfs_calc_symlink_reservation(mp
);
726 resp
->tr_symlink
.tr_logcount
= XFS_SYMLINK_LOG_COUNT
;
727 resp
->tr_symlink
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
729 resp
->tr_create
.tr_logres
= xfs_calc_create_reservation(mp
);
730 resp
->tr_create
.tr_logcount
= XFS_CREATE_LOG_COUNT
;
731 resp
->tr_create
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
733 resp
->tr_mkdir
.tr_logres
= xfs_calc_mkdir_reservation(mp
);
734 resp
->tr_mkdir
.tr_logcount
= XFS_MKDIR_LOG_COUNT
;
735 resp
->tr_mkdir
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
737 resp
->tr_ifree
.tr_logres
= xfs_calc_ifree_reservation(mp
);
738 resp
->tr_ifree
.tr_logcount
= XFS_INACTIVE_LOG_COUNT
;
739 resp
->tr_ifree
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
741 resp
->tr_addafork
.tr_logres
= xfs_calc_addafork_reservation(mp
);
742 resp
->tr_addafork
.tr_logcount
= XFS_ADDAFORK_LOG_COUNT
;
743 resp
->tr_addafork
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
745 resp
->tr_attrinval
.tr_logres
= xfs_calc_attrinval_reservation(mp
);
746 resp
->tr_attrinval
.tr_logcount
= XFS_ATTRINVAL_LOG_COUNT
;
747 resp
->tr_attrinval
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
749 resp
->tr_attrsetm
.tr_logres
= xfs_calc_attrsetm_reservation(mp
);
750 resp
->tr_attrsetm
.tr_logcount
= XFS_ATTRSET_LOG_COUNT
;
751 resp
->tr_attrsetm
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
753 resp
->tr_attrrm
.tr_logres
= xfs_calc_attrrm_reservation(mp
);
754 resp
->tr_attrrm
.tr_logcount
= XFS_ATTRRM_LOG_COUNT
;
755 resp
->tr_attrrm
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
757 resp
->tr_growrtalloc
.tr_logres
= xfs_calc_growrtalloc_reservation(mp
);
758 resp
->tr_growrtalloc
.tr_logcount
= XFS_DEFAULT_PERM_LOG_COUNT
;
759 resp
->tr_growrtalloc
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
761 resp
->tr_qm_dqalloc
.tr_logres
= xfs_calc_qm_dqalloc_reservation(mp
);
762 resp
->tr_qm_dqalloc
.tr_logcount
= XFS_WRITE_LOG_COUNT
;
763 resp
->tr_qm_dqalloc
.tr_logflags
|= XFS_TRANS_PERM_LOG_RES
;
766 * The following transactions are logged in logical format with
767 * a default log count.
769 resp
->tr_qm_sbchange
.tr_logres
= xfs_calc_qm_sbchange_reservation(mp
);
770 resp
->tr_qm_sbchange
.tr_logcount
= XFS_DEFAULT_LOG_COUNT
;
772 resp
->tr_qm_setqlim
.tr_logres
= xfs_calc_qm_setqlim_reservation(mp
);
773 resp
->tr_qm_setqlim
.tr_logcount
= XFS_DEFAULT_LOG_COUNT
;
775 resp
->tr_qm_quotaoff
.tr_logres
= xfs_calc_qm_quotaoff_reservation(mp
);
776 resp
->tr_qm_quotaoff
.tr_logcount
= XFS_DEFAULT_LOG_COUNT
;
778 resp
->tr_qm_equotaoff
.tr_logres
=
779 xfs_calc_qm_quotaoff_end_reservation(mp
);
780 resp
->tr_qm_equotaoff
.tr_logcount
= XFS_DEFAULT_LOG_COUNT
;
782 resp
->tr_sb
.tr_logres
= xfs_calc_sb_reservation(mp
);
783 resp
->tr_sb
.tr_logcount
= XFS_DEFAULT_LOG_COUNT
;
785 /* The following transaction are logged in logical format */
786 resp
->tr_ichange
.tr_logres
= xfs_calc_ichange_reservation(mp
);
787 resp
->tr_growdata
.tr_logres
= xfs_calc_growdata_reservation(mp
);
788 resp
->tr_swrite
.tr_logres
= xfs_calc_swrite_reservation(mp
);
789 resp
->tr_fsyncts
.tr_logres
= xfs_calc_swrite_reservation(mp
);
790 resp
->tr_writeid
.tr_logres
= xfs_calc_writeid_reservation(mp
);
791 resp
->tr_attrsetrt
.tr_logres
= xfs_calc_attrsetrt_reservation(mp
);
792 resp
->tr_clearagi
.tr_logres
= xfs_calc_clear_agi_bucket_reservation(mp
);
793 resp
->tr_growrtzero
.tr_logres
= xfs_calc_growrtzero_reservation(mp
);
794 resp
->tr_growrtfree
.tr_logres
= xfs_calc_growrtfree_reservation(mp
);