xfs_rtalloc.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * Copyright (c) 2000-2003,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_RTALLOC_H__
  19. #define __XFS_RTALLOC_H__
  20. struct xfs_mount;
  21. struct xfs_trans;
  22. /* Min and max rt extent sizes, specified in bytes */
  23. #define XFS_MAX_RTEXTSIZE (1024 * 1024 * 1024) /* 1GB */
  24. #define XFS_DFL_RTEXTSIZE (64 * 1024) /* 64kB */
  25. #define XFS_MIN_RTEXTSIZE (4 * 1024) /* 4kB */
  26. /*
  27. * Constants for bit manipulations.
  28. */
  29. #define XFS_NBBYLOG 3 /* log2(NBBY) */
  30. #define XFS_WORDLOG 2 /* log2(sizeof(xfs_rtword_t)) */
  31. #define XFS_NBWORDLOG (XFS_NBBYLOG + XFS_WORDLOG)
  32. #define XFS_NBWORD (1 << XFS_NBWORDLOG)
  33. #define XFS_WORDMASK ((1 << XFS_WORDLOG) - 1)
  34. #define XFS_BLOCKSIZE(mp) ((mp)->m_sb.sb_blocksize)
  35. #define XFS_BLOCKMASK(mp) ((mp)->m_blockmask)
  36. #define XFS_BLOCKWSIZE(mp) ((mp)->m_blockwsize)
  37. #define XFS_BLOCKWMASK(mp) ((mp)->m_blockwmask)
  38. /*
  39. * Summary and bit manipulation macros.
  40. */
  41. #define XFS_SUMOFFS(mp,ls,bb) ((int)((ls) * (mp)->m_sb.sb_rbmblocks + (bb)))
  42. #define XFS_SUMOFFSTOBLOCK(mp,s) \
  43. (((s) * (uint)sizeof(xfs_suminfo_t)) >> (mp)->m_sb.sb_blocklog)
  44. #define XFS_SUMPTR(mp,bp,so) \
  45. ((xfs_suminfo_t *)((char *)XFS_BUF_PTR(bp) + \
  46. (((so) * (uint)sizeof(xfs_suminfo_t)) & XFS_BLOCKMASK(mp))))
  47. #define XFS_BITTOBLOCK(mp,bi) ((bi) >> (mp)->m_blkbit_log)
  48. #define XFS_BLOCKTOBIT(mp,bb) ((bb) << (mp)->m_blkbit_log)
  49. #define XFS_BITTOWORD(mp,bi) \
  50. ((int)(((bi) >> XFS_NBWORDLOG) & XFS_BLOCKWMASK(mp)))
  51. #define XFS_RTMIN(a,b) ((a) < (b) ? (a) : (b))
  52. #define XFS_RTMAX(a,b) ((a) > (b) ? (a) : (b))
  53. #define XFS_RTLOBIT(w) xfs_lowbit32(w)
  54. #define XFS_RTHIBIT(w) xfs_highbit32(w)
  55. #if XFS_BIG_BLKNOS
  56. #define XFS_RTBLOCKLOG(b) xfs_highbit64(b)
  57. #else
  58. #define XFS_RTBLOCKLOG(b) xfs_highbit32(b)
  59. #endif
  60. #ifdef __KERNEL__
  61. #ifdef CONFIG_XFS_RT
  62. /*
  63. * Function prototypes for exported functions.
  64. */
  65. /*
  66. * Allocate an extent in the realtime subvolume, with the usual allocation
  67. * parameters. The length units are all in realtime extents, as is the
  68. * result block number.
  69. */
  70. int /* error */
  71. xfs_rtallocate_extent(
  72. struct xfs_trans *tp, /* transaction pointer */
  73. xfs_rtblock_t bno, /* starting block number to allocate */
  74. xfs_extlen_t minlen, /* minimum length to allocate */
  75. xfs_extlen_t maxlen, /* maximum length to allocate */
  76. xfs_extlen_t *len, /* out: actual length allocated */
  77. xfs_alloctype_t type, /* allocation type XFS_ALLOCTYPE... */
  78. int wasdel, /* was a delayed allocation extent */
  79. xfs_extlen_t prod, /* extent product factor */
  80. xfs_rtblock_t *rtblock); /* out: start block allocated */
  81. /*
  82. * Free an extent in the realtime subvolume. Length is expressed in
  83. * realtime extents, as is the block number.
  84. */
  85. int /* error */
  86. xfs_rtfree_extent(
  87. struct xfs_trans *tp, /* transaction pointer */
  88. xfs_rtblock_t bno, /* starting block number to free */
  89. xfs_extlen_t len); /* length of extent freed */
  90. /*
  91. * Initialize realtime fields in the mount structure.
  92. */
  93. int /* error */
  94. xfs_rtmount_init(
  95. struct xfs_mount *mp); /* file system mount structure */
  96. void
  97. xfs_rtunmount_inodes(
  98. struct xfs_mount *mp);
  99. /*
  100. * Get the bitmap and summary inodes into the mount structure
  101. * at mount time.
  102. */
  103. int /* error */
  104. xfs_rtmount_inodes(
  105. struct xfs_mount *mp); /* file system mount structure */
  106. /*
  107. * Pick an extent for allocation at the start of a new realtime file.
  108. * Use the sequence number stored in the atime field of the bitmap inode.
  109. * Translate this to a fraction of the rtextents, and return the product
  110. * of rtextents and the fraction.
  111. * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
  112. */
  113. int /* error */
  114. xfs_rtpick_extent(
  115. struct xfs_mount *mp, /* file system mount point */
  116. struct xfs_trans *tp, /* transaction pointer */
  117. xfs_extlen_t len, /* allocation length (rtextents) */
  118. xfs_rtblock_t *pick); /* result rt extent */
  119. /*
  120. * Grow the realtime area of the filesystem.
  121. */
  122. int
  123. xfs_growfs_rt(
  124. struct xfs_mount *mp, /* file system mount structure */
  125. xfs_growfs_rt_t *in); /* user supplied growfs struct */
  126. #else
  127. # define xfs_rtallocate_extent(t,b,min,max,l,a,f,p,rb) (ENOSYS)
  128. # define xfs_rtfree_extent(t,b,l) (ENOSYS)
  129. # define xfs_rtpick_extent(m,t,l,rb) (ENOSYS)
  130. # define xfs_growfs_rt(mp,in) (ENOSYS)
  131. static inline int /* error */
  132. xfs_rtmount_init(
  133. xfs_mount_t *mp) /* file system mount structure */
  134. {
  135. if (mp->m_sb.sb_rblocks == 0)
  136. return 0;
  137. xfs_warn(mp, "Not built with CONFIG_XFS_RT");
  138. return ENOSYS;
  139. }
  140. # define xfs_rtmount_inodes(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
  141. # define xfs_rtunmount_inodes(m)
  142. #endif /* CONFIG_XFS_RT */
  143. #endif /* __KERNEL__ */
  144. #endif /* __XFS_RTALLOC_H__ */