mballoc.h 5.3 KB

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