ordered-data.h 5.8 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 31 32 33 34 35 36 37 38 39
/*
 * bits for the flags field:
 *
 * 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
enum {
	/* set when all the pages are written */
	BTRFS_ORDERED_IO_DONE,
	/* set when removed from the tree */
	BTRFS_ORDERED_COMPLETE,
	/* set when we want to write in place */
	BTRFS_ORDERED_NOCOW,
	/* writing a zlib compressed extent */
	BTRFS_ORDERED_COMPRESSED,
	/* set when writing to preallocated extent */
	BTRFS_ORDERED_PREALLOC,
	/* set when we're doing DIO with this extent */
	BTRFS_ORDERED_DIRECT,
	/* We had an io error when writing this out */
	BTRFS_ORDERED_IOERR,
	/* Set when we have to truncate an extent */
	BTRFS_ORDERED_TRUNCATED,
	/* Regular IO for COW */
	BTRFS_ORDERED_REGULAR,
59 60 61 62 63 64
	/* 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,
65
};
66

67
struct btrfs_ordered_extent {
68
	/* logical offset in the file */
69
	u64 file_offset;
70

71 72 73 74 75 76 77
	/*
	 * 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 已提交
78

79 80 81
	/* number of bytes that still need writing */
	u64 bytes_left;

82 83 84 85 86 87 88
	/*
	 * 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;

89 90 91 92 93 94
	/*
	 * 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;

95
	/* flags (described above) */
96
	unsigned long flags;
97

98 99 100
	/* compression algorithm */
	int compress_type;

101 102 103
	/* Qgroup reserved space */
	int qgroup_rsv;

104
	/* reference count */
105
	refcount_t refs;
106

107 108 109
	/* the inode we belong to */
	struct inode *inode;

110
	/* list of checksums for insertion when the extent io is done */
111
	struct list_head list;
112

113 114 115
	/* used for fast fsyncs */
	struct list_head log_list;

116
	/* used to wait for the BTRFS_ORDERED_COMPLETE bit */
117
	wait_queue_head_t wait;
118 119

	/* our friendly rbtree entry */
120
	struct rb_node rb_node;
121 122 123

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

125
	struct btrfs_work work;
126

127
	struct completion completion;
128
	struct btrfs_work flush_work;
129 130
	struct list_head work_list;
};
131

132 133 134 135
/*
 * calculates the total size you need to allocate for an ordered sum
 * structure spanning 'bytes' in the file
 */
136
static inline int btrfs_ordered_sum_size(struct btrfs_fs_info *fs_info,
137
					 unsigned long bytes)
138
{
139
	int num_sectors = (int)DIV_ROUND_UP(bytes, fs_info->sectorsize);
140

141
	return sizeof(struct btrfs_ordered_sum) + num_sectors * fs_info->csum_size;
142 143
}

C
Chris Mason 已提交
144 145 146
static inline void
btrfs_ordered_inode_tree_init(struct btrfs_ordered_inode_tree *t)
{
147
	spin_lock_init(&t->lock);
148
	t->tree = RB_ROOT;
149
	t->last = NULL;
C
Chris Mason 已提交
150 151
}

152
void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry);
153
void btrfs_remove_ordered_extent(struct btrfs_inode *btrfs_inode,
154
				struct btrfs_ordered_extent *entry);
155 156 157 158 159
bool btrfs_dec_test_ordered_pending(struct btrfs_inode *inode,
				    struct btrfs_ordered_extent **cached,
				    u64 file_offset, u64 io_size, int uptodate);
bool btrfs_dec_test_first_ordered_pending(struct btrfs_inode *inode,
				   struct btrfs_ordered_extent **finished_ret,
160 161
				   u64 *file_offset, u64 io_size,
				   int uptodate);
162
int btrfs_add_ordered_extent(struct btrfs_inode *inode, u64 file_offset,
163 164
			     u64 disk_bytenr, u64 num_bytes, u64 disk_num_bytes,
			     int type);
165
int btrfs_add_ordered_extent_dio(struct btrfs_inode *inode, u64 file_offset,
166 167
				 u64 disk_bytenr, u64 num_bytes,
				 u64 disk_num_bytes, int type);
168
int btrfs_add_ordered_extent_compress(struct btrfs_inode *inode, u64 file_offset,
169 170 171
				      u64 disk_bytenr, u64 num_bytes,
				      u64 disk_num_bytes, int type,
				      int compress_type);
172
void btrfs_add_ordered_sum(struct btrfs_ordered_extent *entry,
173
			   struct btrfs_ordered_sum *sum);
174
struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct btrfs_inode *inode,
175
							 u64 file_offset);
176
void btrfs_start_ordered_extent(struct btrfs_ordered_extent *entry, int wait);
177
int btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len);
178
struct btrfs_ordered_extent *
179
btrfs_lookup_first_ordered_extent(struct btrfs_inode *inode, u64 file_offset);
180 181 182 183
struct btrfs_ordered_extent *btrfs_lookup_ordered_range(
		struct btrfs_inode *inode,
		u64 file_offset,
		u64 len);
184 185
void btrfs_get_ordered_extents_for_logging(struct btrfs_inode *inode,
					   struct list_head *list);
186
u64 btrfs_wait_ordered_extents(struct btrfs_root *root, u64 nr,
187
			       const u64 range_start, const u64 range_len);
188
void btrfs_wait_ordered_roots(struct btrfs_fs_info *fs_info, u64 nr,
189
			      const u64 range_start, const u64 range_len);
190
void btrfs_lock_and_flush_ordered_range(struct btrfs_inode *inode, u64 start,
191 192
					u64 end,
					struct extent_state **cached_state);
193
int __init ordered_data_init(void);
194
void __cold ordered_data_exit(void);
195

C
Chris Mason 已提交
196
#endif