blob: d35a3ca15fb5c446b39583faeaa625009838073e [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050010#include <linux/writeback.h>
11#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070012#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060013#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050014#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040016#include "ctree.h"
17#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020018#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010019#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040020#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040021#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080022#include "backref.h"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040026static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050027
Eric Sandeen6d49ba12013-04-22 16:12:31 +000028#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050029static LIST_HEAD(buffers);
30static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040031
Chris Masond3977122009-01-05 21:25:51 -050032static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033
34static inline
35void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
36{
37 unsigned long flags;
38
39 spin_lock_irqsave(&leak_lock, flags);
40 list_add(new, head);
41 spin_unlock_irqrestore(&leak_lock, flags);
42}
43
44static inline
45void btrfs_leak_debug_del(struct list_head *entry)
46{
47 unsigned long flags;
48
49 spin_lock_irqsave(&leak_lock, flags);
50 list_del(entry);
51 spin_unlock_irqrestore(&leak_lock, flags);
52}
53
54static inline
55void btrfs_leak_debug_check(void)
56{
57 struct extent_state *state;
58 struct extent_buffer *eb;
59
60 while (!list_empty(&states)) {
61 state = list_entry(states.next, struct extent_state, leak_list);
Frank Holtonefe120a2013-12-20 11:37:06 -050062 printk(KERN_ERR "BTRFS: state leak: start %llu end %llu "
Eric Sandeen6d49ba12013-04-22 16:12:31 +000063 "state %lu in tree %p refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020064 state->start, state->end, state->state, state->tree,
65 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000066 list_del(&state->leak_list);
67 kmem_cache_free(extent_state_cache, state);
68 }
69
70 while (!list_empty(&buffers)) {
71 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Frank Holtonefe120a2013-12-20 11:37:06 -050072 printk(KERN_ERR "BTRFS: buffer leak start %llu len %lu "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020073 "refs %d\n",
74 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000075 list_del(&eb->leak_list);
76 kmem_cache_free(extent_buffer_cache, eb);
77 }
78}
David Sterba8d599ae2013-04-30 15:22:23 +000079
Josef Bacika5dee372013-12-13 10:02:44 -050080#define btrfs_debug_check_extent_io_range(tree, start, end) \
81 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000082static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050083 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000084{
Josef Bacika5dee372013-12-13 10:02:44 -050085 struct inode *inode;
86 u64 isize;
David Sterba8d599ae2013-04-30 15:22:23 +000087
Josef Bacika5dee372013-12-13 10:02:44 -050088 if (!tree->mapping)
89 return;
90
91 inode = tree->mapping->host;
92 isize = i_size_read(inode);
David Sterba8d599ae2013-04-30 15:22:23 +000093 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
94 printk_ratelimited(KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -050095 "BTRFS: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020096 caller, btrfs_ino(inode), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000097 }
98}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000099#else
100#define btrfs_leak_debug_add(new, head) do {} while (0)
101#define btrfs_leak_debug_del(entry) do {} while (0)
102#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000103#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400104#endif
Chris Masond1310b22008-01-24 16:13:08 -0500105
Chris Masond1310b22008-01-24 16:13:08 -0500106#define BUFFER_LRU_MAX 64
107
108struct tree_entry {
109 u64 start;
110 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500111 struct rb_node rb_node;
112};
113
114struct extent_page_data {
115 struct bio *bio;
116 struct extent_io_tree *tree;
117 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400118 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500119
120 /* tells writepage not to lock the state bits for this range
121 * it still does the unlocking
122 */
Chris Masonffbd5172009-04-20 15:50:09 -0400123 unsigned int extent_locked:1;
124
125 /* tells the submit_bio code to use a WRITE_SYNC */
126 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500127};
128
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400129static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400130static inline struct btrfs_fs_info *
131tree_fs_info(struct extent_io_tree *tree)
132{
Josef Bacika5dee372013-12-13 10:02:44 -0500133 if (!tree->mapping)
134 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400135 return btrfs_sb(tree->mapping->host->i_sb);
136}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400137
Chris Masond1310b22008-01-24 16:13:08 -0500138int __init extent_io_init(void)
139{
David Sterba837e1972012-09-07 03:00:48 -0600140 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200141 sizeof(struct extent_state), 0,
142 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500143 if (!extent_state_cache)
144 return -ENOMEM;
145
David Sterba837e1972012-09-07 03:00:48 -0600146 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200147 sizeof(struct extent_buffer), 0,
148 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500149 if (!extent_buffer_cache)
150 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400151
152 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
153 offsetof(struct btrfs_io_bio, bio));
154 if (!btrfs_bioset)
155 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700156
157 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
158 goto free_bioset;
159
Chris Masond1310b22008-01-24 16:13:08 -0500160 return 0;
161
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700162free_bioset:
163 bioset_free(btrfs_bioset);
164 btrfs_bioset = NULL;
165
Chris Mason9be33952013-05-17 18:30:14 -0400166free_buffer_cache:
167 kmem_cache_destroy(extent_buffer_cache);
168 extent_buffer_cache = NULL;
169
Chris Masond1310b22008-01-24 16:13:08 -0500170free_state_cache:
171 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400172 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500173 return -ENOMEM;
174}
175
176void extent_io_exit(void)
177{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000178 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000179
180 /*
181 * Make sure all delayed rcu free are flushed before we
182 * destroy caches.
183 */
184 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500185 if (extent_state_cache)
186 kmem_cache_destroy(extent_state_cache);
187 if (extent_buffer_cache)
188 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400189 if (btrfs_bioset)
190 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500191}
192
193void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200194 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500195{
Eric Paris6bef4d32010-02-23 19:43:04 +0000196 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500197 tree->ops = NULL;
198 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500199 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500200 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500201}
Chris Masond1310b22008-01-24 16:13:08 -0500202
Christoph Hellwigb2950862008-12-02 09:54:17 -0500203static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500204{
205 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500206
207 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400208 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500209 return state;
210 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500211 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500212 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000213 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500214 atomic_set(&state->refs, 1);
215 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100216 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500217 return state;
218}
Chris Masond1310b22008-01-24 16:13:08 -0500219
Chris Mason4845e442010-05-25 20:56:50 -0400220void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500221{
Chris Masond1310b22008-01-24 16:13:08 -0500222 if (!state)
223 return;
224 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500225 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000226 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100227 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500228 kmem_cache_free(extent_state_cache, state);
229 }
230}
Chris Masond1310b22008-01-24 16:13:08 -0500231
Filipe Mananaf2071b22014-02-12 15:05:53 +0000232static struct rb_node *tree_insert(struct rb_root *root,
233 struct rb_node *search_start,
234 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000235 struct rb_node *node,
236 struct rb_node ***p_in,
237 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500238{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000239 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500240 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500241 struct tree_entry *entry;
242
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000243 if (p_in && parent_in) {
244 p = *p_in;
245 parent = *parent_in;
246 goto do_insert;
247 }
248
Filipe Mananaf2071b22014-02-12 15:05:53 +0000249 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500250 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500251 parent = *p;
252 entry = rb_entry(parent, struct tree_entry, rb_node);
253
254 if (offset < entry->start)
255 p = &(*p)->rb_left;
256 else if (offset > entry->end)
257 p = &(*p)->rb_right;
258 else
259 return parent;
260 }
261
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000262do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500263 rb_link_node(node, parent, p);
264 rb_insert_color(node, root);
265 return NULL;
266}
267
Chris Mason80ea96b2008-02-01 14:51:59 -0500268static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000269 struct rb_node **prev_ret,
270 struct rb_node **next_ret,
271 struct rb_node ***p_ret,
272 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500273{
Chris Mason80ea96b2008-02-01 14:51:59 -0500274 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000275 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500276 struct rb_node *prev = NULL;
277 struct rb_node *orig_prev = NULL;
278 struct tree_entry *entry;
279 struct tree_entry *prev_entry = NULL;
280
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000281 while (*n) {
282 prev = *n;
283 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500284 prev_entry = entry;
285
286 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000287 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500288 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000289 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500290 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000291 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500292 }
293
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000294 if (p_ret)
295 *p_ret = n;
296 if (parent_ret)
297 *parent_ret = prev;
298
Chris Masond1310b22008-01-24 16:13:08 -0500299 if (prev_ret) {
300 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500301 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500302 prev = rb_next(prev);
303 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
304 }
305 *prev_ret = prev;
306 prev = orig_prev;
307 }
308
309 if (next_ret) {
310 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500311 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500312 prev = rb_prev(prev);
313 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
314 }
315 *next_ret = prev;
316 }
317 return NULL;
318}
319
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000320static inline struct rb_node *
321tree_search_for_insert(struct extent_io_tree *tree,
322 u64 offset,
323 struct rb_node ***p_ret,
324 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500325{
Chris Mason70dec802008-01-29 09:59:12 -0500326 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500327 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500328
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000329 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500330 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500331 return prev;
332 return ret;
333}
334
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000335static inline struct rb_node *tree_search(struct extent_io_tree *tree,
336 u64 offset)
337{
338 return tree_search_for_insert(tree, offset, NULL, NULL);
339}
340
Josef Bacik9ed74f22009-09-11 16:12:44 -0400341static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
342 struct extent_state *other)
343{
344 if (tree->ops && tree->ops->merge_extent_hook)
345 tree->ops->merge_extent_hook(tree->mapping->host, new,
346 other);
347}
348
Chris Masond1310b22008-01-24 16:13:08 -0500349/*
350 * utility function to look for merge candidates inside a given range.
351 * Any extents with matching state are merged together into a single
352 * extent in the tree. Extents with EXTENT_IO in their state field
353 * are not merged because the end_io handlers need to be able to do
354 * operations on them without sleeping (or doing allocations/splits).
355 *
356 * This should be called with the tree lock held.
357 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000358static void merge_state(struct extent_io_tree *tree,
359 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500360{
361 struct extent_state *other;
362 struct rb_node *other_node;
363
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400364 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000365 return;
Chris Masond1310b22008-01-24 16:13:08 -0500366
367 other_node = rb_prev(&state->rb_node);
368 if (other_node) {
369 other = rb_entry(other_node, struct extent_state, rb_node);
370 if (other->end == state->start - 1 &&
371 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400372 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500373 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500374 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500375 rb_erase(&other->rb_node, &tree->state);
376 free_extent_state(other);
377 }
378 }
379 other_node = rb_next(&state->rb_node);
380 if (other_node) {
381 other = rb_entry(other_node, struct extent_state, rb_node);
382 if (other->start == state->end + 1 &&
383 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400384 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400385 state->end = other->end;
386 other->tree = NULL;
387 rb_erase(&other->rb_node, &tree->state);
388 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500389 }
390 }
Chris Masond1310b22008-01-24 16:13:08 -0500391}
392
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000393static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000394 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500395{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000396 if (tree->ops && tree->ops->set_bit_hook)
397 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500398}
399
400static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000401 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500402{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400403 if (tree->ops && tree->ops->clear_bit_hook)
404 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500405}
406
Xiao Guangrong3150b692011-07-14 03:19:08 +0000407static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000408 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000409
Chris Masond1310b22008-01-24 16:13:08 -0500410/*
411 * insert an extent_state struct into the tree. 'bits' are set on the
412 * struct before it is inserted.
413 *
414 * This may return -EEXIST if the extent is already there, in which case the
415 * state struct is freed.
416 *
417 * The tree lock is not taken internally. This is a utility function and
418 * probably isn't what you want to call (see set/clear_extent_bit).
419 */
420static int insert_state(struct extent_io_tree *tree,
421 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000422 struct rb_node ***p,
423 struct rb_node **parent,
David Sterba41074882013-04-29 13:38:46 +0000424 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500425{
426 struct rb_node *node;
427
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000428 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500429 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200430 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500431 state->start = start;
432 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400433
Xiao Guangrong3150b692011-07-14 03:19:08 +0000434 set_state_bits(tree, state, bits);
435
Filipe Mananaf2071b22014-02-12 15:05:53 +0000436 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500437 if (node) {
438 struct extent_state *found;
439 found = rb_entry(node, struct extent_state, rb_node);
Frank Holtonefe120a2013-12-20 11:37:06 -0500440 printk(KERN_ERR "BTRFS: found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200441 "%llu %llu\n",
442 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500443 return -EEXIST;
444 }
Chris Mason70dec802008-01-29 09:59:12 -0500445 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500446 merge_state(tree, state);
447 return 0;
448}
449
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000450static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400451 u64 split)
452{
453 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000454 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400455}
456
Chris Masond1310b22008-01-24 16:13:08 -0500457/*
458 * split a given extent state struct in two, inserting the preallocated
459 * struct 'prealloc' as the newly created second half. 'split' indicates an
460 * offset inside 'orig' where it should be split.
461 *
462 * Before calling,
463 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
464 * are two extent state structs in the tree:
465 * prealloc: [orig->start, split - 1]
466 * orig: [ split, orig->end ]
467 *
468 * The tree locks are not taken by this function. They need to be held
469 * by the caller.
470 */
471static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
472 struct extent_state *prealloc, u64 split)
473{
474 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400475
476 split_cb(tree, orig, split);
477
Chris Masond1310b22008-01-24 16:13:08 -0500478 prealloc->start = orig->start;
479 prealloc->end = split - 1;
480 prealloc->state = orig->state;
481 orig->start = split;
482
Filipe Mananaf2071b22014-02-12 15:05:53 +0000483 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
484 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500485 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500486 free_extent_state(prealloc);
487 return -EEXIST;
488 }
Chris Mason70dec802008-01-29 09:59:12 -0500489 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500490 return 0;
491}
492
Li Zefancdc6a392012-03-12 16:39:48 +0800493static struct extent_state *next_state(struct extent_state *state)
494{
495 struct rb_node *next = rb_next(&state->rb_node);
496 if (next)
497 return rb_entry(next, struct extent_state, rb_node);
498 else
499 return NULL;
500}
501
Chris Masond1310b22008-01-24 16:13:08 -0500502/*
503 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800504 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500505 *
506 * If no bits are set on the state struct after clearing things, the
507 * struct is freed and removed from the tree
508 */
Li Zefancdc6a392012-03-12 16:39:48 +0800509static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
510 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000511 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500512{
Li Zefancdc6a392012-03-12 16:39:48 +0800513 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000514 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500515
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400516 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500517 u64 range = state->end - state->start + 1;
518 WARN_ON(range > tree->dirty_bytes);
519 tree->dirty_bytes -= range;
520 }
Chris Mason291d6732008-01-29 15:55:23 -0500521 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400522 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500523 if (wake)
524 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400525 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800526 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500527 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500528 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500529 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500530 free_extent_state(state);
531 } else {
532 WARN_ON(1);
533 }
534 } else {
535 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800536 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500537 }
Li Zefancdc6a392012-03-12 16:39:48 +0800538 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500539}
540
Xiao Guangrong82337672011-04-20 06:44:57 +0000541static struct extent_state *
542alloc_extent_state_atomic(struct extent_state *prealloc)
543{
544 if (!prealloc)
545 prealloc = alloc_extent_state(GFP_ATOMIC);
546
547 return prealloc;
548}
549
Eric Sandeen48a3b632013-04-25 20:41:01 +0000550static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400551{
552 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
553 "Extent tree was modified by another "
554 "thread while locked.");
555}
556
Chris Masond1310b22008-01-24 16:13:08 -0500557/*
558 * clear some bits on a range in the tree. This may require splitting
559 * or inserting elements in the tree, so the gfp mask is used to
560 * indicate which allocations or sleeping are allowed.
561 *
562 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
563 * the given range from the tree regardless of state (ie for truncate).
564 *
565 * the range [start, end] is inclusive.
566 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100567 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500568 */
569int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000570 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400571 struct extent_state **cached_state,
572 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500573{
574 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400575 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500576 struct extent_state *prealloc = NULL;
577 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400578 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500579 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000580 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500581
Josef Bacika5dee372013-12-13 10:02:44 -0500582 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000583
Josef Bacik7ee9e442013-06-21 16:37:03 -0400584 if (bits & EXTENT_DELALLOC)
585 bits |= EXTENT_NORESERVE;
586
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400587 if (delete)
588 bits |= ~EXTENT_CTLBITS;
589 bits |= EXTENT_FIRST_DELALLOC;
590
Josef Bacik2ac55d42010-02-03 19:33:23 +0000591 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
592 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500593again:
594 if (!prealloc && (mask & __GFP_WAIT)) {
595 prealloc = alloc_extent_state(mask);
596 if (!prealloc)
597 return -ENOMEM;
598 }
599
Chris Masoncad321a2008-12-17 14:51:42 -0500600 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400601 if (cached_state) {
602 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000603
604 if (clear) {
605 *cached_state = NULL;
606 cached_state = NULL;
607 }
608
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400609 if (cached && cached->tree && cached->start <= start &&
610 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000611 if (clear)
612 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400613 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400614 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400615 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000616 if (clear)
617 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400618 }
Chris Masond1310b22008-01-24 16:13:08 -0500619 /*
620 * this search will find the extents that end after
621 * our range starts
622 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500623 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500624 if (!node)
625 goto out;
626 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400627hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500628 if (state->start > end)
629 goto out;
630 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400631 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500632
Liu Bo04493142012-02-16 18:34:37 +0800633 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800634 if (!(state->state & bits)) {
635 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800636 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800637 }
Liu Bo04493142012-02-16 18:34:37 +0800638
Chris Masond1310b22008-01-24 16:13:08 -0500639 /*
640 * | ---- desired range ---- |
641 * | state | or
642 * | ------------- state -------------- |
643 *
644 * We need to split the extent we found, and may flip
645 * bits on second half.
646 *
647 * If the extent we found extends past our range, we
648 * just split and search again. It'll get split again
649 * the next time though.
650 *
651 * If the extent we found is inside our range, we clear
652 * the desired bit on it.
653 */
654
655 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000656 prealloc = alloc_extent_state_atomic(prealloc);
657 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500658 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400659 if (err)
660 extent_io_tree_panic(tree, err);
661
Chris Masond1310b22008-01-24 16:13:08 -0500662 prealloc = NULL;
663 if (err)
664 goto out;
665 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800666 state = clear_state_bit(tree, state, &bits, wake);
667 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500668 }
669 goto search_again;
670 }
671 /*
672 * | ---- desired range ---- |
673 * | state |
674 * We need to split the extent, and clear the bit
675 * on the first half
676 */
677 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000678 prealloc = alloc_extent_state_atomic(prealloc);
679 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500680 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400681 if (err)
682 extent_io_tree_panic(tree, err);
683
Chris Masond1310b22008-01-24 16:13:08 -0500684 if (wake)
685 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400686
Jeff Mahoney6763af82012-03-01 14:56:29 +0100687 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400688
Chris Masond1310b22008-01-24 16:13:08 -0500689 prealloc = NULL;
690 goto out;
691 }
Chris Mason42daec22009-09-23 19:51:09 -0400692
Li Zefancdc6a392012-03-12 16:39:48 +0800693 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800694next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400695 if (last_end == (u64)-1)
696 goto out;
697 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800698 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800699 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500700 goto search_again;
701
702out:
Chris Masoncad321a2008-12-17 14:51:42 -0500703 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500704 if (prealloc)
705 free_extent_state(prealloc);
706
Jeff Mahoney6763af82012-03-01 14:56:29 +0100707 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500708
709search_again:
710 if (start > end)
711 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500712 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500713 if (mask & __GFP_WAIT)
714 cond_resched();
715 goto again;
716}
Chris Masond1310b22008-01-24 16:13:08 -0500717
Jeff Mahoney143bede2012-03-01 14:56:26 +0100718static void wait_on_state(struct extent_io_tree *tree,
719 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500720 __releases(tree->lock)
721 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500722{
723 DEFINE_WAIT(wait);
724 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500725 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500726 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500727 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500728 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500729}
730
731/*
732 * waits for one or more bits to clear on a range in the state tree.
733 * The range [start, end] is inclusive.
734 * The tree lock is taken by this function
735 */
David Sterba41074882013-04-29 13:38:46 +0000736static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
737 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500738{
739 struct extent_state *state;
740 struct rb_node *node;
741
Josef Bacika5dee372013-12-13 10:02:44 -0500742 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000743
Chris Masoncad321a2008-12-17 14:51:42 -0500744 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500745again:
746 while (1) {
747 /*
748 * this search will find all the extents that end after
749 * our range starts
750 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500751 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500752 if (!node)
753 break;
754
755 state = rb_entry(node, struct extent_state, rb_node);
756
757 if (state->start > end)
758 goto out;
759
760 if (state->state & bits) {
761 start = state->start;
762 atomic_inc(&state->refs);
763 wait_on_state(tree, state);
764 free_extent_state(state);
765 goto again;
766 }
767 start = state->end + 1;
768
769 if (start > end)
770 break;
771
Xiao Guangrongded91f02011-07-14 03:19:27 +0000772 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500773 }
774out:
Chris Masoncad321a2008-12-17 14:51:42 -0500775 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500776}
Chris Masond1310b22008-01-24 16:13:08 -0500777
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000778static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500779 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000780 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500781{
David Sterba41074882013-04-29 13:38:46 +0000782 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400783
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000784 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400785 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500786 u64 range = state->end - state->start + 1;
787 tree->dirty_bytes += range;
788 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400789 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500790}
791
Chris Mason2c64c532009-09-02 15:04:12 -0400792static void cache_state(struct extent_state *state,
793 struct extent_state **cached_ptr)
794{
795 if (cached_ptr && !(*cached_ptr)) {
796 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
797 *cached_ptr = state;
798 atomic_inc(&state->refs);
799 }
800 }
801}
802
Chris Masond1310b22008-01-24 16:13:08 -0500803/*
Chris Mason1edbb732009-09-02 13:24:36 -0400804 * set some bits on a range in the tree. This may require allocations or
805 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500806 *
Chris Mason1edbb732009-09-02 13:24:36 -0400807 * If any of the exclusive bits are set, this will fail with -EEXIST if some
808 * part of the range already has the desired bits set. The start of the
809 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500810 *
Chris Mason1edbb732009-09-02 13:24:36 -0400811 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500812 */
Chris Mason1edbb732009-09-02 13:24:36 -0400813
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100814static int __must_check
815__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000816 unsigned long bits, unsigned long exclusive_bits,
817 u64 *failed_start, struct extent_state **cached_state,
818 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500819{
820 struct extent_state *state;
821 struct extent_state *prealloc = NULL;
822 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000823 struct rb_node **p;
824 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500825 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500826 u64 last_start;
827 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400828
Josef Bacika5dee372013-12-13 10:02:44 -0500829 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000830
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400831 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500832again:
833 if (!prealloc && (mask & __GFP_WAIT)) {
834 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000835 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500836 }
837
Chris Masoncad321a2008-12-17 14:51:42 -0500838 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400839 if (cached_state && *cached_state) {
840 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400841 if (state->start <= start && state->end > start &&
842 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400843 node = &state->rb_node;
844 goto hit_next;
845 }
846 }
Chris Masond1310b22008-01-24 16:13:08 -0500847 /*
848 * this search will find all the extents that end after
849 * our range starts.
850 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000851 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500852 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000853 prealloc = alloc_extent_state_atomic(prealloc);
854 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000855 err = insert_state(tree, prealloc, start, end,
856 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400857 if (err)
858 extent_io_tree_panic(tree, err);
859
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000860 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500861 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500862 goto out;
863 }
Chris Masond1310b22008-01-24 16:13:08 -0500864 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400865hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500866 last_start = state->start;
867 last_end = state->end;
868
869 /*
870 * | ---- desired range ---- |
871 * | state |
872 *
873 * Just lock what we found and keep going
874 */
875 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400876 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500877 *failed_start = state->start;
878 err = -EEXIST;
879 goto out;
880 }
Chris Mason42daec22009-09-23 19:51:09 -0400881
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000882 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400883 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500884 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400885 if (last_end == (u64)-1)
886 goto out;
887 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800888 state = next_state(state);
889 if (start < end && state && state->start == start &&
890 !need_resched())
891 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500892 goto search_again;
893 }
894
895 /*
896 * | ---- desired range ---- |
897 * | state |
898 * or
899 * | ------------- state -------------- |
900 *
901 * We need to split the extent we found, and may flip bits on
902 * second half.
903 *
904 * If the extent we found extends past our
905 * range, we just split and search again. It'll get split
906 * again the next time though.
907 *
908 * If the extent we found is inside our range, we set the
909 * desired bit on it.
910 */
911 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400912 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500913 *failed_start = start;
914 err = -EEXIST;
915 goto out;
916 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000917
918 prealloc = alloc_extent_state_atomic(prealloc);
919 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500920 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400921 if (err)
922 extent_io_tree_panic(tree, err);
923
Chris Masond1310b22008-01-24 16:13:08 -0500924 prealloc = NULL;
925 if (err)
926 goto out;
927 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000928 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400929 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500930 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400931 if (last_end == (u64)-1)
932 goto out;
933 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800934 state = next_state(state);
935 if (start < end && state && state->start == start &&
936 !need_resched())
937 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500938 }
939 goto search_again;
940 }
941 /*
942 * | ---- desired range ---- |
943 * | state | or | state |
944 *
945 * There's a hole, we need to insert something in it and
946 * ignore the extent we found.
947 */
948 if (state->start > start) {
949 u64 this_end;
950 if (end < last_start)
951 this_end = end;
952 else
Chris Masond3977122009-01-05 21:25:51 -0500953 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000954
955 prealloc = alloc_extent_state_atomic(prealloc);
956 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000957
958 /*
959 * Avoid to free 'prealloc' if it can be merged with
960 * the later extent.
961 */
Chris Masond1310b22008-01-24 16:13:08 -0500962 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000963 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400964 if (err)
965 extent_io_tree_panic(tree, err);
966
Chris Mason2c64c532009-09-02 15:04:12 -0400967 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500968 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500969 start = this_end + 1;
970 goto search_again;
971 }
972 /*
973 * | ---- desired range ---- |
974 * | state |
975 * We need to split the extent, and set the bit
976 * on the first half
977 */
978 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400979 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500980 *failed_start = start;
981 err = -EEXIST;
982 goto out;
983 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000984
985 prealloc = alloc_extent_state_atomic(prealloc);
986 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500987 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400988 if (err)
989 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500990
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000991 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400992 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500993 merge_state(tree, prealloc);
994 prealloc = NULL;
995 goto out;
996 }
997
998 goto search_again;
999
1000out:
Chris Masoncad321a2008-12-17 14:51:42 -05001001 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001002 if (prealloc)
1003 free_extent_state(prealloc);
1004
1005 return err;
1006
1007search_again:
1008 if (start > end)
1009 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -05001010 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001011 if (mask & __GFP_WAIT)
1012 cond_resched();
1013 goto again;
1014}
Chris Masond1310b22008-01-24 16:13:08 -05001015
David Sterba41074882013-04-29 13:38:46 +00001016int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1017 unsigned long bits, u64 * failed_start,
1018 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001019{
1020 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1021 cached_state, mask);
1022}
1023
1024
Josef Bacik462d6fa2011-09-26 13:56:12 -04001025/**
Liu Bo10983f22012-07-11 15:26:19 +08001026 * convert_extent_bit - convert all bits in a given range from one bit to
1027 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001028 * @tree: the io tree to search
1029 * @start: the start offset in bytes
1030 * @end: the end offset in bytes (inclusive)
1031 * @bits: the bits to set in this range
1032 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001033 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001034 * @mask: the allocation mask
1035 *
1036 * This will go through and set bits for the given range. If any states exist
1037 * already in this range they are set with the given bit and cleared of the
1038 * clear_bits. This is only meant to be used by things that are mergeable, ie
1039 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1040 * boundary bits like LOCK.
1041 */
1042int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001043 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001044 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001045{
1046 struct extent_state *state;
1047 struct extent_state *prealloc = NULL;
1048 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001049 struct rb_node **p;
1050 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001051 int err = 0;
1052 u64 last_start;
1053 u64 last_end;
1054
Josef Bacika5dee372013-12-13 10:02:44 -05001055 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001056
Josef Bacik462d6fa2011-09-26 13:56:12 -04001057again:
1058 if (!prealloc && (mask & __GFP_WAIT)) {
1059 prealloc = alloc_extent_state(mask);
1060 if (!prealloc)
1061 return -ENOMEM;
1062 }
1063
1064 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001065 if (cached_state && *cached_state) {
1066 state = *cached_state;
1067 if (state->start <= start && state->end > start &&
1068 state->tree) {
1069 node = &state->rb_node;
1070 goto hit_next;
1071 }
1072 }
1073
Josef Bacik462d6fa2011-09-26 13:56:12 -04001074 /*
1075 * this search will find all the extents that end after
1076 * our range starts.
1077 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001078 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001079 if (!node) {
1080 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001081 if (!prealloc) {
1082 err = -ENOMEM;
1083 goto out;
1084 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001085 err = insert_state(tree, prealloc, start, end,
1086 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001087 if (err)
1088 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001089 cache_state(prealloc, cached_state);
1090 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001091 goto out;
1092 }
1093 state = rb_entry(node, struct extent_state, rb_node);
1094hit_next:
1095 last_start = state->start;
1096 last_end = state->end;
1097
1098 /*
1099 * | ---- desired range ---- |
1100 * | state |
1101 *
1102 * Just lock what we found and keep going
1103 */
1104 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001105 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001106 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001107 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001108 if (last_end == (u64)-1)
1109 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001110 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001111 if (start < end && state && state->start == start &&
1112 !need_resched())
1113 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001114 goto search_again;
1115 }
1116
1117 /*
1118 * | ---- desired range ---- |
1119 * | state |
1120 * or
1121 * | ------------- state -------------- |
1122 *
1123 * We need to split the extent we found, and may flip bits on
1124 * second half.
1125 *
1126 * If the extent we found extends past our
1127 * range, we just split and search again. It'll get split
1128 * again the next time though.
1129 *
1130 * If the extent we found is inside our range, we set the
1131 * desired bit on it.
1132 */
1133 if (state->start < start) {
1134 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001135 if (!prealloc) {
1136 err = -ENOMEM;
1137 goto out;
1138 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001139 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001140 if (err)
1141 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001142 prealloc = NULL;
1143 if (err)
1144 goto out;
1145 if (state->end <= end) {
1146 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001147 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001148 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001149 if (last_end == (u64)-1)
1150 goto out;
1151 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001152 if (start < end && state && state->start == start &&
1153 !need_resched())
1154 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001155 }
1156 goto search_again;
1157 }
1158 /*
1159 * | ---- desired range ---- |
1160 * | state | or | state |
1161 *
1162 * There's a hole, we need to insert something in it and
1163 * ignore the extent we found.
1164 */
1165 if (state->start > start) {
1166 u64 this_end;
1167 if (end < last_start)
1168 this_end = end;
1169 else
1170 this_end = last_start - 1;
1171
1172 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001173 if (!prealloc) {
1174 err = -ENOMEM;
1175 goto out;
1176 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001177
1178 /*
1179 * Avoid to free 'prealloc' if it can be merged with
1180 * the later extent.
1181 */
1182 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001183 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001184 if (err)
1185 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001186 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001187 prealloc = NULL;
1188 start = this_end + 1;
1189 goto search_again;
1190 }
1191 /*
1192 * | ---- desired range ---- |
1193 * | state |
1194 * We need to split the extent, and set the bit
1195 * on the first half
1196 */
1197 if (state->start <= end && state->end > end) {
1198 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001199 if (!prealloc) {
1200 err = -ENOMEM;
1201 goto out;
1202 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001203
1204 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001205 if (err)
1206 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001207
1208 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001209 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001210 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001211 prealloc = NULL;
1212 goto out;
1213 }
1214
1215 goto search_again;
1216
1217out:
1218 spin_unlock(&tree->lock);
1219 if (prealloc)
1220 free_extent_state(prealloc);
1221
1222 return err;
1223
1224search_again:
1225 if (start > end)
1226 goto out;
1227 spin_unlock(&tree->lock);
1228 if (mask & __GFP_WAIT)
1229 cond_resched();
1230 goto again;
1231}
1232
Chris Masond1310b22008-01-24 16:13:08 -05001233/* wrappers around set/clear extent bit */
1234int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1235 gfp_t mask)
1236{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001237 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001238 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001239}
Chris Masond1310b22008-01-24 16:13:08 -05001240
1241int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001242 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001243{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001244 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001245 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001246}
Chris Masond1310b22008-01-24 16:13:08 -05001247
1248int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001249 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001250{
Chris Mason2c64c532009-09-02 15:04:12 -04001251 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001252}
Chris Masond1310b22008-01-24 16:13:08 -05001253
1254int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001255 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001256{
1257 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001258 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001259 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001260}
Chris Masond1310b22008-01-24 16:13:08 -05001261
Liu Bo9e8a4a82012-09-05 19:10:51 -06001262int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1263 struct extent_state **cached_state, gfp_t mask)
1264{
1265 return set_extent_bit(tree, start, end,
1266 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1267 NULL, cached_state, mask);
1268}
1269
Chris Masond1310b22008-01-24 16:13:08 -05001270int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1271 gfp_t mask)
1272{
1273 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001274 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001275 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001276}
Chris Masond1310b22008-01-24 16:13:08 -05001277
1278int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1279 gfp_t mask)
1280{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001281 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001282 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001283}
Chris Masond1310b22008-01-24 16:13:08 -05001284
Chris Masond1310b22008-01-24 16:13:08 -05001285int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001286 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001287{
Liu Bo6b67a322013-03-28 08:30:28 +00001288 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001289 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001290}
Chris Masond1310b22008-01-24 16:13:08 -05001291
Josef Bacik5fd02042012-05-02 14:00:54 -04001292int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1293 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001294{
Chris Mason2c64c532009-09-02 15:04:12 -04001295 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001296 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001297}
Chris Masond1310b22008-01-24 16:13:08 -05001298
Chris Masond352ac62008-09-29 15:18:18 -04001299/*
1300 * either insert or lock state struct between start and end use mask to tell
1301 * us if waiting is desired.
1302 */
Chris Mason1edbb732009-09-02 13:24:36 -04001303int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001304 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001305{
1306 int err;
1307 u64 failed_start;
1308 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001309 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1310 EXTENT_LOCKED, &failed_start,
1311 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001312 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001313 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1314 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001315 } else
Chris Masond1310b22008-01-24 16:13:08 -05001316 break;
Chris Masond1310b22008-01-24 16:13:08 -05001317 WARN_ON(start > end);
1318 }
1319 return err;
1320}
Chris Masond1310b22008-01-24 16:13:08 -05001321
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001322int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001323{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001324 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001325}
1326
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001327int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001328{
1329 int err;
1330 u64 failed_start;
1331
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001332 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1333 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001334 if (err == -EEXIST) {
1335 if (failed_start > start)
1336 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001337 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001338 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001339 }
Josef Bacik25179202008-10-29 14:49:05 -04001340 return 1;
1341}
Josef Bacik25179202008-10-29 14:49:05 -04001342
Chris Mason2c64c532009-09-02 15:04:12 -04001343int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1344 struct extent_state **cached, gfp_t mask)
1345{
1346 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1347 mask);
1348}
1349
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001350int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001351{
Chris Mason2c64c532009-09-02 15:04:12 -04001352 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001353 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001354}
Chris Masond1310b22008-01-24 16:13:08 -05001355
Chris Mason4adaa612013-03-26 13:07:00 -04001356int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1357{
1358 unsigned long index = start >> PAGE_CACHE_SHIFT;
1359 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1360 struct page *page;
1361
1362 while (index <= end_index) {
1363 page = find_get_page(inode->i_mapping, index);
1364 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1365 clear_page_dirty_for_io(page);
1366 page_cache_release(page);
1367 index++;
1368 }
1369 return 0;
1370}
1371
1372int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1373{
1374 unsigned long index = start >> PAGE_CACHE_SHIFT;
1375 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1376 struct page *page;
1377
1378 while (index <= end_index) {
1379 page = find_get_page(inode->i_mapping, index);
1380 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1381 account_page_redirty(page);
1382 __set_page_dirty_nobuffers(page);
1383 page_cache_release(page);
1384 index++;
1385 }
1386 return 0;
1387}
1388
Chris Masond1310b22008-01-24 16:13:08 -05001389/*
Chris Masond1310b22008-01-24 16:13:08 -05001390 * helper function to set both pages and extents in the tree writeback
1391 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001392static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001393{
1394 unsigned long index = start >> PAGE_CACHE_SHIFT;
1395 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1396 struct page *page;
1397
1398 while (index <= end_index) {
1399 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001400 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001401 set_page_writeback(page);
1402 page_cache_release(page);
1403 index++;
1404 }
Chris Masond1310b22008-01-24 16:13:08 -05001405 return 0;
1406}
Chris Masond1310b22008-01-24 16:13:08 -05001407
Chris Masond352ac62008-09-29 15:18:18 -04001408/* find the first state struct with 'bits' set after 'start', and
1409 * return it. tree->lock must be held. NULL will returned if
1410 * nothing was found after 'start'
1411 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001412static struct extent_state *
1413find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001414 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001415{
1416 struct rb_node *node;
1417 struct extent_state *state;
1418
1419 /*
1420 * this search will find all the extents that end after
1421 * our range starts.
1422 */
1423 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001424 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001425 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001426
Chris Masond3977122009-01-05 21:25:51 -05001427 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001428 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001429 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001430 return state;
Chris Masond3977122009-01-05 21:25:51 -05001431
Chris Masond7fc6402008-02-18 12:12:38 -05001432 node = rb_next(node);
1433 if (!node)
1434 break;
1435 }
1436out:
1437 return NULL;
1438}
Chris Masond7fc6402008-02-18 12:12:38 -05001439
Chris Masond352ac62008-09-29 15:18:18 -04001440/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001441 * find the first offset in the io tree with 'bits' set. zero is
1442 * returned if we find something, and *start_ret and *end_ret are
1443 * set to reflect the state struct that was found.
1444 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001445 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001446 */
1447int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001448 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001449 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001450{
1451 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001452 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001453 int ret = 1;
1454
1455 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001456 if (cached_state && *cached_state) {
1457 state = *cached_state;
1458 if (state->end == start - 1 && state->tree) {
1459 n = rb_next(&state->rb_node);
1460 while (n) {
1461 state = rb_entry(n, struct extent_state,
1462 rb_node);
1463 if (state->state & bits)
1464 goto got_it;
1465 n = rb_next(n);
1466 }
1467 free_extent_state(*cached_state);
1468 *cached_state = NULL;
1469 goto out;
1470 }
1471 free_extent_state(*cached_state);
1472 *cached_state = NULL;
1473 }
1474
Xiao Guangrong69261c42011-07-14 03:19:45 +00001475 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001476got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001477 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001478 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001479 *start_ret = state->start;
1480 *end_ret = state->end;
1481 ret = 0;
1482 }
Josef Bacike6138872012-09-27 17:07:30 -04001483out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001484 spin_unlock(&tree->lock);
1485 return ret;
1486}
1487
1488/*
Chris Masond352ac62008-09-29 15:18:18 -04001489 * find a contiguous range of bytes in the file marked as delalloc, not
1490 * more than 'max_bytes'. start and end are used to return the range,
1491 *
1492 * 1 is returned if we find something, 0 if nothing was in the tree
1493 */
Chris Masonc8b97812008-10-29 14:49:59 -04001494static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001495 u64 *start, u64 *end, u64 max_bytes,
1496 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001497{
1498 struct rb_node *node;
1499 struct extent_state *state;
1500 u64 cur_start = *start;
1501 u64 found = 0;
1502 u64 total_bytes = 0;
1503
Chris Masoncad321a2008-12-17 14:51:42 -05001504 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001505
Chris Masond1310b22008-01-24 16:13:08 -05001506 /*
1507 * this search will find all the extents that end after
1508 * our range starts.
1509 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001510 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001511 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001512 if (!found)
1513 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001514 goto out;
1515 }
1516
Chris Masond3977122009-01-05 21:25:51 -05001517 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001518 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001519 if (found && (state->start != cur_start ||
1520 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001521 goto out;
1522 }
1523 if (!(state->state & EXTENT_DELALLOC)) {
1524 if (!found)
1525 *end = state->end;
1526 goto out;
1527 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001528 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001529 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001530 *cached_state = state;
1531 atomic_inc(&state->refs);
1532 }
Chris Masond1310b22008-01-24 16:13:08 -05001533 found++;
1534 *end = state->end;
1535 cur_start = state->end + 1;
1536 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001537 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001538 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001539 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001540 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001541 break;
1542 }
1543out:
Chris Masoncad321a2008-12-17 14:51:42 -05001544 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001545 return found;
1546}
1547
Jeff Mahoney143bede2012-03-01 14:56:26 +01001548static noinline void __unlock_for_delalloc(struct inode *inode,
1549 struct page *locked_page,
1550 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001551{
1552 int ret;
1553 struct page *pages[16];
1554 unsigned long index = start >> PAGE_CACHE_SHIFT;
1555 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1556 unsigned long nr_pages = end_index - index + 1;
1557 int i;
1558
1559 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001560 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001561
Chris Masond3977122009-01-05 21:25:51 -05001562 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001563 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001564 min_t(unsigned long, nr_pages,
1565 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001566 for (i = 0; i < ret; i++) {
1567 if (pages[i] != locked_page)
1568 unlock_page(pages[i]);
1569 page_cache_release(pages[i]);
1570 }
1571 nr_pages -= ret;
1572 index += ret;
1573 cond_resched();
1574 }
Chris Masonc8b97812008-10-29 14:49:59 -04001575}
1576
1577static noinline int lock_delalloc_pages(struct inode *inode,
1578 struct page *locked_page,
1579 u64 delalloc_start,
1580 u64 delalloc_end)
1581{
1582 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1583 unsigned long start_index = index;
1584 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1585 unsigned long pages_locked = 0;
1586 struct page *pages[16];
1587 unsigned long nrpages;
1588 int ret;
1589 int i;
1590
1591 /* the caller is responsible for locking the start index */
1592 if (index == locked_page->index && index == end_index)
1593 return 0;
1594
1595 /* skip the page at the start index */
1596 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001597 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001598 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001599 min_t(unsigned long,
1600 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001601 if (ret == 0) {
1602 ret = -EAGAIN;
1603 goto done;
1604 }
1605 /* now we have an array of pages, lock them all */
1606 for (i = 0; i < ret; i++) {
1607 /*
1608 * the caller is taking responsibility for
1609 * locked_page
1610 */
Chris Mason771ed682008-11-06 22:02:51 -05001611 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001612 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001613 if (!PageDirty(pages[i]) ||
1614 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001615 ret = -EAGAIN;
1616 unlock_page(pages[i]);
1617 page_cache_release(pages[i]);
1618 goto done;
1619 }
1620 }
Chris Masonc8b97812008-10-29 14:49:59 -04001621 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001622 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001623 }
Chris Masonc8b97812008-10-29 14:49:59 -04001624 nrpages -= ret;
1625 index += ret;
1626 cond_resched();
1627 }
1628 ret = 0;
1629done:
1630 if (ret && pages_locked) {
1631 __unlock_for_delalloc(inode, locked_page,
1632 delalloc_start,
1633 ((u64)(start_index + pages_locked - 1)) <<
1634 PAGE_CACHE_SHIFT);
1635 }
1636 return ret;
1637}
1638
1639/*
1640 * find a contiguous range of bytes in the file marked as delalloc, not
1641 * more than 'max_bytes'. start and end are used to return the range,
1642 *
1643 * 1 is returned if we find something, 0 if nothing was in the tree
1644 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001645STATIC u64 find_lock_delalloc_range(struct inode *inode,
1646 struct extent_io_tree *tree,
1647 struct page *locked_page, u64 *start,
1648 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001649{
1650 u64 delalloc_start;
1651 u64 delalloc_end;
1652 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001653 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001654 int ret;
1655 int loops = 0;
1656
1657again:
1658 /* step one, find a bunch of delalloc bytes starting at start */
1659 delalloc_start = *start;
1660 delalloc_end = 0;
1661 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001662 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001663 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001664 *start = delalloc_start;
1665 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001666 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001667 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001668 }
1669
1670 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001671 * start comes from the offset of locked_page. We have to lock
1672 * pages in order, so we can't process delalloc bytes before
1673 * locked_page
1674 */
Chris Masond3977122009-01-05 21:25:51 -05001675 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001676 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001677
1678 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001679 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001680 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001681 if (delalloc_end + 1 - delalloc_start > max_bytes)
1682 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001683
Chris Masonc8b97812008-10-29 14:49:59 -04001684 /* step two, lock all the pages after the page that has start */
1685 ret = lock_delalloc_pages(inode, locked_page,
1686 delalloc_start, delalloc_end);
1687 if (ret == -EAGAIN) {
1688 /* some of the pages are gone, lets avoid looping by
1689 * shortening the size of the delalloc range we're searching
1690 */
Chris Mason9655d292009-09-02 15:22:30 -04001691 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001692 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001693 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001694 loops = 1;
1695 goto again;
1696 } else {
1697 found = 0;
1698 goto out_failed;
1699 }
1700 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001701 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001702
1703 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001704 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001705
1706 /* then test to make sure it is all still delalloc */
1707 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001708 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001709 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001710 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1711 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001712 __unlock_for_delalloc(inode, locked_page,
1713 delalloc_start, delalloc_end);
1714 cond_resched();
1715 goto again;
1716 }
Chris Mason9655d292009-09-02 15:22:30 -04001717 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001718 *start = delalloc_start;
1719 *end = delalloc_end;
1720out_failed:
1721 return found;
1722}
1723
Josef Bacikc2790a22013-07-29 11:20:47 -04001724int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1725 struct page *locked_page,
1726 unsigned long clear_bits,
1727 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001728{
Josef Bacikc2790a22013-07-29 11:20:47 -04001729 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001730 int ret;
1731 struct page *pages[16];
1732 unsigned long index = start >> PAGE_CACHE_SHIFT;
1733 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1734 unsigned long nr_pages = end_index - index + 1;
1735 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001736
Chris Mason2c64c532009-09-02 15:04:12 -04001737 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001738 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001739 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001740
Chris Masond3977122009-01-05 21:25:51 -05001741 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001742 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001743 min_t(unsigned long,
1744 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001745 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001746
Josef Bacikc2790a22013-07-29 11:20:47 -04001747 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001748 SetPagePrivate2(pages[i]);
1749
Chris Masonc8b97812008-10-29 14:49:59 -04001750 if (pages[i] == locked_page) {
1751 page_cache_release(pages[i]);
1752 continue;
1753 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001754 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001755 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001756 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001757 set_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001758 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001759 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001760 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001761 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001762 page_cache_release(pages[i]);
1763 }
1764 nr_pages -= ret;
1765 index += ret;
1766 cond_resched();
1767 }
1768 return 0;
1769}
Chris Masonc8b97812008-10-29 14:49:59 -04001770
Chris Masond352ac62008-09-29 15:18:18 -04001771/*
1772 * count the number of bytes in the tree that have a given bit(s)
1773 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1774 * cached. The total number found is returned.
1775 */
Chris Masond1310b22008-01-24 16:13:08 -05001776u64 count_range_bits(struct extent_io_tree *tree,
1777 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001778 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001779{
1780 struct rb_node *node;
1781 struct extent_state *state;
1782 u64 cur_start = *start;
1783 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001784 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001785 int found = 0;
1786
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301787 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001788 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001789
Chris Masoncad321a2008-12-17 14:51:42 -05001790 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001791 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1792 total_bytes = tree->dirty_bytes;
1793 goto out;
1794 }
1795 /*
1796 * this search will find all the extents that end after
1797 * our range starts.
1798 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001799 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001800 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001801 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001802
Chris Masond3977122009-01-05 21:25:51 -05001803 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001804 state = rb_entry(node, struct extent_state, rb_node);
1805 if (state->start > search_end)
1806 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001807 if (contig && found && state->start > last + 1)
1808 break;
1809 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001810 total_bytes += min(search_end, state->end) + 1 -
1811 max(cur_start, state->start);
1812 if (total_bytes >= max_bytes)
1813 break;
1814 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001815 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001816 found = 1;
1817 }
Chris Masonec29ed52011-02-23 16:23:20 -05001818 last = state->end;
1819 } else if (contig && found) {
1820 break;
Chris Masond1310b22008-01-24 16:13:08 -05001821 }
1822 node = rb_next(node);
1823 if (!node)
1824 break;
1825 }
1826out:
Chris Masoncad321a2008-12-17 14:51:42 -05001827 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001828 return total_bytes;
1829}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001830
Chris Masond352ac62008-09-29 15:18:18 -04001831/*
1832 * set the private field for a given byte offset in the tree. If there isn't
1833 * an extent_state there already, this does nothing.
1834 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001835static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001836{
1837 struct rb_node *node;
1838 struct extent_state *state;
1839 int ret = 0;
1840
Chris Masoncad321a2008-12-17 14:51:42 -05001841 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001842 /*
1843 * this search will find all the extents that end after
1844 * our range starts.
1845 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001846 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001847 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001848 ret = -ENOENT;
1849 goto out;
1850 }
1851 state = rb_entry(node, struct extent_state, rb_node);
1852 if (state->start != start) {
1853 ret = -ENOENT;
1854 goto out;
1855 }
1856 state->private = private;
1857out:
Chris Masoncad321a2008-12-17 14:51:42 -05001858 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001859 return ret;
1860}
1861
1862int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1863{
1864 struct rb_node *node;
1865 struct extent_state *state;
1866 int ret = 0;
1867
Chris Masoncad321a2008-12-17 14:51:42 -05001868 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001869 /*
1870 * this search will find all the extents that end after
1871 * our range starts.
1872 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001873 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001874 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001875 ret = -ENOENT;
1876 goto out;
1877 }
1878 state = rb_entry(node, struct extent_state, rb_node);
1879 if (state->start != start) {
1880 ret = -ENOENT;
1881 goto out;
1882 }
1883 *private = state->private;
1884out:
Chris Masoncad321a2008-12-17 14:51:42 -05001885 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001886 return ret;
1887}
1888
1889/*
1890 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001891 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001892 * has the bits set. Otherwise, 1 is returned if any bit in the
1893 * range is found set.
1894 */
1895int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001896 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001897{
1898 struct extent_state *state = NULL;
1899 struct rb_node *node;
1900 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001901
Chris Masoncad321a2008-12-17 14:51:42 -05001902 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001903 if (cached && cached->tree && cached->start <= start &&
1904 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001905 node = &cached->rb_node;
1906 else
1907 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001908 while (node && start <= end) {
1909 state = rb_entry(node, struct extent_state, rb_node);
1910
1911 if (filled && state->start > start) {
1912 bitset = 0;
1913 break;
1914 }
1915
1916 if (state->start > end)
1917 break;
1918
1919 if (state->state & bits) {
1920 bitset = 1;
1921 if (!filled)
1922 break;
1923 } else if (filled) {
1924 bitset = 0;
1925 break;
1926 }
Chris Mason46562cec2009-09-23 20:23:16 -04001927
1928 if (state->end == (u64)-1)
1929 break;
1930
Chris Masond1310b22008-01-24 16:13:08 -05001931 start = state->end + 1;
1932 if (start > end)
1933 break;
1934 node = rb_next(node);
1935 if (!node) {
1936 if (filled)
1937 bitset = 0;
1938 break;
1939 }
1940 }
Chris Masoncad321a2008-12-17 14:51:42 -05001941 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001942 return bitset;
1943}
Chris Masond1310b22008-01-24 16:13:08 -05001944
1945/*
1946 * helper function to set a given page up to date if all the
1947 * extents in the tree for that page are up to date
1948 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001949static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001950{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001951 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001952 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001953 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001954 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001955}
1956
1957/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001958 * When IO fails, either with EIO or csum verification fails, we
1959 * try other mirrors that might have a good copy of the data. This
1960 * io_failure_record is used to record state as we go through all the
1961 * mirrors. If another mirror has good data, the page is set up to date
1962 * and things continue. If a good mirror can't be found, the original
1963 * bio end_io callback is called to indicate things have failed.
1964 */
1965struct io_failure_record {
1966 struct page *page;
1967 u64 start;
1968 u64 len;
1969 u64 logical;
1970 unsigned long bio_flags;
1971 int this_mirror;
1972 int failed_mirror;
1973 int in_validation;
1974};
1975
1976static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1977 int did_repair)
1978{
1979 int ret;
1980 int err = 0;
1981 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1982
1983 set_state_private(failure_tree, rec->start, 0);
1984 ret = clear_extent_bits(failure_tree, rec->start,
1985 rec->start + rec->len - 1,
1986 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1987 if (ret)
1988 err = ret;
1989
David Woodhouse53b381b2013-01-29 18:40:14 -05001990 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1991 rec->start + rec->len - 1,
1992 EXTENT_DAMAGED, GFP_NOFS);
1993 if (ret && !err)
1994 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001995
1996 kfree(rec);
1997 return err;
1998}
1999
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002000/*
2001 * this bypasses the standard btrfs submit functions deliberately, as
2002 * the standard behavior is to write all copies in a raid setup. here we only
2003 * want to write the one bad copy. so we do the mapping for ourselves and issue
2004 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002005 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002006 * actually prevents the read that triggered the error from finishing.
2007 * currently, there can be no more than two copies of every data bit. thus,
2008 * exactly one rewrite is required.
2009 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002010int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002011 u64 length, u64 logical, struct page *page,
2012 int mirror_num)
2013{
2014 struct bio *bio;
2015 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002016 u64 map_length = 0;
2017 u64 sector;
2018 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002019 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002020 int ret;
2021
Ilya Dryomov908960c2013-11-03 19:06:39 +02002022 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002023 BUG_ON(!mirror_num);
2024
David Woodhouse53b381b2013-01-29 18:40:14 -05002025 /* we can't repair anything in raid56 yet */
2026 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2027 return 0;
2028
Chris Mason9be33952013-05-17 18:30:14 -04002029 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002030 if (!bio)
2031 return -EIO;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002032 bio->bi_size = 0;
2033 map_length = length;
2034
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002035 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002036 &map_length, &bbio, mirror_num);
2037 if (ret) {
2038 bio_put(bio);
2039 return -EIO;
2040 }
2041 BUG_ON(mirror_num != bbio->mirror_num);
2042 sector = bbio->stripes[mirror_num-1].physical >> 9;
2043 bio->bi_sector = sector;
2044 dev = bbio->stripes[mirror_num-1].dev;
2045 kfree(bbio);
2046 if (!dev || !dev->bdev || !dev->writeable) {
2047 bio_put(bio);
2048 return -EIO;
2049 }
2050 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002051 bio_add_page(bio, page, length, start - page_offset(page));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002052
Kent Overstreetc170bbb2013-11-24 16:32:22 -07002053 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002054 /* try to remap that extent elsewhere? */
2055 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002056 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002057 return -EIO;
2058 }
2059
Frank Holtonefe120a2013-12-20 11:37:06 -05002060 printk_ratelimited_in_rcu(KERN_INFO
2061 "BTRFS: read error corrected: ino %lu off %llu "
2062 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2063 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002064
2065 bio_put(bio);
2066 return 0;
2067}
2068
Josef Bacikea466792012-03-26 21:57:36 -04002069int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2070 int mirror_num)
2071{
Josef Bacikea466792012-03-26 21:57:36 -04002072 u64 start = eb->start;
2073 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002074 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002075
Ilya Dryomov908960c2013-11-03 19:06:39 +02002076 if (root->fs_info->sb->s_flags & MS_RDONLY)
2077 return -EROFS;
2078
Josef Bacikea466792012-03-26 21:57:36 -04002079 for (i = 0; i < num_pages; i++) {
2080 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002081 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002082 start, p, mirror_num);
2083 if (ret)
2084 break;
2085 start += PAGE_CACHE_SIZE;
2086 }
2087
2088 return ret;
2089}
2090
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091/*
2092 * each time an IO finishes, we do a fast check in the IO failure tree
2093 * to see if we need to process or clean up an io_failure_record
2094 */
2095static int clean_io_failure(u64 start, struct page *page)
2096{
2097 u64 private;
2098 u64 private_failure;
2099 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002100 struct inode *inode = page->mapping->host;
2101 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102 struct extent_state *state;
2103 int num_copies;
2104 int did_repair = 0;
2105 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106
2107 private = 0;
2108 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2109 (u64)-1, 1, EXTENT_DIRTY, 0);
2110 if (!ret)
2111 return 0;
2112
2113 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2114 &private_failure);
2115 if (ret)
2116 return 0;
2117
2118 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2119 BUG_ON(!failrec->this_mirror);
2120
2121 if (failrec->in_validation) {
2122 /* there was no real error, just free the record */
2123 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2124 failrec->start);
2125 did_repair = 1;
2126 goto out;
2127 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002128 if (fs_info->sb->s_flags & MS_RDONLY)
2129 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002130
2131 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2132 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2133 failrec->start,
2134 EXTENT_LOCKED);
2135 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2136
Miao Xie883d0de2013-07-25 19:22:35 +08002137 if (state && state->start <= failrec->start &&
2138 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002139 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2140 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002141 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002142 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002143 failrec->logical, page,
2144 failrec->failed_mirror);
2145 did_repair = !ret;
2146 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002147 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002148 }
2149
2150out:
2151 if (!ret)
2152 ret = free_io_failure(inode, failrec, did_repair);
2153
2154 return ret;
2155}
2156
2157/*
2158 * this is a generic handler for readpage errors (default
2159 * readpage_io_failed_hook). if other copies exist, read those and write back
2160 * good data to the failed position. does not investigate in remapping the
2161 * failed extent elsewhere, hoping the device will be smart enough to do this as
2162 * needed
2163 */
2164
Miao Xiefacc8a222013-07-25 19:22:34 +08002165static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2166 struct page *page, u64 start, u64 end,
2167 int failed_mirror)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002168{
2169 struct io_failure_record *failrec = NULL;
2170 u64 private;
2171 struct extent_map *em;
2172 struct inode *inode = page->mapping->host;
2173 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2174 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2175 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2176 struct bio *bio;
Miao Xiefacc8a222013-07-25 19:22:34 +08002177 struct btrfs_io_bio *btrfs_failed_bio;
2178 struct btrfs_io_bio *btrfs_bio;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002179 int num_copies;
2180 int ret;
2181 int read_mode;
2182 u64 logical;
2183
2184 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2185
2186 ret = get_state_private(failure_tree, start, &private);
2187 if (ret) {
2188 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2189 if (!failrec)
2190 return -ENOMEM;
2191 failrec->start = start;
2192 failrec->len = end - start + 1;
2193 failrec->this_mirror = 0;
2194 failrec->bio_flags = 0;
2195 failrec->in_validation = 0;
2196
2197 read_lock(&em_tree->lock);
2198 em = lookup_extent_mapping(em_tree, start, failrec->len);
2199 if (!em) {
2200 read_unlock(&em_tree->lock);
2201 kfree(failrec);
2202 return -EIO;
2203 }
2204
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002205 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002206 free_extent_map(em);
2207 em = NULL;
2208 }
2209 read_unlock(&em_tree->lock);
2210
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002211 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 kfree(failrec);
2213 return -EIO;
2214 }
2215 logical = start - em->start;
2216 logical = em->block_start + logical;
2217 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2218 logical = em->block_start;
2219 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2220 extent_set_compress_type(&failrec->bio_flags,
2221 em->compress_type);
2222 }
2223 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2224 "len=%llu\n", logical, start, failrec->len);
2225 failrec->logical = logical;
2226 free_extent_map(em);
2227
2228 /* set the bits in the private failure tree */
2229 ret = set_extent_bits(failure_tree, start, end,
2230 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2231 if (ret >= 0)
2232 ret = set_state_private(failure_tree, start,
2233 (u64)(unsigned long)failrec);
2234 /* set the bits in the inode's tree */
2235 if (ret >= 0)
2236 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2237 GFP_NOFS);
2238 if (ret < 0) {
2239 kfree(failrec);
2240 return ret;
2241 }
2242 } else {
2243 failrec = (struct io_failure_record *)(unsigned long)private;
2244 pr_debug("bio_readpage_error: (found) logical=%llu, "
2245 "start=%llu, len=%llu, validation=%d\n",
2246 failrec->logical, failrec->start, failrec->len,
2247 failrec->in_validation);
2248 /*
2249 * when data can be on disk more than twice, add to failrec here
2250 * (e.g. with a list for failed_mirror) to make
2251 * clean_io_failure() clean all those errors at once.
2252 */
2253 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002254 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2255 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002256 if (num_copies == 1) {
2257 /*
2258 * we only have a single copy of the data, so don't bother with
2259 * all the retry and error correction code that follows. no
2260 * matter what the error is, it is very likely to persist.
2261 */
Miao Xie09a7f7a2013-07-25 19:22:32 +08002262 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2263 num_copies, failrec->this_mirror, failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002264 free_io_failure(inode, failrec, 0);
2265 return -EIO;
2266 }
2267
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002268 /*
2269 * there are two premises:
2270 * a) deliver good data to the caller
2271 * b) correct the bad sectors on disk
2272 */
2273 if (failed_bio->bi_vcnt > 1) {
2274 /*
2275 * to fulfill b), we need to know the exact failing sectors, as
2276 * we don't want to rewrite any more than the failed ones. thus,
2277 * we need separate read requests for the failed bio
2278 *
2279 * if the following BUG_ON triggers, our validation request got
2280 * merged. we need separate requests for our algorithm to work.
2281 */
2282 BUG_ON(failrec->in_validation);
2283 failrec->in_validation = 1;
2284 failrec->this_mirror = failed_mirror;
2285 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2286 } else {
2287 /*
2288 * we're ready to fulfill a) and b) alongside. get a good copy
2289 * of the failed sector and if we succeed, we have setup
2290 * everything for repair_io_failure to do the rest for us.
2291 */
2292 if (failrec->in_validation) {
2293 BUG_ON(failrec->this_mirror != failed_mirror);
2294 failrec->in_validation = 0;
2295 failrec->this_mirror = 0;
2296 }
2297 failrec->failed_mirror = failed_mirror;
2298 failrec->this_mirror++;
2299 if (failrec->this_mirror == failed_mirror)
2300 failrec->this_mirror++;
2301 read_mode = READ_SYNC;
2302 }
2303
Miao Xiefacc8a222013-07-25 19:22:34 +08002304 if (failrec->this_mirror > num_copies) {
2305 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002306 num_copies, failrec->this_mirror, failed_mirror);
2307 free_io_failure(inode, failrec, 0);
2308 return -EIO;
2309 }
2310
Chris Mason9be33952013-05-17 18:30:14 -04002311 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002312 if (!bio) {
2313 free_io_failure(inode, failrec, 0);
2314 return -EIO;
2315 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002316 bio->bi_end_io = failed_bio->bi_end_io;
2317 bio->bi_sector = failrec->logical >> 9;
2318 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2319 bio->bi_size = 0;
2320
Miao Xiefacc8a222013-07-25 19:22:34 +08002321 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2322 if (btrfs_failed_bio->csum) {
2323 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2324 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2325
2326 btrfs_bio = btrfs_io_bio(bio);
2327 btrfs_bio->csum = btrfs_bio->csum_inline;
2328 phy_offset >>= inode->i_sb->s_blocksize_bits;
2329 phy_offset *= csum_size;
2330 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2331 csum_size);
2332 }
2333
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002334 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2335
2336 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2337 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2338 failrec->this_mirror, num_copies, failrec->in_validation);
2339
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002340 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2341 failrec->this_mirror,
2342 failrec->bio_flags, 0);
2343 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002344}
2345
Chris Masond1310b22008-01-24 16:13:08 -05002346/* lots and lots of room for performance fixes in the end_bio funcs */
2347
Jeff Mahoney87826df2012-02-15 16:23:57 +01002348int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2349{
2350 int uptodate = (err == 0);
2351 struct extent_io_tree *tree;
2352 int ret;
2353
2354 tree = &BTRFS_I(page->mapping->host)->io_tree;
2355
2356 if (tree->ops && tree->ops->writepage_end_io_hook) {
2357 ret = tree->ops->writepage_end_io_hook(page, start,
2358 end, NULL, uptodate);
2359 if (ret)
2360 uptodate = 0;
2361 }
2362
Jeff Mahoney87826df2012-02-15 16:23:57 +01002363 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002364 ClearPageUptodate(page);
2365 SetPageError(page);
2366 }
2367 return 0;
2368}
2369
Chris Masond1310b22008-01-24 16:13:08 -05002370/*
2371 * after a writepage IO is done, we need to:
2372 * clear the uptodate bits on error
2373 * clear the writeback bits in the extent tree for this IO
2374 * end_page_writeback if the page has no more pending IO
2375 *
2376 * Scheduling is not allowed, so the extent state tree is expected
2377 * to have one and only one object corresponding to this IO.
2378 */
Chris Masond1310b22008-01-24 16:13:08 -05002379static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002380{
Chris Masond1310b22008-01-24 16:13:08 -05002381 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002382 u64 start;
2383 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002384
Chris Masond1310b22008-01-24 16:13:08 -05002385 do {
2386 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002387
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002388 /* We always issue full-page reads, but if some block
2389 * in a page fails to read, blk_update_request() will
2390 * advance bv_offset and adjust bv_len to compensate.
2391 * Print a warning for nonzero offsets, and an error
2392 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002393 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2394 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2395 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2396 "partial page write in btrfs with offset %u and length %u",
2397 bvec->bv_offset, bvec->bv_len);
2398 else
2399 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2400 "incomplete page write in btrfs with offset %u and "
2401 "length %u",
2402 bvec->bv_offset, bvec->bv_len);
2403 }
Chris Masond1310b22008-01-24 16:13:08 -05002404
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002405 start = page_offset(page);
2406 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002407
2408 if (--bvec >= bio->bi_io_vec)
2409 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002410
Jeff Mahoney87826df2012-02-15 16:23:57 +01002411 if (end_extent_writepage(page, err, start, end))
2412 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002413
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002414 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002415 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002416
Chris Masond1310b22008-01-24 16:13:08 -05002417 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002418}
2419
Miao Xie883d0de2013-07-25 19:22:35 +08002420static void
2421endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2422 int uptodate)
2423{
2424 struct extent_state *cached = NULL;
2425 u64 end = start + len - 1;
2426
2427 if (uptodate && tree->track_uptodate)
2428 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2429 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2430}
2431
Chris Masond1310b22008-01-24 16:13:08 -05002432/*
2433 * after a readpage IO is done, we need to:
2434 * clear the uptodate bits on error
2435 * set the uptodate bits if things worked
2436 * set the page up to date if all extents in the tree are uptodate
2437 * clear the lock bit in the extent tree
2438 * unlock the page if there are no other extents locked for it
2439 *
2440 * Scheduling is not allowed, so the extent state tree is expected
2441 * to have one and only one object corresponding to this IO.
2442 */
Chris Masond1310b22008-01-24 16:13:08 -05002443static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002444{
2445 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002446 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2447 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a222013-07-25 19:22:34 +08002448 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002449 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002450 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002451 u64 start;
2452 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002453 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002454 u64 extent_start = 0;
2455 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002456 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002457 int ret;
2458
Chris Masond20f7042008-12-08 16:58:54 -05002459 if (err)
2460 uptodate = 0;
2461
Chris Masond1310b22008-01-24 16:13:08 -05002462 do {
2463 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002464 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002465
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002466 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002467 "mirror=%lu\n", (u64)bio->bi_sector, err,
2468 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002469 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002470
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002471 /* We always issue full-page reads, but if some block
2472 * in a page fails to read, blk_update_request() will
2473 * advance bv_offset and adjust bv_len to compensate.
2474 * Print a warning for nonzero offsets, and an error
2475 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002476 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2477 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2478 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2479 "partial page read in btrfs with offset %u and length %u",
2480 bvec->bv_offset, bvec->bv_len);
2481 else
2482 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2483 "incomplete page read in btrfs with offset %u and "
2484 "length %u",
2485 bvec->bv_offset, bvec->bv_len);
2486 }
Chris Masond1310b22008-01-24 16:13:08 -05002487
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002488 start = page_offset(page);
2489 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002490 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002491
Chris Mason4125bf72010-02-03 18:18:45 +00002492 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002493 prefetchw(&bvec->bv_page->flags);
2494
Chris Mason9be33952013-05-17 18:30:14 -04002495 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002496 if (likely(uptodate && tree->ops &&
2497 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002498 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2499 page, start, end,
2500 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002501 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002502 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002503 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002504 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002505 }
Josef Bacikea466792012-03-26 21:57:36 -04002506
Miao Xief2a09da2013-07-25 19:22:33 +08002507 if (likely(uptodate))
2508 goto readpage_ok;
2509
2510 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002511 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002512 if (!ret && !err &&
2513 test_bit(BIO_UPTODATE, &bio->bi_flags))
2514 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002515 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002516 /*
2517 * The generic bio_readpage_error handles errors the
2518 * following way: If possible, new read requests are
2519 * created and submitted and will end up in
2520 * end_bio_extent_readpage as well (if we're lucky, not
2521 * in the !uptodate case). In that case it returns 0 and
2522 * we just go on with the next page in our bio. If it
2523 * can't handle the error it will return -EIO and we
2524 * remain responsible for that page.
2525 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002526 ret = bio_readpage_error(bio, offset, page, start, end,
2527 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002528 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002529 uptodate =
2530 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002531 if (err)
2532 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04002533 continue;
2534 }
2535 }
Miao Xief2a09da2013-07-25 19:22:33 +08002536readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002537 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002538 loff_t i_size = i_size_read(inode);
2539 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2540 unsigned offset;
2541
2542 /* Zero out the end if this page straddles i_size */
2543 offset = i_size & (PAGE_CACHE_SIZE-1);
2544 if (page->index == end_index && offset)
2545 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002546 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002547 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002548 ClearPageUptodate(page);
2549 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002550 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002551 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002552 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002553
2554 if (unlikely(!uptodate)) {
2555 if (extent_len) {
2556 endio_readpage_release_extent(tree,
2557 extent_start,
2558 extent_len, 1);
2559 extent_start = 0;
2560 extent_len = 0;
2561 }
2562 endio_readpage_release_extent(tree, start,
2563 end - start + 1, 0);
2564 } else if (!extent_len) {
2565 extent_start = start;
2566 extent_len = end + 1 - start;
2567 } else if (extent_start + extent_len == start) {
2568 extent_len += end + 1 - start;
2569 } else {
2570 endio_readpage_release_extent(tree, extent_start,
2571 extent_len, uptodate);
2572 extent_start = start;
2573 extent_len = end + 1 - start;
2574 }
Chris Mason4125bf72010-02-03 18:18:45 +00002575 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002576
Miao Xie883d0de2013-07-25 19:22:35 +08002577 if (extent_len)
2578 endio_readpage_release_extent(tree, extent_start, extent_len,
2579 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002580 if (io_bio->end_io)
2581 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002582 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002583}
2584
Chris Mason9be33952013-05-17 18:30:14 -04002585/*
2586 * this allocates from the btrfs_bioset. We're returning a bio right now
2587 * but you can call btrfs_io_bio for the appropriate container_of magic
2588 */
Miao Xie88f794e2010-11-22 03:02:55 +00002589struct bio *
2590btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2591 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002592{
Miao Xiefacc8a222013-07-25 19:22:34 +08002593 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002594 struct bio *bio;
2595
Chris Mason9be33952013-05-17 18:30:14 -04002596 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002597
2598 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002599 while (!bio && (nr_vecs /= 2)) {
2600 bio = bio_alloc_bioset(gfp_flags,
2601 nr_vecs, btrfs_bioset);
2602 }
Chris Masond1310b22008-01-24 16:13:08 -05002603 }
2604
2605 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002606 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002607 bio->bi_bdev = bdev;
2608 bio->bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002609 btrfs_bio = btrfs_io_bio(bio);
2610 btrfs_bio->csum = NULL;
2611 btrfs_bio->csum_allocated = NULL;
2612 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002613 }
2614 return bio;
2615}
2616
Chris Mason9be33952013-05-17 18:30:14 -04002617struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2618{
2619 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2620}
2621
2622
2623/* this also allocates from the btrfs_bioset */
2624struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2625{
Miao Xiefacc8a222013-07-25 19:22:34 +08002626 struct btrfs_io_bio *btrfs_bio;
2627 struct bio *bio;
2628
2629 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2630 if (bio) {
2631 btrfs_bio = btrfs_io_bio(bio);
2632 btrfs_bio->csum = NULL;
2633 btrfs_bio->csum_allocated = NULL;
2634 btrfs_bio->end_io = NULL;
2635 }
2636 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002637}
2638
2639
Jeff Mahoney355808c2011-10-03 23:23:14 -04002640static int __must_check submit_one_bio(int rw, struct bio *bio,
2641 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002642{
Chris Masond1310b22008-01-24 16:13:08 -05002643 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002644 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2645 struct page *page = bvec->bv_page;
2646 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002647 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002648
Miao Xie4eee4fa2012-12-21 09:17:45 +00002649 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002650
David Woodhouse902b22f2008-08-20 08:51:49 -04002651 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002652
2653 bio_get(bio);
2654
Chris Mason065631f2008-02-20 12:07:25 -05002655 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002656 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002657 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002658 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002659 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002660
Chris Masond1310b22008-01-24 16:13:08 -05002661 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2662 ret = -EOPNOTSUPP;
2663 bio_put(bio);
2664 return ret;
2665}
2666
David Woodhouse64a16702009-07-15 23:29:37 +01002667static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002668 unsigned long offset, size_t size, struct bio *bio,
2669 unsigned long bio_flags)
2670{
2671 int ret = 0;
2672 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002673 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002674 bio_flags);
2675 BUG_ON(ret < 0);
2676 return ret;
2677
2678}
2679
Chris Masond1310b22008-01-24 16:13:08 -05002680static int submit_extent_page(int rw, struct extent_io_tree *tree,
2681 struct page *page, sector_t sector,
2682 size_t size, unsigned long offset,
2683 struct block_device *bdev,
2684 struct bio **bio_ret,
2685 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002686 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002687 int mirror_num,
2688 unsigned long prev_bio_flags,
2689 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002690{
2691 int ret = 0;
2692 struct bio *bio;
2693 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002694 int contig = 0;
2695 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2696 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002697 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002698
2699 if (bio_ret && *bio_ret) {
2700 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002701 if (old_compressed)
2702 contig = bio->bi_sector == sector;
2703 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002704 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002705
2706 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002707 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002708 bio_add_page(bio, page, page_size, offset) < page_size) {
2709 ret = submit_one_bio(rw, bio, mirror_num,
2710 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002711 if (ret < 0)
2712 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002713 bio = NULL;
2714 } else {
2715 return 0;
2716 }
2717 }
Chris Masonc8b97812008-10-29 14:49:59 -04002718 if (this_compressed)
2719 nr = BIO_MAX_PAGES;
2720 else
2721 nr = bio_get_nr_vecs(bdev);
2722
Miao Xie88f794e2010-11-22 03:02:55 +00002723 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002724 if (!bio)
2725 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002726
Chris Masonc8b97812008-10-29 14:49:59 -04002727 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002728 bio->bi_end_io = end_io_func;
2729 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002730
Chris Masond3977122009-01-05 21:25:51 -05002731 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002732 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002733 else
Chris Masonc8b97812008-10-29 14:49:59 -04002734 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002735
2736 return ret;
2737}
2738
Eric Sandeen48a3b632013-04-25 20:41:01 +00002739static void attach_extent_buffer_page(struct extent_buffer *eb,
2740 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002741{
2742 if (!PagePrivate(page)) {
2743 SetPagePrivate(page);
2744 page_cache_get(page);
2745 set_page_private(page, (unsigned long)eb);
2746 } else {
2747 WARN_ON(page->private != (unsigned long)eb);
2748 }
2749}
2750
Chris Masond1310b22008-01-24 16:13:08 -05002751void set_page_extent_mapped(struct page *page)
2752{
2753 if (!PagePrivate(page)) {
2754 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002755 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002756 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002757 }
2758}
2759
Miao Xie125bac012013-07-25 19:22:37 +08002760static struct extent_map *
2761__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2762 u64 start, u64 len, get_extent_t *get_extent,
2763 struct extent_map **em_cached)
2764{
2765 struct extent_map *em;
2766
2767 if (em_cached && *em_cached) {
2768 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002769 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002770 start < extent_map_end(em)) {
2771 atomic_inc(&em->refs);
2772 return em;
2773 }
2774
2775 free_extent_map(em);
2776 *em_cached = NULL;
2777 }
2778
2779 em = get_extent(inode, page, pg_offset, start, len, 0);
2780 if (em_cached && !IS_ERR_OR_NULL(em)) {
2781 BUG_ON(*em_cached);
2782 atomic_inc(&em->refs);
2783 *em_cached = em;
2784 }
2785 return em;
2786}
Chris Masond1310b22008-01-24 16:13:08 -05002787/*
2788 * basic readpage implementation. Locked extent state structs are inserted
2789 * into the tree that are removed when the IO is done (by the end_io
2790 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002791 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002792 */
Miao Xie99740902013-07-25 19:22:36 +08002793static int __do_readpage(struct extent_io_tree *tree,
2794 struct page *page,
2795 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002796 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002797 struct bio **bio, int mirror_num,
2798 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002799{
2800 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002801 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002802 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2803 u64 end;
2804 u64 cur = start;
2805 u64 extent_offset;
2806 u64 last_byte = i_size_read(inode);
2807 u64 block_start;
2808 u64 cur_end;
2809 sector_t sector;
2810 struct extent_map *em;
2811 struct block_device *bdev;
2812 int ret;
2813 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002814 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002815 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002816 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002817 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002818 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002819 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002820
2821 set_page_extent_mapped(page);
2822
Miao Xie99740902013-07-25 19:22:36 +08002823 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002824 if (!PageUptodate(page)) {
2825 if (cleancache_get_page(page) == 0) {
2826 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002827 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002828 goto out;
2829 }
2830 }
2831
Chris Masonc8b97812008-10-29 14:49:59 -04002832 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2833 char *userpage;
2834 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2835
2836 if (zero_offset) {
2837 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002838 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002839 memset(userpage + zero_offset, 0, iosize);
2840 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002841 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002842 }
2843 }
Chris Masond1310b22008-01-24 16:13:08 -05002844 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002845 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2846
Chris Masond1310b22008-01-24 16:13:08 -05002847 if (cur >= last_byte) {
2848 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002849 struct extent_state *cached = NULL;
2850
David Sterba306e16c2011-04-19 14:29:38 +02002851 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002852 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002853 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002854 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002855 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002856 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002857 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002858 if (!parent_locked)
2859 unlock_extent_cached(tree, cur,
2860 cur + iosize - 1,
2861 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002862 break;
2863 }
Miao Xie125bac012013-07-25 19:22:37 +08002864 em = __get_extent_map(inode, page, pg_offset, cur,
2865 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002866 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002867 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002868 if (!parent_locked)
2869 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002870 break;
2871 }
Chris Masond1310b22008-01-24 16:13:08 -05002872 extent_offset = cur - em->start;
2873 BUG_ON(extent_map_end(em) <= cur);
2874 BUG_ON(end < cur);
2875
Li Zefan261507a02010-12-17 14:21:50 +08002876 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002877 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002878 extent_set_compress_type(&this_bio_flag,
2879 em->compress_type);
2880 }
Chris Masonc8b97812008-10-29 14:49:59 -04002881
Chris Masond1310b22008-01-24 16:13:08 -05002882 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2883 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002884 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002885 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2886 disk_io_size = em->block_len;
2887 sector = em->block_start >> 9;
2888 } else {
2889 sector = (em->block_start + extent_offset) >> 9;
2890 disk_io_size = iosize;
2891 }
Chris Masond1310b22008-01-24 16:13:08 -05002892 bdev = em->bdev;
2893 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002894 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2895 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002896 free_extent_map(em);
2897 em = NULL;
2898
2899 /* we've found a hole, just zero and go on */
2900 if (block_start == EXTENT_MAP_HOLE) {
2901 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002902 struct extent_state *cached = NULL;
2903
Cong Wang7ac687d2011-11-25 23:14:28 +08002904 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002905 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002906 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002907 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002908
2909 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002910 &cached, GFP_NOFS);
2911 unlock_extent_cached(tree, cur, cur + iosize - 1,
2912 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002913 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002914 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002915 continue;
2916 }
2917 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002918 if (test_range_bit(tree, cur, cur_end,
2919 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002920 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002921 if (!parent_locked)
2922 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002923 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002924 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002925 continue;
2926 }
Chris Mason70dec802008-01-29 09:59:12 -05002927 /* we have an inline extent but it didn't get marked up
2928 * to date. Error out
2929 */
2930 if (block_start == EXTENT_MAP_INLINE) {
2931 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002932 if (!parent_locked)
2933 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002934 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002935 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002936 continue;
2937 }
Chris Masond1310b22008-01-24 16:13:08 -05002938
Josef Bacikc8f2f242013-02-11 11:33:00 -05002939 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002940 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002941 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002942 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002943 end_bio_extent_readpage, mirror_num,
2944 *bio_flags,
2945 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002946 if (!ret) {
2947 nr++;
2948 *bio_flags = this_bio_flag;
2949 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002950 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002951 if (!parent_locked)
2952 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04002953 }
Chris Masond1310b22008-01-24 16:13:08 -05002954 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002955 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002956 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002957out:
Chris Masond1310b22008-01-24 16:13:08 -05002958 if (!nr) {
2959 if (!PageError(page))
2960 SetPageUptodate(page);
2961 unlock_page(page);
2962 }
2963 return 0;
2964}
2965
Miao Xie99740902013-07-25 19:22:36 +08002966static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2967 struct page *pages[], int nr_pages,
2968 u64 start, u64 end,
2969 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002970 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002971 struct bio **bio, int mirror_num,
2972 unsigned long *bio_flags, int rw)
2973{
2974 struct inode *inode;
2975 struct btrfs_ordered_extent *ordered;
2976 int index;
2977
2978 inode = pages[0]->mapping->host;
2979 while (1) {
2980 lock_extent(tree, start, end);
2981 ordered = btrfs_lookup_ordered_range(inode, start,
2982 end - start + 1);
2983 if (!ordered)
2984 break;
2985 unlock_extent(tree, start, end);
2986 btrfs_start_ordered_extent(inode, ordered, 1);
2987 btrfs_put_ordered_extent(ordered);
2988 }
2989
2990 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08002991 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
2992 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08002993 page_cache_release(pages[index]);
2994 }
2995}
2996
2997static void __extent_readpages(struct extent_io_tree *tree,
2998 struct page *pages[],
2999 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003000 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003001 struct bio **bio, int mirror_num,
3002 unsigned long *bio_flags, int rw)
3003{
Stefan Behrens35a36212013-08-14 18:12:25 +02003004 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003005 u64 end = 0;
3006 u64 page_start;
3007 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003008 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003009
3010 for (index = 0; index < nr_pages; index++) {
3011 page_start = page_offset(pages[index]);
3012 if (!end) {
3013 start = page_start;
3014 end = start + PAGE_CACHE_SIZE - 1;
3015 first_index = index;
3016 } else if (end + 1 == page_start) {
3017 end += PAGE_CACHE_SIZE;
3018 } else {
3019 __do_contiguous_readpages(tree, &pages[first_index],
3020 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003021 end, get_extent, em_cached,
3022 bio, mirror_num, bio_flags,
3023 rw);
Miao Xie99740902013-07-25 19:22:36 +08003024 start = page_start;
3025 end = start + PAGE_CACHE_SIZE - 1;
3026 first_index = index;
3027 }
3028 }
3029
3030 if (end)
3031 __do_contiguous_readpages(tree, &pages[first_index],
3032 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003033 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08003034 mirror_num, bio_flags, rw);
3035}
3036
3037static int __extent_read_full_page(struct extent_io_tree *tree,
3038 struct page *page,
3039 get_extent_t *get_extent,
3040 struct bio **bio, int mirror_num,
3041 unsigned long *bio_flags, int rw)
3042{
3043 struct inode *inode = page->mapping->host;
3044 struct btrfs_ordered_extent *ordered;
3045 u64 start = page_offset(page);
3046 u64 end = start + PAGE_CACHE_SIZE - 1;
3047 int ret;
3048
3049 while (1) {
3050 lock_extent(tree, start, end);
3051 ordered = btrfs_lookup_ordered_extent(inode, start);
3052 if (!ordered)
3053 break;
3054 unlock_extent(tree, start, end);
3055 btrfs_start_ordered_extent(inode, ordered, 1);
3056 btrfs_put_ordered_extent(ordered);
3057 }
3058
Miao Xie125bac012013-07-25 19:22:37 +08003059 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3060 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003061 return ret;
3062}
3063
Chris Masond1310b22008-01-24 16:13:08 -05003064int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003065 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003066{
3067 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003068 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003069 int ret;
3070
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003071 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003072 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003073 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003074 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003075 return ret;
3076}
Chris Masond1310b22008-01-24 16:13:08 -05003077
Mark Fasheh4b384312013-08-06 11:42:50 -07003078int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3079 get_extent_t *get_extent, int mirror_num)
3080{
3081 struct bio *bio = NULL;
3082 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3083 int ret;
3084
3085 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3086 &bio_flags, READ);
3087 if (bio)
3088 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3089 return ret;
3090}
3091
Chris Mason11c83492009-04-20 15:50:09 -04003092static noinline void update_nr_written(struct page *page,
3093 struct writeback_control *wbc,
3094 unsigned long nr_written)
3095{
3096 wbc->nr_to_write -= nr_written;
3097 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3098 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3099 page->mapping->writeback_index = page->index + nr_written;
3100}
3101
Chris Masond1310b22008-01-24 16:13:08 -05003102/*
3103 * the writepage semantics are similar to regular writepage. extent
3104 * records are inserted to lock ranges in the tree, and as dirty areas
3105 * are found, they are marked writeback. Then the lock bits are removed
3106 * and the end_io handler clears the writeback ranges
3107 */
3108static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3109 void *data)
3110{
3111 struct inode *inode = page->mapping->host;
3112 struct extent_page_data *epd = data;
3113 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003114 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003115 u64 delalloc_start;
3116 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3117 u64 end;
3118 u64 cur = start;
3119 u64 extent_offset;
3120 u64 last_byte = i_size_read(inode);
3121 u64 block_start;
3122 u64 iosize;
3123 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003124 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003125 struct extent_map *em;
3126 struct block_device *bdev;
3127 int ret;
3128 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003129 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003130 size_t blocksize;
3131 loff_t i_size = i_size_read(inode);
3132 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3133 u64 nr_delalloc;
3134 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04003135 int page_started;
3136 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04003137 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05003138 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003139 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05003140
Chris Masonffbd5172009-04-20 15:50:09 -04003141 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01003142 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04003143 else
3144 write_flags = WRITE;
3145
liubo1abe9b82011-03-24 11:18:59 +00003146 trace___extent_writepage(page, inode, wbc);
3147
Chris Masond1310b22008-01-24 16:13:08 -05003148 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04003149
3150 ClearPageError(page);
3151
Chris Mason7f3c74f2008-07-18 12:01:11 -04003152 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04003153 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04003154 (page->index == end_index && !pg_offset)) {
Lukas Czernerd47992f2013-05-21 23:17:23 -04003155 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05003156 unlock_page(page);
3157 return 0;
3158 }
3159
3160 if (page->index == end_index) {
3161 char *userpage;
3162
Cong Wang7ac687d2011-11-25 23:14:28 +08003163 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003164 memset(userpage + pg_offset, 0,
3165 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003166 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003167 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003168 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003169 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003170
3171 set_page_extent_mapped(page);
3172
Josef Bacik9e487102011-08-01 12:08:18 -04003173 if (!tree->ops || !tree->ops->fill_delalloc)
3174 fill_delalloc = false;
3175
Chris Masond1310b22008-01-24 16:13:08 -05003176 delalloc_start = start;
3177 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003178 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003179 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003180 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003181 /*
3182 * make sure the wbc mapping index is at least updated
3183 * to this page.
3184 */
3185 update_nr_written(page, wbc, 0);
3186
Chris Masond3977122009-01-05 21:25:51 -05003187 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003188 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003189 page,
3190 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003191 &delalloc_end,
3192 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003193 if (nr_delalloc == 0) {
3194 delalloc_start = delalloc_end + 1;
3195 continue;
3196 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003197 ret = tree->ops->fill_delalloc(inode, page,
3198 delalloc_start,
3199 delalloc_end,
3200 &page_started,
3201 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003202 /* File system has been set read-only */
3203 if (ret) {
3204 SetPageError(page);
3205 goto done;
3206 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003207 /*
3208 * delalloc_end is already one less than the total
3209 * length, so we don't subtract one from
3210 * PAGE_CACHE_SIZE
3211 */
3212 delalloc_to_write += (delalloc_end - delalloc_start +
3213 PAGE_CACHE_SIZE) >>
3214 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003215 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003216 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003217 if (wbc->nr_to_write < delalloc_to_write) {
3218 int thresh = 8192;
3219
3220 if (delalloc_to_write < thresh * 2)
3221 thresh = delalloc_to_write;
3222 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3223 thresh);
3224 }
Chris Masonc8b97812008-10-29 14:49:59 -04003225
Chris Mason771ed682008-11-06 22:02:51 -05003226 /* did the fill delalloc function already unlock and start
3227 * the IO?
3228 */
3229 if (page_started) {
3230 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003231 /*
3232 * we've unlocked the page, so we can't update
3233 * the mapping's writeback index, just update
3234 * nr_to_write.
3235 */
3236 wbc->nr_to_write -= nr_written;
3237 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003238 }
Chris Masonc8b97812008-10-29 14:49:59 -04003239 }
Chris Mason247e7432008-07-17 12:53:51 -04003240 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003241 ret = tree->ops->writepage_start_hook(page, start,
3242 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003243 if (ret) {
3244 /* Fixup worker will requeue */
3245 if (ret == -EBUSY)
3246 wbc->pages_skipped++;
3247 else
3248 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003249 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003250 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003251 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003252 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003253 }
3254 }
3255
Chris Mason11c83492009-04-20 15:50:09 -04003256 /*
3257 * we don't want to touch the inode after unlocking the page,
3258 * so we update the mapping writeback index now
3259 */
3260 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003261
Chris Masond1310b22008-01-24 16:13:08 -05003262 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003263 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003264 if (tree->ops && tree->ops->writepage_end_io_hook)
3265 tree->ops->writepage_end_io_hook(page, start,
3266 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003267 goto done;
3268 }
3269
Chris Masond1310b22008-01-24 16:13:08 -05003270 blocksize = inode->i_sb->s_blocksize;
3271
3272 while (cur <= end) {
3273 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003274 if (tree->ops && tree->ops->writepage_end_io_hook)
3275 tree->ops->writepage_end_io_hook(page, cur,
3276 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003277 break;
3278 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003279 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003280 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003281 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003282 SetPageError(page);
3283 break;
3284 }
3285
3286 extent_offset = cur - em->start;
3287 BUG_ON(extent_map_end(em) <= cur);
3288 BUG_ON(end < cur);
3289 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003290 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003291 sector = (em->block_start + extent_offset) >> 9;
3292 bdev = em->bdev;
3293 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003294 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003295 free_extent_map(em);
3296 em = NULL;
3297
Chris Masonc8b97812008-10-29 14:49:59 -04003298 /*
3299 * compressed and inline extents are written through other
3300 * paths in the FS
3301 */
3302 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003303 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003304 /*
3305 * end_io notification does not happen here for
3306 * compressed extents
3307 */
3308 if (!compressed && tree->ops &&
3309 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003310 tree->ops->writepage_end_io_hook(page, cur,
3311 cur + iosize - 1,
3312 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003313 else if (compressed) {
3314 /* we don't want to end_page_writeback on
3315 * a compressed extent. this happens
3316 * elsewhere
3317 */
3318 nr++;
3319 }
3320
3321 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003322 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003323 continue;
3324 }
Chris Masond1310b22008-01-24 16:13:08 -05003325 /* leave this out until we have a page_mkwrite call */
3326 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003327 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003328 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003329 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003330 continue;
3331 }
Chris Masonc8b97812008-10-29 14:49:59 -04003332
Chris Masond1310b22008-01-24 16:13:08 -05003333 if (tree->ops && tree->ops->writepage_io_hook) {
3334 ret = tree->ops->writepage_io_hook(page, cur,
3335 cur + iosize - 1);
3336 } else {
3337 ret = 0;
3338 }
Chris Mason1259ab72008-05-12 13:39:03 -04003339 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003340 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003341 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003342 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003343
Chris Masond1310b22008-01-24 16:13:08 -05003344 set_range_writeback(tree, cur, cur + iosize - 1);
3345 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003346 btrfs_err(BTRFS_I(inode)->root->fs_info,
3347 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003348 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003349 }
3350
Chris Masonffbd5172009-04-20 15:50:09 -04003351 ret = submit_extent_page(write_flags, tree, page,
3352 sector, iosize, pg_offset,
3353 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003354 end_bio_extent_writepage,
3355 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003356 if (ret)
3357 SetPageError(page);
3358 }
3359 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003360 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003361 nr++;
3362 }
3363done:
3364 if (nr == 0) {
3365 /* make sure the mapping tag for page dirty gets cleared */
3366 set_page_writeback(page);
3367 end_page_writeback(page);
3368 }
Chris Masond1310b22008-01-24 16:13:08 -05003369 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003370
Chris Mason11c83492009-04-20 15:50:09 -04003371done_unlocked:
3372
Chris Mason2c64c532009-09-02 15:04:12 -04003373 /* drop our reference on any cached states */
3374 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003375 return 0;
3376}
3377
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003378static int eb_wait(void *word)
3379{
3380 io_schedule();
3381 return 0;
3382}
3383
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003384void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003385{
3386 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3387 TASK_UNINTERRUPTIBLE);
3388}
3389
3390static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3391 struct btrfs_fs_info *fs_info,
3392 struct extent_page_data *epd)
3393{
3394 unsigned long i, num_pages;
3395 int flush = 0;
3396 int ret = 0;
3397
3398 if (!btrfs_try_tree_write_lock(eb)) {
3399 flush = 1;
3400 flush_write_bio(epd);
3401 btrfs_tree_lock(eb);
3402 }
3403
3404 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3405 btrfs_tree_unlock(eb);
3406 if (!epd->sync_io)
3407 return 0;
3408 if (!flush) {
3409 flush_write_bio(epd);
3410 flush = 1;
3411 }
Chris Masona098d8e2012-03-21 12:09:56 -04003412 while (1) {
3413 wait_on_extent_buffer_writeback(eb);
3414 btrfs_tree_lock(eb);
3415 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3416 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003417 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003418 }
3419 }
3420
Josef Bacik51561ff2012-07-20 16:25:24 -04003421 /*
3422 * We need to do this to prevent races in people who check if the eb is
3423 * under IO since we can end up having no IO bits set for a short period
3424 * of time.
3425 */
3426 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003427 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3428 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003429 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003430 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003431 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3432 -eb->len,
3433 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003434 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003435 } else {
3436 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003437 }
3438
3439 btrfs_tree_unlock(eb);
3440
3441 if (!ret)
3442 return ret;
3443
3444 num_pages = num_extent_pages(eb->start, eb->len);
3445 for (i = 0; i < num_pages; i++) {
3446 struct page *p = extent_buffer_page(eb, i);
3447
3448 if (!trylock_page(p)) {
3449 if (!flush) {
3450 flush_write_bio(epd);
3451 flush = 1;
3452 }
3453 lock_page(p);
3454 }
3455 }
3456
3457 return ret;
3458}
3459
3460static void end_extent_buffer_writeback(struct extent_buffer *eb)
3461{
3462 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3463 smp_mb__after_clear_bit();
3464 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3465}
3466
3467static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3468{
3469 int uptodate = err == 0;
3470 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3471 struct extent_buffer *eb;
3472 int done;
3473
3474 do {
3475 struct page *page = bvec->bv_page;
3476
3477 bvec--;
3478 eb = (struct extent_buffer *)page->private;
3479 BUG_ON(!eb);
3480 done = atomic_dec_and_test(&eb->io_pages);
3481
3482 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3483 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3484 ClearPageUptodate(page);
3485 SetPageError(page);
3486 }
3487
3488 end_page_writeback(page);
3489
3490 if (!done)
3491 continue;
3492
3493 end_extent_buffer_writeback(eb);
3494 } while (bvec >= bio->bi_io_vec);
3495
3496 bio_put(bio);
3497
3498}
3499
3500static int write_one_eb(struct extent_buffer *eb,
3501 struct btrfs_fs_info *fs_info,
3502 struct writeback_control *wbc,
3503 struct extent_page_data *epd)
3504{
3505 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003506 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003507 u64 offset = eb->start;
3508 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003509 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003510 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003511 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003512
3513 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3514 num_pages = num_extent_pages(eb->start, eb->len);
3515 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003516 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3517 bio_flags = EXTENT_BIO_TREE_LOG;
3518
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003519 for (i = 0; i < num_pages; i++) {
3520 struct page *p = extent_buffer_page(eb, i);
3521
3522 clear_page_dirty_for_io(p);
3523 set_page_writeback(p);
Josef Bacikf28491e2013-12-16 13:24:27 -05003524 ret = submit_extent_page(rw, tree, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003525 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3526 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003527 0, epd->bio_flags, bio_flags);
3528 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003529 if (ret) {
3530 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3531 SetPageError(p);
3532 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3533 end_extent_buffer_writeback(eb);
3534 ret = -EIO;
3535 break;
3536 }
3537 offset += PAGE_CACHE_SIZE;
3538 update_nr_written(p, wbc, 1);
3539 unlock_page(p);
3540 }
3541
3542 if (unlikely(ret)) {
3543 for (; i < num_pages; i++) {
3544 struct page *p = extent_buffer_page(eb, i);
3545 unlock_page(p);
3546 }
3547 }
3548
3549 return ret;
3550}
3551
3552int btree_write_cache_pages(struct address_space *mapping,
3553 struct writeback_control *wbc)
3554{
3555 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3556 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3557 struct extent_buffer *eb, *prev_eb = NULL;
3558 struct extent_page_data epd = {
3559 .bio = NULL,
3560 .tree = tree,
3561 .extent_locked = 0,
3562 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003563 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003564 };
3565 int ret = 0;
3566 int done = 0;
3567 int nr_to_write_done = 0;
3568 struct pagevec pvec;
3569 int nr_pages;
3570 pgoff_t index;
3571 pgoff_t end; /* Inclusive */
3572 int scanned = 0;
3573 int tag;
3574
3575 pagevec_init(&pvec, 0);
3576 if (wbc->range_cyclic) {
3577 index = mapping->writeback_index; /* Start from prev offset */
3578 end = -1;
3579 } else {
3580 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3581 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3582 scanned = 1;
3583 }
3584 if (wbc->sync_mode == WB_SYNC_ALL)
3585 tag = PAGECACHE_TAG_TOWRITE;
3586 else
3587 tag = PAGECACHE_TAG_DIRTY;
3588retry:
3589 if (wbc->sync_mode == WB_SYNC_ALL)
3590 tag_pages_for_writeback(mapping, index, end);
3591 while (!done && !nr_to_write_done && (index <= end) &&
3592 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3593 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3594 unsigned i;
3595
3596 scanned = 1;
3597 for (i = 0; i < nr_pages; i++) {
3598 struct page *page = pvec.pages[i];
3599
3600 if (!PagePrivate(page))
3601 continue;
3602
3603 if (!wbc->range_cyclic && page->index > end) {
3604 done = 1;
3605 break;
3606 }
3607
Josef Bacikb5bae262012-09-14 13:43:01 -04003608 spin_lock(&mapping->private_lock);
3609 if (!PagePrivate(page)) {
3610 spin_unlock(&mapping->private_lock);
3611 continue;
3612 }
3613
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003614 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003615
3616 /*
3617 * Shouldn't happen and normally this would be a BUG_ON
3618 * but no sense in crashing the users box for something
3619 * we can survive anyway.
3620 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303621 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003622 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003623 continue;
3624 }
3625
Josef Bacikb5bae262012-09-14 13:43:01 -04003626 if (eb == prev_eb) {
3627 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003628 continue;
3629 }
3630
Josef Bacikb5bae262012-09-14 13:43:01 -04003631 ret = atomic_inc_not_zero(&eb->refs);
3632 spin_unlock(&mapping->private_lock);
3633 if (!ret)
3634 continue;
3635
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003636 prev_eb = eb;
3637 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3638 if (!ret) {
3639 free_extent_buffer(eb);
3640 continue;
3641 }
3642
3643 ret = write_one_eb(eb, fs_info, wbc, &epd);
3644 if (ret) {
3645 done = 1;
3646 free_extent_buffer(eb);
3647 break;
3648 }
3649 free_extent_buffer(eb);
3650
3651 /*
3652 * the filesystem may choose to bump up nr_to_write.
3653 * We have to make sure to honor the new nr_to_write
3654 * at any time
3655 */
3656 nr_to_write_done = wbc->nr_to_write <= 0;
3657 }
3658 pagevec_release(&pvec);
3659 cond_resched();
3660 }
3661 if (!scanned && !done) {
3662 /*
3663 * We hit the last page and there is more work to be done: wrap
3664 * back to the start of the file
3665 */
3666 scanned = 1;
3667 index = 0;
3668 goto retry;
3669 }
3670 flush_write_bio(&epd);
3671 return ret;
3672}
3673
Chris Masond1310b22008-01-24 16:13:08 -05003674/**
Chris Mason4bef0842008-09-08 11:18:08 -04003675 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
Chris Masond1310b22008-01-24 16:13:08 -05003676 * @mapping: address space structure to write
3677 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3678 * @writepage: function called for each page
3679 * @data: data passed to writepage function
3680 *
3681 * If a page is already under I/O, write_cache_pages() skips it, even
3682 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3683 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3684 * and msync() need to guarantee that all the data which was dirty at the time
3685 * the call was made get new I/O started against them. If wbc->sync_mode is
3686 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3687 * existing IO to complete.
3688 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003689static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003690 struct address_space *mapping,
3691 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003692 writepage_t writepage, void *data,
3693 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003694{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003695 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003696 int ret = 0;
3697 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003698 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003699 struct pagevec pvec;
3700 int nr_pages;
3701 pgoff_t index;
3702 pgoff_t end; /* Inclusive */
3703 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003704 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003705
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003706 /*
3707 * We have to hold onto the inode so that ordered extents can do their
3708 * work when the IO finishes. The alternative to this is failing to add
3709 * an ordered extent if the igrab() fails there and that is a huge pain
3710 * to deal with, so instead just hold onto the inode throughout the
3711 * writepages operation. If it fails here we are freeing up the inode
3712 * anyway and we'd rather not waste our time writing out stuff that is
3713 * going to be truncated anyway.
3714 */
3715 if (!igrab(inode))
3716 return 0;
3717
Chris Masond1310b22008-01-24 16:13:08 -05003718 pagevec_init(&pvec, 0);
3719 if (wbc->range_cyclic) {
3720 index = mapping->writeback_index; /* Start from prev offset */
3721 end = -1;
3722 } else {
3723 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3724 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003725 scanned = 1;
3726 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003727 if (wbc->sync_mode == WB_SYNC_ALL)
3728 tag = PAGECACHE_TAG_TOWRITE;
3729 else
3730 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003731retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003732 if (wbc->sync_mode == WB_SYNC_ALL)
3733 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003734 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003735 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3736 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003737 unsigned i;
3738
3739 scanned = 1;
3740 for (i = 0; i < nr_pages; i++) {
3741 struct page *page = pvec.pages[i];
3742
3743 /*
3744 * At this point we hold neither mapping->tree_lock nor
3745 * lock on the page itself: the page may be truncated or
3746 * invalidated (changing page->mapping to NULL), or even
3747 * swizzled back from swapper_space to tmpfs file
3748 * mapping
3749 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003750 if (!trylock_page(page)) {
3751 flush_fn(data);
3752 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003753 }
Chris Masond1310b22008-01-24 16:13:08 -05003754
3755 if (unlikely(page->mapping != mapping)) {
3756 unlock_page(page);
3757 continue;
3758 }
3759
3760 if (!wbc->range_cyclic && page->index > end) {
3761 done = 1;
3762 unlock_page(page);
3763 continue;
3764 }
3765
Chris Masond2c3f4f2008-11-19 12:44:22 -05003766 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003767 if (PageWriteback(page))
3768 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003769 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003770 }
Chris Masond1310b22008-01-24 16:13:08 -05003771
3772 if (PageWriteback(page) ||
3773 !clear_page_dirty_for_io(page)) {
3774 unlock_page(page);
3775 continue;
3776 }
3777
3778 ret = (*writepage)(page, wbc, data);
3779
3780 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3781 unlock_page(page);
3782 ret = 0;
3783 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003784 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003785 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003786
3787 /*
3788 * the filesystem may choose to bump up nr_to_write.
3789 * We have to make sure to honor the new nr_to_write
3790 * at any time
3791 */
3792 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003793 }
3794 pagevec_release(&pvec);
3795 cond_resched();
3796 }
3797 if (!scanned && !done) {
3798 /*
3799 * We hit the last page and there is more work to be done: wrap
3800 * back to the start of the file
3801 */
3802 scanned = 1;
3803 index = 0;
3804 goto retry;
3805 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003806 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003807 return ret;
3808}
Chris Masond1310b22008-01-24 16:13:08 -05003809
Chris Masonffbd5172009-04-20 15:50:09 -04003810static void flush_epd_write_bio(struct extent_page_data *epd)
3811{
3812 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003813 int rw = WRITE;
3814 int ret;
3815
Chris Masonffbd5172009-04-20 15:50:09 -04003816 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003817 rw = WRITE_SYNC;
3818
Josef Bacikde0022b2012-09-25 14:25:58 -04003819 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003820 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003821 epd->bio = NULL;
3822 }
3823}
3824
Chris Masond2c3f4f2008-11-19 12:44:22 -05003825static noinline void flush_write_bio(void *data)
3826{
3827 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003828 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003829}
3830
Chris Masond1310b22008-01-24 16:13:08 -05003831int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3832 get_extent_t *get_extent,
3833 struct writeback_control *wbc)
3834{
3835 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003836 struct extent_page_data epd = {
3837 .bio = NULL,
3838 .tree = tree,
3839 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003840 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003841 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003842 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003843 };
Chris Masond1310b22008-01-24 16:13:08 -05003844
Chris Masond1310b22008-01-24 16:13:08 -05003845 ret = __extent_writepage(page, wbc, &epd);
3846
Chris Masonffbd5172009-04-20 15:50:09 -04003847 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003848 return ret;
3849}
Chris Masond1310b22008-01-24 16:13:08 -05003850
Chris Mason771ed682008-11-06 22:02:51 -05003851int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3852 u64 start, u64 end, get_extent_t *get_extent,
3853 int mode)
3854{
3855 int ret = 0;
3856 struct address_space *mapping = inode->i_mapping;
3857 struct page *page;
3858 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3859 PAGE_CACHE_SHIFT;
3860
3861 struct extent_page_data epd = {
3862 .bio = NULL,
3863 .tree = tree,
3864 .get_extent = get_extent,
3865 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003866 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003867 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003868 };
3869 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003870 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003871 .nr_to_write = nr_pages * 2,
3872 .range_start = start,
3873 .range_end = end + 1,
3874 };
3875
Chris Masond3977122009-01-05 21:25:51 -05003876 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003877 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3878 if (clear_page_dirty_for_io(page))
3879 ret = __extent_writepage(page, &wbc_writepages, &epd);
3880 else {
3881 if (tree->ops && tree->ops->writepage_end_io_hook)
3882 tree->ops->writepage_end_io_hook(page, start,
3883 start + PAGE_CACHE_SIZE - 1,
3884 NULL, 1);
3885 unlock_page(page);
3886 }
3887 page_cache_release(page);
3888 start += PAGE_CACHE_SIZE;
3889 }
3890
Chris Masonffbd5172009-04-20 15:50:09 -04003891 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003892 return ret;
3893}
Chris Masond1310b22008-01-24 16:13:08 -05003894
3895int extent_writepages(struct extent_io_tree *tree,
3896 struct address_space *mapping,
3897 get_extent_t *get_extent,
3898 struct writeback_control *wbc)
3899{
3900 int ret = 0;
3901 struct extent_page_data epd = {
3902 .bio = NULL,
3903 .tree = tree,
3904 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003905 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003906 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003907 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003908 };
3909
Chris Mason4bef0842008-09-08 11:18:08 -04003910 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003911 __extent_writepage, &epd,
3912 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003913 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003914 return ret;
3915}
Chris Masond1310b22008-01-24 16:13:08 -05003916
3917int extent_readpages(struct extent_io_tree *tree,
3918 struct address_space *mapping,
3919 struct list_head *pages, unsigned nr_pages,
3920 get_extent_t get_extent)
3921{
3922 struct bio *bio = NULL;
3923 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003924 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003925 struct page *pagepool[16];
3926 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08003927 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06003928 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003929
Chris Masond1310b22008-01-24 16:13:08 -05003930 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003931 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003932
3933 prefetchw(&page->flags);
3934 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003935 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003936 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003937 page_cache_release(page);
3938 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003939 }
Liu Bo67c96842012-07-20 21:43:09 -06003940
3941 pagepool[nr++] = page;
3942 if (nr < ARRAY_SIZE(pagepool))
3943 continue;
Miao Xie125bac012013-07-25 19:22:37 +08003944 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003945 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003946 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003947 }
Miao Xie99740902013-07-25 19:22:36 +08003948 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08003949 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003950 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003951
Miao Xie125bac012013-07-25 19:22:37 +08003952 if (em_cached)
3953 free_extent_map(em_cached);
3954
Chris Masond1310b22008-01-24 16:13:08 -05003955 BUG_ON(!list_empty(pages));
3956 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003957 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003958 return 0;
3959}
Chris Masond1310b22008-01-24 16:13:08 -05003960
3961/*
3962 * basic invalidatepage code, this waits on any locked or writeback
3963 * ranges corresponding to the page, and then deletes any extent state
3964 * records from the tree
3965 */
3966int extent_invalidatepage(struct extent_io_tree *tree,
3967 struct page *page, unsigned long offset)
3968{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003969 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003970 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003971 u64 end = start + PAGE_CACHE_SIZE - 1;
3972 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3973
Qu Wenruofda28322013-02-26 08:10:22 +00003974 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003975 if (start > end)
3976 return 0;
3977
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003978 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003979 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003980 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003981 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3982 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003983 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003984 return 0;
3985}
Chris Masond1310b22008-01-24 16:13:08 -05003986
3987/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003988 * a helper for releasepage, this tests for areas of the page that
3989 * are locked or under IO and drops the related state bits if it is safe
3990 * to drop the page.
3991 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003992static int try_release_extent_state(struct extent_map_tree *map,
3993 struct extent_io_tree *tree,
3994 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003995{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003996 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003997 u64 end = start + PAGE_CACHE_SIZE - 1;
3998 int ret = 1;
3999
Chris Mason211f90e2008-07-18 11:56:15 -04004000 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004001 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004002 ret = 0;
4003 else {
4004 if ((mask & GFP_NOFS) == GFP_NOFS)
4005 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004006 /*
4007 * at this point we can safely clear everything except the
4008 * locked bit and the nodatasum bit
4009 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004010 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004011 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4012 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004013
4014 /* if clear_extent_bit failed for enomem reasons,
4015 * we can't allow the release to continue.
4016 */
4017 if (ret < 0)
4018 ret = 0;
4019 else
4020 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004021 }
4022 return ret;
4023}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004024
4025/*
Chris Masond1310b22008-01-24 16:13:08 -05004026 * a helper for releasepage. As long as there are no locked extents
4027 * in the range corresponding to the page, both state records and extent
4028 * map records are removed
4029 */
4030int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004031 struct extent_io_tree *tree, struct page *page,
4032 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004033{
4034 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004035 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004036 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004037
Chris Mason70dec802008-01-29 09:59:12 -05004038 if ((mask & __GFP_WAIT) &&
4039 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004040 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004041 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004042 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004043 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004044 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004045 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004046 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004047 break;
4048 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004049 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4050 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004051 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004052 free_extent_map(em);
4053 break;
4054 }
4055 if (!test_range_bit(tree, em->start,
4056 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004057 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004058 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004059 remove_extent_mapping(map, em);
4060 /* once for the rb tree */
4061 free_extent_map(em);
4062 }
4063 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004064 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004065
4066 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004067 free_extent_map(em);
4068 }
Chris Masond1310b22008-01-24 16:13:08 -05004069 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004070 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004071}
Chris Masond1310b22008-01-24 16:13:08 -05004072
Chris Masonec29ed52011-02-23 16:23:20 -05004073/*
4074 * helper function for fiemap, which doesn't want to see any holes.
4075 * This maps until we find something past 'last'
4076 */
4077static struct extent_map *get_extent_skip_holes(struct inode *inode,
4078 u64 offset,
4079 u64 last,
4080 get_extent_t *get_extent)
4081{
4082 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4083 struct extent_map *em;
4084 u64 len;
4085
4086 if (offset >= last)
4087 return NULL;
4088
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304089 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004090 len = last - offset;
4091 if (len == 0)
4092 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004093 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004094 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004095 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004096 return em;
4097
4098 /* if this isn't a hole return it */
4099 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4100 em->block_start != EXTENT_MAP_HOLE) {
4101 return em;
4102 }
4103
4104 /* this is a hole, advance to the next extent */
4105 offset = extent_map_end(em);
4106 free_extent_map(em);
4107 if (offset >= last)
4108 break;
4109 }
4110 return NULL;
4111}
4112
Liu Bofe09e162013-09-22 12:54:23 +08004113static noinline int count_ext_ref(u64 inum, u64 offset, u64 root_id, void *ctx)
4114{
4115 unsigned long cnt = *((unsigned long *)ctx);
4116
4117 cnt++;
4118 *((unsigned long *)ctx) = cnt;
4119
4120 /* Now we're sure that the extent is shared. */
4121 if (cnt > 1)
4122 return 1;
4123 return 0;
4124}
4125
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004126int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4127 __u64 start, __u64 len, get_extent_t *get_extent)
4128{
Josef Bacik975f84f2010-11-23 19:36:57 +00004129 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004130 u64 off = start;
4131 u64 max = start + len;
4132 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004133 u32 found_type;
4134 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004135 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004136 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004137 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004138 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004139 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004140 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004141 struct btrfs_path *path;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004142 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004143 u64 em_start = 0;
4144 u64 em_len = 0;
4145 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004146
4147 if (len == 0)
4148 return -EINVAL;
4149
Josef Bacik975f84f2010-11-23 19:36:57 +00004150 path = btrfs_alloc_path();
4151 if (!path)
4152 return -ENOMEM;
4153 path->leave_spinning = 1;
4154
Josef Bacik4d479cf2011-11-17 11:34:31 -05004155 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
4156 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
4157
Chris Masonec29ed52011-02-23 16:23:20 -05004158 /*
4159 * lookup the last file extent. We're not using i_size here
4160 * because there might be preallocation past i_size
4161 */
Josef Bacik975f84f2010-11-23 19:36:57 +00004162 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08004163 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004164 if (ret < 0) {
4165 btrfs_free_path(path);
4166 return ret;
4167 }
4168 WARN_ON(!ret);
4169 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004170 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4171 found_type = btrfs_key_type(&found_key);
4172
Chris Masonec29ed52011-02-23 16:23:20 -05004173 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004174 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004175 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004176 /* have to trust i_size as the end */
4177 last = (u64)-1;
4178 last_for_get_extent = isize;
4179 } else {
4180 /*
4181 * remember the start of the last extent. There are a
4182 * bunch of different factors that go into the length of the
4183 * extent, so its much less complex to remember where it started
4184 */
4185 last = found_key.offset;
4186 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004187 }
Liu Bofe09e162013-09-22 12:54:23 +08004188 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004189
Chris Masonec29ed52011-02-23 16:23:20 -05004190 /*
4191 * we might have some extents allocated but more delalloc past those
4192 * extents. so, we trust isize unless the start of the last extent is
4193 * beyond isize
4194 */
4195 if (last < isize) {
4196 last = (u64)-1;
4197 last_for_get_extent = isize;
4198 }
4199
Liu Boa52f4cd2013-05-01 16:23:41 +00004200 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004201 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004202
Josef Bacik4d479cf2011-11-17 11:34:31 -05004203 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004204 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004205 if (!em)
4206 goto out;
4207 if (IS_ERR(em)) {
4208 ret = PTR_ERR(em);
4209 goto out;
4210 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004211
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004212 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004213 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004214
Chris Masonea8efc72011-03-08 11:54:40 -05004215 /* break if the extent we found is outside the range */
4216 if (em->start >= max || extent_map_end(em) < off)
4217 break;
4218
4219 /*
4220 * get_extent may return an extent that starts before our
4221 * requested range. We have to make sure the ranges
4222 * we return to fiemap always move forward and don't
4223 * overlap, so adjust the offsets here
4224 */
4225 em_start = max(em->start, off);
4226
4227 /*
4228 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004229 * for adjusting the disk offset below. Only do this if the
4230 * extent isn't compressed since our in ram offset may be past
4231 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004232 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004233 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4234 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004235 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004236 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004237 disko = 0;
4238 flags = 0;
4239
Chris Masonea8efc72011-03-08 11:54:40 -05004240 /*
4241 * bump off for our next call to get_extent
4242 */
4243 off = extent_map_end(em);
4244 if (off >= max)
4245 end = 1;
4246
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004247 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004248 end = 1;
4249 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004250 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004251 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4252 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004253 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004254 flags |= (FIEMAP_EXTENT_DELALLOC |
4255 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004256 } else {
Liu Bofe09e162013-09-22 12:54:23 +08004257 unsigned long ref_cnt = 0;
4258
Chris Masonea8efc72011-03-08 11:54:40 -05004259 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004260
4261 /*
4262 * As btrfs supports shared space, this information
4263 * can be exported to userspace tools via
4264 * flag FIEMAP_EXTENT_SHARED.
4265 */
4266 ret = iterate_inodes_from_logical(
4267 em->block_start,
4268 BTRFS_I(inode)->root->fs_info,
4269 path, count_ext_ref, &ref_cnt);
4270 if (ret < 0 && ret != -ENOENT)
4271 goto out_free;
4272
4273 if (ref_cnt > 1)
4274 flags |= FIEMAP_EXTENT_SHARED;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004275 }
4276 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4277 flags |= FIEMAP_EXTENT_ENCODED;
4278
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004279 free_extent_map(em);
4280 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004281 if ((em_start >= last) || em_len == (u64)-1 ||
4282 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004283 flags |= FIEMAP_EXTENT_LAST;
4284 end = 1;
4285 }
4286
Chris Masonec29ed52011-02-23 16:23:20 -05004287 /* now scan forward to see if this is really the last extent. */
4288 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4289 get_extent);
4290 if (IS_ERR(em)) {
4291 ret = PTR_ERR(em);
4292 goto out;
4293 }
4294 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004295 flags |= FIEMAP_EXTENT_LAST;
4296 end = 1;
4297 }
Chris Masonec29ed52011-02-23 16:23:20 -05004298 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4299 em_len, flags);
4300 if (ret)
4301 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004302 }
4303out_free:
4304 free_extent_map(em);
4305out:
Liu Bofe09e162013-09-22 12:54:23 +08004306 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004307 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004308 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004309 return ret;
4310}
4311
Chris Mason727011e2010-08-06 13:21:20 -04004312static void __free_extent_buffer(struct extent_buffer *eb)
4313{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004314 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004315 kmem_cache_free(extent_buffer_cache, eb);
4316}
4317
Josef Bacika26e8c92014-03-28 17:07:27 -04004318int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004319{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004320 return (atomic_read(&eb->io_pages) ||
4321 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4322 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004323}
4324
Miao Xie897ca6e2010-10-26 20:57:29 -04004325/*
4326 * Helper for releasing extent buffer page.
4327 */
4328static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4329 unsigned long start_idx)
4330{
4331 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004332 unsigned long num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004333 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004334 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004335
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004336 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004337
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004338 num_pages = num_extent_pages(eb->start, eb->len);
4339 index = start_idx + num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004340 if (start_idx >= index)
4341 return;
4342
4343 do {
4344 index--;
4345 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004346 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004347 spin_lock(&page->mapping->private_lock);
4348 /*
4349 * We do this since we'll remove the pages after we've
4350 * removed the eb from the radix tree, so we could race
4351 * and have this page now attached to the new eb. So
4352 * only clear page_private if it's still connected to
4353 * this eb.
4354 */
4355 if (PagePrivate(page) &&
4356 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004357 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004358 BUG_ON(PageDirty(page));
4359 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004360 /*
4361 * We need to make sure we haven't be attached
4362 * to a new eb.
4363 */
4364 ClearPagePrivate(page);
4365 set_page_private(page, 0);
4366 /* One for the page private */
4367 page_cache_release(page);
4368 }
4369 spin_unlock(&page->mapping->private_lock);
4370
Jan Schmidt815a51c2012-05-16 17:00:02 +02004371 }
4372 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004373 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004374 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004375 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004376 } while (index != start_idx);
4377}
4378
4379/*
4380 * Helper for releasing the extent buffer.
4381 */
4382static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4383{
4384 btrfs_release_extent_buffer_page(eb, 0);
4385 __free_extent_buffer(eb);
4386}
4387
Josef Bacikf28491e2013-12-16 13:24:27 -05004388static struct extent_buffer *
4389__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
4390 unsigned long len, gfp_t mask)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004391{
4392 struct extent_buffer *eb = NULL;
4393
4394 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4395 if (eb == NULL)
4396 return NULL;
4397 eb->start = start;
4398 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004399 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004400 eb->bflags = 0;
4401 rwlock_init(&eb->lock);
4402 atomic_set(&eb->write_locks, 0);
4403 atomic_set(&eb->read_locks, 0);
4404 atomic_set(&eb->blocking_readers, 0);
4405 atomic_set(&eb->blocking_writers, 0);
4406 atomic_set(&eb->spinning_readers, 0);
4407 atomic_set(&eb->spinning_writers, 0);
4408 eb->lock_nested = 0;
4409 init_waitqueue_head(&eb->write_lock_wq);
4410 init_waitqueue_head(&eb->read_lock_wq);
4411
4412 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4413
4414 spin_lock_init(&eb->refs_lock);
4415 atomic_set(&eb->refs, 1);
4416 atomic_set(&eb->io_pages, 0);
4417
4418 /*
4419 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4420 */
4421 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4422 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4423 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4424
4425 return eb;
4426}
4427
4428struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4429{
4430 unsigned long i;
4431 struct page *p;
4432 struct extent_buffer *new;
4433 unsigned long num_pages = num_extent_pages(src->start, src->len);
4434
Josef Bacik9ec72672013-08-07 16:57:23 -04004435 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004436 if (new == NULL)
4437 return NULL;
4438
4439 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004440 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004441 if (!p) {
4442 btrfs_release_extent_buffer(new);
4443 return NULL;
4444 }
4445 attach_extent_buffer_page(new, p);
4446 WARN_ON(PageDirty(p));
4447 SetPageUptodate(p);
4448 new->pages[i] = p;
4449 }
4450
4451 copy_extent_buffer(new, src, 0, 0, src->len);
4452 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4453 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4454
4455 return new;
4456}
4457
4458struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4459{
4460 struct extent_buffer *eb;
4461 unsigned long num_pages = num_extent_pages(0, len);
4462 unsigned long i;
4463
Josef Bacik9ec72672013-08-07 16:57:23 -04004464 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004465 if (!eb)
4466 return NULL;
4467
4468 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004469 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004470 if (!eb->pages[i])
4471 goto err;
4472 }
4473 set_extent_buffer_uptodate(eb);
4474 btrfs_set_header_nritems(eb, 0);
4475 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4476
4477 return eb;
4478err:
4479 for (; i > 0; i--)
4480 __free_page(eb->pages[i - 1]);
4481 __free_extent_buffer(eb);
4482 return NULL;
4483}
4484
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004485static void check_buffer_tree_ref(struct extent_buffer *eb)
4486{
Chris Mason242e18c2013-01-29 17:49:37 -05004487 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004488 /* the ref bit is tricky. We have to make sure it is set
4489 * if we have the buffer dirty. Otherwise the
4490 * code to free a buffer can end up dropping a dirty
4491 * page
4492 *
4493 * Once the ref bit is set, it won't go away while the
4494 * buffer is dirty or in writeback, and it also won't
4495 * go away while we have the reference count on the
4496 * eb bumped.
4497 *
4498 * We can't just set the ref bit without bumping the
4499 * ref on the eb because free_extent_buffer might
4500 * see the ref bit and try to clear it. If this happens
4501 * free_extent_buffer might end up dropping our original
4502 * ref by mistake and freeing the page before we are able
4503 * to add one more ref.
4504 *
4505 * So bump the ref count first, then set the bit. If someone
4506 * beat us to it, drop the ref we added.
4507 */
Chris Mason242e18c2013-01-29 17:49:37 -05004508 refs = atomic_read(&eb->refs);
4509 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4510 return;
4511
Josef Bacik594831c2012-07-20 16:11:08 -04004512 spin_lock(&eb->refs_lock);
4513 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004514 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004515 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004516}
4517
Josef Bacik5df42352012-03-15 18:24:42 -04004518static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4519{
4520 unsigned long num_pages, i;
4521
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004522 check_buffer_tree_ref(eb);
4523
Josef Bacik5df42352012-03-15 18:24:42 -04004524 num_pages = num_extent_pages(eb->start, eb->len);
4525 for (i = 0; i < num_pages; i++) {
4526 struct page *p = extent_buffer_page(eb, i);
4527 mark_page_accessed(p);
4528 }
4529}
4530
Josef Bacikf28491e2013-12-16 13:24:27 -05004531struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4532 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004533{
4534 struct extent_buffer *eb;
4535
4536 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004537 eb = radix_tree_lookup(&fs_info->buffer_radix,
4538 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004539 if (eb && atomic_inc_not_zero(&eb->refs)) {
4540 rcu_read_unlock();
4541 mark_extent_buffer_accessed(eb);
4542 return eb;
4543 }
4544 rcu_read_unlock();
4545
4546 return NULL;
4547}
4548
Josef Bacikf28491e2013-12-16 13:24:27 -05004549struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
Chris Mason727011e2010-08-06 13:21:20 -04004550 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004551{
4552 unsigned long num_pages = num_extent_pages(start, len);
4553 unsigned long i;
4554 unsigned long index = start >> PAGE_CACHE_SHIFT;
4555 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004556 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004557 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004558 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004559 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004560 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004561
Josef Bacikf28491e2013-12-16 13:24:27 -05004562 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004563 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004564 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004565
Josef Bacikf28491e2013-12-16 13:24:27 -05004566 eb = __alloc_extent_buffer(fs_info, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004567 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004568 return NULL;
4569
Chris Mason727011e2010-08-06 13:21:20 -04004570 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004571 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004572 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004573 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004574
4575 spin_lock(&mapping->private_lock);
4576 if (PagePrivate(p)) {
4577 /*
4578 * We could have already allocated an eb for this page
4579 * and attached one so lets see if we can get a ref on
4580 * the existing eb, and if we can we know it's good and
4581 * we can just return that one, else we know we can just
4582 * overwrite page->private.
4583 */
4584 exists = (struct extent_buffer *)p->private;
4585 if (atomic_inc_not_zero(&exists->refs)) {
4586 spin_unlock(&mapping->private_lock);
4587 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004588 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004589 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004590 goto free_eb;
4591 }
4592
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004593 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004594 * Do this so attach doesn't complain and we need to
4595 * drop the ref the old guy had.
4596 */
4597 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004598 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004599 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004600 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004601 attach_extent_buffer_page(eb, p);
4602 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004603 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004604 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004605 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004606 if (!PageUptodate(p))
4607 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004608
4609 /*
4610 * see below about how we avoid a nasty race with release page
4611 * and why we unlock later
4612 */
Chris Masond1310b22008-01-24 16:13:08 -05004613 }
4614 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004615 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004616again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004617 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4618 if (ret)
4619 goto free_eb;
4620
Josef Bacikf28491e2013-12-16 13:24:27 -05004621 spin_lock(&fs_info->buffer_lock);
4622 ret = radix_tree_insert(&fs_info->buffer_radix,
4623 start >> PAGE_CACHE_SHIFT, eb);
4624 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004625 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004626 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004627 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004628 if (exists)
4629 goto free_eb;
4630 else
Josef Bacik115391d2012-03-09 09:51:43 -05004631 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004632 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004633 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004634 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004635 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004636
4637 /*
4638 * there is a race where release page may have
4639 * tried to find this extent buffer in the radix
4640 * but failed. It will tell the VM it is safe to
4641 * reclaim the, and it will clear the page private bit.
4642 * We must make sure to set the page private bit properly
4643 * after the extent buffer is in the radix tree so
4644 * it doesn't get lost
4645 */
Chris Mason727011e2010-08-06 13:21:20 -04004646 SetPageChecked(eb->pages[0]);
4647 for (i = 1; i < num_pages; i++) {
4648 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004649 ClearPageChecked(p);
4650 unlock_page(p);
4651 }
4652 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004653 return eb;
4654
Chris Mason6af118ce2008-07-22 11:18:07 -04004655free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004656 for (i = 0; i < num_pages; i++) {
4657 if (eb->pages[i])
4658 unlock_page(eb->pages[i]);
4659 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004660
Josef Bacik17de39a2012-05-04 15:16:06 -04004661 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004662 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004663 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004664}
Chris Masond1310b22008-01-24 16:13:08 -05004665
Josef Bacik3083ee22012-03-09 16:01:49 -05004666static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4667{
4668 struct extent_buffer *eb =
4669 container_of(head, struct extent_buffer, rcu_head);
4670
4671 __free_extent_buffer(eb);
4672}
4673
Josef Bacik3083ee22012-03-09 16:01:49 -05004674/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004675static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004676{
4677 WARN_ON(atomic_read(&eb->refs) == 0);
4678 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05004679 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004680 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05004681
Jan Schmidt815a51c2012-05-16 17:00:02 +02004682 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004683
Josef Bacikf28491e2013-12-16 13:24:27 -05004684 spin_lock(&fs_info->buffer_lock);
4685 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02004686 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05004687 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004688 } else {
4689 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004690 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004691
4692 /* Should be safe to release our pages at this point */
4693 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004694 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004695 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004696 }
4697 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004698
4699 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004700}
4701
Chris Masond1310b22008-01-24 16:13:08 -05004702void free_extent_buffer(struct extent_buffer *eb)
4703{
Chris Mason242e18c2013-01-29 17:49:37 -05004704 int refs;
4705 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004706 if (!eb)
4707 return;
4708
Chris Mason242e18c2013-01-29 17:49:37 -05004709 while (1) {
4710 refs = atomic_read(&eb->refs);
4711 if (refs <= 3)
4712 break;
4713 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4714 if (old == refs)
4715 return;
4716 }
4717
Josef Bacik3083ee22012-03-09 16:01:49 -05004718 spin_lock(&eb->refs_lock);
4719 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004720 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4721 atomic_dec(&eb->refs);
4722
4723 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004724 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004725 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004726 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4727 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004728
Josef Bacik3083ee22012-03-09 16:01:49 -05004729 /*
4730 * I know this is terrible, but it's temporary until we stop tracking
4731 * the uptodate bits and such for the extent buffers.
4732 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004733 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004734}
Chris Masond1310b22008-01-24 16:13:08 -05004735
Josef Bacik3083ee22012-03-09 16:01:49 -05004736void free_extent_buffer_stale(struct extent_buffer *eb)
4737{
4738 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004739 return;
4740
Josef Bacik3083ee22012-03-09 16:01:49 -05004741 spin_lock(&eb->refs_lock);
4742 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4743
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004744 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004745 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4746 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004747 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004748}
4749
Chris Mason1d4284b2012-03-28 20:31:37 -04004750void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004751{
Chris Masond1310b22008-01-24 16:13:08 -05004752 unsigned long i;
4753 unsigned long num_pages;
4754 struct page *page;
4755
Chris Masond1310b22008-01-24 16:13:08 -05004756 num_pages = num_extent_pages(eb->start, eb->len);
4757
4758 for (i = 0; i < num_pages; i++) {
4759 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004760 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004761 continue;
4762
Chris Masona61e6f22008-07-22 11:18:08 -04004763 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004764 WARN_ON(!PagePrivate(page));
4765
Chris Masond1310b22008-01-24 16:13:08 -05004766 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004767 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004768 if (!PageDirty(page)) {
4769 radix_tree_tag_clear(&page->mapping->page_tree,
4770 page_index(page),
4771 PAGECACHE_TAG_DIRTY);
4772 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004773 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004774 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004775 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004776 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004777 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004778}
Chris Masond1310b22008-01-24 16:13:08 -05004779
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004780int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004781{
4782 unsigned long i;
4783 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004784 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004785
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004786 check_buffer_tree_ref(eb);
4787
Chris Masonb9473432009-03-13 11:00:37 -04004788 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004789
Chris Masond1310b22008-01-24 16:13:08 -05004790 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004791 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004792 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4793
Chris Masonb9473432009-03-13 11:00:37 -04004794 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004795 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004796 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004797}
Chris Masond1310b22008-01-24 16:13:08 -05004798
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004799int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004800{
4801 unsigned long i;
4802 struct page *page;
4803 unsigned long num_pages;
4804
Chris Masonb4ce94d2009-02-04 09:25:08 -05004805 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004806 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004807 for (i = 0; i < num_pages; i++) {
4808 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004809 if (page)
4810 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004811 }
4812 return 0;
4813}
4814
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004815int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004816{
4817 unsigned long i;
4818 struct page *page;
4819 unsigned long num_pages;
4820
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004821 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004822 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004823 for (i = 0; i < num_pages; i++) {
4824 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004825 SetPageUptodate(page);
4826 }
4827 return 0;
4828}
Chris Masond1310b22008-01-24 16:13:08 -05004829
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004830int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004831{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004832 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004833}
Chris Masond1310b22008-01-24 16:13:08 -05004834
4835int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004836 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004837 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004838{
4839 unsigned long i;
4840 unsigned long start_i;
4841 struct page *page;
4842 int err;
4843 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004844 int locked_pages = 0;
4845 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004846 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004847 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004848 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004849 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004850
Chris Masonb4ce94d2009-02-04 09:25:08 -05004851 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004852 return 0;
4853
Chris Masond1310b22008-01-24 16:13:08 -05004854 if (start) {
4855 WARN_ON(start < eb->start);
4856 start_i = (start >> PAGE_CACHE_SHIFT) -
4857 (eb->start >> PAGE_CACHE_SHIFT);
4858 } else {
4859 start_i = 0;
4860 }
4861
4862 num_pages = num_extent_pages(eb->start, eb->len);
4863 for (i = start_i; i < num_pages; i++) {
4864 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004865 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004866 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004867 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004868 } else {
4869 lock_page(page);
4870 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004871 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004872 if (!PageUptodate(page)) {
4873 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004874 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004875 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004876 }
4877 if (all_uptodate) {
4878 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004879 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004880 goto unlock_exit;
4881 }
4882
Josef Bacikea466792012-03-26 21:57:36 -04004883 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004884 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004885 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004886 for (i = start_i; i < num_pages; i++) {
4887 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004888 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004889 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004890 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004891 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004892 mirror_num, &bio_flags,
4893 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004894 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004895 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004896 } else {
4897 unlock_page(page);
4898 }
4899 }
4900
Jeff Mahoney355808c2011-10-03 23:23:14 -04004901 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004902 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4903 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004904 if (err)
4905 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004906 }
Chris Masona86c12c2008-02-07 10:50:54 -05004907
Arne Jansenbb82ab82011-06-10 14:06:53 +02004908 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004909 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004910
Chris Masond1310b22008-01-24 16:13:08 -05004911 for (i = start_i; i < num_pages; i++) {
4912 page = extent_buffer_page(eb, i);
4913 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004914 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004915 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004916 }
Chris Masond3977122009-01-05 21:25:51 -05004917
Chris Masond1310b22008-01-24 16:13:08 -05004918 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004919
4920unlock_exit:
4921 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004922 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004923 page = extent_buffer_page(eb, i);
4924 i++;
4925 unlock_page(page);
4926 locked_pages--;
4927 }
4928 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004929}
Chris Masond1310b22008-01-24 16:13:08 -05004930
4931void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4932 unsigned long start,
4933 unsigned long len)
4934{
4935 size_t cur;
4936 size_t offset;
4937 struct page *page;
4938 char *kaddr;
4939 char *dst = (char *)dstv;
4940 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4941 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004942
4943 WARN_ON(start > eb->len);
4944 WARN_ON(start + len > eb->start + eb->len);
4945
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004946 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004947
Chris Masond3977122009-01-05 21:25:51 -05004948 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004949 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004950
4951 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004952 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004953 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004954
4955 dst += cur;
4956 len -= cur;
4957 offset = 0;
4958 i++;
4959 }
4960}
Chris Masond1310b22008-01-24 16:13:08 -05004961
4962int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004963 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004964 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004965 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004966{
4967 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4968 char *kaddr;
4969 struct page *p;
4970 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4971 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4972 unsigned long end_i = (start_offset + start + min_len - 1) >>
4973 PAGE_CACHE_SHIFT;
4974
4975 if (i != end_i)
4976 return -EINVAL;
4977
4978 if (i == 0) {
4979 offset = start_offset;
4980 *map_start = 0;
4981 } else {
4982 offset = 0;
4983 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4984 }
Chris Masond3977122009-01-05 21:25:51 -05004985
Chris Masond1310b22008-01-24 16:13:08 -05004986 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004987 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004988 "wanted %lu %lu\n",
4989 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004990 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004991 }
4992
4993 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004994 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004995 *map = kaddr + offset;
4996 *map_len = PAGE_CACHE_SIZE - offset;
4997 return 0;
4998}
Chris Masond1310b22008-01-24 16:13:08 -05004999
Chris Masond1310b22008-01-24 16:13:08 -05005000int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5001 unsigned long start,
5002 unsigned long len)
5003{
5004 size_t cur;
5005 size_t offset;
5006 struct page *page;
5007 char *kaddr;
5008 char *ptr = (char *)ptrv;
5009 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5010 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5011 int ret = 0;
5012
5013 WARN_ON(start > eb->len);
5014 WARN_ON(start + len > eb->start + eb->len);
5015
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005016 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005017
Chris Masond3977122009-01-05 21:25:51 -05005018 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005019 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05005020
5021 cur = min(len, (PAGE_CACHE_SIZE - offset));
5022
Chris Masona6591712011-07-19 12:04:14 -04005023 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005024 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005025 if (ret)
5026 break;
5027
5028 ptr += cur;
5029 len -= cur;
5030 offset = 0;
5031 i++;
5032 }
5033 return ret;
5034}
Chris Masond1310b22008-01-24 16:13:08 -05005035
5036void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5037 unsigned long start, unsigned long len)
5038{
5039 size_t cur;
5040 size_t offset;
5041 struct page *page;
5042 char *kaddr;
5043 char *src = (char *)srcv;
5044 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5045 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5046
5047 WARN_ON(start > eb->len);
5048 WARN_ON(start + len > eb->start + eb->len);
5049
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005050 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005051
Chris Masond3977122009-01-05 21:25:51 -05005052 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005053 page = extent_buffer_page(eb, i);
5054 WARN_ON(!PageUptodate(page));
5055
5056 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005057 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005058 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005059
5060 src += cur;
5061 len -= cur;
5062 offset = 0;
5063 i++;
5064 }
5065}
Chris Masond1310b22008-01-24 16:13:08 -05005066
5067void memset_extent_buffer(struct extent_buffer *eb, char c,
5068 unsigned long start, unsigned long len)
5069{
5070 size_t cur;
5071 size_t offset;
5072 struct page *page;
5073 char *kaddr;
5074 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5075 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5076
5077 WARN_ON(start > eb->len);
5078 WARN_ON(start + len > eb->start + eb->len);
5079
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005080 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005081
Chris Masond3977122009-01-05 21:25:51 -05005082 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005083 page = extent_buffer_page(eb, i);
5084 WARN_ON(!PageUptodate(page));
5085
5086 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005087 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005088 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005089
5090 len -= cur;
5091 offset = 0;
5092 i++;
5093 }
5094}
Chris Masond1310b22008-01-24 16:13:08 -05005095
5096void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5097 unsigned long dst_offset, unsigned long src_offset,
5098 unsigned long len)
5099{
5100 u64 dst_len = dst->len;
5101 size_t cur;
5102 size_t offset;
5103 struct page *page;
5104 char *kaddr;
5105 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5106 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5107
5108 WARN_ON(src->len != dst_len);
5109
5110 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005111 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005112
Chris Masond3977122009-01-05 21:25:51 -05005113 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005114 page = extent_buffer_page(dst, i);
5115 WARN_ON(!PageUptodate(page));
5116
5117 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5118
Chris Masona6591712011-07-19 12:04:14 -04005119 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005120 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005121
5122 src_offset += cur;
5123 len -= cur;
5124 offset = 0;
5125 i++;
5126 }
5127}
Chris Masond1310b22008-01-24 16:13:08 -05005128
Sergei Trofimovich33872062011-04-11 21:52:52 +00005129static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5130{
5131 unsigned long distance = (src > dst) ? src - dst : dst - src;
5132 return distance < len;
5133}
5134
Chris Masond1310b22008-01-24 16:13:08 -05005135static void copy_pages(struct page *dst_page, struct page *src_page,
5136 unsigned long dst_off, unsigned long src_off,
5137 unsigned long len)
5138{
Chris Masona6591712011-07-19 12:04:14 -04005139 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005140 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005141 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005142
Sergei Trofimovich33872062011-04-11 21:52:52 +00005143 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005144 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005145 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005146 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005147 if (areas_overlap(src_off, dst_off, len))
5148 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005149 }
Chris Masond1310b22008-01-24 16:13:08 -05005150
Chris Mason727011e2010-08-06 13:21:20 -04005151 if (must_memmove)
5152 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5153 else
5154 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005155}
5156
5157void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5158 unsigned long src_offset, unsigned long len)
5159{
5160 size_t cur;
5161 size_t dst_off_in_page;
5162 size_t src_off_in_page;
5163 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5164 unsigned long dst_i;
5165 unsigned long src_i;
5166
5167 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005168 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005169 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005170 BUG_ON(1);
5171 }
5172 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005173 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005174 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005175 BUG_ON(1);
5176 }
5177
Chris Masond3977122009-01-05 21:25:51 -05005178 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005179 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005180 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005181 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005182 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005183
5184 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5185 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5186
5187 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5188 src_off_in_page));
5189 cur = min_t(unsigned long, cur,
5190 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5191
5192 copy_pages(extent_buffer_page(dst, dst_i),
5193 extent_buffer_page(dst, src_i),
5194 dst_off_in_page, src_off_in_page, cur);
5195
5196 src_offset += cur;
5197 dst_offset += cur;
5198 len -= cur;
5199 }
5200}
Chris Masond1310b22008-01-24 16:13:08 -05005201
5202void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5203 unsigned long src_offset, unsigned long len)
5204{
5205 size_t cur;
5206 size_t dst_off_in_page;
5207 size_t src_off_in_page;
5208 unsigned long dst_end = dst_offset + len - 1;
5209 unsigned long src_end = src_offset + len - 1;
5210 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5211 unsigned long dst_i;
5212 unsigned long src_i;
5213
5214 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005215 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005216 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005217 BUG_ON(1);
5218 }
5219 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005220 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005221 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005222 BUG_ON(1);
5223 }
Chris Mason727011e2010-08-06 13:21:20 -04005224 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005225 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5226 return;
5227 }
Chris Masond3977122009-01-05 21:25:51 -05005228 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005229 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5230 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5231
5232 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005233 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005234 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005235 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005236
5237 cur = min_t(unsigned long, len, src_off_in_page + 1);
5238 cur = min(cur, dst_off_in_page + 1);
Zach Brown1877e1a2013-10-16 12:10:33 -07005239 copy_pages(extent_buffer_page(dst, dst_i),
Chris Masond1310b22008-01-24 16:13:08 -05005240 extent_buffer_page(dst, src_i),
5241 dst_off_in_page - cur + 1,
5242 src_off_in_page - cur + 1, cur);
5243
5244 dst_end -= cur;
5245 src_end -= cur;
5246 len -= cur;
5247 }
5248}
Chris Mason6af118ce2008-07-22 11:18:07 -04005249
David Sterbaf7a52a42013-04-26 14:56:29 +00005250int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005251{
Chris Mason6af118ce2008-07-22 11:18:07 -04005252 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005253
Miao Xie19fe0a82010-10-26 20:57:29 -04005254 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005255 * We need to make sure noboody is attaching this page to an eb right
5256 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005257 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005258 spin_lock(&page->mapping->private_lock);
5259 if (!PagePrivate(page)) {
5260 spin_unlock(&page->mapping->private_lock);
5261 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005262 }
5263
Josef Bacik3083ee22012-03-09 16:01:49 -05005264 eb = (struct extent_buffer *)page->private;
5265 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005266
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005267 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005268 * This is a little awful but should be ok, we need to make sure that
5269 * the eb doesn't disappear out from under us while we're looking at
5270 * this page.
5271 */
5272 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005273 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005274 spin_unlock(&eb->refs_lock);
5275 spin_unlock(&page->mapping->private_lock);
5276 return 0;
5277 }
5278 spin_unlock(&page->mapping->private_lock);
5279
Josef Bacik3083ee22012-03-09 16:01:49 -05005280 /*
5281 * If tree ref isn't set then we know the ref on this eb is a real ref,
5282 * so just return, this page will likely be freed soon anyway.
5283 */
5284 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5285 spin_unlock(&eb->refs_lock);
5286 return 0;
5287 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005288
David Sterbaf7a52a42013-04-26 14:56:29 +00005289 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005290}