ordered-data.h 5.5 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 59
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,
};
60

61
struct btrfs_ordered_extent {
62
	/* logical offset in the file */
63
	u64 file_offset;
64

65 66 67 68 69 70 71
	/*
	 * 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 已提交
72

73 74 75
	/* number of bytes that still need writing */
	u64 bytes_left;

76 77 78 79 80 81 82
	/*
	 * 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;

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

89
	/* flags (described above) */
90
	unsigned long flags;
91

92 93 94
	/* compression algorithm */
	int compress_type;

95 96 97
	/* Qgroup reserved space */
	int qgroup_rsv;

98
	/* reference count */
99
	refcount_t refs;
100

101 102 103
	/* the inode we belong to */
	struct inode *inode;

104
	/* list of checksums for insertion when the extent io is done */
105
	struct list_head list;
106 107

	/* used to wait for the BTRFS_ORDERED_COMPLETE bit */
108
	wait_queue_head_t wait;
109 110

	/* our friendly rbtree entry */
111
	struct rb_node rb_node;
112 113 114

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

116
	struct btrfs_work work;
117

118
	struct completion completion;
119
	struct btrfs_work flush_work;
120 121
	struct list_head work_list;
};
122

123 124 125 126
/*
 * calculates the total size you need to allocate for an ordered sum
 * structure spanning 'bytes' in the file
 */
127
static inline int btrfs_ordered_sum_size(struct btrfs_fs_info *fs_info,
128
					 unsigned long bytes)
129
{
130
	int num_sectors = (int)DIV_ROUND_UP(bytes, fs_info->sectorsize);
131 132 133
	int csum_size = btrfs_super_csum_size(fs_info->super_copy);

	return sizeof(struct btrfs_ordered_sum) + num_sectors * csum_size;
134 135
}

C
Chris Mason 已提交
136 137 138
static inline void
btrfs_ordered_inode_tree_init(struct btrfs_ordered_inode_tree *t)
{
139
	spin_lock_init(&t->lock);
140
	t->tree = RB_ROOT;
141
	t->last = NULL;
C
Chris Mason 已提交
142 143
}

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

C
Chris Mason 已提交
189
#endif