xfs_rtalloc.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. /* kernel only definitions and functions */
  21. struct xfs_mount;
  22. struct xfs_trans;
  23. struct xfs_rtalloc_rec {
  24. xfs_rtblock_t ar_startblock;
  25. xfs_rtblock_t ar_blockcount;
  26. };
  27. typedef int (*xfs_rtalloc_query_range_fn)(
  28. struct xfs_trans *tp,
  29. struct xfs_rtalloc_rec *rec,
  30. void *priv);
  31. #ifdef CONFIG_XFS_RT
  32. /*
  33. * Function prototypes for exported functions.
  34. */
  35. /*
  36. * Allocate an extent in the realtime subvolume, with the usual allocation
  37. * parameters. The length units are all in realtime extents, as is the
  38. * result block number.
  39. */
  40. int /* error */
  41. xfs_rtallocate_extent(
  42. struct xfs_trans *tp, /* transaction pointer */
  43. xfs_rtblock_t bno, /* starting block number to allocate */
  44. xfs_extlen_t minlen, /* minimum length to allocate */
  45. xfs_extlen_t maxlen, /* maximum length to allocate */
  46. xfs_extlen_t *len, /* out: actual length allocated */
  47. int wasdel, /* was a delayed allocation extent */
  48. xfs_extlen_t prod, /* extent product factor */
  49. xfs_rtblock_t *rtblock); /* out: start block allocated */
  50. /*
  51. * Free an extent in the realtime subvolume. Length is expressed in
  52. * realtime extents, as is the block number.
  53. */
  54. int /* error */
  55. xfs_rtfree_extent(
  56. struct xfs_trans *tp, /* transaction pointer */
  57. xfs_rtblock_t bno, /* starting block number to free */
  58. xfs_extlen_t len); /* length of extent freed */
  59. /*
  60. * Initialize realtime fields in the mount structure.
  61. */
  62. int /* error */
  63. xfs_rtmount_init(
  64. struct xfs_mount *mp); /* file system mount structure */
  65. void
  66. xfs_rtunmount_inodes(
  67. struct xfs_mount *mp);
  68. /*
  69. * Get the bitmap and summary inodes into the mount structure
  70. * at mount time.
  71. */
  72. int /* error */
  73. xfs_rtmount_inodes(
  74. struct xfs_mount *mp); /* file system mount structure */
  75. /*
  76. * Pick an extent for allocation at the start of a new realtime file.
  77. * Use the sequence number stored in the atime field of the bitmap inode.
  78. * Translate this to a fraction of the rtextents, and return the product
  79. * of rtextents and the fraction.
  80. * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
  81. */
  82. int /* error */
  83. xfs_rtpick_extent(
  84. struct xfs_mount *mp, /* file system mount point */
  85. struct xfs_trans *tp, /* transaction pointer */
  86. xfs_extlen_t len, /* allocation length (rtextents) */
  87. xfs_rtblock_t *pick); /* result rt extent */
  88. /*
  89. * Grow the realtime area of the filesystem.
  90. */
  91. int
  92. xfs_growfs_rt(
  93. struct xfs_mount *mp, /* file system mount structure */
  94. xfs_growfs_rt_t *in); /* user supplied growfs struct */
  95. /*
  96. * From xfs_rtbitmap.c
  97. */
  98. int xfs_rtbuf_get(struct xfs_mount *mp, struct xfs_trans *tp,
  99. xfs_rtblock_t block, int issum, struct xfs_buf **bpp);
  100. int xfs_rtcheck_range(struct xfs_mount *mp, struct xfs_trans *tp,
  101. xfs_rtblock_t start, xfs_extlen_t len, int val,
  102. xfs_rtblock_t *new, int *stat);
  103. int xfs_rtfind_back(struct xfs_mount *mp, struct xfs_trans *tp,
  104. xfs_rtblock_t start, xfs_rtblock_t limit,
  105. xfs_rtblock_t *rtblock);
  106. int xfs_rtfind_forw(struct xfs_mount *mp, struct xfs_trans *tp,
  107. xfs_rtblock_t start, xfs_rtblock_t limit,
  108. xfs_rtblock_t *rtblock);
  109. int xfs_rtmodify_range(struct xfs_mount *mp, struct xfs_trans *tp,
  110. xfs_rtblock_t start, xfs_extlen_t len, int val);
  111. int xfs_rtmodify_summary_int(struct xfs_mount *mp, struct xfs_trans *tp,
  112. int log, xfs_rtblock_t bbno, int delta,
  113. xfs_buf_t **rbpp, xfs_fsblock_t *rsb,
  114. xfs_suminfo_t *sum);
  115. int xfs_rtmodify_summary(struct xfs_mount *mp, struct xfs_trans *tp, int log,
  116. xfs_rtblock_t bbno, int delta, xfs_buf_t **rbpp,
  117. xfs_fsblock_t *rsb);
  118. int xfs_rtfree_range(struct xfs_mount *mp, struct xfs_trans *tp,
  119. xfs_rtblock_t start, xfs_extlen_t len,
  120. struct xfs_buf **rbpp, xfs_fsblock_t *rsb);
  121. int xfs_rtalloc_query_range(struct xfs_trans *tp,
  122. struct xfs_rtalloc_rec *low_rec,
  123. struct xfs_rtalloc_rec *high_rec,
  124. xfs_rtalloc_query_range_fn fn,
  125. void *priv);
  126. int xfs_rtalloc_query_all(struct xfs_trans *tp,
  127. xfs_rtalloc_query_range_fn fn,
  128. void *priv);
  129. bool xfs_verify_rtbno(struct xfs_mount *mp, xfs_rtblock_t rtbno);
  130. int xfs_rtalloc_extent_is_free(struct xfs_mount *mp, struct xfs_trans *tp,
  131. xfs_rtblock_t start, xfs_extlen_t len,
  132. bool *is_free);
  133. #else
  134. # define xfs_rtallocate_extent(t,b,min,max,l,f,p,rb) (ENOSYS)
  135. # define xfs_rtfree_extent(t,b,l) (ENOSYS)
  136. # define xfs_rtpick_extent(m,t,l,rb) (ENOSYS)
  137. # define xfs_growfs_rt(mp,in) (ENOSYS)
  138. # define xfs_rtalloc_query_range(t,l,h,f,p) (ENOSYS)
  139. # define xfs_rtalloc_query_all(t,f,p) (ENOSYS)
  140. # define xfs_rtbuf_get(m,t,b,i,p) (ENOSYS)
  141. # define xfs_verify_rtbno(m, r) (false)
  142. # define xfs_rtalloc_extent_is_free(m,t,s,l,i) (ENOSYS)
  143. static inline int /* error */
  144. xfs_rtmount_init(
  145. xfs_mount_t *mp) /* file system mount structure */
  146. {
  147. if (mp->m_sb.sb_rblocks == 0)
  148. return 0;
  149. xfs_warn(mp, "Not built with CONFIG_XFS_RT");
  150. return -ENOSYS;
  151. }
  152. # define xfs_rtmount_inodes(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
  153. # define xfs_rtunmount_inodes(m)
  154. #endif /* CONFIG_XFS_RT */
  155. #endif /* __XFS_RTALLOC_H__ */