ordered-data.h 6.4 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
C
Chris Mason 已提交
2 3 4 5
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 */

6 7
#ifndef BTRFS_ORDERED_DATA_H
#define BTRFS_ORDERED_DATA_H
C
Chris Mason 已提交
8

9
/* one of these per inode */
C
Chris Mason 已提交
10
struct btrfs_ordered_inode_tree {
11
	spinlock_t lock;
C
Chris Mason 已提交
12
	struct rb_root tree;
13
	struct rb_node *last;
C
Chris Mason 已提交
14 15
};

16
struct btrfs_ordered_sum {
17 18 19
	/* bytenr is the start of this extent on disk */
	u64 bytenr;

20 21 22
	/*
	 * this is the length in bytes covered by the sums array below.
	 */
23
	int len;
24
	struct list_head list;
25
	/* last field is a variable length array of csums */
26
	u8 sums[];
27 28
};

29
/*
30
 * Bits for btrfs_ordered_extent::flags.
31 32 33 34 35 36 37 38 39
 *
 * BTRFS_ORDERED_IO_DONE is set when all of the blocks are written.
 * It is used to make sure metadata is inserted into the tree only once
 * per extent.
 *
 * BTRFS_ORDERED_COMPLETE is set when the extent is removed from the
 * rbtree, just before waking any waiters.  It is used to indicate the
 * IO is done and any metadata is inserted into the tree.
 */
40
enum {
41
	/*
42 43
	 * Different types for ordered extents, one and only one of the 4 types
	 * need to be set when creating ordered extent.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
	 *
	 * REGULAR:	For regular non-compressed COW write
	 * NOCOW:	For NOCOW write into existing non-hole extent
	 * PREALLOC:	For NOCOW write into preallocated extent
	 * COMPRESSED:	For compressed COW write
	 */
	BTRFS_ORDERED_REGULAR,
	BTRFS_ORDERED_NOCOW,
	BTRFS_ORDERED_PREALLOC,
	BTRFS_ORDERED_COMPRESSED,

	/*
	 * Extra bit for direct io, can only be set for
	 * REGULAR/NOCOW/PREALLOC. No direct io for compressed extent.
	 */
	BTRFS_ORDERED_DIRECT,

	/* Extra status bits for ordered extents */

63 64 65 66 67 68 69 70
	/* set when all the pages are written */
	BTRFS_ORDERED_IO_DONE,
	/* set when removed from the tree */
	BTRFS_ORDERED_COMPLETE,
	/* We had an io error when writing this out */
	BTRFS_ORDERED_IOERR,
	/* Set when we have to truncate an extent */
	BTRFS_ORDERED_TRUNCATED,
71 72 73 74 75 76
	/* Used during fsync to track already logged extents */
	BTRFS_ORDERED_LOGGED,
	/* We have already logged all the csums of the ordered extent */
	BTRFS_ORDERED_LOGGED_CSUM,
	/* We wait for this extent to complete in the current transaction */
	BTRFS_ORDERED_PENDING,
77
};
78

79
struct btrfs_ordered_extent {
80
	/* logical offset in the file */
81
	u64 file_offset;
82

83 84 85 86 87 88 89
	/*
	 * These fields directly correspond to the same fields in
	 * btrfs_file_extent_item.
	 */
	u64 disk_bytenr;
	u64 num_bytes;
	u64 disk_num_bytes;
C
Chris Mason 已提交
90

91 92 93
	/* number of bytes that still need writing */
	u64 bytes_left;

94 95 96 97 98 99 100
	/*
	 * the end of the ordered extent which is behind it but
	 * didn't update disk_i_size. Please see the comment of
	 * btrfs_ordered_update_i_size();
	 */
	u64 outstanding_isize;

101 102 103 104 105 106
	/*
	 * If we get truncated we need to adjust the file extent we enter for
	 * this ordered extent so that we do not expose stale data.
	 */
	u64 truncated_len;

107
	/* flags (described above) */
108
	unsigned long flags;
109

110 111 112
	/* compression algorithm */
	int compress_type;

113 114 115
	/* Qgroup reserved space */
	int qgroup_rsv;

116
	/* reference count */
117
	refcount_t refs;
118

119 120 121
	/* the inode we belong to */
	struct inode *inode;

122
	/* list of checksums for insertion when the extent io is done */
123
	struct list_head list;
124

125 126 127
	/* used for fast fsyncs */
	struct list_head log_list;

128
	/* used to wait for the BTRFS_ORDERED_COMPLETE bit */
129
	wait_queue_head_t wait;
130 131

