mballoc.h 6.87 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  fs/ext4/mballoc.h
 *
 *  Written by: Alex Tomas <alex@clusterfs.com>
 *
 */
#ifndef _EXT4_MBALLOC_H
#define _EXT4_MBALLOC_H

#include <linux/time.h>
#include <linux/fs.h>
#include <linux/namei.h>
#include <linux/quotaops.h>
#include <linux/buffer_head.h>
#include <linux/module.h>
#include <linux/swap.h>
#include <linux/proc_fs.h>
#include <linux/pagemap.h>
#include <linux/seq_file.h>
21
#include <linux/blkdev.h>
22
#include <linux/mutex.h>
23 24 25 26
#include "ext4_jbd2.h"
#include "ext4.h"

/*
27
 * mb_debug() dynamic printk msgs could be used to debug mballoc code.
28
 */
29
#ifdef CONFIG_EXT4_DEBUG
30 31 32 33
#define mb_debug(sb, fmt, ...)						\
	pr_debug("[%s/%d] EXT4-fs (%s): (%s, %d): %s: " fmt,		\
		current->comm, task_pid_nr(current), sb->s_id,		\
	       __FILE__, __LINE__, __func__, ##__VA_ARGS__)
34
#else
35
#define mb_debug(sb, fmt, ...)	no_printk(fmt, ##__VA_ARGS__)
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#endif

#define EXT4_MB_HISTORY_ALLOC		1	/* allocation */
#define EXT4_MB_HISTORY_PREALLOC	2	/* preallocated blocks used */

/*
 * How long mballoc can look for a best extent (in found extents)
 */
#define MB_DEFAULT_MAX_TO_SCAN		200

/*
 * How long mballoc must look for a best extent
 */
#define MB_DEFAULT_MIN_TO_SCAN		10

/*
52
 * with 's_mb_stats' allocator will collect stats that will be
53 54
 * shown at umount. The collecting costs though!
 */
55
#define MB_DEFAULT_STATS		0
56 57 58 59 60 61

/*
 * files smaller than MB_DEFAULT_STREAM_THRESHOLD are served
 * by the stream allocator, which purpose is to pack requests
 * as close each to other as possible to produce smooth I/O traffic
 * We use locality group prealloc space for stream request.
62
 * We can tune the same via /proc/fs/ext4/<partition>/stream_req
63 64 65 66 67 68 69 70 71 72 73 74 75
 */
#define MB_DEFAULT_STREAM_THRESHOLD	16	/* 64K */

/*
 * for which requests use 2^N search using buddies
 */
#define MB_DEFAULT_ORDER2_REQS		2

/*
 * default group prealloc size 512 blocks
 */
#define MB_DEFAULT_GROUP_PREALLOC	512

76 77 78 79 80 81 82 83 84 85 86 87
/*
 * Number of groups to search linearly before performing group scanning
 * optimization.
 */
#define MB_DEFAULT_LINEAR_LIMIT		4

/*
 * Minimum number of groups that should be present in the file system to perform
 * group scanning optimizations.
 */
#define MB_DEFAULT_LINEAR_SCAN_THRESHOLD	16

88
/*
89 90 91
 * The maximum order upto which CR_BEST_AVAIL_LEN can trim a particular
 * allocation request. Example, if we have an order 7 request and max trim order
 * of 3, we can trim this request upto order 4.
92
 */
93
#define MB_DEFAULT_BEST_AVAIL_TRIM_ORDER	3
94

95 96 97 98 99
/*
 * Number of valid buddy orders
 */
#define MB_NUM_ORDERS(sb)		((sb)->s_blocksize_bits + 2)

100
struct ext4_free_data {
101 102
	/* this links the free block information from sb_info */
	struct list_head		efd_list;
103

Bobi Jam's avatar
Bobi Jam committed
104 105
	/* this links the free block information from group_info */
	struct rb_node			efd_node;
106 107

	/* group which free block extent belongs */
Bobi Jam's avatar
Bobi Jam committed
108
	ext4_group_t			efd_group;
109 110

	/* free block extent */
Bobi Jam's avatar
Bobi Jam committed
111 112
	ext4_grpblk_t			efd_start_cluster;
	ext4_grpblk_t			efd_count;
113 114

	/* transaction which freed this extent */
Bobi Jam's avatar
Bobi Jam committed
115
	tid_t				efd_tid;
116 117 118
};

struct ext4_prealloc_space {
119
	union {
120
		struct rb_node	inode_node;		/* for inode PA rbtree */
121 122
		struct list_head	lg_list;	/* for lg PAs */
	} pa_node;
123 124 125 126 127 128 129 130 131 132
	struct list_head	pa_group_list;
	union {
		struct list_head pa_tmp_list;
		struct rcu_head	pa_rcu;
	} u;
	spinlock_t		pa_lock;
	atomic_t		pa_count;
	unsigned		pa_deleted;
	ext4_fsblk_t		pa_pstart;	/* phys. block */
	ext4_lblk_t		pa_lstart;	/* log. block */
133 134
	ext4_grpblk_t		pa_len;		/* len of preallocated chunk */
	ext4_grpblk_t		pa_free;	/* how many blocks are free */
135
	unsigned short		pa_type;	/* pa type. inode or group */
136
	union {
137
		rwlock_t		*inode_lock;	/* locks the rbtree holding this PA */
138 139
		spinlock_t		*lg_lock;	/* locks the lg list holding this PA */
	} pa_node_lock;
140
	struct inode		*pa_inode;	/* used to get the inode during group discard */
141 142
};

143 144 145 146
enum {
	MB_INODE_PA = 0,
	MB_GROUP_PA = 1
};
147 148 149

struct ext4_free_extent {
	ext4_lblk_t fe_logical;
150
	ext4_grpblk_t fe_start;	/* In cluster units */
151
	ext4_group_t fe_group;
152
	ext4_grpblk_t fe_len;	/* In cluster units */
153 154 155 156 157 158
};

/*
 * Locality group:
 *   we try to group all related changes together
 *   so that writeback can flush/allocate them together as well
159 160 161
 *   Size of lg_prealloc_list hash is determined by MB_DEFAULT_GROUP_PREALLOC
 *   (512). We store prealloc space into the hash based on the pa_free blocks
 *   order value.ie, fls(pa_free)-1;
162
 */
163
#define PREALLOC_TB_SIZE 10
164 165
struct ext4_locality_group {
	/* for allocator */
166 167 168 169
	/* to serialize allocates */
	struct mutex		lg_mutex;
	/* list of preallocations */
	struct list_head	lg_prealloc_list[PREALLOC_TB_SIZE];
170 171 172 173 174 175 176 177 178 179
	spinlock_t		lg_prealloc_lock;
};

struct ext4_allocation_context {
	struct inode *ac_inode;
	struct super_block *ac_sb;

	/* original request */
	struct ext4_free_extent ac_o_ex;

180
	/* goal request (normalized ac_o_ex) */
181 182 183 184 185
	struct ext4_free_extent ac_g_ex;

	/* the best found extent */
	struct ext4_free_extent ac_b_ex;

186
	/* copy of the best found extent taken before preallocation efforts */
187 188
	struct ext4_free_extent ac_f_ex;

189
	/*
190 191
	 * goal len can change in CR_BEST_AVAIL_LEN, so save the original len.
	 * This is used while adjusting the PA window and for accounting.
192 193 194
	 */
	ext4_grpblk_t	ac_orig_goal_len;

195
	__u32 ac_flags;		/* allocation hints */
196
	__u32 ac_groups_linear_remaining;
197 198
	__u16 ac_groups_scanned;
	__u16 ac_found;
199
	__u16 ac_cX_found[EXT4_MB_NUM_CRS];
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
	__u16 ac_tail;
	__u16 ac_buddy;
	__u8 ac_status;
	__u8 ac_criteria;
	__u8 ac_2order;		/* if request is to allocate 2^N blocks and
				 * N > 0, the field stores N, otherwise 0 */
	__u8 ac_op;		/* operation, for history only */
	struct page *ac_bitmap_page;
	struct page *ac_buddy_page;
	struct ext4_prealloc_space *ac_pa;
	struct ext4_locality_group *ac_lg;
};

#define AC_STATUS_CONTINUE	1
#define AC_STATUS_FOUND		2
#define AC_STATUS_BREAK		3

struct ext4_buddy {
218
	struct folio *bd_buddy_folio;
219
	void *bd_buddy;
220
	struct folio *bd_bitmap_folio;
221 222 223 224 225 226 227
	void *bd_bitmap;
	struct ext4_group_info *bd_info;
	struct super_block *bd_sb;
	__u16 bd_blkbits;
	ext4_group_t bd_group;
};

228
static inline ext4_fsblk_t ext4_grp_offs_to_block(struct super_block *sb,
229 230
					struct ext4_free_extent *fex)
{
231 232
	return ext4_group_first_block_no(sb, fex->fe_group) +
		(fex->fe_start << EXT4_SB(sb)->s_cluster_bits);
233
}
234

235 236 237 238 239 240 241 242 243 244 245 246 247 248
static inline loff_t extent_logical_end(struct ext4_sb_info *sbi,
					struct ext4_free_extent *fex)
{
	/* Use loff_t to avoid end exceeding ext4_lblk_t max. */
	return (loff_t)fex->fe_logical + EXT4_C2B(sbi, fex->fe_len);
}

static inline loff_t pa_logical_end(struct ext4_sb_info *sbi,
				    struct ext4_prealloc_space *pa)
{
	/* Use loff_t to avoid end exceeding ext4_lblk_t max. */
	return (loff_t)pa->pa_lstart + EXT4_C2B(sbi, pa->pa_len);
}

249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
typedef int (*ext4_mballoc_query_range_fn)(
	struct super_block		*sb,
	ext4_group_t			agno,
	ext4_grpblk_t			start,
	ext4_grpblk_t			len,
	void				*priv);

int
ext4_mballoc_query_range(
	struct super_block		*sb,
	ext4_group_t			agno,
	ext4_grpblk_t			start,
	ext4_grpblk_t			end,
	ext4_mballoc_query_range_fn	formatter,
	void				*priv);

265
#endif