xfs_trans_resv.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef __XFS_TRANS_RESV_H__
  19. #define __XFS_TRANS_RESV_H__
  20. struct xfs_mount;
  21. /*
  22. * structure for maintaining pre-calculated transaction reservations.
  23. */
  24. struct xfs_trans_res {
  25. uint tr_logres; /* log space unit in bytes per log ticket */
  26. int tr_logcount; /* number of log operations per log ticket */
  27. int tr_logflags; /* log flags, currently only used for indicating
  28. * a reservation request is permanent or not */
  29. };
  30. struct xfs_trans_resv {
  31. struct xfs_trans_res tr_write; /* extent alloc trans */
  32. struct xfs_trans_res tr_itruncate; /* truncate trans */
  33. struct xfs_trans_res tr_rename; /* rename trans */
  34. struct xfs_trans_res tr_link; /* link trans */
  35. struct xfs_trans_res tr_remove; /* unlink trans */
  36. struct xfs_trans_res tr_symlink; /* symlink trans */
  37. struct xfs_trans_res tr_create; /* create trans */
  38. struct xfs_trans_res tr_mkdir; /* mkdir trans */
  39. struct xfs_trans_res tr_ifree; /* inode free trans */
  40. struct xfs_trans_res tr_ichange; /* inode update trans */
  41. struct xfs_trans_res tr_growdata; /* fs data section grow trans */
  42. struct xfs_trans_res tr_swrite; /* sync write inode trans */
  43. struct xfs_trans_res tr_addafork; /* add inode attr fork trans */
  44. struct xfs_trans_res tr_writeid; /* write setuid/setgid file */
  45. struct xfs_trans_res tr_attrinval; /* attr fork buffer
  46. * invalidation */
  47. struct xfs_trans_res tr_attrsetm; /* set/create an attribute at
  48. * mount time */
  49. struct xfs_trans_res tr_attrsetrt; /* set/create an attribute at
  50. * runtime */
  51. struct xfs_trans_res tr_attrrm; /* remove an attribute */
  52. struct xfs_trans_res tr_clearagi; /* clear agi unlinked bucket */
  53. struct xfs_trans_res tr_growrtalloc; /* grow realtime allocations */
  54. struct xfs_trans_res tr_growrtzero; /* grow realtime zeroing */
  55. struct xfs_trans_res tr_growrtfree; /* grow realtime freeing */
  56. struct xfs_trans_res tr_qm_sbchange; /* change quota flags */
  57. struct xfs_trans_res tr_qm_setqlim; /* adjust quota limits */
  58. struct xfs_trans_res tr_qm_dqalloc; /* allocate quota on disk */
  59. struct xfs_trans_res tr_qm_quotaoff; /* turn quota off */
  60. struct xfs_trans_res tr_qm_equotaoff;/* end of turn quota off */
  61. struct xfs_trans_res tr_sb; /* modify superblock */
  62. };
  63. /*
  64. * Per-extent log reservation for the allocation btree changes
  65. * involved in freeing or allocating an extent.
  66. * 2 trees * (2 blocks/level * max depth - 1) * block size
  67. */
  68. #define XFS_ALLOCFREE_LOG_RES(mp,nx) \
  69. ((nx) * (2 * XFS_FSB_TO_B((mp), 2 * XFS_AG_MAXLEVELS(mp) - 1)))
  70. #define XFS_ALLOCFREE_LOG_COUNT(mp,nx) \
  71. ((nx) * (2 * (2 * XFS_AG_MAXLEVELS(mp) - 1)))
  72. /*
  73. * Per-directory log reservation for any directory change.
  74. * dir blocks: (1 btree block per level + data block + free block) * dblock size
  75. * bmap btree: (levels + 2) * max depth * block size
  76. * v2 directory blocks can be fragmented below the dirblksize down to the fsb
  77. * size, so account for that in the DAENTER macros.
  78. */
  79. #define XFS_DIROP_LOG_RES(mp) \
  80. (XFS_FSB_TO_B(mp, XFS_DAENTER_BLOCKS(mp, XFS_DATA_FORK)) + \
  81. (XFS_FSB_TO_B(mp, XFS_DAENTER_BMAPS(mp, XFS_DATA_FORK) + 1)))
  82. #define XFS_DIROP_LOG_COUNT(mp) \
  83. (XFS_DAENTER_BLOCKS(mp, XFS_DATA_FORK) + \
  84. XFS_DAENTER_BMAPS(mp, XFS_DATA_FORK) + 1)
  85. #define XFS_WRITE_LOG_RES(mp) ((mp)->m_resv.tr_write.tr_logres)
  86. #define XFS_RENAME_LOG_RES(mp) ((mp)->m_resv.tr_rename.tr_logres)
  87. #define XFS_LINK_LOG_RES(mp) ((mp)->m_resv.tr_link.tr_logres)
  88. #define XFS_REMOVE_LOG_RES(mp) ((mp)->m_resv.tr_remove.tr_logres)
  89. #define XFS_SYMLINK_LOG_RES(mp) ((mp)->m_resv.tr_symlink.tr_logres)
  90. #define XFS_CREATE_LOG_RES(mp) ((mp)->m_resv.tr_create.tr_logres)
  91. #define XFS_MKDIR_LOG_RES(mp) ((mp)->m_resv.tr_mkdir.tr_logres)
  92. #define XFS_IFREE_LOG_RES(mp) ((mp)->m_resv.tr_ifree.tr_logres)
  93. #define XFS_SWRITE_LOG_RES(mp) ((mp)->m_resv.tr_swrite.tr_logres)
  94. #define XFS_ICHANGE_LOG_RES(mp) ((mp)->m_resv.tr_ichange.tr_logres)
  95. #define XFS_GROWDATA_LOG_RES(mp) ((mp)->m_resv.tr_growdata.tr_logres)
  96. #define XFS_ITRUNCATE_LOG_RES(mp) ((mp)->m_resv.tr_itruncate.tr_logres)
  97. #define XFS_GROWRTZERO_LOG_RES(mp) ((mp)->m_resv.tr_growrtzero.tr_logres)
  98. #define XFS_GROWRTFREE_LOG_RES(mp) ((mp)->m_resv.tr_growrtfree.tr_logres)
  99. #define XFS_GROWRTALLOC_LOG_RES(mp) ((mp)->m_resv.tr_growrtalloc.tr_logres)
  100. /*
  101. * Logging the inode timestamps on an fsync -- same as SWRITE
  102. * as long as SWRITE logs the entire inode core
  103. */
  104. #define XFS_FSYNC_TS_LOG_RES(mp) ((mp)->m_resv.tr_swrite.tr_logres)
  105. #define XFS_WRITEID_LOG_RES(mp) ((mp)->m_resv.tr_swrite.tr_logres)
  106. #define XFS_ADDAFORK_LOG_RES(mp) ((mp)->m_resv.tr_addafork.tr_logres)
  107. #define XFS_ATTRSETM_LOG_RES(mp) ((mp)->m_resv.tr_attrsetm.tr_logres)
  108. #define XFS_ATTRINVAL_LOG_RES(mp) ((mp)->m_resv.tr_attrinval.tr_logres)
  109. #define XFS_ATTRSETRT_LOG_RES(mp) ((mp)->m_resv.tr_attrsetrt.tr_logres)
  110. #define XFS_ATTRRM_LOG_RES(mp) ((mp)->m_resv.tr_attrrm.tr_logres)
  111. #define XFS_SB_LOG_RES(mp) ((mp)->m_resv.tr_sb.tr_logres)
  112. #define XFS_QM_SETQLIM_LOG_RES(mp) ((mp)->m_resv.tr_qm_setqlim.tr_logres)
  113. #define XFS_QM_DQALLOC_LOG_RES(mp) ((mp)->m_resv.tr_qm_dqalloc.tr_logres)
  114. #define XFS_QM_SBCHANGE_LOG_RES(mp) ((mp)->m_resv.tr_qm_sbchange.tr_logres)
  115. #define XFS_QM_QUOTAOFF_LOG_RES(mp) ((mp)->m_resv.tr_qm_quotaoff.tr_logres)
  116. #define XFS_QM_QUOTAOFF_END_LOG_RES(mp) ((mp)->m_resv.tr_qm_equotaoff.tr_logres)
  117. #define XFS_CLEAR_AGI_BUCKET_LOG_RES(mp) ((mp)->m_resv.tr_clearagi.tr_logres)
  118. /*
  119. * Various log count values.
  120. */
  121. #define XFS_DEFAULT_LOG_COUNT 1
  122. #define XFS_DEFAULT_PERM_LOG_COUNT 2
  123. #define XFS_ITRUNCATE_LOG_COUNT 2
  124. #define XFS_INACTIVE_LOG_COUNT 2
  125. #define XFS_CREATE_LOG_COUNT 2
  126. #define XFS_MKDIR_LOG_COUNT 3
  127. #define XFS_SYMLINK_LOG_COUNT 3
  128. #define XFS_REMOVE_LOG_COUNT 2
  129. #define XFS_LINK_LOG_COUNT 2
  130. #define XFS_RENAME_LOG_COUNT 2
  131. #define XFS_WRITE_LOG_COUNT 2
  132. #define XFS_ADDAFORK_LOG_COUNT 2
  133. #define XFS_ATTRINVAL_LOG_COUNT 1
  134. #define XFS_ATTRSET_LOG_COUNT 3
  135. #define XFS_ATTRRM_LOG_COUNT 3
  136. void xfs_trans_resv_calc(struct xfs_mount *mp, struct xfs_trans_resv *resp);
  137. #endif /* __XFS_TRANS_RESV_H__ */