xfs_ialloc.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2000,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_IALLOC_H__
  19. #define __XFS_IALLOC_H__
  20. struct xfs_buf;
  21. struct xfs_dinode;
  22. struct xfs_mount;
  23. struct xfs_trans;
  24. /*
  25. * Allocation parameters for inode allocation.
  26. */
  27. #define XFS_IALLOC_INODES(mp) (mp)->m_ialloc_inos
  28. #define XFS_IALLOC_BLOCKS(mp) (mp)->m_ialloc_blks
  29. /*
  30. * Move inodes in clusters of this size.
  31. */
  32. #define XFS_INODE_BIG_CLUSTER_SIZE 8192
  33. #define XFS_INODE_CLUSTER_SIZE(mp) (mp)->m_inode_cluster_size
  34. /*
  35. * Make an inode pointer out of the buffer/offset.
  36. */
  37. #define XFS_MAKE_IPTR(mp,b,o) xfs_make_iptr(mp,b,o)
  38. static inline struct xfs_dinode *
  39. xfs_make_iptr(struct xfs_mount *mp, struct xfs_buf *b, int o)
  40. {
  41. return (xfs_dinode_t *)
  42. (xfs_buf_offset(b, o << (mp)->m_sb.sb_inodelog));
  43. }
  44. /*
  45. * Find a free (set) bit in the inode bitmask.
  46. */
  47. #define XFS_IALLOC_FIND_FREE(fp) xfs_ialloc_find_free(fp)
  48. static inline int xfs_ialloc_find_free(xfs_inofree_t *fp)
  49. {
  50. return xfs_lowbit64(*fp);
  51. }
  52. /*
  53. * Allocate an inode on disk.
  54. * Mode is used to tell whether the new inode will need space, and whether
  55. * it is a directory.
  56. *
  57. * To work within the constraint of one allocation per transaction,
  58. * xfs_dialloc() is designed to be called twice if it has to do an
  59. * allocation to make more free inodes. If an inode is
  60. * available without an allocation, agbp would be set to the current
  61. * agbp and alloc_done set to false.
  62. * If an allocation needed to be done, agbp would be set to the
  63. * inode header of the allocation group and alloc_done set to true.
  64. * The caller should then commit the current transaction and allocate a new
  65. * transaction. xfs_dialloc() should then be called again with
  66. * the agbp value returned from the previous call.
  67. *
  68. * Once we successfully pick an inode its number is returned and the
  69. * on-disk data structures are updated. The inode itself is not read
  70. * in, since doing so would break ordering constraints with xfs_reclaim.
  71. *
  72. * *agbp should be set to NULL on the first call, *alloc_done set to FALSE.
  73. */
  74. int /* error */
  75. xfs_dialloc(
  76. struct xfs_trans *tp, /* transaction pointer */
  77. xfs_ino_t parent, /* parent inode (directory) */
  78. mode_t mode, /* mode bits for new inode */
  79. int okalloc, /* ok to allocate more space */
  80. struct xfs_buf **agbp, /* buf for a.g. inode header */
  81. boolean_t *alloc_done, /* an allocation was done to replenish
  82. the free inodes */
  83. xfs_ino_t *inop); /* inode number allocated */
  84. /*
  85. * Free disk inode. Carefully avoids touching the incore inode, all
  86. * manipulations incore are the caller's responsibility.
  87. * The on-disk inode is not changed by this operation, only the
  88. * btree (free inode mask) is changed.
  89. */
  90. int /* error */
  91. xfs_difree(
  92. struct xfs_trans *tp, /* transaction pointer */
  93. xfs_ino_t inode, /* inode to be freed */
  94. struct xfs_bmap_free *flist, /* extents to free */
  95. int *delete, /* set if inode cluster was deleted */
  96. xfs_ino_t *first_ino); /* first inode in deleted cluster */
  97. /*
  98. * Return the location of the inode in bno/len/off,
  99. * for mapping it into a buffer.
  100. */
  101. int
  102. xfs_dilocate(
  103. struct xfs_mount *mp, /* file system mount structure */
  104. struct xfs_trans *tp, /* transaction pointer */
  105. xfs_ino_t ino, /* inode to locate */
  106. xfs_fsblock_t *bno, /* output: block containing inode */
  107. int *len, /* output: num blocks in cluster*/
  108. int *off, /* output: index in block of inode */
  109. uint flags); /* flags for inode btree lookup */
  110. /*
  111. * Compute and fill in value of m_in_maxlevels.
  112. */
  113. void
  114. xfs_ialloc_compute_maxlevels(
  115. struct xfs_mount *mp); /* file system mount structure */
  116. /*
  117. * Log specified fields for the ag hdr (inode section)
  118. */
  119. void
  120. xfs_ialloc_log_agi(
  121. struct xfs_trans *tp, /* transaction pointer */
  122. struct xfs_buf *bp, /* allocation group header buffer */
  123. int fields); /* bitmask of fields to log */
  124. /*
  125. * Read in the allocation group header (inode allocation section)
  126. */
  127. int /* error */
  128. xfs_ialloc_read_agi(
  129. struct xfs_mount *mp, /* file system mount structure */
  130. struct xfs_trans *tp, /* transaction pointer */
  131. xfs_agnumber_t agno, /* allocation group number */
  132. struct xfs_buf **bpp); /* allocation group hdr buf */
  133. /*
  134. * Read in the allocation group header to initialise the per-ag data
  135. * in the mount structure
  136. */
  137. int
  138. xfs_ialloc_pagi_init(
  139. struct xfs_mount *mp, /* file system mount structure */
  140. struct xfs_trans *tp, /* transaction pointer */
  141. xfs_agnumber_t agno); /* allocation group number */
  142. /*
  143. * Lookup the first record greater than or equal to ino
  144. * in the btree given by cur.
  145. */
  146. int xfs_inobt_lookup_ge(struct xfs_btree_cur *cur, xfs_agino_t ino,
  147. __int32_t fcnt, xfs_inofree_t free, int *stat);
  148. /*
  149. * Lookup the first record less than or equal to ino
  150. * in the btree given by cur.
  151. */
  152. int xfs_inobt_lookup_le(struct xfs_btree_cur *cur, xfs_agino_t ino,
  153. __int32_t fcnt, xfs_inofree_t free, int *stat);
  154. /*
  155. * Get the data from the pointed-to record.
  156. */
  157. extern int xfs_inobt_get_rec(struct xfs_btree_cur *cur, xfs_agino_t *ino,
  158. __int32_t *fcnt, xfs_inofree_t *free, int *stat);
  159. #endif /* __XFS_IALLOC_H__ */