mballoc.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /*
  2. * fs/ext4/mballoc.h
  3. *
  4. * Written by: Alex Tomas <alex@clusterfs.com>
  5. *
  6. */
  7. #ifndef _EXT4_MBALLOC_H
  8. #define _EXT4_MBALLOC_H
  9. #include <linux/time.h>
  10. #include <linux/fs.h>
  11. #include <linux/namei.h>
  12. #include <linux/quotaops.h>
  13. #include <linux/buffer_head.h>
  14. #include <linux/module.h>
  15. #include <linux/swap.h>
  16. #include <linux/proc_fs.h>
  17. #include <linux/pagemap.h>
  18. #include <linux/seq_file.h>
  19. #include <linux/blkdev.h>
  20. #include <linux/mutex.h>
  21. #include "ext4_jbd2.h"
  22. #include "ext4.h"
  23. /*
  24. */
  25. #ifdef CONFIG_EXT4_DEBUG
  26. extern ushort ext4_mballoc_debug;
  27. #define mb_debug(n, fmt, ...) \
  28. do { \
  29. if ((n) <= ext4_mballoc_debug) { \
  30. printk(KERN_DEBUG "(%s, %d): %s: " fmt, \
  31. __FILE__, __LINE__, __func__, ##__VA_ARGS__); \
  32. } \
  33. } while (0)
  34. #else
  35. #define mb_debug(n, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
  36. #endif
  37. #define EXT4_MB_HISTORY_ALLOC 1 /* allocation */
  38. #define EXT4_MB_HISTORY_PREALLOC 2 /* preallocated blocks used */
  39. /*
  40. * How long mballoc can look for a best extent (in found extents)
  41. */
  42. #define MB_DEFAULT_MAX_TO_SCAN 200
  43. /*
  44. * How long mballoc must look for a best extent
  45. */
  46. #define MB_DEFAULT_MIN_TO_SCAN 10
  47. /*
  48. * with 'ext4_mb_stats' allocator will collect stats that will be
  49. * shown at umount. The collecting costs though!
  50. */
  51. #define MB_DEFAULT_STATS 0
  52. /*
  53. * files smaller than MB_DEFAULT_STREAM_THRESHOLD are served
  54. * by the stream allocator, which purpose is to pack requests
  55. * as close each to other as possible to produce smooth I/O traffic
  56. * We use locality group prealloc space for stream request.
  57. * We can tune the same via /proc/fs/ext4/<parition>/stream_req
  58. */
  59. #define MB_DEFAULT_STREAM_THRESHOLD 16 /* 64K */
  60. /*
  61. * for which requests use 2^N search using buddies
  62. */
  63. #define MB_DEFAULT_ORDER2_REQS 2
  64. /*
  65. * default group prealloc size 512 blocks
  66. */
  67. #define MB_DEFAULT_GROUP_PREALLOC 512
  68. struct ext4_free_data {
  69. /* this links the free block information from sb_info */
  70. struct list_head efd_list;
  71. /* this links the free block information from group_info */
  72. struct rb_node efd_node;
  73. /* group which free block extent belongs */
  74. ext4_group_t efd_group;
  75. /* free block extent */
  76. ext4_grpblk_t efd_start_cluster;
  77. ext4_grpblk_t efd_count;
  78. /* transaction which freed this extent */
  79. tid_t efd_tid;
  80. };
  81. struct ext4_prealloc_space {
  82. struct list_head pa_inode_list;
  83. struct list_head pa_group_list;
  84. union {
  85. struct list_head pa_tmp_list;
  86. struct rcu_head pa_rcu;
  87. } u;
  88. spinlock_t pa_lock;
  89. atomic_t pa_count;
  90. unsigned pa_deleted;
  91. ext4_fsblk_t pa_pstart; /* phys. block */
  92. ext4_lblk_t pa_lstart; /* log. block */
  93. ext4_grpblk_t pa_len; /* len of preallocated chunk */
  94. ext4_grpblk_t pa_free; /* how many blocks are free */
  95. unsigned short pa_type; /* pa type. inode or group */
  96. spinlock_t *pa_obj_lock;
  97. struct inode *pa_inode; /* hack, for history only */
  98. };
  99. enum {
  100. MB_INODE_PA = 0,
  101. MB_GROUP_PA = 1
  102. };
  103. struct ext4_free_extent {
  104. ext4_lblk_t fe_logical;
  105. ext4_grpblk_t fe_start; /* In cluster units */
  106. ext4_group_t fe_group;
  107. ext4_grpblk_t fe_len; /* In cluster units */
  108. };
  109. /*
  110. * Locality group:
  111. * we try to group all related changes together
  112. * so that writeback can flush/allocate them together as well
  113. * Size of lg_prealloc_list hash is determined by MB_DEFAULT_GROUP_PREALLOC
  114. * (512). We store prealloc space into the hash based on the pa_free blocks
  115. * order value.ie, fls(pa_free)-1;
  116. */
  117. #define PREALLOC_TB_SIZE 10
  118. struct ext4_locality_group {
  119. /* for allocator */
  120. /* to serialize allocates */
  121. struct mutex lg_mutex;
  122. /* list of preallocations */
  123. struct list_head lg_prealloc_list[PREALLOC_TB_SIZE];
  124. spinlock_t lg_prealloc_lock;
  125. };
  126. struct ext4_allocation_context {
  127. struct inode *ac_inode;
  128. struct super_block *ac_sb;
  129. /* original request */
  130. struct ext4_free_extent ac_o_ex;
  131. /* goal request (normalized ac_o_ex) */
  132. struct ext4_free_extent ac_g_ex;
  133. /* the best found extent */
  134. struct ext4_free_extent ac_b_ex;
  135. /* copy of the best found extent taken before preallocation efforts */
  136. struct ext4_free_extent ac_f_ex;
  137. __u16 ac_groups_scanned;
  138. __u16 ac_found;
  139. __u16 ac_tail;
  140. __u16 ac_buddy;
  141. __u16 ac_flags; /* allocation hints */
  142. __u8 ac_status;
  143. __u8 ac_criteria;
  144. __u8 ac_2order; /* if request is to allocate 2^N blocks and
  145. * N > 0, the field stores N, otherwise 0 */
  146. __u8 ac_op; /* operation, for history only */
  147. struct page *ac_bitmap_page;
  148. struct page *ac_buddy_page;
  149. struct ext4_prealloc_space *ac_pa;
  150. struct ext4_locality_group *ac_lg;
  151. };
  152. #define AC_STATUS_CONTINUE 1
  153. #define AC_STATUS_FOUND 2
  154. #define AC_STATUS_BREAK 3
  155. struct ext4_buddy {
  156. struct page *bd_buddy_page;
  157. void *bd_buddy;
  158. struct page *bd_bitmap_page;
  159. void *bd_bitmap;
  160. struct ext4_group_info *bd_info;
  161. struct super_block *bd_sb;
  162. __u16 bd_blkbits;
  163. ext4_group_t bd_group;
  164. };
  165. static inline ext4_fsblk_t ext4_grp_offs_to_block(struct super_block *sb,
  166. struct ext4_free_extent *fex)
  167. {
  168. return ext4_group_first_block_no(sb, fex->fe_group) +
  169. (fex->fe_start << EXT4_SB(sb)->s_cluster_bits);
  170. }
  171. typedef int (*ext4_mballoc_query_range_fn)(
  172. struct super_block *sb,
  173. ext4_group_t agno,
  174. ext4_grpblk_t start,
  175. ext4_grpblk_t len,
  176. void *priv);
  177. int
  178. ext4_mballoc_query_range(
  179. struct super_block *sb,
  180. ext4_group_t agno,
  181. ext4_grpblk_t start,
  182. ext4_grpblk_t end,
  183. ext4_mballoc_query_range_fn formatter,
  184. void *priv);
  185. #endif