blob: 92e4347315e6389cd9454d03a8a9d1c1bb1d3772 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#ifndef __EXTENTIO__
2#define __EXTENTIO__
3
4#include <linux/rbtree.h>
5
6/* bits for the extent state */
7#define EXTENT_DIRTY 1
8#define EXTENT_WRITEBACK (1 << 1)
9#define EXTENT_UPTODATE (1 << 2)
10#define EXTENT_LOCKED (1 << 3)
11#define EXTENT_NEW (1 << 4)
12#define EXTENT_DELALLOC (1 << 5)
13#define EXTENT_DEFRAG (1 << 6)
14#define EXTENT_DEFRAG_DONE (1 << 7)
15#define EXTENT_BUFFER_FILLED (1 << 8)
Chris Mason8b62b722009-09-02 16:53:46 -040016#define EXTENT_BOUNDARY (1 << 9)
17#define EXTENT_NODATASUM (1 << 10)
Josef Bacik32c00af2009-10-08 13:34:05 -040018#define EXTENT_DO_ACCOUNTING (1 << 11)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -040019#define EXTENT_FIRST_DELALLOC (1 << 12)
Josef Bacik17283662011-09-26 13:58:47 -040020#define EXTENT_NEED_WAIT (1 << 13)
Chris Mason806468f2011-11-06 03:07:10 -050021#define EXTENT_DAMAGED (1 << 14)
Josef Bacik7ee9e442013-06-21 16:37:03 -040022#define EXTENT_NORESERVE (1 << 15)
Chris Masond1310b22008-01-24 16:13:08 -050023#define EXTENT_IOBITS (EXTENT_LOCKED | EXTENT_WRITEBACK)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -040024#define EXTENT_CTLBITS (EXTENT_DO_ACCOUNTING | EXTENT_FIRST_DELALLOC)
Chris Masond1310b22008-01-24 16:13:08 -050025
Li Zefan261507a02010-12-17 14:21:50 +080026/*
27 * flags for bio submission. The high bits indicate the compression
28 * type for this bio
29 */
Chris Masonc8b97812008-10-29 14:49:59 -040030#define EXTENT_BIO_COMPRESSED 1
Josef Bacikde0022b2012-09-25 14:25:58 -040031#define EXTENT_BIO_TREE_LOG 2
Mark Fasheh4b384312013-08-06 11:42:50 -070032#define EXTENT_BIO_PARENT_LOCKED 4
Li Zefan261507a02010-12-17 14:21:50 +080033#define EXTENT_BIO_FLAG_SHIFT 16
Chris Masonc8b97812008-10-29 14:49:59 -040034
Chris Masonb4ce94d2009-02-04 09:25:08 -050035/* these are bit numbers for test/set bit */
36#define EXTENT_BUFFER_UPTODATE 0
37#define EXTENT_BUFFER_BLOCKING 1
Chris Masonb9473432009-03-13 11:00:37 -040038#define EXTENT_BUFFER_DIRTY 2
Josef Bacika826d6d2011-03-16 13:42:43 -040039#define EXTENT_BUFFER_CORRUPT 3
Arne Jansenab0fff02011-05-23 14:25:41 +020040#define EXTENT_BUFFER_READAHEAD 4 /* this got triggered by readahead */
Josef Bacik3083ee22012-03-09 16:01:49 -050041#define EXTENT_BUFFER_TREE_REF 5
42#define EXTENT_BUFFER_STALE 6
Josef Bacik0b32f4b2012-03-13 09:38:00 -040043#define EXTENT_BUFFER_WRITEBACK 7
44#define EXTENT_BUFFER_IOERR 8
Jan Schmidt815a51c2012-05-16 17:00:02 +020045#define EXTENT_BUFFER_DUMMY 9
Josef Bacik34b41ac2013-12-13 10:41:51 -050046#define EXTENT_BUFFER_IN_TREE 10
Chris Masonb4ce94d2009-02-04 09:25:08 -050047
Chris Masona791e352009-10-08 11:27:10 -040048/* these are flags for extent_clear_unlock_delalloc */
Josef Bacikc2790a22013-07-29 11:20:47 -040049#define PAGE_UNLOCK (1 << 0)
50#define PAGE_CLEAR_DIRTY (1 << 1)
51#define PAGE_SET_WRITEBACK (1 << 2)
52#define PAGE_END_WRITEBACK (1 << 3)
53#define PAGE_SET_PRIVATE2 (1 << 4)
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
60#define EXTENT_PAGE_PRIVATE_FIRST_PAGE 3
61
Chris Mason70dec802008-01-29 09:59:12 -050062struct extent_state;
Josef Bacikea466792012-03-26 21:57:36 -040063struct btrfs_root;
Miao Xiefacc8a222013-07-25 19:22:34 +080064struct btrfs_io_bio;
Chris Mason70dec802008-01-29 09:59:12 -050065
Chris Mason44b8bd72008-04-16 11:14:51 -040066typedef int (extent_submit_bio_hook_t)(struct inode *inode, int rw,
Chris Masonc8b97812008-10-29 14:49:59 -040067 struct bio *bio, int mirror_num,
Chris Masoneaf25d92010-05-25 09:48:28 -040068 unsigned long bio_flags, u64 bio_offset);
Chris Masond1310b22008-01-24 16:13:08 -050069struct extent_io_ops {
Chris Masonc8b97812008-10-29 14:49:59 -040070 int (*fill_delalloc)(struct inode *inode, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -050071 u64 start, u64 end, int *page_started,
72 unsigned long *nr_written);
Chris Mason247e7432008-07-17 12:53:51 -040073 int (*writepage_start_hook)(struct page *page, u64 start, u64 end);
Chris Masond1310b22008-01-24 16:13:08 -050074 int (*writepage_io_hook)(struct page *page, u64 start, u64 end);
Chris Mason44b8bd72008-04-16 11:14:51 -040075 extent_submit_bio_hook_t *submit_bio_hook;
David Woodhouse64a16702009-07-15 23:29:37 +010076 int (*merge_bio_hook)(int rw, struct page *page, unsigned long offset,
Chris Masonc8b97812008-10-29 14:49:59 -040077 size_t size, struct bio *bio,
78 unsigned long bio_flags);
Josef Bacikea466792012-03-26 21:57:36 -040079 int (*readpage_io_failed_hook)(struct page *page, int failed_mirror);
Miao Xiefacc8a222013-07-25 19:22:34 +080080 int (*readpage_end_io_hook)(struct btrfs_io_bio *io_bio, u64 phy_offset,
81 struct page *page, u64 start, u64 end,
82 int mirror);
Chris Mason1259ab72008-05-12 13:39:03 -040083 int (*writepage_end_io_hook)(struct page *page, u64 start, u64 end,
Chris Masone6dcd2d2008-07-17 12:53:50 -040084 struct extent_state *state, int uptodate);
Jeff Mahoney1bf85042011-07-21 16:56:09 +000085 void (*set_bit_hook)(struct inode *inode, struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +000086 unsigned long *bits);
Jeff Mahoney1bf85042011-07-21 16:56:09 +000087 void (*clear_bit_hook)(struct inode *inode, struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +000088 unsigned long *bits);
Jeff Mahoney1bf85042011-07-21 16:56:09 +000089 void (*merge_extent_hook)(struct inode *inode,
90 struct extent_state *new,
91 struct extent_state *other);
92 void (*split_extent_hook)(struct inode *inode,
93 struct extent_state *orig, u64 split);
Chris Masond1310b22008-01-24 16:13:08 -050094};
95
96struct extent_io_tree {
97 struct rb_root state;
Miao Xie19fe0a82010-10-26 20:57:29 -040098 struct radix_tree_root buffer;
Chris Masond1310b22008-01-24 16:13:08 -050099 struct address_space *mapping;
100 u64 dirty_bytes;
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400101 int track_uptodate;
Chris Mason70dec802008-01-29 09:59:12 -0500102 spinlock_t lock;
Chris Mason6af118ce2008-07-22 11:18:07 -0400103 spinlock_t buffer_lock;
Chris Masond1310b22008-01-24 16:13:08 -0500104 struct extent_io_ops *ops;
Chris Masond1310b22008-01-24 16:13:08 -0500105};
106
107struct extent_state {
108 u64 start;
109 u64 end; /* inclusive */
Chris Masond1310b22008-01-24 16:13:08 -0500110 struct rb_node rb_node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400111
112 /* ADD NEW ELEMENTS AFTER THIS */
Chris Mason70dec802008-01-29 09:59:12 -0500113 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -0500114 wait_queue_head_t wq;
115 atomic_t refs;
116 unsigned long state;
117
118 /* for use by the FS */
119 u64 private;
120
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000121#ifdef CONFIG_BTRFS_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400122 struct list_head leak_list;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000123#endif
Chris Masond1310b22008-01-24 16:13:08 -0500124};
125
Chris Mason727011e2010-08-06 13:21:20 -0400126#define INLINE_EXTENT_BUFFER_PAGES 16
127#define MAX_INLINE_EXTENT_BUFFER_SIZE (INLINE_EXTENT_BUFFER_PAGES * PAGE_CACHE_SIZE)
Chris Masond1310b22008-01-24 16:13:08 -0500128struct extent_buffer {
129 u64 start;
130 unsigned long len;
Chris Masond1310b22008-01-24 16:13:08 -0500131 unsigned long map_start;
132 unsigned long map_len;
Chris Masonb4ce94d2009-02-04 09:25:08 -0500133 unsigned long bflags;
Josef Bacik4f2de97a2012-03-07 16:20:05 -0500134 struct extent_io_tree *tree;
Josef Bacik3083ee22012-03-09 16:01:49 -0500135 spinlock_t refs_lock;
Chris Mason727011e2010-08-06 13:21:20 -0400136 atomic_t refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400137 atomic_t io_pages;
Josef Bacik5cf1ab52012-04-16 09:42:26 -0400138 int read_mirror;
Miao Xie19fe0a82010-10-26 20:57:29 -0400139 struct rcu_head rcu_head;
Arne Jansen5b25f702011-09-13 10:55:48 +0200140 pid_t lock_owner;
Chris Masonb4ce94d2009-02-04 09:25:08 -0500141
Chris Masonbd681512011-07-16 15:23:14 -0400142 /* count of read lock holders on the extent buffer */
143 atomic_t write_locks;
144 atomic_t read_locks;
145 atomic_t blocking_writers;
146 atomic_t blocking_readers;
147 atomic_t spinning_readers;
148 atomic_t spinning_writers;
Arne Jansen5b25f702011-09-13 10:55:48 +0200149 int lock_nested;
Chris Masonb4ce94d2009-02-04 09:25:08 -0500150
Chris Masonbd681512011-07-16 15:23:14 -0400151 /* protects write locks */
152 rwlock_t lock;
153
154 /* readers use lock_wq while they wait for the write
155 * lock holders to unlock
Chris Masonb4ce94d2009-02-04 09:25:08 -0500156 */
Chris Masonbd681512011-07-16 15:23:14 -0400157 wait_queue_head_t write_lock_wq;
158
159 /* writers use read_lock_wq while they wait for readers
160 * to unlock
161 */
162 wait_queue_head_t read_lock_wq;
Chris Mason727011e2010-08-06 13:21:20 -0400163 wait_queue_head_t lock_wq;
David Sterbab8dae312013-02-28 14:54:18 +0000164 struct page *pages[INLINE_EXTENT_BUFFER_PAGES];
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000165#ifdef CONFIG_BTRFS_DEBUG
166 struct list_head leak_list;
167#endif
Chris Masond1310b22008-01-24 16:13:08 -0500168};
169
Li Zefan261507a02010-12-17 14:21:50 +0800170static inline void extent_set_compress_type(unsigned long *bio_flags,
171 int compress_type)
172{
173 *bio_flags |= compress_type << EXTENT_BIO_FLAG_SHIFT;
174}
175
176static inline int extent_compress_type(unsigned long bio_flags)
177{
178 return bio_flags >> EXTENT_BIO_FLAG_SHIFT;
179}
180
Chris Masond1310b22008-01-24 16:13:08 -0500181struct extent_map_tree;
182
183typedef struct extent_map *(get_extent_t)(struct inode *inode,
184 struct page *page,
David Sterba306e16c2011-04-19 14:29:38 +0200185 size_t pg_offset,
Chris Masond1310b22008-01-24 16:13:08 -0500186 u64 start, u64 len,
187 int create);
188
189void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200190 struct address_space *mapping);
Chris Masond1310b22008-01-24 16:13:08 -0500191int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -0500192 struct extent_io_tree *tree, struct page *page,
193 gfp_t mask);
David Sterbaf7a52a42013-04-26 14:56:29 +0000194int try_release_extent_buffer(struct page *page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100195int lock_extent(struct extent_io_tree *tree, u64 start, u64 end);
Chris Mason1edbb732009-09-02 13:24:36 -0400196int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000197 unsigned long bits, struct extent_state **cached);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100198int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end);
Josef Bacik2ac55d42010-02-03 19:33:23 +0000199int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
200 struct extent_state **cached, gfp_t mask);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100201int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end);
Chris Masond1310b22008-01-24 16:13:08 -0500202int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +0200203 get_extent_t *get_extent, int mirror_num);
Mark Fasheh4b384312013-08-06 11:42:50 -0700204int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
205 get_extent_t *get_extent, int mirror_num);
Chris Masond1310b22008-01-24 16:13:08 -0500206int __init extent_io_init(void);
207void extent_io_exit(void);
208
209u64 count_range_bits(struct extent_io_tree *tree,
210 u64 *start, u64 search_end,
Chris Masonec29ed52011-02-23 16:23:20 -0500211 u64 max_bytes, unsigned long bits, int contig);
Chris Masond1310b22008-01-24 16:13:08 -0500212
Chris Mason4845e442010-05-25 20:56:50 -0400213void free_extent_state(struct extent_state *state);
Chris Masond1310b22008-01-24 16:13:08 -0500214int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000215 unsigned long bits, int filled,
216 struct extent_state *cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500217int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000218 unsigned long bits, gfp_t mask);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400219int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000220 unsigned long bits, int wake, int delete,
221 struct extent_state **cached, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500222int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000223 unsigned long bits, gfp_t mask);
Chris Mason4845e442010-05-25 20:56:50 -0400224int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000225 unsigned long bits, u64 *failed_start,
Chris Mason4845e442010-05-25 20:56:50 -0400226 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500227int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +0000228 struct extent_state **cached_state, gfp_t mask);
Josef Bacik5fd02042012-05-02 14:00:54 -0400229int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
230 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500231int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
232 gfp_t mask);
233int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
234 gfp_t mask);
235int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
236 gfp_t mask);
Josef Bacik462d6fa2011-09-26 13:56:12 -0400237int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000238 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -0400239 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500240int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000241 struct extent_state **cached_state, gfp_t mask);
Liu Bo9e8a4a82012-09-05 19:10:51 -0600242int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
243 struct extent_state **cached_state, gfp_t mask);
Chris Masond1310b22008-01-24 16:13:08 -0500244int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +0000245 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -0400246 struct extent_state **cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500247int extent_invalidatepage(struct extent_io_tree *tree,
248 struct page *page, unsigned long offset);
249int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
250 get_extent_t *get_extent,
251 struct writeback_control *wbc);
Chris Mason771ed682008-11-06 22:02:51 -0500252int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
253 u64 start, u64 end, get_extent_t *get_extent,
254 int mode);
Chris Masond1310b22008-01-24 16:13:08 -0500255int extent_writepages(struct extent_io_tree *tree,
256 struct address_space *mapping,
257 get_extent_t *get_extent,
258 struct writeback_control *wbc);
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400259int btree_write_cache_pages(struct address_space *mapping,
260 struct writeback_control *wbc);
Chris Masond1310b22008-01-24 16:13:08 -0500261int extent_readpages(struct extent_io_tree *tree,
262 struct address_space *mapping,
263 struct list_head *pages, unsigned nr_pages,
264 get_extent_t get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -0500265int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
266 __u64 start, __u64 len, get_extent_t *get_extent);
Chris Masond1310b22008-01-24 16:13:08 -0500267int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private);
268void set_page_extent_mapped(struct page *page);
269
270struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -0400271 u64 start, unsigned long len);
Jan Schmidt815a51c2012-05-16 17:00:02 +0200272struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len);
273struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src);
Chris Masond1310b22008-01-24 16:13:08 -0500274struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
Chandra Seetharaman452c75c2013-10-07 10:45:25 -0500275 u64 start);
Chris Masond1310b22008-01-24 16:13:08 -0500276void free_extent_buffer(struct extent_buffer *eb);
Josef Bacik3083ee22012-03-09 16:01:49 -0500277void free_extent_buffer_stale(struct extent_buffer *eb);
Arne Jansenbb82ab82011-06-10 14:06:53 +0200278#define WAIT_NONE 0
279#define WAIT_COMPLETE 1
280#define WAIT_PAGE_LOCK 2
Chris Masond1310b22008-01-24 16:13:08 -0500281int read_extent_buffer_pages(struct extent_io_tree *tree,
Chris Masona86c12c2008-02-07 10:50:54 -0500282 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -0400283 get_extent_t *get_extent, int mirror_num);
Josef Bacikfd8b2b62013-04-24 16:41:19 -0400284void wait_on_extent_buffer_writeback(struct extent_buffer *eb);
Robin Dong479ed9a2012-09-29 02:07:47 -0600285
286static inline unsigned long num_extent_pages(u64 start, u64 len)
287{
288 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
289 (start >> PAGE_CACHE_SHIFT);
290}
291
292static inline struct page *extent_buffer_page(struct extent_buffer *eb,
293 unsigned long i)
294{
295 return eb->pages[i];
296}
Chris Masond1310b22008-01-24 16:13:08 -0500297
298static inline void extent_buffer_get(struct extent_buffer *eb)
299{
300 atomic_inc(&eb->refs);
301}
302
303int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
304 unsigned long start,
305 unsigned long len);
306void read_extent_buffer(struct extent_buffer *eb, void *dst,
307 unsigned long start,
308 unsigned long len);
309void write_extent_buffer(struct extent_buffer *eb, const void *src,
310 unsigned long start, unsigned long len);
311void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
312 unsigned long dst_offset, unsigned long src_offset,
313 unsigned long len);
314void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
315 unsigned long src_offset, unsigned long len);
316void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
317 unsigned long src_offset, unsigned long len);
318void memset_extent_buffer(struct extent_buffer *eb, char c,
319 unsigned long start, unsigned long len);
Chris Mason1d4284b2012-03-28 20:31:37 -0400320void clear_extent_buffer_dirty(struct extent_buffer *eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400321int set_extent_buffer_dirty(struct extent_buffer *eb);
322int set_extent_buffer_uptodate(struct extent_buffer *eb);
323int clear_extent_buffer_uptodate(struct extent_buffer *eb);
324int extent_buffer_uptodate(struct extent_buffer *eb);
Chris Masond1310b22008-01-24 16:13:08 -0500325int map_private_extent_buffer(struct extent_buffer *eb, unsigned long offset,
Chris Masona6591712011-07-19 12:04:14 -0400326 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -0500327 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -0400328 unsigned long *map_len);
Chris Mason4adaa612013-03-26 13:07:00 -0400329int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end);
330int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end);
Josef Bacikc2790a22013-07-29 11:20:47 -0400331int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
332 struct page *locked_page,
333 unsigned long bits_to_clear,
334 unsigned long page_ops);
Miao Xie88f794e2010-11-22 03:02:55 +0000335struct bio *
336btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
337 gfp_t gfp_flags);
Chris Mason9be33952013-05-17 18:30:14 -0400338struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs);
339struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +0200340
Stefan Behrens3ec706c2012-11-05 15:46:42 +0100341struct btrfs_fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +0200342
Stefan Behrens3ec706c2012-11-05 15:46:42 +0100343int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +0200344 u64 length, u64 logical, struct page *page,
345 int mirror_num);
Jeff Mahoney87826df2012-02-15 16:23:57 +0100346int end_extent_writepage(struct page *page, int err, u64 start, u64 end);
Josef Bacikea466792012-03-26 21:57:36 -0400347int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
348 int mirror_num);
Josef Bacik294e30f2013-10-09 12:00:56 -0400349#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
350noinline u64 find_lock_delalloc_range(struct inode *inode,
351 struct extent_io_tree *tree,
352 struct page *locked_page, u64 *start,
353 u64 *end, u64 max_bytes);
354#endif
Chris Masond1310b22008-01-24 16:13:08 -0500355#endif