	/* our friendly rbtree entry */
132
	struct rb_node rb_node;
133 134 135

	/* a per root list of all the pending ordered extents */
	struct list_head root_extent_list;
136

137
	struct btrfs_work work;
138

139
	struct completion completion;
140
	struct btrfs_work flush_work;
141
	struct list_head work_list;
142 143 144 145 146 147

	/*
	 * Used to reverse-map physical address returned from ZONE_APPEND write
	 * command in a workqueue context
	 */
	u64 physical;
148
	struct block_device *bdev;
149
};
150

151 152 153 154
/*
 * calculates the total size you need to allocate for an ordered sum
 * structure spanning 'bytes' in the file
 */
155
static inline int btrfs_ordered_sum_size(struct btrfs_fs_info *fs_info,
156
					 unsigned long bytes)
157
{
158
	int num_sectors = (int)DIV_ROUND_UP(bytes, fs_info->sectorsize);
159

160
	return sizeof(struct btrfs_ordered_sum) + num_sectors * fs_info->csum_size;
161 162
}

C
Chris Mason 已提交
163 164 165
static inline void
btrfs_ordered_inode_tree_init(struct btrfs_ordered_inode_tree *t)
{
166
	spin_lock_init(&t->lock);
167
	t->tree = RB_ROOT;
168
	t->last = NULL;
C
Chris Mason 已提交
169 170
}

171
void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry);
172
void btrfs_remove_ordered_extent(struct btrfs_inode *btrfs_inode,
173
				struct btrfs_ordered_extent *entry);
174 175 176 177
void btrfs_mark_ordered_io_finished(struct btrfs_inode *inode,
				struct page *page, u64 file_offset,
				u64 num_bytes, btrfs_func_t finish_func,
				bool uptodate);
178 179 180
bool btrfs_dec_test_ordered_pending(struct btrfs_inode *inode,
				    struct btrfs_ordered_extent **cached,
				    u64 file_offset, u64 io_size, int uptodate);
181
int btrfs_add_ordered_extent(struct btrfs_inode *inode, u64 file_offset,
182 183
			     u64 disk_bytenr, u64 num_bytes, u64 disk_num_bytes,
			     int type);
184
int btrfs_add_ordered_extent_dio(struct btrfs_inode *inode, u64 file_offset,
185 186
				 u64 disk_bytenr, u64 num_bytes,
				 u64 disk_num_bytes, int type);
187
int btrfs_add_ordered_extent_compress(struct btrfs_inode *inode, u64 file_offset,
188
				      u64 disk_bytenr, u64 num_bytes,
189
				      u64 disk_num_bytes, int compress_type);
190
void btrfs_add_ordered_sum(struct btrfs_ordered_extent *entry,
191
			   struct btrfs_ordered_sum *sum);
192
struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct btrfs_inode *inode,
193
							 u64 file_offset);
194
void btrfs_start_ordered_extent(struct btrfs_ordered_extent *entry, int wait);
195
int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len);
196
struct btrfs_ordered_extent *
197
btrfs_lookup_first_ordered_extent(struct btrfs_inode *inode, u64 file_offset);
198 199
struct btrfs_ordered_extent *btrfs_lookup_first_ordered_range(
			struct btrfs_inode *inode, u64 file_offset, u64 len);
200 201 202 203
struct btrfs_ordered_extent *btrfs_lookup_ordered_range(
		struct btrfs_inode *inode,
		u64 file_offset,
		u64 len);
204 205
void btrfs_get_ordered_extents_for_logging(struct btrfs_inode *inode,
					   struct list_head *list);
206
u64 btrfs_wait_ordered_extents(struct btrfs_root *root, u64 nr,
207
			       const u64 range_start, const u64 range_len);
208
void btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, u64 nr,
209
			      const u64 range_start, const u64 range_len);
210
void btrfs_lock_and_flush_ordered_range(struct btrfs_inode *inode, u64 start,
211 212
					u64 end,
					struct extent_state **cached_state);
213 214
int btrfs_split_ordered_extent(struct btrfs_ordered_extent *ordered, u64 pre,
			       u64 post);
215
int __init ordered_data_init(void);
216
void __cold ordered_data_exit(void);
217

C
Chris Mason 已提交
218
#endif