blob: 51e1b714325641dbe816b7a88c40d02bf334bc9b [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#ifndef __EXTENTIO__
2#define __EXTENTIO__
3
4#include <linux/rbtree.h>
Qu Wenruoac467772015-10-12 12:08:16 +08005#include "ulist.h"
Chris Masond1310b22008-01-24 16:13:08 -05006
7/* bits for the extent state */
David Sterba9ee49a042015-01-14 19:52:13 +01008#define EXTENT_DIRTY (1U << 0)
9#define EXTENT_WRITEBACK (1U << 1)
10#define EXTENT_UPTODATE (1U << 2)
11#define EXTENT_LOCKED (1U << 3)
12#define EXTENT_NEW (1U << 4)
13#define EXTENT_DELALLOC (1U << 5)
14#define EXTENT_DEFRAG (1U << 6)
15#define EXTENT_BOUNDARY (1U << 9)
16#define EXTENT_NODATASUM (1U << 10)
17#define EXTENT_DO_ACCOUNTING (1U << 11)
18#define EXTENT_FIRST_DELALLOC (1U << 12)
19#define EXTENT_NEED_WAIT (1U << 13)
20#define EXTENT_DAMAGED (1U << 14)
21#define EXTENT_NORESERVE (1U << 15)
22#define EXTENT_IOBITS (EXTENT_LOCKED | EXTENT_WRITEBACK)
23#define EXTENT_CTLBITS (EXTENT_DO_ACCOUNTING | EXTENT_FIRST_DELALLOC)
Chris Masond1310b22008-01-24 16:13:08 -050024
Li Zefan261507a02010-12-17 14:21:50 +080025/*
26 * flags for bio submission. The high bits indicate the compression
27 * type for this bio
28 */
Chris Masonc8b97812008-10-29 14:49:59 -040029#define EXTENT_BIO_COMPRESSED 1
Josef Bacikde0022b2012-09-25 14:25:58 -040030#define EXTENT_BIO_TREE_LOG 2
Mark Fasheh4b384312013-08-06 11:42:50 -070031#define EXTENT_BIO_PARENT_LOCKED 4
Li Zefan261507a02010-12-17 14:21:50 +080032#define EXTENT_BIO_FLAG_SHIFT 16
Chris Masonc8b97812008-10-29 14:49:59 -040033
Chris Masonb4ce94d2009-02-04 09:25:08 -050034/* these are bit numbers for test/set bit */
35#define EXTENT_BUFFER_UPTODATE 0
Chris Masonb9473432009-03-13 11:00:37 -040036#define EXTENT_BUFFER_DIRTY 2
Josef Bacika826d6d2011-03-16 13:42:43 -040037#define EXTENT_BUFFER_CORRUPT 3
Arne Jansenab0fff02011-05-23 14:25:41 +020038#define EXTENT_BUFFER_READAHEAD 4 /* this got triggered by readahead */
Josef Bacik3083ee22012-03-09 16:01:49 -050039#define EXTENT_BUFFER_TREE_REF 5
40#define EXTENT_BUFFER_STALE 6
Josef Bacik0b32f4b2012-03-13 09:38:00 -040041#define EXTENT_BUFFER_WRITEBACK 7
Filipe Manana656f30d2014-09-26 12:25:56 +010042#define EXTENT_BUFFER_READ_ERR 8 /* read IO error */
Jan Schmidt815a51c2012-05-16 17:00:02 +020043#define EXTENT_BUFFER_DUMMY 9
Josef Bacik34b41ac2013-12-13 10:41:51 -050044#define EXTENT_BUFFER_IN_TREE 10
Filipe Manana656f30d2014-09-26 12:25:56 +010045#define EXTENT_BUFFER_WRITE_ERR 11 /* write IO error */
Chris Masonb4ce94d2009-02-04 09:25:08 -050046
Chris Masona791e352009-10-08 11:27:10 -040047/* these are flags for extent_clear_unlock_delalloc */
Josef Bacikc2790a22013-07-29 11:20:47 -040048#define PAGE_UNLOCK (1 << 0)
49#define PAGE_CLEAR_DIRTY (1 << 1)
50#define PAGE_SET_WRITEBACK (1 << 2)
51#define PAGE_END_WRITEBACK (1 << 3)
52#define PAGE_SET_PRIVATE2 (1 << 4)
Filipe Manana704de492014-10-06 22:14:22 +010053#define PAGE_SET_ERROR (1 << 5)
Chris Masona791e352009-10-08 11:27:10 -040054
Chris Masond1310b22008-01-24 16:13:08 -050055/*
56 * page->private values. Every page that is controlled by the extent
57 * map has page->private set to one.
58 */
59#define EXTENT_PAGE_PRIVATE 1
Chris Masond1310b22008-01-24 16:13:08 -050060
Chris Mason70dec802008-01-29 09:59:12 -050061struct extent_state;
Josef Bacikea466792012-03-26 21:57:36 -040062struct btrfs_root;
Miao Xiefacc8a222013-07-25 19:22:34 +080063struct btrfs_io_bio;
Chris Mason70dec802008-01-29 09:59:12 -050064
Chris Mason44b8bd72008-04-16 11:14:51 -040065typedef int (extent_submit_bio_hook_t)(struct inode *inode, int rw,
Chris Masonc8b97812008-10-29 14:49:59 -040066 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -040067 unsigned long bio_flags, u64 bio_offset);
Chris Masond1310b22008-01-24 16:13:08 -050068struct extent_io_ops {
Chris Masonc8b97812008-10-29 14:49:59 -040069 int (*fill_delalloc)(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -050070 u64 start, u64 end, int *page_started,
71 unsigned long *nr_written);
Chris Mason247e7432008-07-17 12:53:51 -040072 int (*writepage_start_hook)(struct page *page, u64 start, u64 end);
Chris Masond1310b22008-01-24 16:13:08 -050073 int (*writepage_io_hook)(struct page *page, u64 start, u64 end);
Chris Mason44b8bd72008-04-16 11:14:51 -040074 extent_submit_bio_hook_t *submit_bio_hook;
David Woodhouse64a16702009-07-15 23:29:37 +010075 int (*merge_bio_hook)(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -040076 size_t size, struct bio *bio,
77 unsigned long bio_flags);
Josef Bacikea466792012-03-26 21:57:36 -040078 int (*readpage_io_failed_hook)(struct page *page, int failed_mirror);
Miao Xiefacc8a222013-07-25 19:22:34 +080079 int (*readpage_end_io_hook)(struct btrfs_io_bio *io_bio, u64 phy_offset,
80 struct page *page, u64 start, u64 end,
81 int mirror);
Chris Mason1259ab72008-05-12 13:39:03 -040082 int (*writepage_end_io_hook)(struct page *page, u64 start, u64 end,
Chris Masone6dcd2d2008-07-17 12:53:50 -040083 struct extent_state *state, int uptodate);
Jeff Mahoney1bf85042011-07-21 16:56:09 +000084 void (*set_bit_hook)(struct inode *inode, struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +010085 unsigned *bits);
Jeff Mahoney1bf85042011-07-21 16:56:09 +000086 void (*clear_bit_hook)(struct inode *inode, struct extent_state *state,
David Sterba9ee49a042015-01-14 19:52:13 +010087 unsigned *bits);
Jeff Mahoney1bf85042011-07-21 16:56:09 +000088 void (*merge_extent_hook)(struct inode *inode,
89 struct extent_state *new,
90 struct extent_state *other);
91 void (*split_extent_hook)(struct inode *inode,
92 struct extent_state *orig, u64 split);
Chris Masond1310b22008-01-24 16:13:08 -050093};
94
95struct extent_io_tree {
96 struct rb_root state;
97 struct address_space *mapping;
98 u64 dirty_bytes;
Josef Bacik0b32f4b2012-03-13 09:38:00 -040099 int track_uptodate;
Chris Mason70dec802008-01-29 09:59:12 -0500100 spinlock_t lock;
David Sterbae8c9f182015-01-02 18:23:10 +0100101 const struct extent_io_ops *ops;
Chris Masond1310b22008-01-24 16:13:08 -0500102};
103
104struct extent_state {
105 u64 start;
106 u64 end; /* inclusive */
Chris Masond1310b22008-01-24 16:13:08 -0500107 struct rb_node rb_node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400108
109 /* ADD NEW ELEMENTS AFTER THIS */
Chris Masond1310b22008-01-24 16:13:08 -0500110 wait_queue_head_t wq;
111 atomic_t refs;
David Sterba9ee49a042015-01-14 19:52:13 +0100112 unsigned state;
Chris Masond1310b22008-01-24 16:13:08 -0500113
114 /* for use by the FS */
115 u64 private;
116
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000117#ifdef CONFIG_BTRFS_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400118 struct list_head leak_list;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000119#endif
Chris Masond1310b22008-01-24 16:13:08 -0500120};
121
Chris Mason727011e2010-08-06 13:21:20 -0400122#define INLINE_EXTENT_BUFFER_PAGES 16
123#define MAX_INLINE_EXTENT_BUFFER_SIZE (INLINE_EXTENT_BUFFER_PAGES * PAGE_CACHE_SIZE)
Chris Masond1310b22008-01-24 16:13:08 -0500124struct extent_buffer {
125 u64 start;
126 unsigned long len;
Chris Masonb4ce94d2009-02-04 09:25:08 -0500127 unsigned long bflags;
Josef Bacikf28491e2013-12-16 13:24:27 -0500128 struct btrfs_fs_info *fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -0500129 spinlock_t refs_lock;
Chris Mason727011e2010-08-06 13:21:20 -0400130 atomic_t refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400131 atomic_t io_pages;
Josef Bacik5cf1ab52012-04-16 09:42:26 -0400132 int read_mirror;
Miao Xie19fe0a82010-10-26 20:57:29 -0400133 struct rcu_head rcu_head;
Arne Jansen5b25f702011-09-13 10:55:48 +0200134 pid_t lock_owner;
Chris Masonb4ce94d2009-02-04 09:25:08 -0500135
Chris Masonbd681512011-07-16 15:23:14 -0400136 /* count of read lock holders on the extent buffer */
137 atomic_t write_locks;
138 atomic_t read_locks;
139 atomic_t blocking_writers;
140 atomic_t blocking_readers;
141 atomic_t spinning_readers;
142 atomic_t spinning_writers;
Filipe Manana656f30d2014-09-26 12:25:56 +0100143 short lock_nested;
144 /* >= 0 if eb belongs to a log tree, -1 otherwise */
145 short log_index;
Chris Masonb4ce94d2009-02-04 09:25:08 -0500146
Chris Masonbd681512011-07-16 15:23:14 -0400147 /* protects write locks */
148 rwlock_t lock;
149
150 /* readers use lock_wq while they wait for the write
151 * lock holders to unlock
Chris Masonb4ce94d2009-02-04 09:25:08 -0500152 */
Chris Masonbd681512011-07-16 15:23:14 -0400153 wait_queue_head_t write_lock_wq;
154
155 /* writers use read_lock_wq while they wait for readers
156 * to unlock
157 */
158 wait_queue_head_t read_lock_wq;
David Sterbab8dae312013-02-28 14:54:18 +0000159 struct page *pages[INLINE_EXTENT_BUFFER_PAGES];
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000160#ifdef CONFIG_BTRFS_DEBUG
161 struct list_head leak_list;
162#endif
Chris Masond1310b22008-01-24 16:13:08 -0500163};
164
Qu Wenruoac467772015-10-12 12:08:16 +0800165/*
166 * Structure to record how many bytes and which ranges are set/cleared
167 */
168struct extent_changeset {
169 /* How many bytes are set/cleared in this operation */
170 u64 bytes_changed;
171
172 /* Changed ranges */
173 struct ulist *range_changed;
174};
175
Li Zefan261507a02010-12-17 14:21:50 +0800176static inline void extent_set_compress_type(unsigned long *bio_flags,
177 int compress_type)
178{
179 *bio_flags |= compress_type << EXTENT_BIO_FLAG_SHIFT;
180}
181
182static inline int extent_compress_type(unsigned long bio_flags)
183{
184 return bio_flags >> EXTENT_BIO_FLAG_SHIFT;
185}
186
Chris Masond1310b22008-01-24 16:13:08 -0500187struct extent_map_tree;
188
189typedef struct extent_map *(get_extent_t)(struct inode *inode,
190 struct page *page,
David Sterba306e16c2011-04-19 14:29:38 +0200191 size_t pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -0500192 u64 start, u64 len,
193 int create);
194
195void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200196 struct address_space *mapping);
Chris Masond1310b22008-01-24 16:13:08 -0500197int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -0500198 struct extent_io_tree *tree, struct page *page,
199 gfp_t mask);
David Sterbaf7a52a42013-04-26 14:56:29 +0000200int try_release_extent_buffer(struct page *page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100201int lock_extent(struct extent_io_tree *tree, u64 start, u64 end);
Chris Mason1edbb732009-09-02 13:24:36 -0400202int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100203 unsigned bits, struct extent_state **cached);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100204int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000205int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
206 struct extent_state **cached, gfp_t mask);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100207int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end);
Chris Masond1310b22008-01-24 16:13:08 -0500208int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +0200209 get_extent_t *get_extent, int mirror_num);
Mark Fasheh4b384312013-08-06 11:42:50 -0700210int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
211 get_extent_t *get_extent, int mirror_num);
Chris Masond1310b22008-01-24 16:13:08 -0500212int __init extent_io_init(void);
213void extent_io_exit(void);
214
215u64 count_range_bits(struct extent_io_tree *tree,
216 u64 *start, u64 search_end,
David Sterba9ee49a042015-01-14 19:52:13 +0100217 u64 max_bytes, unsigned bits, int contig);
Chris Masond1310b22008-01-24 16:13:08 -0500218
Chris Mason4845e442010-05-25 20:56:50 -0400219void free_extent_state(struct extent_state *state);
Chris Masond1310b22008-01-24 16:13:08 -0500220int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100221 unsigned bits, int filled,
David Sterba41074882013-04-29 13:38:46 +0000222 struct extent_state *cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500223int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100224 unsigned bits, gfp_t mask);
Qu Wenruofefdc552015-10-12 15:35:38 +0800225int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
226 unsigned bits, gfp_t mask,
227 struct extent_changeset *changeset);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400228int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100229 unsigned bits, int wake, int delete,
David Sterba41074882013-04-29 13:38:46 +0000230 struct extent_state **cached, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500231int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100232 unsigned bits, gfp_t mask);
Qu Wenruod38ed272015-10-12 14:53:37 +0800233int set_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
234 unsigned bits, gfp_t mask,
235 struct extent_changeset *changeset);
Chris Mason4845e442010-05-25 20:56:50 -0400236int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100237 unsigned bits, u64 *failed_start,
Chris Mason4845e442010-05-25 20:56:50 -0400238 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500239int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +0000240 struct extent_state **cached_state, gfp_t mask);
Josef Bacik5fd02042012-05-02 14:00:54 -0400241int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
242 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500243int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
244 gfp_t mask);
245int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
246 gfp_t mask);
247int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
248 gfp_t mask);
Josef Bacik462d6fa2011-09-26 13:56:12 -0400249int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba9ee49a042015-01-14 19:52:13 +0100250 unsigned bits, unsigned clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -0400251 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500252int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000253 struct extent_state **cached_state, gfp_t mask);
Liu Bo9e8a4a82012-09-05 19:10:51 -0600254int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
255 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500256int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba9ee49a042015-01-14 19:52:13 +0100257 u64 *start_ret, u64 *end_ret, unsigned bits,
Josef Bacike6138872012-09-27 17:07:30 -0400258 struct extent_state **cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500259int extent_invalidatepage(struct extent_io_tree *tree,
260 struct page *page, unsigned long offset);
261int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
262 get_extent_t *get_extent,
263 struct writeback_control *wbc);
Chris Mason771ed682008-11-06 22:02:51 -0500264int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
265 u64 start, u64 end, get_extent_t *get_extent,
266 int mode);
Chris Masond1310b22008-01-24 16:13:08 -0500267int extent_writepages(struct extent_io_tree *tree,
268 struct address_space *mapping,
269 get_extent_t *get_extent,
270 struct writeback_control *wbc);
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400271int btree_write_cache_pages(struct address_space *mapping,
272 struct writeback_control *wbc);
Chris Masond1310b22008-01-24 16:13:08 -0500273int extent_readpages(struct extent_io_tree *tree,
274 struct address_space *mapping,
275 struct list_head *pages, unsigned nr_pages,
276 get_extent_t get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -0500277int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
278 __u64 start, __u64 len, get_extent_t *get_extent);
Chris Masond1310b22008-01-24 16:13:08 -0500279int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private);
280void set_page_extent_mapped(struct page *page);
281
Josef Bacikf28491e2013-12-16 13:24:27 -0500282struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +0200283 u64 start);
David Sterba3f556f72014-06-15 03:20:26 +0200284struct extent_buffer *alloc_dummy_extent_buffer(struct btrfs_fs_info *fs_info,
285 u64 start);
Jan Schmidt815a51c2012-05-16 17:00:02 +0200286struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src);
Josef Bacikf28491e2013-12-16 13:24:27 -0500287struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
Chandra Seetharaman452c75c2013-10-07 10:45:25 -0500288 u64 start);
Chris Masond1310b22008-01-24 16:13:08 -0500289void free_extent_buffer(struct extent_buffer *eb);
Josef Bacik3083ee22012-03-09 16:01:49 -0500290void free_extent_buffer_stale(struct extent_buffer *eb);
Arne Jansenbb82ab82011-06-10 14:06:53 +0200291#define WAIT_NONE 0
292#define WAIT_COMPLETE 1
293#define WAIT_PAGE_LOCK 2
Chris Masond1310b22008-01-24 16:13:08 -0500294int read_extent_buffer_pages(struct extent_io_tree *tree,
Chris Masona86c12c2008-02-07 10:50:54 -0500295 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -0400296 get_extent_t *get_extent, int mirror_num);
Josef Bacikfd8b2b62013-04-24 16:41:19 -0400297void wait_on_extent_buffer_writeback(struct extent_buffer *eb);
Robin Dong479ed9a2012-09-29 02:07:47 -0600298
299static inline unsigned long num_extent_pages(u64 start, u64 len)
300{
301 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
302 (start >> PAGE_CACHE_SHIFT);
303}
304
Chris Masond1310b22008-01-24 16:13:08 -0500305static inline void extent_buffer_get(struct extent_buffer *eb)
306{
307 atomic_inc(&eb->refs);
308}
309
310int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
311 unsigned long start,
312 unsigned long len);
313void read_extent_buffer(struct extent_buffer *eb, void *dst,
314 unsigned long start,
315 unsigned long len);
Gerhard Heift550ac1d2014-01-30 16:24:01 +0100316int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dst,
317 unsigned long start,
318 unsigned long len);
Chris Masond1310b22008-01-24 16:13:08 -0500319void write_extent_buffer(struct extent_buffer *eb, const void *src,
320 unsigned long start, unsigned long len);
321void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
322 unsigned long dst_offset, unsigned long src_offset,
323 unsigned long len);
324void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
325 unsigned long src_offset, unsigned long len);
326void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
327 unsigned long src_offset, unsigned long len);
328void memset_extent_buffer(struct extent_buffer *eb, char c,
329 unsigned long start, unsigned long len);
Chris Mason1d4284b2012-03-28 20:31:37 -0400330void clear_extent_buffer_dirty(struct extent_buffer *eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400331int set_extent_buffer_dirty(struct extent_buffer *eb);
332int set_extent_buffer_uptodate(struct extent_buffer *eb);
333int clear_extent_buffer_uptodate(struct extent_buffer *eb);
334int extent_buffer_uptodate(struct extent_buffer *eb);
Josef Bacika26e8c92014-03-28 17:07:27 -0400335int extent_buffer_under_io(struct extent_buffer *eb);
Chris Masond1310b22008-01-24 16:13:08 -0500336int map_private_extent_buffer(struct extent_buffer *eb, unsigned long offset,
Chris Masona6591712011-07-19 12:04:14 -0400337 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -0500338 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -0400339 unsigned long *map_len);
Chris Mason4adaa612013-03-26 13:07:00 -0400340int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end);
341int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end);
Josef Bacikc2790a22013-07-29 11:20:47 -0400342int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
343 struct page *locked_page,
David Sterba9ee49a042015-01-14 19:52:13 +0100344 unsigned bits_to_clear,
Josef Bacikc2790a22013-07-29 11:20:47 -0400345 unsigned long page_ops);
Miao Xie88f794e2010-11-22 03:02:55 +0000346struct bio *
347btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
348 gfp_t gfp_flags);
Chris Mason9be33952013-05-17 18:30:14 -0400349struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs);
350struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +0200351
Stefan Behrens3ec706c2012-11-05 15:46:42 +0100352struct btrfs_fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +0200353
Miao Xie1203b682014-09-12 18:44:01 +0800354int repair_io_failure(struct inode *inode, u64 start, u64 length, u64 logical,
355 struct page *page, unsigned int pg_offset,
356 int mirror_num);
Miao Xie8b110e32014-09-12 18:44:03 +0800357int clean_io_failure(struct inode *inode, u64 start, struct page *page,
358 unsigned int pg_offset);
Jeff Mahoney87826df2012-02-15 16:23:57 +0100359int end_extent_writepage(struct page *page, int err, u64 start, u64 end);
Josef Bacikea466792012-03-26 21:57:36 -0400360int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
361 int mirror_num);
Miao Xie2fe63032014-09-12 18:43:59 +0800362
363/*
364 * When IO fails, either with EIO or csum verification fails, we
365 * try other mirrors that might have a good copy of the data. This
366 * io_failure_record is used to record state as we go through all the
367 * mirrors. If another mirror has good data, the page is set up to date
368 * and things continue. If a good mirror can't be found, the original
369 * bio end_io callback is called to indicate things have failed.
370 */
371struct io_failure_record {
372 struct page *page;
373 u64 start;
374 u64 len;
375 u64 logical;
376 unsigned long bio_flags;
377 int this_mirror;
378 int failed_mirror;
379 int in_validation;
380};
381
Miao Xief6124962014-09-12 18:44:04 +0800382void btrfs_free_io_failure_record(struct inode *inode, u64 start, u64 end);
Miao Xie2fe63032014-09-12 18:43:59 +0800383int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
384 struct io_failure_record **failrec_ret);
385int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
386 struct io_failure_record *failrec, int fail_mirror);
387struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
388 struct io_failure_record *failrec,
389 struct page *page, int pg_offset, int icsum,
Miao Xie8b110e32014-09-12 18:44:03 +0800390 bio_end_io_t *endio_func, void *data);
391int free_io_failure(struct inode *inode, struct io_failure_record *rec);
Josef Bacik294e30f2013-10-09 12:00:56 -0400392#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
393noinline u64 find_lock_delalloc_range(struct inode *inode,
394 struct extent_io_tree *tree,
395 struct page *locked_page, u64 *start,
396 u64 *end, u64 max_bytes);
Chris Mason0d4cf4e2014-10-07 13:24:20 -0700397#endif
Josef Bacikfaa2dbf2014-05-07 17:06:09 -0400398struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
David Sterbace3e6982014-06-15 03:00:04 +0200399 u64 start);
Josef Bacik294e30f2013-10-09 12:00:56 -0400400#endif