xfs_ialloc.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2000,2005 Silicon Graphics, Inc.
  4. * All Rights Reserved.
  5. */
  6. #ifndef __XFS_IALLOC_H__
  7. #define __XFS_IALLOC_H__
  8. struct xfs_buf;
  9. struct xfs_dinode;
  10. struct xfs_imap;
  11. struct xfs_mount;
  12. struct xfs_trans;
  13. struct xfs_btree_cur;
  14. /* Move inodes in clusters of this size */
  15. #define XFS_INODE_BIG_CLUSTER_SIZE 8192
  16. struct xfs_icluster {
  17. bool deleted; /* record is deleted */
  18. xfs_ino_t first_ino; /* first inode number */
  19. uint64_t alloc; /* inode phys. allocation bitmap for
  20. * sparse chunks */
  21. };
  22. /* Calculate and return the number of filesystem blocks per inode cluster */
  23. static inline int
  24. xfs_icluster_size_fsb(
  25. struct xfs_mount *mp)
  26. {
  27. if (mp->m_sb.sb_blocksize >= mp->m_inode_cluster_size)
  28. return 1;
  29. return mp->m_inode_cluster_size >> mp->m_sb.sb_blocklog;
  30. }
  31. /*
  32. * Make an inode pointer out of the buffer/offset.
  33. */
  34. static inline struct xfs_dinode *
  35. xfs_make_iptr(struct xfs_mount *mp, struct xfs_buf *b, int o)
  36. {
  37. return xfs_buf_offset(b, o << (mp)->m_sb.sb_inodelog);
  38. }
  39. /*
  40. * Allocate an inode on disk.
  41. * Mode is used to tell whether the new inode will need space, and whether
  42. * it is a directory.
  43. *
  44. * To work within the constraint of one allocation per transaction,
  45. * xfs_dialloc() is designed to be called twice if it has to do an
  46. * allocation to make more free inodes. If an inode is
  47. * available without an allocation, agbp would be set to the current
  48. * agbp and alloc_done set to false.
  49. * If an allocation needed to be done, agbp would be set to the
  50. * inode header of the allocation group and alloc_done set to true.
  51. * The caller should then commit the current transaction and allocate a new
  52. * transaction. xfs_dialloc() should then be called again with
  53. * the agbp value returned from the previous call.
  54. *
  55. * Once we successfully pick an inode its number is returned and the
  56. * on-disk data structures are updated. The inode itself is not read
  57. * in, since doing so would break ordering constraints with xfs_reclaim.
  58. *
  59. * *agbp should be set to NULL on the first call, *alloc_done set to FALSE.
  60. */
  61. int /* error */
  62. xfs_dialloc(
  63. struct xfs_trans *tp, /* transaction pointer */
  64. xfs_ino_t parent, /* parent inode (directory) */
  65. umode_t mode, /* mode bits for new inode */
  66. struct xfs_buf **agbp, /* buf for a.g. inode header */
  67. xfs_ino_t *inop); /* inode number allocated */
  68. /*
  69. * Free disk inode. Carefully avoids touching the incore inode, all
  70. * manipulations incore are the caller's responsibility.
  71. * The on-disk inode is not changed by this operation, only the
  72. * btree (free inode mask) is changed.
  73. */
  74. int /* error */
  75. xfs_difree(
  76. struct xfs_trans *tp, /* transaction pointer */
  77. xfs_ino_t inode, /* inode to be freed */
  78. struct xfs_defer_ops *dfops, /* extents to free */
  79. struct xfs_icluster *ifree); /* cluster info if deleted */
  80. /*
  81. * Return the location of the inode in imap, for mapping it into a buffer.
  82. */
  83. int
  84. xfs_imap(
  85. struct xfs_mount *mp, /* file system mount structure */
  86. struct xfs_trans *tp, /* transaction pointer */
  87. xfs_ino_t ino, /* inode to locate */
  88. struct xfs_imap *imap, /* location map structure */
  89. uint flags); /* flags for inode btree lookup */
  90. /*
  91. * Compute and fill in value of m_in_maxlevels.
  92. */
  93. void
  94. xfs_ialloc_compute_maxlevels(
  95. struct xfs_mount *mp); /* file system mount structure */
  96. /*
  97. * Log specified fields for the ag hdr (inode section)
  98. */
  99. void
  100. xfs_ialloc_log_agi(
  101. struct xfs_trans *tp, /* transaction pointer */
  102. struct xfs_buf *bp, /* allocation group header buffer */
  103. int fields); /* bitmask of fields to log */
  104. /*
  105. * Read in the allocation group header (inode allocation section)
  106. */
  107. int /* error */
  108. xfs_ialloc_read_agi(
  109. struct xfs_mount *mp, /* file system mount structure */
  110. struct xfs_trans *tp, /* transaction pointer */
  111. xfs_agnumber_t agno, /* allocation group number */
  112. struct xfs_buf **bpp); /* allocation group hdr buf */
  113. /*
  114. * Read in the allocation group header to initialise the per-ag data
  115. * in the mount structure
  116. */
  117. int
  118. xfs_ialloc_pagi_init(
  119. struct xfs_mount *mp, /* file system mount structure */
  120. struct xfs_trans *tp, /* transaction pointer */
  121. xfs_agnumber_t agno); /* allocation group number */
  122. /*
  123. * Lookup a record by ino in the btree given by cur.
  124. */
  125. int xfs_inobt_lookup(struct xfs_btree_cur *cur, xfs_agino_t ino,
  126. xfs_lookup_t dir, int *stat);
  127. /*
  128. * Get the data from the pointed-to record.
  129. */
  130. int xfs_inobt_get_rec(struct xfs_btree_cur *cur,
  131. xfs_inobt_rec_incore_t *rec, int *stat);
  132. /*
  133. * Inode chunk initialisation routine
  134. */
  135. int xfs_ialloc_inode_init(struct xfs_mount *mp, struct xfs_trans *tp,
  136. struct list_head *buffer_list, int icount,
  137. xfs_agnumber_t agno, xfs_agblock_t agbno,
  138. xfs_agblock_t length, unsigned int gen);
  139. int xfs_read_agi(struct xfs_mount *mp, struct xfs_trans *tp,
  140. xfs_agnumber_t agno, struct xfs_buf **bpp);
  141. union xfs_btree_rec;
  142. void xfs_inobt_btrec_to_irec(struct xfs_mount *mp, union xfs_btree_rec *rec,
  143. struct xfs_inobt_rec_incore *irec);
  144. int xfs_ialloc_has_inodes_at_extent(struct xfs_btree_cur *cur,
  145. xfs_agblock_t bno, xfs_extlen_t len, bool *exists);
  146. int xfs_ialloc_has_inode_record(struct xfs_btree_cur *cur, xfs_agino_t low,
  147. xfs_agino_t high, bool *exists);
  148. int xfs_ialloc_count_inodes(struct xfs_btree_cur *cur, xfs_agino_t *count,
  149. xfs_agino_t *freecount);
  150. int xfs_inobt_insert_rec(struct xfs_btree_cur *cur, uint16_t holemask,
  151. uint8_t count, int32_t freecount, xfs_inofree_t free,
  152. int *stat);
  153. int xfs_ialloc_cluster_alignment(struct xfs_mount *mp);
  154. #endif /* __XFS_IALLOC_H__ */