xfs_rtalloc.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of version 2 of the GNU General Public License as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it would be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. *
  12. * Further, this software is distributed without any warranty that it is
  13. * free of the rightful claim of any third person regarding infringement
  14. * or the like. Any license provided herein, whether implied or
  15. * otherwise, applies only to this software file. Patent licenses, if
  16. * any, provided herein do not apply to combinations of this program with
  17. * other software, or any other product whatsoever.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write the Free Software Foundation, Inc., 59
  21. * Temple Place - Suite 330, Boston MA 02111-1307, USA.
  22. *
  23. * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
  24. * Mountain View, CA 94043, or:
  25. *
  26. * http://www.sgi.com
  27. *
  28. * For further information regarding this notice, see:
  29. *
  30. * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
  31. */
  32. #ifndef __XFS_RTALLOC_H__
  33. #define __XFS_RTALLOC_H__
  34. struct xfs_mount;
  35. struct xfs_trans;
  36. #define XFS_IS_REALTIME_INODE(ip) ((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME)
  37. /* Min and max rt extent sizes, specified in bytes */
  38. #define XFS_MAX_RTEXTSIZE (1024 * 1024 * 1024) /* 1GB */
  39. #define XFS_DFL_RTEXTSIZE (64 * 1024) /* 64KB */
  40. #define XFS_MIN_RTEXTSIZE (4 * 1024) /* 4KB */
  41. /*
  42. * Constants for bit manipulations.
  43. */
  44. #define XFS_NBBYLOG 3 /* log2(NBBY) */
  45. #define XFS_WORDLOG 2 /* log2(sizeof(xfs_rtword_t)) */
  46. #define XFS_NBWORDLOG (XFS_NBBYLOG + XFS_WORDLOG)
  47. #define XFS_NBWORD (1 << XFS_NBWORDLOG)
  48. #define XFS_WORDMASK ((1 << XFS_WORDLOG) - 1)
  49. #define XFS_BLOCKSIZE(mp) ((mp)->m_sb.sb_blocksize)
  50. #define XFS_BLOCKMASK(mp) ((mp)->m_blockmask)
  51. #define XFS_BLOCKWSIZE(mp) ((mp)->m_blockwsize)
  52. #define XFS_BLOCKWMASK(mp) ((mp)->m_blockwmask)
  53. /*
  54. * Summary and bit manipulation macros.
  55. */
  56. #define XFS_SUMOFFS(mp,ls,bb) ((int)((ls) * (mp)->m_sb.sb_rbmblocks + (bb)))
  57. #define XFS_SUMOFFSTOBLOCK(mp,s) \
  58. (((s) * (uint)sizeof(xfs_suminfo_t)) >> (mp)->m_sb.sb_blocklog)
  59. #define XFS_SUMPTR(mp,bp,so) \
  60. ((xfs_suminfo_t *)((char *)XFS_BUF_PTR(bp) + \
  61. (((so) * (uint)sizeof(xfs_suminfo_t)) & XFS_BLOCKMASK(mp))))
  62. #define XFS_BITTOBLOCK(mp,bi) ((bi) >> (mp)->m_blkbit_log)
  63. #define XFS_BLOCKTOBIT(mp,bb) ((bb) << (mp)->m_blkbit_log)
  64. #define XFS_BITTOWORD(mp,bi) \
  65. ((int)(((bi) >> XFS_NBWORDLOG) & XFS_BLOCKWMASK(mp)))
  66. #define XFS_RTMIN(a,b) ((a) < (b) ? (a) : (b))
  67. #define XFS_RTMAX(a,b) ((a) > (b) ? (a) : (b))
  68. #define XFS_RTLOBIT(w) xfs_lowbit32(w)
  69. #define XFS_RTHIBIT(w) xfs_highbit32(w)
  70. #if XFS_BIG_BLKNOS
  71. #define XFS_RTBLOCKLOG(b) xfs_highbit64(b)
  72. #else
  73. #define XFS_RTBLOCKLOG(b) xfs_highbit32(b)
  74. #endif
  75. #ifdef __KERNEL__
  76. #ifdef CONFIG_XFS_RT
  77. /*
  78. * Function prototypes for exported functions.
  79. */
  80. /*
  81. * Allocate an extent in the realtime subvolume, with the usual allocation
  82. * parameters. The length units are all in realtime extents, as is the
  83. * result block number.
  84. */
  85. int /* error */
  86. xfs_rtallocate_extent(
  87. struct xfs_trans *tp, /* transaction pointer */
  88. xfs_rtblock_t bno, /* starting block number to allocate */
  89. xfs_extlen_t minlen, /* minimum length to allocate */
  90. xfs_extlen_t maxlen, /* maximum length to allocate */
  91. xfs_extlen_t *len, /* out: actual length allocated */
  92. xfs_alloctype_t type, /* allocation type XFS_ALLOCTYPE... */
  93. int wasdel, /* was a delayed allocation extent */
  94. xfs_extlen_t prod, /* extent product factor */
  95. xfs_rtblock_t *rtblock); /* out: start block allocated */
  96. /*
  97. * Free an extent in the realtime subvolume. Length is expressed in
  98. * realtime extents, as is the block number.
  99. */
  100. int /* error */
  101. xfs_rtfree_extent(
  102. struct xfs_trans *tp, /* transaction pointer */
  103. xfs_rtblock_t bno, /* starting block number to free */
  104. xfs_extlen_t len); /* length of extent freed */
  105. /*
  106. * Initialize realtime fields in the mount structure.
  107. */
  108. int /* error */
  109. xfs_rtmount_init(
  110. struct xfs_mount *mp); /* file system mount structure */
  111. /*
  112. * Get the bitmap and summary inodes into the mount structure
  113. * at mount time.
  114. */
  115. int /* error */
  116. xfs_rtmount_inodes(
  117. struct xfs_mount *mp); /* file system mount structure */
  118. /*
  119. * Pick an extent for allocation at the start of a new realtime file.
  120. * Use the sequence number stored in the atime field of the bitmap inode.
  121. * Translate this to a fraction of the rtextents, and return the product
  122. * of rtextents and the fraction.
  123. * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
  124. */
  125. int /* error */
  126. xfs_rtpick_extent(
  127. struct xfs_mount *mp, /* file system mount point */
  128. struct xfs_trans *tp, /* transaction pointer */
  129. xfs_extlen_t len, /* allocation length (rtextents) */
  130. xfs_rtblock_t *pick); /* result rt extent */
  131. /*
  132. * Debug code: print out the value of a range in the bitmap.
  133. */
  134. void
  135. xfs_rtprint_range(
  136. struct xfs_mount *mp, /* file system mount structure */
  137. struct xfs_trans *tp, /* transaction pointer */
  138. xfs_rtblock_t start, /* starting block to print */
  139. xfs_extlen_t len); /* length to print */
  140. /*
  141. * Debug code: print the summary file.
  142. */
  143. void
  144. xfs_rtprint_summary(
  145. struct xfs_mount *mp, /* file system mount structure */
  146. struct xfs_trans *tp); /* transaction pointer */
  147. /*
  148. * Grow the realtime area of the filesystem.
  149. */
  150. int
  151. xfs_growfs_rt(
  152. struct xfs_mount *mp, /* file system mount structure */
  153. xfs_growfs_rt_t *in); /* user supplied growfs struct */
  154. #else
  155. # define xfs_rtallocate_extent(t,b,min,max,l,a,f,p,rb) (ENOSYS)
  156. # define xfs_rtfree_extent(t,b,l) (ENOSYS)
  157. # define xfs_rtpick_extent(m,t,l,rb) (ENOSYS)
  158. # define xfs_growfs_rt(mp,in) (ENOSYS)
  159. # define xfs_rtmount_init(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
  160. # define xfs_rtmount_inodes(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
  161. #endif /* CONFIG_XFS_RT */
  162. #endif /* __KERNEL__ */
  163. #endif /* __XFS_RTALLOC_H__ */