Btrfs: do file data check by sub-bio's self
[linux-2.6-block.git] / fs / btrfs / extent_io.c
CommitLineData
d1310b2e
CM
1#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
d1310b2e
CM
5#include <linux/pagemap.h>
6#include <linux/page-flags.h>
d1310b2e
CM
7#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
d1310b2e
CM
10#include <linux/writeback.h>
11#include <linux/pagevec.h>
268bb0ce 12#include <linux/prefetch.h>
90a887c9 13#include <linux/cleancache.h>
d1310b2e
CM
14#include "extent_io.h"
15#include "extent_map.h"
902b22f3
DW
16#include "ctree.h"
17#include "btrfs_inode.h"
4a54c8c1 18#include "volumes.h"
21adbd5c 19#include "check-integrity.h"
0b32f4bb 20#include "locking.h"
606686ee 21#include "rcu-string.h"
fe09e16c 22#include "backref.h"
d1310b2e 23
d1310b2e
CM
24static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
9be3395b 26static struct bio_set *btrfs_bioset;
d1310b2e 27
27a3507d
FM
28static inline bool extent_state_in_tree(const struct extent_state *state)
29{
30 return !RB_EMPTY_NODE(&state->rb_node);
31}
32
6d49ba1b 33#ifdef CONFIG_BTRFS_DEBUG
d1310b2e
CM
34static LIST_HEAD(buffers);
35static LIST_HEAD(states);
4bef0848 36
d397712b 37static DEFINE_SPINLOCK(leak_lock);
6d49ba1b
ES
38
39static inline
40void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
41{
42 unsigned long flags;
43
44 spin_lock_irqsave(&leak_lock, flags);
45 list_add(new, head);
46 spin_unlock_irqrestore(&leak_lock, flags);
47}
48
49static inline
50void btrfs_leak_debug_del(struct list_head *entry)
51{
52 unsigned long flags;
53
54 spin_lock_irqsave(&leak_lock, flags);
55 list_del(entry);
56 spin_unlock_irqrestore(&leak_lock, flags);
57}
58
59static inline
60void btrfs_leak_debug_check(void)
61{
62 struct extent_state *state;
63 struct extent_buffer *eb;
64
65 while (!list_empty(&states)) {
66 state = list_entry(states.next, struct extent_state, leak_list);
27a3507d
FM
67 pr_err("BTRFS: state leak: start %llu end %llu state %lu in tree %d refs %d\n",
68 state->start, state->end, state->state,
69 extent_state_in_tree(state),
c1c9ff7c 70 atomic_read(&state->refs));
6d49ba1b
ES
71 list_del(&state->leak_list);
72 kmem_cache_free(extent_state_cache, state);
73 }
74
75 while (!list_empty(&buffers)) {
76 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
efe120a0 77 printk(KERN_ERR "BTRFS: buffer leak start %llu len %lu "
c1c9ff7c
GU
78 "refs %d\n",
79 eb->start, eb->len, atomic_read(&eb->refs));
6d49ba1b
ES
80 list_del(&eb->leak_list);
81 kmem_cache_free(extent_buffer_cache, eb);
82 }
83}
8d599ae1 84
a5dee37d
JB
85#define btrfs_debug_check_extent_io_range(tree, start, end) \
86 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
8d599ae1 87static inline void __btrfs_debug_check_extent_io_range(const char *caller,
a5dee37d 88 struct extent_io_tree *tree, u64 start, u64 end)
8d599ae1 89{
a5dee37d
JB
90 struct inode *inode;
91 u64 isize;
8d599ae1 92
a5dee37d
JB
93 if (!tree->mapping)
94 return;
8d599ae1 95
a5dee37d
JB
96 inode = tree->mapping->host;
97 isize = i_size_read(inode);
8d599ae1
DS
98 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
99 printk_ratelimited(KERN_DEBUG
efe120a0 100 "BTRFS: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
c1c9ff7c 101 caller, btrfs_ino(inode), isize, start, end);
8d599ae1
DS
102 }
103}
6d49ba1b
ES
104#else
105#define btrfs_leak_debug_add(new, head) do {} while (0)
106#define btrfs_leak_debug_del(entry) do {} while (0)
107#define btrfs_leak_debug_check() do {} while (0)
8d599ae1 108#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
4bef0848 109#endif
d1310b2e 110
d1310b2e
CM
111#define BUFFER_LRU_MAX 64
112
113struct tree_entry {
114 u64 start;
115 u64 end;
d1310b2e
CM
116 struct rb_node rb_node;
117};
118
119struct extent_page_data {
120 struct bio *bio;
121 struct extent_io_tree *tree;
122 get_extent_t *get_extent;
de0022b9 123 unsigned long bio_flags;
771ed689
CM
124
125 /* tells writepage not to lock the state bits for this range
126 * it still does the unlocking
127 */
ffbd517d
CM
128 unsigned int extent_locked:1;
129
130 /* tells the submit_bio code to use a WRITE_SYNC */
131 unsigned int sync_io:1;
d1310b2e
CM
132};
133
0b32f4bb 134static noinline void flush_write_bio(void *data);
c2d904e0
JM
135static inline struct btrfs_fs_info *
136tree_fs_info(struct extent_io_tree *tree)
137{
a5dee37d
JB
138 if (!tree->mapping)
139 return NULL;
c2d904e0
JM
140 return btrfs_sb(tree->mapping->host->i_sb);
141}
0b32f4bb 142
d1310b2e
CM
143int __init extent_io_init(void)
144{
837e1972 145 extent_state_cache = kmem_cache_create("btrfs_extent_state",
9601e3f6
CH
146 sizeof(struct extent_state), 0,
147 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
d1310b2e
CM
148 if (!extent_state_cache)
149 return -ENOMEM;
150
837e1972 151 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
9601e3f6
CH
152 sizeof(struct extent_buffer), 0,
153 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
d1310b2e
CM
154 if (!extent_buffer_cache)
155 goto free_state_cache;
9be3395b
CM
156
157 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
158 offsetof(struct btrfs_io_bio, bio));
159 if (!btrfs_bioset)
160 goto free_buffer_cache;
b208c2f7
DW
161
162 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
163 goto free_bioset;
164
d1310b2e
CM
165 return 0;
166
b208c2f7
DW
167free_bioset:
168 bioset_free(btrfs_bioset);
169 btrfs_bioset = NULL;
170
9be3395b
CM
171free_buffer_cache:
172 kmem_cache_destroy(extent_buffer_cache);
173 extent_buffer_cache = NULL;
174
d1310b2e
CM
175free_state_cache:
176 kmem_cache_destroy(extent_state_cache);
9be3395b 177 extent_state_cache = NULL;
d1310b2e
CM
178 return -ENOMEM;
179}
180
181void extent_io_exit(void)
182{
6d49ba1b 183 btrfs_leak_debug_check();
8c0a8537
KS
184
185 /*
186 * Make sure all delayed rcu free are flushed before we
187 * destroy caches.
188 */
189 rcu_barrier();
d1310b2e
CM
190 if (extent_state_cache)
191 kmem_cache_destroy(extent_state_cache);
192 if (extent_buffer_cache)
193 kmem_cache_destroy(extent_buffer_cache);
9be3395b
CM
194 if (btrfs_bioset)
195 bioset_free(btrfs_bioset);
d1310b2e
CM
196}
197
198void extent_io_tree_init(struct extent_io_tree *tree,
f993c883 199 struct address_space *mapping)
d1310b2e 200{
6bef4d31 201 tree->state = RB_ROOT;
d1310b2e
CM
202 tree->ops = NULL;
203 tree->dirty_bytes = 0;
70dec807 204 spin_lock_init(&tree->lock);
d1310b2e 205 tree->mapping = mapping;
d1310b2e 206}
d1310b2e 207
b2950863 208static struct extent_state *alloc_extent_state(gfp_t mask)
d1310b2e
CM
209{
210 struct extent_state *state;
d1310b2e
CM
211
212 state = kmem_cache_alloc(extent_state_cache, mask);
2b114d1d 213 if (!state)
d1310b2e
CM
214 return state;
215 state->state = 0;
d1310b2e 216 state->private = 0;
27a3507d 217 RB_CLEAR_NODE(&state->rb_node);
6d49ba1b 218 btrfs_leak_debug_add(&state->leak_list, &states);
d1310b2e
CM
219 atomic_set(&state->refs, 1);
220 init_waitqueue_head(&state->wq);
143bede5 221 trace_alloc_extent_state(state, mask, _RET_IP_);
d1310b2e
CM
222 return state;
223}
d1310b2e 224
4845e44f 225void free_extent_state(struct extent_state *state)
d1310b2e 226{
d1310b2e
CM
227 if (!state)
228 return;
229 if (atomic_dec_and_test(&state->refs)) {
27a3507d 230 WARN_ON(extent_state_in_tree(state));
6d49ba1b 231 btrfs_leak_debug_del(&state->leak_list);
143bede5 232 trace_free_extent_state(state, _RET_IP_);
d1310b2e
CM
233 kmem_cache_free(extent_state_cache, state);
234 }
235}
d1310b2e 236
f2071b21
FM
237static struct rb_node *tree_insert(struct rb_root *root,
238 struct rb_node *search_start,
239 u64 offset,
12cfbad9
FDBM
240 struct rb_node *node,
241 struct rb_node ***p_in,
242 struct rb_node **parent_in)
d1310b2e 243{
f2071b21 244 struct rb_node **p;
d397712b 245 struct rb_node *parent = NULL;
d1310b2e
CM
246 struct tree_entry *entry;
247
12cfbad9
FDBM
248 if (p_in && parent_in) {
249 p = *p_in;
250 parent = *parent_in;
251 goto do_insert;
252 }
253
f2071b21 254 p = search_start ? &search_start : &root->rb_node;
d397712b 255 while (*p) {
d1310b2e
CM
256 parent = *p;
257 entry = rb_entry(parent, struct tree_entry, rb_node);
258
259 if (offset < entry->start)
260 p = &(*p)->rb_left;
261 else if (offset > entry->end)
262 p = &(*p)->rb_right;
263 else
264 return parent;
265 }
266
12cfbad9 267do_insert:
d1310b2e
CM
268 rb_link_node(node, parent, p);
269 rb_insert_color(node, root);
270 return NULL;
271}
272
80ea96b1 273static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
12cfbad9
FDBM
274 struct rb_node **prev_ret,
275 struct rb_node **next_ret,
276 struct rb_node ***p_ret,
277 struct rb_node **parent_ret)
d1310b2e 278{
80ea96b1 279 struct rb_root *root = &tree->state;
12cfbad9 280 struct rb_node **n = &root->rb_node;
d1310b2e
CM
281 struct rb_node *prev = NULL;
282 struct rb_node *orig_prev = NULL;
283 struct tree_entry *entry;
284 struct tree_entry *prev_entry = NULL;
285
12cfbad9
FDBM
286 while (*n) {
287 prev = *n;
288 entry = rb_entry(prev, struct tree_entry, rb_node);
d1310b2e
CM
289 prev_entry = entry;
290
291 if (offset < entry->start)
12cfbad9 292 n = &(*n)->rb_left;
d1310b2e 293 else if (offset > entry->end)
12cfbad9 294 n = &(*n)->rb_right;
d397712b 295 else
12cfbad9 296 return *n;
d1310b2e
CM
297 }
298
12cfbad9
FDBM
299 if (p_ret)
300 *p_ret = n;
301 if (parent_ret)
302 *parent_ret = prev;
303
d1310b2e
CM
304 if (prev_ret) {
305 orig_prev = prev;
d397712b 306 while (prev && offset > prev_entry->end) {
d1310b2e
CM
307 prev = rb_next(prev);
308 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
309 }
310 *prev_ret = prev;
311 prev = orig_prev;
312 }
313
314 if (next_ret) {
315 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
d397712b 316 while (prev && offset < prev_entry->start) {
d1310b2e
CM
317 prev = rb_prev(prev);
318 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
319 }
320 *next_ret = prev;
321 }
322 return NULL;
323}
324
12cfbad9
FDBM
325static inline struct rb_node *
326tree_search_for_insert(struct extent_io_tree *tree,
327 u64 offset,
328 struct rb_node ***p_ret,
329 struct rb_node **parent_ret)
d1310b2e 330{
70dec807 331 struct rb_node *prev = NULL;
d1310b2e 332 struct rb_node *ret;
70dec807 333
12cfbad9 334 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
d397712b 335 if (!ret)
d1310b2e
CM
336 return prev;
337 return ret;
338}
339
12cfbad9
FDBM
340static inline struct rb_node *tree_search(struct extent_io_tree *tree,
341 u64 offset)
342{
343 return tree_search_for_insert(tree, offset, NULL, NULL);
344}
345
9ed74f2d
JB
346static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
347 struct extent_state *other)
348{
349 if (tree->ops && tree->ops->merge_extent_hook)
350 tree->ops->merge_extent_hook(tree->mapping->host, new,
351 other);
352}
353
d1310b2e
CM
354/*
355 * utility function to look for merge candidates inside a given range.
356 * Any extents with matching state are merged together into a single
357 * extent in the tree. Extents with EXTENT_IO in their state field
358 * are not merged because the end_io handlers need to be able to do
359 * operations on them without sleeping (or doing allocations/splits).
360 *
361 * This should be called with the tree lock held.
362 */
1bf85046
JM
363static void merge_state(struct extent_io_tree *tree,
364 struct extent_state *state)
d1310b2e
CM
365{
366 struct extent_state *other;
367 struct rb_node *other_node;
368
5b21f2ed 369 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
1bf85046 370 return;
d1310b2e
CM
371
372 other_node = rb_prev(&state->rb_node);
373 if (other_node) {
374 other = rb_entry(other_node, struct extent_state, rb_node);
375 if (other->end == state->start - 1 &&
376 other->state == state->state) {
9ed74f2d 377 merge_cb(tree, state, other);
d1310b2e 378 state->start = other->start;
d1310b2e 379 rb_erase(&other->rb_node, &tree->state);
27a3507d 380 RB_CLEAR_NODE(&other->rb_node);
d1310b2e
CM
381 free_extent_state(other);
382 }
383 }
384 other_node = rb_next(&state->rb_node);
385 if (other_node) {
386 other = rb_entry(other_node, struct extent_state, rb_node);
387 if (other->start == state->end + 1 &&
388 other->state == state->state) {
9ed74f2d 389 merge_cb(tree, state, other);
df98b6e2 390 state->end = other->end;
df98b6e2 391 rb_erase(&other->rb_node, &tree->state);
27a3507d 392 RB_CLEAR_NODE(&other->rb_node);
df98b6e2 393 free_extent_state(other);
d1310b2e
CM
394 }
395 }
d1310b2e
CM
396}
397
1bf85046 398static void set_state_cb(struct extent_io_tree *tree,
41074888 399 struct extent_state *state, unsigned long *bits)
291d673e 400{
1bf85046
JM
401 if (tree->ops && tree->ops->set_bit_hook)
402 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
291d673e
CM
403}
404
405static void clear_state_cb(struct extent_io_tree *tree,
41074888 406 struct extent_state *state, unsigned long *bits)
291d673e 407{
9ed74f2d
JB
408 if (tree->ops && tree->ops->clear_bit_hook)
409 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
291d673e
CM
410}
411
3150b699 412static void set_state_bits(struct extent_io_tree *tree,
41074888 413 struct extent_state *state, unsigned long *bits);
3150b699 414
d1310b2e
CM
415/*
416 * insert an extent_state struct into the tree. 'bits' are set on the
417 * struct before it is inserted.
418 *
419 * This may return -EEXIST if the extent is already there, in which case the
420 * state struct is freed.
421 *
422 * The tree lock is not taken internally. This is a utility function and
423 * probably isn't what you want to call (see set/clear_extent_bit).
424 */
425static int insert_state(struct extent_io_tree *tree,
426 struct extent_state *state, u64 start, u64 end,
12cfbad9
FDBM
427 struct rb_node ***p,
428 struct rb_node **parent,
41074888 429 unsigned long *bits)
d1310b2e
CM
430{
431 struct rb_node *node;
432
31b1a2bd 433 if (end < start)
efe120a0 434 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
c1c9ff7c 435 end, start);
d1310b2e
CM
436 state->start = start;
437 state->end = end;
9ed74f2d 438
3150b699
XG
439 set_state_bits(tree, state, bits);
440
f2071b21 441 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
d1310b2e
CM
442 if (node) {
443 struct extent_state *found;
444 found = rb_entry(node, struct extent_state, rb_node);
efe120a0 445 printk(KERN_ERR "BTRFS: found node %llu %llu on insert of "
c1c9ff7c
GU
446 "%llu %llu\n",
447 found->start, found->end, start, end);
d1310b2e
CM
448 return -EEXIST;
449 }
450 merge_state(tree, state);
451 return 0;
452}
453
1bf85046 454static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
9ed74f2d
JB
455 u64 split)
456{
457 if (tree->ops && tree->ops->split_extent_hook)
1bf85046 458 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
9ed74f2d
JB
459}
460
d1310b2e
CM
461/*
462 * split a given extent state struct in two, inserting the preallocated
463 * struct 'prealloc' as the newly created second half. 'split' indicates an
464 * offset inside 'orig' where it should be split.
465 *
466 * Before calling,
467 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
468 * are two extent state structs in the tree:
469 * prealloc: [orig->start, split - 1]
470 * orig: [ split, orig->end ]
471 *
472 * The tree locks are not taken by this function. They need to be held
473 * by the caller.
474 */
475static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
476 struct extent_state *prealloc, u64 split)
477{
478 struct rb_node *node;
9ed74f2d
JB
479
480 split_cb(tree, orig, split);
481
d1310b2e
CM
482 prealloc->start = orig->start;
483 prealloc->end = split - 1;
484 prealloc->state = orig->state;
485 orig->start = split;
486
f2071b21
FM
487 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
488 &prealloc->rb_node, NULL, NULL);
d1310b2e 489 if (node) {
d1310b2e
CM
490 free_extent_state(prealloc);
491 return -EEXIST;
492 }
493 return 0;
494}
495
cdc6a395
LZ
496static struct extent_state *next_state(struct extent_state *state)
497{
498 struct rb_node *next = rb_next(&state->rb_node);
499 if (next)
500 return rb_entry(next, struct extent_state, rb_node);
501 else
502 return NULL;
503}
504
d1310b2e
CM
505/*
506 * utility function to clear some bits in an extent state struct.
1b303fc0 507 * it will optionally wake up any one waiting on this state (wake == 1).
d1310b2e
CM
508 *
509 * If no bits are set on the state struct after clearing things, the
510 * struct is freed and removed from the tree
511 */
cdc6a395
LZ
512static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
513 struct extent_state *state,
41074888 514 unsigned long *bits, int wake)
d1310b2e 515{
cdc6a395 516 struct extent_state *next;
41074888 517 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
d1310b2e 518
0ca1f7ce 519 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
d1310b2e
CM
520 u64 range = state->end - state->start + 1;
521 WARN_ON(range > tree->dirty_bytes);
522 tree->dirty_bytes -= range;
523 }
291d673e 524 clear_state_cb(tree, state, bits);
32c00aff 525 state->state &= ~bits_to_clear;
d1310b2e
CM
526 if (wake)
527 wake_up(&state->wq);
0ca1f7ce 528 if (state->state == 0) {
cdc6a395 529 next = next_state(state);
27a3507d 530 if (extent_state_in_tree(state)) {
d1310b2e 531 rb_erase(&state->rb_node, &tree->state);
27a3507d 532 RB_CLEAR_NODE(&state->rb_node);
d1310b2e
CM
533 free_extent_state(state);
534 } else {
535 WARN_ON(1);
536 }
537 } else {
538 merge_state(tree, state);
cdc6a395 539 next = next_state(state);
d1310b2e 540 }
cdc6a395 541 return next;
d1310b2e
CM
542}
543
8233767a
XG
544static struct extent_state *
545alloc_extent_state_atomic(struct extent_state *prealloc)
546{
547 if (!prealloc)
548 prealloc = alloc_extent_state(GFP_ATOMIC);
549
550 return prealloc;
551}
552
48a3b636 553static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
c2d904e0
JM
554{
555 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
556 "Extent tree was modified by another "
557 "thread while locked.");
558}
559
d1310b2e
CM
560/*
561 * clear some bits on a range in the tree. This may require splitting
562 * or inserting elements in the tree, so the gfp mask is used to
563 * indicate which allocations or sleeping are allowed.
564 *
565 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
566 * the given range from the tree regardless of state (ie for truncate).
567 *
568 * the range [start, end] is inclusive.
569 *
6763af84 570 * This takes the tree lock, and returns 0 on success and < 0 on error.
d1310b2e
CM
571 */
572int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
41074888 573 unsigned long bits, int wake, int delete,
2c64c53d
CM
574 struct extent_state **cached_state,
575 gfp_t mask)
d1310b2e
CM
576{
577 struct extent_state *state;
2c64c53d 578 struct extent_state *cached;
d1310b2e
CM
579 struct extent_state *prealloc = NULL;
580 struct rb_node *node;
5c939df5 581 u64 last_end;
d1310b2e 582 int err;
2ac55d41 583 int clear = 0;
d1310b2e 584
a5dee37d 585 btrfs_debug_check_extent_io_range(tree, start, end);
8d599ae1 586
7ee9e440
JB
587 if (bits & EXTENT_DELALLOC)
588 bits |= EXTENT_NORESERVE;
589
0ca1f7ce
YZ
590 if (delete)
591 bits |= ~EXTENT_CTLBITS;
592 bits |= EXTENT_FIRST_DELALLOC;
593
2ac55d41
JB
594 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
595 clear = 1;
d1310b2e
CM
596again:
597 if (!prealloc && (mask & __GFP_WAIT)) {
598 prealloc = alloc_extent_state(mask);
599 if (!prealloc)
600 return -ENOMEM;
601 }
602
cad321ad 603 spin_lock(&tree->lock);
2c64c53d
CM
604 if (cached_state) {
605 cached = *cached_state;
2ac55d41
JB
606
607 if (clear) {
608 *cached_state = NULL;
609 cached_state = NULL;
610 }
611
27a3507d
FM
612 if (cached && extent_state_in_tree(cached) &&
613 cached->start <= start && cached->end > start) {
2ac55d41
JB
614 if (clear)
615 atomic_dec(&cached->refs);
2c64c53d 616 state = cached;
42daec29 617 goto hit_next;
2c64c53d 618 }
2ac55d41
JB
619 if (clear)
620 free_extent_state(cached);
2c64c53d 621 }
d1310b2e
CM
622 /*
623 * this search will find the extents that end after
624 * our range starts
625 */
80ea96b1 626 node = tree_search(tree, start);
d1310b2e
CM
627 if (!node)
628 goto out;
629 state = rb_entry(node, struct extent_state, rb_node);
2c64c53d 630hit_next:
d1310b2e
CM
631 if (state->start > end)
632 goto out;
633 WARN_ON(state->end < start);
5c939df5 634 last_end = state->end;
d1310b2e 635
0449314a 636 /* the state doesn't have the wanted bits, go ahead */
cdc6a395
LZ
637 if (!(state->state & bits)) {
638 state = next_state(state);
0449314a 639 goto next;
cdc6a395 640 }
0449314a 641
d1310b2e
CM
642 /*
643 * | ---- desired range ---- |
644 * | state | or
645 * | ------------- state -------------- |
646 *
647 * We need to split the extent we found, and may flip
648 * bits on second half.
649 *
650 * If the extent we found extends past our range, we
651 * just split and search again. It'll get split again
652 * the next time though.
653 *
654 * If the extent we found is inside our range, we clear
655 * the desired bit on it.
656 */
657
658 if (state->start < start) {
8233767a
XG
659 prealloc = alloc_extent_state_atomic(prealloc);
660 BUG_ON(!prealloc);
d1310b2e 661 err = split_state(tree, state, prealloc, start);
c2d904e0
JM
662 if (err)
663 extent_io_tree_panic(tree, err);
664
d1310b2e
CM
665 prealloc = NULL;
666 if (err)
667 goto out;
668 if (state->end <= end) {
d1ac6e41
LB
669 state = clear_state_bit(tree, state, &bits, wake);
670 goto next;
d1310b2e
CM
671 }
672 goto search_again;
673 }
674 /*
675 * | ---- desired range ---- |
676 * | state |
677 * We need to split the extent, and clear the bit
678 * on the first half
679 */
680 if (state->start <= end && state->end > end) {
8233767a
XG
681 prealloc = alloc_extent_state_atomic(prealloc);
682 BUG_ON(!prealloc);
d1310b2e 683 err = split_state(tree, state, prealloc, end + 1);
c2d904e0
JM
684 if (err)
685 extent_io_tree_panic(tree, err);
686
d1310b2e
CM
687 if (wake)
688 wake_up(&state->wq);
42daec29 689
6763af84 690 clear_state_bit(tree, prealloc, &bits, wake);
9ed74f2d 691
d1310b2e
CM
692 prealloc = NULL;
693 goto out;
694 }
42daec29 695
cdc6a395 696 state = clear_state_bit(tree, state, &bits, wake);
0449314a 697next:
5c939df5
YZ
698 if (last_end == (u64)-1)
699 goto out;
700 start = last_end + 1;
cdc6a395 701 if (start <= end && state && !need_resched())
692e5759 702 goto hit_next;
d1310b2e
CM
703 goto search_again;
704
705out:
cad321ad 706 spin_unlock(&tree->lock);
d1310b2e
CM
707 if (prealloc)
708 free_extent_state(prealloc);
709
6763af84 710 return 0;
d1310b2e
CM
711
712search_again:
713 if (start > end)
714 goto out;
cad321ad 715 spin_unlock(&tree->lock);
d1310b2e
CM
716 if (mask & __GFP_WAIT)
717 cond_resched();
718 goto again;
719}
d1310b2e 720
143bede5
JM
721static void wait_on_state(struct extent_io_tree *tree,
722 struct extent_state *state)
641f5219
CH
723 __releases(tree->lock)
724 __acquires(tree->lock)
d1310b2e
CM
725{
726 DEFINE_WAIT(wait);
727 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
cad321ad 728 spin_unlock(&tree->lock);
d1310b2e 729 schedule();
cad321ad 730 spin_lock(&tree->lock);
d1310b2e 731 finish_wait(&state->wq, &wait);
d1310b2e
CM
732}
733
734/*
735 * waits for one or more bits to clear on a range in the state tree.
736 * The range [start, end] is inclusive.
737 * The tree lock is taken by this function
738 */
41074888
DS
739static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
740 unsigned long bits)
d1310b2e
CM
741{
742 struct extent_state *state;
743 struct rb_node *node;
744
a5dee37d 745 btrfs_debug_check_extent_io_range(tree, start, end);
8d599ae1 746
cad321ad 747 spin_lock(&tree->lock);
d1310b2e
CM
748again:
749 while (1) {
750 /*
751 * this search will find all the extents that end after
752 * our range starts
753 */
80ea96b1 754 node = tree_search(tree, start);
c50d3e71 755process_node:
d1310b2e
CM
756 if (!node)
757 break;
758
759 state = rb_entry(node, struct extent_state, rb_node);
760
761 if (state->start > end)
762 goto out;
763
764 if (state->state & bits) {
765 start = state->start;
766 atomic_inc(&state->refs);
767 wait_on_state(tree, state);
768 free_extent_state(state);
769 goto again;
770 }
771 start = state->end + 1;
772
773 if (start > end)
774 break;
775
c50d3e71
FM
776 if (!cond_resched_lock(&tree->lock)) {
777 node = rb_next(node);
778 goto process_node;
779 }
d1310b2e
CM
780 }
781out:
cad321ad 782 spin_unlock(&tree->lock);
d1310b2e 783}
d1310b2e 784
1bf85046 785static void set_state_bits(struct extent_io_tree *tree,
d1310b2e 786 struct extent_state *state,
41074888 787 unsigned long *bits)
d1310b2e 788{
41074888 789 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
9ed74f2d 790
1bf85046 791 set_state_cb(tree, state, bits);
0ca1f7ce 792 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
d1310b2e
CM
793 u64 range = state->end - state->start + 1;
794 tree->dirty_bytes += range;
795 }
0ca1f7ce 796 state->state |= bits_to_set;
d1310b2e
CM
797}
798
2c64c53d
CM
799static void cache_state(struct extent_state *state,
800 struct extent_state **cached_ptr)
801{
802 if (cached_ptr && !(*cached_ptr)) {
803 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
804 *cached_ptr = state;
805 atomic_inc(&state->refs);
806 }
807 }
808}
809
d1310b2e 810/*
1edbb734
CM
811 * set some bits on a range in the tree. This may require allocations or
812 * sleeping, so the gfp mask is used to indicate what is allowed.
d1310b2e 813 *
1edbb734
CM
814 * If any of the exclusive bits are set, this will fail with -EEXIST if some
815 * part of the range already has the desired bits set. The start of the
816 * existing range is returned in failed_start in this case.
d1310b2e 817 *
1edbb734 818 * [start, end] is inclusive This takes the tree lock.
d1310b2e 819 */
1edbb734 820
3fbe5c02
JM
821static int __must_check
822__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
41074888
DS
823 unsigned long bits, unsigned long exclusive_bits,
824 u64 *failed_start, struct extent_state **cached_state,
825 gfp_t mask)
d1310b2e
CM
826{
827 struct extent_state *state;
828 struct extent_state *prealloc = NULL;
829 struct rb_node *node;
12cfbad9
FDBM
830 struct rb_node **p;
831 struct rb_node *parent;
d1310b2e 832 int err = 0;
d1310b2e
CM
833 u64 last_start;
834 u64 last_end;
42daec29 835
a5dee37d 836 btrfs_debug_check_extent_io_range(tree, start, end);
8d599ae1 837
0ca1f7ce 838 bits |= EXTENT_FIRST_DELALLOC;
d1310b2e
CM
839again:
840 if (!prealloc && (mask & __GFP_WAIT)) {
841 prealloc = alloc_extent_state(mask);
8233767a 842 BUG_ON(!prealloc);
d1310b2e
CM
843 }
844
cad321ad 845 spin_lock(&tree->lock);
9655d298
CM
846 if (cached_state && *cached_state) {
847 state = *cached_state;
df98b6e2 848 if (state->start <= start && state->end > start &&
27a3507d 849 extent_state_in_tree(state)) {
9655d298
CM
850 node = &state->rb_node;
851 goto hit_next;
852 }
853 }
d1310b2e
CM
854 /*
855 * this search will find all the extents that end after
856 * our range starts.
857 */
12cfbad9 858 node = tree_search_for_insert(tree, start, &p, &parent);
d1310b2e 859 if (!node) {
8233767a
XG
860 prealloc = alloc_extent_state_atomic(prealloc);
861 BUG_ON(!prealloc);
12cfbad9
FDBM
862 err = insert_state(tree, prealloc, start, end,
863 &p, &parent, &bits);
c2d904e0
JM
864 if (err)
865 extent_io_tree_panic(tree, err);
866
c42ac0bc 867 cache_state(prealloc, cached_state);
d1310b2e 868 prealloc = NULL;
d1310b2e
CM
869 goto out;
870 }
d1310b2e 871 state = rb_entry(node, struct extent_state, rb_node);
40431d6c 872hit_next:
d1310b2e
CM
873 last_start = state->start;
874 last_end = state->end;
875
876 /*
877 * | ---- desired range ---- |
878 * | state |
879 *
880 * Just lock what we found and keep going
881 */
882 if (state->start == start && state->end <= end) {
1edbb734 883 if (state->state & exclusive_bits) {
d1310b2e
CM
884 *failed_start = state->start;
885 err = -EEXIST;
886 goto out;
887 }
42daec29 888
1bf85046 889 set_state_bits(tree, state, &bits);
2c64c53d 890 cache_state(state, cached_state);
d1310b2e 891 merge_state(tree, state);
5c939df5
YZ
892 if (last_end == (u64)-1)
893 goto out;
894 start = last_end + 1;
d1ac6e41
LB
895 state = next_state(state);
896 if (start < end && state && state->start == start &&
897 !need_resched())
898 goto hit_next;
d1310b2e
CM
899 goto search_again;
900 }
901
902 /*
903 * | ---- desired range ---- |
904 * | state |
905 * or
906 * | ------------- state -------------- |
907 *
908 * We need to split the extent we found, and may flip bits on
909 * second half.
910 *
911 * If the extent we found extends past our
912 * range, we just split and search again. It'll get split
913 * again the next time though.
914 *
915 * If the extent we found is inside our range, we set the
916 * desired bit on it.
917 */
918 if (state->start < start) {
1edbb734 919 if (state->state & exclusive_bits) {
d1310b2e
CM
920 *failed_start = start;
921 err = -EEXIST;
922 goto out;
923 }
8233767a
XG
924
925 prealloc = alloc_extent_state_atomic(prealloc);
926 BUG_ON(!prealloc);
d1310b2e 927 err = split_state(tree, state, prealloc, start);
c2d904e0
JM
928 if (err)
929 extent_io_tree_panic(tree, err);
930
d1310b2e
CM
931 prealloc = NULL;
932 if (err)
933 goto out;
934 if (state->end <= end) {
1bf85046 935 set_state_bits(tree, state, &bits);
2c64c53d 936 cache_state(state, cached_state);
d1310b2e 937 merge_state(tree, state);
5c939df5
YZ
938 if (last_end == (u64)-1)
939 goto out;
940 start = last_end + 1;
d1ac6e41
LB
941 state = next_state(state);
942 if (start < end && state && state->start == start &&
943 !need_resched())
944 goto hit_next;
d1310b2e
CM
945 }
946 goto search_again;
947 }
948 /*
949 * | ---- desired range ---- |
950 * | state | or | state |
951 *
952 * There's a hole, we need to insert something in it and
953 * ignore the extent we found.
954 */
955 if (state->start > start) {
956 u64 this_end;
957 if (end < last_start)
958 this_end = end;
959 else
d397712b 960 this_end = last_start - 1;
8233767a
XG
961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
c7f895a2
XG
964
965 /*
966 * Avoid to free 'prealloc' if it can be merged with
967 * the later extent.
968 */
d1310b2e 969 err = insert_state(tree, prealloc, start, this_end,
12cfbad9 970 NULL, NULL, &bits);
c2d904e0
JM
971 if (err)
972 extent_io_tree_panic(tree, err);
973
9ed74f2d
JB
974 cache_state(prealloc, cached_state);
975 prealloc = NULL;
d1310b2e
CM
976 start = this_end + 1;
977 goto search_again;
978 }
979 /*
980 * | ---- desired range ---- |
981 * | state |
982 * We need to split the extent, and set the bit
983 * on the first half
984 */
985 if (state->start <= end && state->end > end) {
1edbb734 986 if (state->state & exclusive_bits) {
d1310b2e
CM
987 *failed_start = start;
988 err = -EEXIST;
989 goto out;
990 }
8233767a
XG
991
992 prealloc = alloc_extent_state_atomic(prealloc);
993 BUG_ON(!prealloc);
d1310b2e 994 err = split_state(tree, state, prealloc, end + 1);
c2d904e0
JM
995 if (err)
996 extent_io_tree_panic(tree, err);
d1310b2e 997
1bf85046 998 set_state_bits(tree, prealloc, &bits);
2c64c53d 999 cache_state(prealloc, cached_state);
d1310b2e
CM
1000 merge_state(tree, prealloc);
1001 prealloc = NULL;
1002 goto out;
1003 }
1004
1005 goto search_again;
1006
1007out:
cad321ad 1008 spin_unlock(&tree->lock);
d1310b2e
CM
1009 if (prealloc)
1010 free_extent_state(prealloc);
1011
1012 return err;
1013
1014search_again:
1015 if (start > end)
1016 goto out;
cad321ad 1017 spin_unlock(&tree->lock);
d1310b2e
CM
1018 if (mask & __GFP_WAIT)
1019 cond_resched();
1020 goto again;
1021}
d1310b2e 1022
41074888
DS
1023int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1024 unsigned long bits, u64 * failed_start,
1025 struct extent_state **cached_state, gfp_t mask)
3fbe5c02
JM
1026{
1027 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1028 cached_state, mask);
1029}
1030
1031
462d6fac 1032/**
10983f2e
LB
1033 * convert_extent_bit - convert all bits in a given range from one bit to
1034 * another
462d6fac
JB
1035 * @tree: the io tree to search
1036 * @start: the start offset in bytes
1037 * @end: the end offset in bytes (inclusive)
1038 * @bits: the bits to set in this range
1039 * @clear_bits: the bits to clear in this range
e6138876 1040 * @cached_state: state that we're going to cache
462d6fac
JB
1041 * @mask: the allocation mask
1042 *
1043 * This will go through and set bits for the given range. If any states exist
1044 * already in this range they are set with the given bit and cleared of the
1045 * clear_bits. This is only meant to be used by things that are mergeable, ie
1046 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1047 * boundary bits like LOCK.
1048 */
1049int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
41074888 1050 unsigned long bits, unsigned long clear_bits,
e6138876 1051 struct extent_state **cached_state, gfp_t mask)
462d6fac
JB
1052{
1053 struct extent_state *state;
1054 struct extent_state *prealloc = NULL;
1055 struct rb_node *node;
12cfbad9
FDBM
1056 struct rb_node **p;
1057 struct rb_node *parent;
462d6fac
JB
1058 int err = 0;
1059 u64 last_start;
1060 u64 last_end;
1061
a5dee37d 1062 btrfs_debug_check_extent_io_range(tree, start, end);
8d599ae1 1063
462d6fac
JB
1064again:
1065 if (!prealloc && (mask & __GFP_WAIT)) {
1066 prealloc = alloc_extent_state(mask);
1067 if (!prealloc)
1068 return -ENOMEM;
1069 }
1070
1071 spin_lock(&tree->lock);
e6138876
JB
1072 if (cached_state && *cached_state) {
1073 state = *cached_state;
1074 if (state->start <= start && state->end > start &&
27a3507d 1075 extent_state_in_tree(state)) {
e6138876
JB
1076 node = &state->rb_node;
1077 goto hit_next;
1078 }
1079 }
1080
462d6fac
JB
1081 /*
1082 * this search will find all the extents that end after
1083 * our range starts.
1084 */
12cfbad9 1085 node = tree_search_for_insert(tree, start, &p, &parent);
462d6fac
JB
1086 if (!node) {
1087 prealloc = alloc_extent_state_atomic(prealloc);
1cf4ffdb
LB
1088 if (!prealloc) {
1089 err = -ENOMEM;
1090 goto out;
1091 }
12cfbad9
FDBM
1092 err = insert_state(tree, prealloc, start, end,
1093 &p, &parent, &bits);
c2d904e0
JM
1094 if (err)
1095 extent_io_tree_panic(tree, err);
c42ac0bc
FDBM
1096 cache_state(prealloc, cached_state);
1097 prealloc = NULL;
462d6fac
JB
1098 goto out;
1099 }
1100 state = rb_entry(node, struct extent_state, rb_node);
1101hit_next:
1102 last_start = state->start;
1103 last_end = state->end;
1104
1105 /*
1106 * | ---- desired range ---- |
1107 * | state |
1108 *
1109 * Just lock what we found and keep going
1110 */
1111 if (state->start == start && state->end <= end) {
462d6fac 1112 set_state_bits(tree, state, &bits);
e6138876 1113 cache_state(state, cached_state);
d1ac6e41 1114 state = clear_state_bit(tree, state, &clear_bits, 0);
462d6fac
JB
1115 if (last_end == (u64)-1)
1116 goto out;
462d6fac 1117 start = last_end + 1;
d1ac6e41
LB
1118 if (start < end && state && state->start == start &&
1119 !need_resched())
1120 goto hit_next;
462d6fac
JB
1121 goto search_again;
1122 }
1123
1124 /*
1125 * | ---- desired range ---- |
1126 * | state |
1127 * or
1128 * | ------------- state -------------- |
1129 *
1130 * We need to split the extent we found, and may flip bits on
1131 * second half.
1132 *
1133 * If the extent we found extends past our
1134 * range, we just split and search again. It'll get split
1135 * again the next time though.
1136 *
1137 * If the extent we found is inside our range, we set the
1138 * desired bit on it.
1139 */
1140 if (state->start < start) {
1141 prealloc = alloc_extent_state_atomic(prealloc);
1cf4ffdb
LB
1142 if (!prealloc) {
1143 err = -ENOMEM;
1144 goto out;
1145 }
462d6fac 1146 err = split_state(tree, state, prealloc, start);
c2d904e0
JM
1147 if (err)
1148 extent_io_tree_panic(tree, err);
462d6fac
JB
1149 prealloc = NULL;
1150 if (err)
1151 goto out;
1152 if (state->end <= end) {
1153 set_state_bits(tree, state, &bits);
e6138876 1154 cache_state(state, cached_state);
d1ac6e41 1155 state = clear_state_bit(tree, state, &clear_bits, 0);
462d6fac
JB
1156 if (last_end == (u64)-1)
1157 goto out;
1158 start = last_end + 1;
d1ac6e41
LB
1159 if (start < end && state && state->start == start &&
1160 !need_resched())
1161 goto hit_next;
462d6fac
JB
1162 }
1163 goto search_again;
1164 }
1165 /*
1166 * | ---- desired range ---- |
1167 * | state | or | state |
1168 *
1169 * There's a hole, we need to insert something in it and
1170 * ignore the extent we found.
1171 */
1172 if (state->start > start) {
1173 u64 this_end;
1174 if (end < last_start)
1175 this_end = end;
1176 else
1177 this_end = last_start - 1;
1178
1179 prealloc = alloc_extent_state_atomic(prealloc);
1cf4ffdb
LB
1180 if (!prealloc) {
1181 err = -ENOMEM;
1182 goto out;
1183 }
462d6fac
JB
1184
1185 /*
1186 * Avoid to free 'prealloc' if it can be merged with
1187 * the later extent.
1188 */
1189 err = insert_state(tree, prealloc, start, this_end,
12cfbad9 1190 NULL, NULL, &bits);
c2d904e0
JM
1191 if (err)
1192 extent_io_tree_panic(tree, err);
e6138876 1193 cache_state(prealloc, cached_state);
462d6fac
JB
1194 prealloc = NULL;
1195 start = this_end + 1;
1196 goto search_again;
1197 }
1198 /*
1199 * | ---- desired range ---- |
1200 * | state |
1201 * We need to split the extent, and set the bit
1202 * on the first half
1203 */
1204 if (state->start <= end && state->end > end) {
1205 prealloc = alloc_extent_state_atomic(prealloc);
1cf4ffdb
LB
1206 if (!prealloc) {
1207 err = -ENOMEM;
1208 goto out;
1209 }
462d6fac
JB
1210
1211 err = split_state(tree, state, prealloc, end + 1);
c2d904e0
JM
1212 if (err)
1213 extent_io_tree_panic(tree, err);
462d6fac
JB
1214
1215 set_state_bits(tree, prealloc, &bits);
e6138876 1216 cache_state(prealloc, cached_state);
462d6fac 1217 clear_state_bit(tree, prealloc, &clear_bits, 0);
462d6fac
JB
1218 prealloc = NULL;
1219 goto out;
1220 }
1221
1222 goto search_again;
1223
1224out:
1225 spin_unlock(&tree->lock);
1226 if (prealloc)
1227 free_extent_state(prealloc);
1228
1229 return err;
1230
1231search_again:
1232 if (start > end)
1233 goto out;
1234 spin_unlock(&tree->lock);
1235 if (mask & __GFP_WAIT)
1236 cond_resched();
1237 goto again;
1238}
1239
d1310b2e
CM
1240/* wrappers around set/clear extent bit */
1241int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1242 gfp_t mask)
1243{
3fbe5c02 1244 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
2c64c53d 1245 NULL, mask);
d1310b2e 1246}
d1310b2e
CM
1247
1248int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
41074888 1249 unsigned long bits, gfp_t mask)
d1310b2e 1250{
3fbe5c02 1251 return set_extent_bit(tree, start, end, bits, NULL,
2c64c53d 1252 NULL, mask);
d1310b2e 1253}
d1310b2e
CM
1254
1255int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
41074888 1256 unsigned long bits, gfp_t mask)
d1310b2e 1257{
2c64c53d 1258 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
d1310b2e 1259}
d1310b2e
CM
1260
1261int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
2ac55d41 1262 struct extent_state **cached_state, gfp_t mask)
d1310b2e
CM
1263{
1264 return set_extent_bit(tree, start, end,
fee187d9 1265 EXTENT_DELALLOC | EXTENT_UPTODATE,
3fbe5c02 1266 NULL, cached_state, mask);
d1310b2e 1267}
d1310b2e 1268
9e8a4a8b
LB
1269int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1270 struct extent_state **cached_state, gfp_t mask)
1271{
1272 return set_extent_bit(tree, start, end,
1273 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1274 NULL, cached_state, mask);
1275}
1276
d1310b2e
CM
1277int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1278 gfp_t mask)
1279{
1280 return clear_extent_bit(tree, start, end,
32c00aff 1281 EXTENT_DIRTY | EXTENT_DELALLOC |
0ca1f7ce 1282 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
d1310b2e 1283}
d1310b2e
CM
1284
1285int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1286 gfp_t mask)
1287{
3fbe5c02 1288 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
2c64c53d 1289 NULL, mask);
d1310b2e 1290}
d1310b2e 1291
d1310b2e 1292int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
507903b8 1293 struct extent_state **cached_state, gfp_t mask)
d1310b2e 1294{
6b67a320 1295 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
3fbe5c02 1296 cached_state, mask);
d1310b2e 1297}
d1310b2e 1298
5fd02043
JB
1299int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1300 struct extent_state **cached_state, gfp_t mask)
d1310b2e 1301{
2c64c53d 1302 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
2ac55d41 1303 cached_state, mask);
d1310b2e 1304}
d1310b2e 1305
d352ac68
CM
1306/*
1307 * either insert or lock state struct between start and end use mask to tell
1308 * us if waiting is desired.
1309 */
1edbb734 1310int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
41074888 1311 unsigned long bits, struct extent_state **cached_state)
d1310b2e
CM
1312{
1313 int err;
1314 u64 failed_start;
1315 while (1) {
3fbe5c02
JM
1316 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1317 EXTENT_LOCKED, &failed_start,
1318 cached_state, GFP_NOFS);
d0082371 1319 if (err == -EEXIST) {
d1310b2e
CM
1320 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1321 start = failed_start;
d0082371 1322 } else
d1310b2e 1323 break;
d1310b2e
CM
1324 WARN_ON(start > end);
1325 }
1326 return err;
1327}
d1310b2e 1328
d0082371 1329int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
1edbb734 1330{
d0082371 1331 return lock_extent_bits(tree, start, end, 0, NULL);
1edbb734
CM
1332}
1333
d0082371 1334int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
25179201
JB
1335{
1336 int err;
1337 u64 failed_start;
1338
3fbe5c02
JM
1339 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1340 &failed_start, NULL, GFP_NOFS);
6643558d
YZ
1341 if (err == -EEXIST) {
1342 if (failed_start > start)
1343 clear_extent_bit(tree, start, failed_start - 1,
d0082371 1344 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
25179201 1345 return 0;
6643558d 1346 }
25179201
JB
1347 return 1;
1348}
25179201 1349
2c64c53d
CM
1350int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1351 struct extent_state **cached, gfp_t mask)
1352{
1353 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1354 mask);
1355}
1356
d0082371 1357int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
d1310b2e 1358{
2c64c53d 1359 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
d0082371 1360 GFP_NOFS);
d1310b2e 1361}
d1310b2e 1362
4adaa611
CM
1363int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1364{
1365 unsigned long index = start >> PAGE_CACHE_SHIFT;
1366 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1367 struct page *page;
1368
1369 while (index <= end_index) {
1370 page = find_get_page(inode->i_mapping, index);
1371 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1372 clear_page_dirty_for_io(page);
1373 page_cache_release(page);
1374 index++;
1375 }
1376 return 0;
1377}
1378
1379int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1380{
1381 unsigned long index = start >> PAGE_CACHE_SHIFT;
1382 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1383 struct page *page;
1384
1385 while (index <= end_index) {
1386 page = find_get_page(inode->i_mapping, index);
1387 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1388 account_page_redirty(page);
1389 __set_page_dirty_nobuffers(page);
1390 page_cache_release(page);
1391 index++;
1392 }
1393 return 0;
1394}
1395
d1310b2e
CM
1396/*
1397 * helper function to set both pages and extents in the tree writeback
1398 */
b2950863 1399static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
d1310b2e
CM
1400{
1401 unsigned long index = start >> PAGE_CACHE_SHIFT;
1402 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1403 struct page *page;
1404
1405 while (index <= end_index) {
1406 page = find_get_page(tree->mapping, index);
79787eaa 1407 BUG_ON(!page); /* Pages should be in the extent_io_tree */
d1310b2e
CM
1408 set_page_writeback(page);
1409 page_cache_release(page);
1410 index++;
1411 }
d1310b2e
CM
1412 return 0;
1413}
d1310b2e 1414
d352ac68
CM
1415/* find the first state struct with 'bits' set after 'start', and
1416 * return it. tree->lock must be held. NULL will returned if
1417 * nothing was found after 'start'
1418 */
48a3b636
ES
1419static struct extent_state *
1420find_first_extent_bit_state(struct extent_io_tree *tree,
41074888 1421 u64 start, unsigned long bits)
d7fc640e
CM
1422{
1423 struct rb_node *node;
1424 struct extent_state *state;
1425
1426 /*
1427 * this search will find all the extents that end after
1428 * our range starts.
1429 */
1430 node = tree_search(tree, start);
d397712b 1431 if (!node)
d7fc640e 1432 goto out;
d7fc640e 1433
d397712b 1434 while (1) {
d7fc640e 1435 state = rb_entry(node, struct extent_state, rb_node);
d397712b 1436 if (state->end >= start && (state->state & bits))
d7fc640e 1437 return state;
d397712b 1438
d7fc640e
CM
1439 node = rb_next(node);
1440 if (!node)
1441 break;
1442 }
1443out:
1444 return NULL;
1445}
d7fc640e 1446
69261c4b
XG
1447/*
1448 * find the first offset in the io tree with 'bits' set. zero is
1449 * returned if we find something, and *start_ret and *end_ret are
1450 * set to reflect the state struct that was found.
1451 *
477d7eaf 1452 * If nothing was found, 1 is returned. If found something, return 0.
69261c4b
XG
1453 */
1454int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
41074888 1455 u64 *start_ret, u64 *end_ret, unsigned long bits,
e6138876 1456 struct extent_state **cached_state)
69261c4b
XG
1457{
1458 struct extent_state *state;
e6138876 1459 struct rb_node *n;
69261c4b
XG
1460 int ret = 1;
1461
1462 spin_lock(&tree->lock);
e6138876
JB
1463 if (cached_state && *cached_state) {
1464 state = *cached_state;
27a3507d 1465 if (state->end == start - 1 && extent_state_in_tree(state)) {
e6138876
JB
1466 n = rb_next(&state->rb_node);
1467 while (n) {
1468 state = rb_entry(n, struct extent_state,
1469 rb_node);
1470 if (state->state & bits)
1471 goto got_it;
1472 n = rb_next(n);
1473 }
1474 free_extent_state(*cached_state);
1475 *cached_state = NULL;
1476 goto out;
1477 }
1478 free_extent_state(*cached_state);
1479 *cached_state = NULL;
1480 }
1481
69261c4b 1482 state = find_first_extent_bit_state(tree, start, bits);
e6138876 1483got_it:
69261c4b 1484 if (state) {
e6138876 1485 cache_state(state, cached_state);
69261c4b
XG
1486 *start_ret = state->start;
1487 *end_ret = state->end;
1488 ret = 0;
1489 }
e6138876 1490out:
69261c4b
XG
1491 spin_unlock(&tree->lock);
1492 return ret;
1493}
1494
d352ac68
CM
1495/*
1496 * find a contiguous range of bytes in the file marked as delalloc, not
1497 * more than 'max_bytes'. start and end are used to return the range,
1498 *
1499 * 1 is returned if we find something, 0 if nothing was in the tree
1500 */
c8b97818 1501static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
c2a128d2
JB
1502 u64 *start, u64 *end, u64 max_bytes,
1503 struct extent_state **cached_state)
d1310b2e
CM
1504{
1505 struct rb_node *node;
1506 struct extent_state *state;
1507 u64 cur_start = *start;
1508 u64 found = 0;
1509 u64 total_bytes = 0;
1510
cad321ad 1511 spin_lock(&tree->lock);
c8b97818 1512
d1310b2e
CM
1513 /*
1514 * this search will find all the extents that end after
1515 * our range starts.
1516 */
80ea96b1 1517 node = tree_search(tree, cur_start);
2b114d1d 1518 if (!node) {
3b951516
CM
1519 if (!found)
1520 *end = (u64)-1;
d1310b2e
CM
1521 goto out;
1522 }
1523
d397712b 1524 while (1) {
d1310b2e 1525 state = rb_entry(node, struct extent_state, rb_node);
5b21f2ed
ZY
1526 if (found && (state->start != cur_start ||
1527 (state->state & EXTENT_BOUNDARY))) {
d1310b2e
CM
1528 goto out;
1529 }
1530 if (!(state->state & EXTENT_DELALLOC)) {
1531 if (!found)
1532 *end = state->end;
1533 goto out;
1534 }
c2a128d2 1535 if (!found) {
d1310b2e 1536 *start = state->start;
c2a128d2
JB
1537 *cached_state = state;
1538 atomic_inc(&state->refs);
1539 }
d1310b2e
CM
1540 found++;
1541 *end = state->end;
1542 cur_start = state->end + 1;
1543 node = rb_next(node);
d1310b2e 1544 total_bytes += state->end - state->start + 1;
7bf811a5 1545 if (total_bytes >= max_bytes)
573aecaf 1546 break;
573aecaf 1547 if (!node)
d1310b2e
CM
1548 break;
1549 }
1550out:
cad321ad 1551 spin_unlock(&tree->lock);
d1310b2e
CM
1552 return found;
1553}
1554
143bede5
JM
1555static noinline void __unlock_for_delalloc(struct inode *inode,
1556 struct page *locked_page,
1557 u64 start, u64 end)
c8b97818
CM
1558{
1559 int ret;
1560 struct page *pages[16];
1561 unsigned long index = start >> PAGE_CACHE_SHIFT;
1562 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1563 unsigned long nr_pages = end_index - index + 1;
1564 int i;
1565
1566 if (index == locked_page->index && end_index == index)
143bede5 1567 return;
c8b97818 1568
d397712b 1569 while (nr_pages > 0) {
c8b97818 1570 ret = find_get_pages_contig(inode->i_mapping, index,
5b050f04
CM
1571 min_t(unsigned long, nr_pages,
1572 ARRAY_SIZE(pages)), pages);
c8b97818
CM
1573 for (i = 0; i < ret; i++) {
1574 if (pages[i] != locked_page)
1575 unlock_page(pages[i]);
1576 page_cache_release(pages[i]);
1577 }
1578 nr_pages -= ret;
1579 index += ret;
1580 cond_resched();
1581 }
c8b97818
CM
1582}
1583
1584static noinline int lock_delalloc_pages(struct inode *inode,
1585 struct page *locked_page,
1586 u64 delalloc_start,
1587 u64 delalloc_end)
1588{
1589 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1590 unsigned long start_index = index;
1591 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1592 unsigned long pages_locked = 0;
1593 struct page *pages[16];
1594 unsigned long nrpages;
1595 int ret;
1596 int i;
1597
1598 /* the caller is responsible for locking the start index */
1599 if (index == locked_page->index && index == end_index)
1600 return 0;
1601
1602 /* skip the page at the start index */
1603 nrpages = end_index - index + 1;
d397712b 1604 while (nrpages > 0) {
c8b97818 1605 ret = find_get_pages_contig(inode->i_mapping, index,
5b050f04
CM
1606 min_t(unsigned long,
1607 nrpages, ARRAY_SIZE(pages)), pages);
c8b97818
CM
1608 if (ret == 0) {
1609 ret = -EAGAIN;
1610 goto done;
1611 }
1612 /* now we have an array of pages, lock them all */
1613 for (i = 0; i < ret; i++) {
1614 /*
1615 * the caller is taking responsibility for
1616 * locked_page
1617 */
771ed689 1618 if (pages[i] != locked_page) {
c8b97818 1619 lock_page(pages[i]);
f2b1c41c
CM
1620 if (!PageDirty(pages[i]) ||
1621 pages[i]->mapping != inode->i_mapping) {
771ed689
CM
1622 ret = -EAGAIN;
1623 unlock_page(pages[i]);
1624 page_cache_release(pages[i]);
1625 goto done;
1626 }
1627 }
c8b97818 1628 page_cache_release(pages[i]);
771ed689 1629 pages_locked++;
c8b97818 1630 }
c8b97818
CM
1631 nrpages -= ret;
1632 index += ret;
1633 cond_resched();
1634 }
1635 ret = 0;
1636done:
1637 if (ret && pages_locked) {
1638 __unlock_for_delalloc(inode, locked_page,
1639 delalloc_start,
1640 ((u64)(start_index + pages_locked - 1)) <<
1641 PAGE_CACHE_SHIFT);
1642 }
1643 return ret;
1644}
1645
1646/*
1647 * find a contiguous range of bytes in the file marked as delalloc, not
1648 * more than 'max_bytes'. start and end are used to return the range,
1649 *
1650 * 1 is returned if we find something, 0 if nothing was in the tree
1651 */
294e30fe
JB
1652STATIC u64 find_lock_delalloc_range(struct inode *inode,
1653 struct extent_io_tree *tree,
1654 struct page *locked_page, u64 *start,
1655 u64 *end, u64 max_bytes)
c8b97818
CM
1656{
1657 u64 delalloc_start;
1658 u64 delalloc_end;
1659 u64 found;
9655d298 1660 struct extent_state *cached_state = NULL;
c8b97818
CM
1661 int ret;
1662 int loops = 0;
1663
1664again:
1665 /* step one, find a bunch of delalloc bytes starting at start */
1666 delalloc_start = *start;
1667 delalloc_end = 0;
1668 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
c2a128d2 1669 max_bytes, &cached_state);
70b99e69 1670 if (!found || delalloc_end <= *start) {
c8b97818
CM
1671 *start = delalloc_start;
1672 *end = delalloc_end;
c2a128d2 1673 free_extent_state(cached_state);
385fe0be 1674 return 0;
c8b97818
CM
1675 }
1676
70b99e69
CM
1677 /*
1678 * start comes from the offset of locked_page. We have to lock
1679 * pages in order, so we can't process delalloc bytes before
1680 * locked_page
1681 */
d397712b 1682 if (delalloc_start < *start)
70b99e69 1683 delalloc_start = *start;
70b99e69 1684
c8b97818
CM
1685 /*
1686 * make sure to limit the number of pages we try to lock down
c8b97818 1687 */
7bf811a5
JB
1688 if (delalloc_end + 1 - delalloc_start > max_bytes)
1689 delalloc_end = delalloc_start + max_bytes - 1;
d397712b 1690
c8b97818
CM
1691 /* step two, lock all the pages after the page that has start */
1692 ret = lock_delalloc_pages(inode, locked_page,
1693 delalloc_start, delalloc_end);
1694 if (ret == -EAGAIN) {
1695 /* some of the pages are gone, lets avoid looping by
1696 * shortening the size of the delalloc range we're searching
1697 */
9655d298 1698 free_extent_state(cached_state);
7d788742 1699 cached_state = NULL;
c8b97818 1700 if (!loops) {
7bf811a5 1701 max_bytes = PAGE_CACHE_SIZE;
c8b97818
CM
1702 loops = 1;
1703 goto again;
1704 } else {
1705 found = 0;
1706 goto out_failed;
1707 }
1708 }
79787eaa 1709 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
c8b97818
CM
1710
1711 /* step three, lock the state bits for the whole range */
d0082371 1712 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
c8b97818
CM
1713
1714 /* then test to make sure it is all still delalloc */
1715 ret = test_range_bit(tree, delalloc_start, delalloc_end,
9655d298 1716 EXTENT_DELALLOC, 1, cached_state);
c8b97818 1717 if (!ret) {
9655d298
CM
1718 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1719 &cached_state, GFP_NOFS);
c8b97818
CM
1720 __unlock_for_delalloc(inode, locked_page,
1721 delalloc_start, delalloc_end);
1722 cond_resched();
1723 goto again;
1724 }
9655d298 1725 free_extent_state(cached_state);
c8b97818
CM
1726 *start = delalloc_start;
1727 *end = delalloc_end;
1728out_failed:
1729 return found;
1730}
1731
c2790a2e
JB
1732int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1733 struct page *locked_page,
1734 unsigned long clear_bits,
1735 unsigned long page_ops)
c8b97818 1736{
c2790a2e 1737 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
c8b97818
CM
1738 int ret;
1739 struct page *pages[16];
1740 unsigned long index = start >> PAGE_CACHE_SHIFT;
1741 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1742 unsigned long nr_pages = end_index - index + 1;
1743 int i;
771ed689 1744
2c64c53d 1745 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
c2790a2e 1746 if (page_ops == 0)
771ed689 1747 return 0;
c8b97818 1748
d397712b 1749 while (nr_pages > 0) {
c8b97818 1750 ret = find_get_pages_contig(inode->i_mapping, index,
5b050f04
CM
1751 min_t(unsigned long,
1752 nr_pages, ARRAY_SIZE(pages)), pages);
c8b97818 1753 for (i = 0; i < ret; i++) {
8b62b72b 1754
c2790a2e 1755 if (page_ops & PAGE_SET_PRIVATE2)
8b62b72b
CM
1756 SetPagePrivate2(pages[i]);
1757
c8b97818
CM
1758 if (pages[i] == locked_page) {
1759 page_cache_release(pages[i]);
1760 continue;
1761 }
c2790a2e 1762 if (page_ops & PAGE_CLEAR_DIRTY)
c8b97818 1763 clear_page_dirty_for_io(pages[i]);
c2790a2e 1764 if (page_ops & PAGE_SET_WRITEBACK)
c8b97818 1765 set_page_writeback(pages[i]);
c2790a2e 1766 if (page_ops & PAGE_END_WRITEBACK)
c8b97818 1767 end_page_writeback(pages[i]);
c2790a2e 1768 if (page_ops & PAGE_UNLOCK)
771ed689 1769 unlock_page(pages[i]);
c8b97818
CM
1770 page_cache_release(pages[i]);
1771 }
1772 nr_pages -= ret;
1773 index += ret;
1774 cond_resched();
1775 }
1776 return 0;
1777}
c8b97818 1778
d352ac68
CM
1779/*
1780 * count the number of bytes in the tree that have a given bit(s)
1781 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1782 * cached. The total number found is returned.
1783 */
d1310b2e
CM
1784u64 count_range_bits(struct extent_io_tree *tree,
1785 u64 *start, u64 search_end, u64 max_bytes,
ec29ed5b 1786 unsigned long bits, int contig)
d1310b2e
CM
1787{
1788 struct rb_node *node;
1789 struct extent_state *state;
1790 u64 cur_start = *start;
1791 u64 total_bytes = 0;
ec29ed5b 1792 u64 last = 0;
d1310b2e
CM
1793 int found = 0;
1794
fae7f21c 1795 if (WARN_ON(search_end <= cur_start))
d1310b2e 1796 return 0;
d1310b2e 1797
cad321ad 1798 spin_lock(&tree->lock);
d1310b2e
CM
1799 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1800 total_bytes = tree->dirty_bytes;
1801 goto out;
1802 }
1803 /*
1804 * this search will find all the extents that end after
1805 * our range starts.
1806 */
80ea96b1 1807 node = tree_search(tree, cur_start);
d397712b 1808 if (!node)
d1310b2e 1809 goto out;
d1310b2e 1810
d397712b 1811 while (1) {
d1310b2e
CM
1812 state = rb_entry(node, struct extent_state, rb_node);
1813 if (state->start > search_end)
1814 break;
ec29ed5b
CM
1815 if (contig && found && state->start > last + 1)
1816 break;
1817 if (state->end >= cur_start && (state->state & bits) == bits) {
d1310b2e
CM
1818 total_bytes += min(search_end, state->end) + 1 -
1819 max(cur_start, state->start);
1820 if (total_bytes >= max_bytes)
1821 break;
1822 if (!found) {
af60bed2 1823 *start = max(cur_start, state->start);
d1310b2e
CM
1824 found = 1;
1825 }
ec29ed5b
CM
1826 last = state->end;
1827 } else if (contig && found) {
1828 break;
d1310b2e
CM
1829 }
1830 node = rb_next(node);
1831 if (!node)
1832 break;
1833 }
1834out:
cad321ad 1835 spin_unlock(&tree->lock);
d1310b2e
CM
1836 return total_bytes;
1837}
b2950863 1838
d352ac68
CM
1839/*
1840 * set the private field for a given byte offset in the tree. If there isn't
1841 * an extent_state there already, this does nothing.
1842 */
171170c1 1843static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
d1310b2e
CM
1844{
1845 struct rb_node *node;
1846 struct extent_state *state;
1847 int ret = 0;
1848
cad321ad 1849 spin_lock(&tree->lock);
d1310b2e
CM
1850 /*
1851 * this search will find all the extents that end after
1852 * our range starts.
1853 */
80ea96b1 1854 node = tree_search(tree, start);
2b114d1d 1855 if (!node) {
d1310b2e
CM
1856 ret = -ENOENT;
1857 goto out;
1858 }
1859 state = rb_entry(node, struct extent_state, rb_node);
1860 if (state->start != start) {
1861 ret = -ENOENT;
1862 goto out;
1863 }
1864 state->private = private;
1865out:
cad321ad 1866 spin_unlock(&tree->lock);
d1310b2e
CM
1867 return ret;
1868}
1869
1870int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1871{
1872 struct rb_node *node;
1873 struct extent_state *state;
1874 int ret = 0;
1875
cad321ad 1876 spin_lock(&tree->lock);
d1310b2e
CM
1877 /*
1878 * this search will find all the extents that end after
1879 * our range starts.
1880 */
80ea96b1 1881 node = tree_search(tree, start);
2b114d1d 1882 if (!node) {
d1310b2e
CM
1883 ret = -ENOENT;
1884 goto out;
1885 }
1886 state = rb_entry(node, struct extent_state, rb_node);
1887 if (state->start != start) {
1888 ret = -ENOENT;
1889 goto out;
1890 }
1891 *private = state->private;
1892out:
cad321ad 1893 spin_unlock(&tree->lock);
d1310b2e
CM
1894 return ret;
1895}
1896
1897/*
1898 * searches a range in the state tree for a given mask.
70dec807 1899 * If 'filled' == 1, this returns 1 only if every extent in the tree
d1310b2e
CM
1900 * has the bits set. Otherwise, 1 is returned if any bit in the
1901 * range is found set.
1902 */
1903int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
41074888 1904 unsigned long bits, int filled, struct extent_state *cached)
d1310b2e
CM
1905{
1906 struct extent_state *state = NULL;
1907 struct rb_node *node;
1908 int bitset = 0;
d1310b2e 1909
cad321ad 1910 spin_lock(&tree->lock);
27a3507d 1911 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
df98b6e2 1912 cached->end > start)
9655d298
CM
1913 node = &cached->rb_node;
1914 else
1915 node = tree_search(tree, start);
d1310b2e
CM
1916 while (node && start <= end) {
1917 state = rb_entry(node, struct extent_state, rb_node);
1918
1919 if (filled && state->start > start) {
1920 bitset = 0;
1921 break;
1922 }
1923
1924 if (state->start > end)
1925 break;
1926
1927 if (state->state & bits) {
1928 bitset = 1;
1929 if (!filled)
1930 break;
1931 } else if (filled) {
1932 bitset = 0;
1933 break;
1934 }
46562cec
CM
1935
1936 if (state->end == (u64)-1)
1937 break;
1938
d1310b2e
CM
1939 start = state->end + 1;
1940 if (start > end)
1941 break;
1942 node = rb_next(node);
1943 if (!node) {
1944 if (filled)
1945 bitset = 0;
1946 break;
1947 }
1948 }
cad321ad 1949 spin_unlock(&tree->lock);
d1310b2e
CM
1950 return bitset;
1951}
d1310b2e
CM
1952
1953/*
1954 * helper function to set a given page up to date if all the
1955 * extents in the tree for that page are up to date
1956 */
143bede5 1957static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
d1310b2e 1958{
4eee4fa4 1959 u64 start = page_offset(page);
d1310b2e 1960 u64 end = start + PAGE_CACHE_SIZE - 1;
9655d298 1961 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
d1310b2e 1962 SetPageUptodate(page);
d1310b2e
CM
1963}
1964
4a54c8c1
JS
1965/*
1966 * When IO fails, either with EIO or csum verification fails, we
1967 * try other mirrors that might have a good copy of the data. This
1968 * io_failure_record is used to record state as we go through all the
1969 * mirrors. If another mirror has good data, the page is set up to date
1970 * and things continue. If a good mirror can't be found, the original
1971 * bio end_io callback is called to indicate things have failed.
1972 */
1973struct io_failure_record {
1974 struct page *page;
1975 u64 start;
1976 u64 len;
1977 u64 logical;
1978 unsigned long bio_flags;
1979 int this_mirror;
1980 int failed_mirror;
1981 int in_validation;
1982};
1983
1984static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1985 int did_repair)
1986{
1987 int ret;
1988 int err = 0;
1989 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1990
1991 set_state_private(failure_tree, rec->start, 0);
1992 ret = clear_extent_bits(failure_tree, rec->start,
1993 rec->start + rec->len - 1,
1994 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1995 if (ret)
1996 err = ret;
1997
53b381b3
DW
1998 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1999 rec->start + rec->len - 1,
2000 EXTENT_DAMAGED, GFP_NOFS);
2001 if (ret && !err)
2002 err = ret;
4a54c8c1
JS
2003
2004 kfree(rec);
2005 return err;
2006}
2007
4a54c8c1
JS
2008/*
2009 * this bypasses the standard btrfs submit functions deliberately, as
2010 * the standard behavior is to write all copies in a raid setup. here we only
2011 * want to write the one bad copy. so we do the mapping for ourselves and issue
2012 * submit_bio directly.
3ec706c8 2013 * to avoid any synchronization issues, wait for the data after writing, which
4a54c8c1
JS
2014 * actually prevents the read that triggered the error from finishing.
2015 * currently, there can be no more than two copies of every data bit. thus,
2016 * exactly one rewrite is required.
2017 */
3ec706c8 2018int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
4a54c8c1
JS
2019 u64 length, u64 logical, struct page *page,
2020 int mirror_num)
2021{
2022 struct bio *bio;
2023 struct btrfs_device *dev;
4a54c8c1
JS
2024 u64 map_length = 0;
2025 u64 sector;
2026 struct btrfs_bio *bbio = NULL;
53b381b3 2027 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
4a54c8c1
JS
2028 int ret;
2029
908960c6 2030 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
4a54c8c1
JS
2031 BUG_ON(!mirror_num);
2032
53b381b3
DW
2033 /* we can't repair anything in raid56 yet */
2034 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2035 return 0;
2036
9be3395b 2037 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
4a54c8c1
JS
2038 if (!bio)
2039 return -EIO;
4f024f37 2040 bio->bi_iter.bi_size = 0;
4a54c8c1
JS
2041 map_length = length;
2042
3ec706c8 2043 ret = btrfs_map_block(fs_info, WRITE, logical,
4a54c8c1
JS
2044 &map_length, &bbio, mirror_num);
2045 if (ret) {
2046 bio_put(bio);
2047 return -EIO;
2048 }
2049 BUG_ON(mirror_num != bbio->mirror_num);
2050 sector = bbio->stripes[mirror_num-1].physical >> 9;
4f024f37 2051 bio->bi_iter.bi_sector = sector;
4a54c8c1
JS
2052 dev = bbio->stripes[mirror_num-1].dev;
2053 kfree(bbio);
2054 if (!dev || !dev->bdev || !dev->writeable) {
2055 bio_put(bio);
2056 return -EIO;
2057 }
2058 bio->bi_bdev = dev->bdev;
4eee4fa4 2059 bio_add_page(bio, page, length, start - page_offset(page));
4a54c8c1 2060
33879d45 2061 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
4a54c8c1
JS
2062 /* try to remap that extent elsewhere? */
2063 bio_put(bio);
442a4f63 2064 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
4a54c8c1
JS
2065 return -EIO;
2066 }
2067
efe120a0
FH
2068 printk_ratelimited_in_rcu(KERN_INFO
2069 "BTRFS: read error corrected: ino %lu off %llu "
2070 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2071 start, rcu_str_deref(dev->name), sector);
4a54c8c1
JS
2072
2073 bio_put(bio);
2074 return 0;
2075}
2076
ea466794
JB
2077int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2078 int mirror_num)
2079{
ea466794
JB
2080 u64 start = eb->start;
2081 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
d95603b2 2082 int ret = 0;
ea466794 2083
908960c6
ID
2084 if (root->fs_info->sb->s_flags & MS_RDONLY)
2085 return -EROFS;
2086
ea466794
JB
2087 for (i = 0; i < num_pages; i++) {
2088 struct page *p = extent_buffer_page(eb, i);
3ec706c8 2089 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
ea466794
JB
2090 start, p, mirror_num);
2091 if (ret)
2092 break;
2093 start += PAGE_CACHE_SIZE;
2094 }
2095
2096 return ret;
2097}
2098
4a54c8c1
JS
2099/*
2100 * each time an IO finishes, we do a fast check in the IO failure tree
2101 * to see if we need to process or clean up an io_failure_record
2102 */
2103static int clean_io_failure(u64 start, struct page *page)
2104{
2105 u64 private;
2106 u64 private_failure;
2107 struct io_failure_record *failrec;
908960c6
ID
2108 struct inode *inode = page->mapping->host;
2109 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
4a54c8c1
JS
2110 struct extent_state *state;
2111 int num_copies;
2112 int did_repair = 0;
2113 int ret;
4a54c8c1
JS
2114
2115 private = 0;
2116 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2117 (u64)-1, 1, EXTENT_DIRTY, 0);
2118 if (!ret)
2119 return 0;
2120
2121 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2122 &private_failure);
2123 if (ret)
2124 return 0;
2125
2126 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2127 BUG_ON(!failrec->this_mirror);
2128
2129 if (failrec->in_validation) {
2130 /* there was no real error, just free the record */
2131 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2132 failrec->start);
2133 did_repair = 1;
2134 goto out;
2135 }
908960c6
ID
2136 if (fs_info->sb->s_flags & MS_RDONLY)
2137 goto out;
4a54c8c1
JS
2138
2139 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2140 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2141 failrec->start,
2142 EXTENT_LOCKED);
2143 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2144
883d0de4
MX
2145 if (state && state->start <= failrec->start &&
2146 state->end >= failrec->start + failrec->len - 1) {
3ec706c8
SB
2147 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2148 failrec->len);
4a54c8c1 2149 if (num_copies > 1) {
3ec706c8 2150 ret = repair_io_failure(fs_info, start, failrec->len,
4a54c8c1
JS
2151 failrec->logical, page,
2152 failrec->failed_mirror);
2153 did_repair = !ret;
2154 }
53b381b3 2155 ret = 0;
4a54c8c1
JS
2156 }
2157
2158out:
2159 if (!ret)
2160 ret = free_io_failure(inode, failrec, did_repair);
2161
2162 return ret;
2163}
2164
2165/*
2166 * this is a generic handler for readpage errors (default
2167 * readpage_io_failed_hook). if other copies exist, read those and write back
2168 * good data to the failed position. does not investigate in remapping the
2169 * failed extent elsewhere, hoping the device will be smart enough to do this as
2170 * needed
2171 */
2172
facc8a22
MX
2173static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2174 struct page *page, u64 start, u64 end,
2175 int failed_mirror)
4a54c8c1
JS
2176{
2177 struct io_failure_record *failrec = NULL;
2178 u64 private;
2179 struct extent_map *em;
2180 struct inode *inode = page->mapping->host;
2181 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2182 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2183 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2184 struct bio *bio;
facc8a22
MX
2185 struct btrfs_io_bio *btrfs_failed_bio;
2186 struct btrfs_io_bio *btrfs_bio;
4a54c8c1
JS
2187 int num_copies;
2188 int ret;
2189 int read_mode;
2190 u64 logical;
2191
2192 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2193
2194 ret = get_state_private(failure_tree, start, &private);
2195 if (ret) {
2196 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2197 if (!failrec)
2198 return -ENOMEM;
2199 failrec->start = start;
2200 failrec->len = end - start + 1;
2201 failrec->this_mirror = 0;
2202 failrec->bio_flags = 0;
2203 failrec->in_validation = 0;
2204
2205 read_lock(&em_tree->lock);
2206 em = lookup_extent_mapping(em_tree, start, failrec->len);
2207 if (!em) {
2208 read_unlock(&em_tree->lock);
2209 kfree(failrec);
2210 return -EIO;
2211 }
2212
68ba990f 2213 if (em->start > start || em->start + em->len <= start) {
4a54c8c1
JS
2214 free_extent_map(em);
2215 em = NULL;
2216 }
2217 read_unlock(&em_tree->lock);
2218
7a2d6a64 2219 if (!em) {
4a54c8c1
JS
2220 kfree(failrec);
2221 return -EIO;
2222 }
2223 logical = start - em->start;
2224 logical = em->block_start + logical;
2225 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2226 logical = em->block_start;
2227 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2228 extent_set_compress_type(&failrec->bio_flags,
2229 em->compress_type);
2230 }
2231 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2232 "len=%llu\n", logical, start, failrec->len);
2233 failrec->logical = logical;
2234 free_extent_map(em);
2235
2236 /* set the bits in the private failure tree */
2237 ret = set_extent_bits(failure_tree, start, end,
2238 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2239 if (ret >= 0)
2240 ret = set_state_private(failure_tree, start,
2241 (u64)(unsigned long)failrec);
2242 /* set the bits in the inode's tree */
2243 if (ret >= 0)
2244 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2245 GFP_NOFS);
2246 if (ret < 0) {
2247 kfree(failrec);
2248 return ret;
2249 }
2250 } else {
2251 failrec = (struct io_failure_record *)(unsigned long)private;
2252 pr_debug("bio_readpage_error: (found) logical=%llu, "
2253 "start=%llu, len=%llu, validation=%d\n",
2254 failrec->logical, failrec->start, failrec->len,
2255 failrec->in_validation);
2256 /*
2257 * when data can be on disk more than twice, add to failrec here
2258 * (e.g. with a list for failed_mirror) to make
2259 * clean_io_failure() clean all those errors at once.
2260 */
2261 }
5d964051
SB
2262 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2263 failrec->logical, failrec->len);
4a54c8c1
JS
2264 if (num_copies == 1) {
2265 /*
2266 * we only have a single copy of the data, so don't bother with
2267 * all the retry and error correction code that follows. no
2268 * matter what the error is, it is very likely to persist.
2269 */
09a7f7a2
MX
2270 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2271 num_copies, failrec->this_mirror, failed_mirror);
4a54c8c1
JS
2272 free_io_failure(inode, failrec, 0);
2273 return -EIO;
2274 }
2275
4a54c8c1
JS
2276 /*
2277 * there are two premises:
2278 * a) deliver good data to the caller
2279 * b) correct the bad sectors on disk
2280 */
2281 if (failed_bio->bi_vcnt > 1) {
2282 /*
2283 * to fulfill b), we need to know the exact failing sectors, as
2284 * we don't want to rewrite any more than the failed ones. thus,
2285 * we need separate read requests for the failed bio
2286 *
2287 * if the following BUG_ON triggers, our validation request got
2288 * merged. we need separate requests for our algorithm to work.
2289 */
2290 BUG_ON(failrec->in_validation);
2291 failrec->in_validation = 1;
2292 failrec->this_mirror = failed_mirror;
2293 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2294 } else {
2295 /*
2296 * we're ready to fulfill a) and b) alongside. get a good copy
2297 * of the failed sector and if we succeed, we have setup
2298 * everything for repair_io_failure to do the rest for us.
2299 */
2300 if (failrec->in_validation) {
2301 BUG_ON(failrec->this_mirror != failed_mirror);
2302 failrec->in_validation = 0;
2303 failrec->this_mirror = 0;
2304 }
2305 failrec->failed_mirror = failed_mirror;
2306 failrec->this_mirror++;
2307 if (failrec->this_mirror == failed_mirror)
2308 failrec->this_mirror++;
2309 read_mode = READ_SYNC;
2310 }
2311
facc8a22
MX
2312 if (failrec->this_mirror > num_copies) {
2313 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
4a54c8c1
JS
2314 num_copies, failrec->this_mirror, failed_mirror);
2315 free_io_failure(inode, failrec, 0);
2316 return -EIO;
2317 }
2318
9be3395b 2319 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
e627ee7b
TI
2320 if (!bio) {
2321 free_io_failure(inode, failrec, 0);
2322 return -EIO;
2323 }
4a54c8c1 2324 bio->bi_end_io = failed_bio->bi_end_io;
4f024f37 2325 bio->bi_iter.bi_sector = failrec->logical >> 9;
4a54c8c1 2326 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
4f024f37 2327 bio->bi_iter.bi_size = 0;
4a54c8c1 2328
facc8a22
MX
2329 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2330 if (btrfs_failed_bio->csum) {
2331 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2332 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2333
2334 btrfs_bio = btrfs_io_bio(bio);
2335 btrfs_bio->csum = btrfs_bio->csum_inline;
2336 phy_offset >>= inode->i_sb->s_blocksize_bits;
2337 phy_offset *= csum_size;
2338 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2339 csum_size);
2340 }
2341
4a54c8c1
JS
2342 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2343
2344 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2345 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2346 failrec->this_mirror, num_copies, failrec->in_validation);
2347
013bd4c3
TI
2348 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2349 failrec->this_mirror,
2350 failrec->bio_flags, 0);
2351 return ret;
4a54c8c1
JS
2352}
2353
d1310b2e
CM
2354/* lots and lots of room for performance fixes in the end_bio funcs */
2355
87826df0
JM
2356int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2357{
2358 int uptodate = (err == 0);
2359 struct extent_io_tree *tree;
3e2426bd 2360 int ret = 0;
87826df0
JM
2361
2362 tree = &BTRFS_I(page->mapping->host)->io_tree;
2363
2364 if (tree->ops && tree->ops->writepage_end_io_hook) {
2365 ret = tree->ops->writepage_end_io_hook(page, start,
2366 end, NULL, uptodate);
2367 if (ret)
2368 uptodate = 0;
2369 }
2370
87826df0 2371 if (!uptodate) {
87826df0
JM
2372 ClearPageUptodate(page);
2373 SetPageError(page);
5dca6eea
LB
2374 ret = ret < 0 ? ret : -EIO;
2375 mapping_set_error(page->mapping, ret);
87826df0
JM
2376 }
2377 return 0;
2378}
2379
d1310b2e
CM
2380/*
2381 * after a writepage IO is done, we need to:
2382 * clear the uptodate bits on error
2383 * clear the writeback bits in the extent tree for this IO
2384 * end_page_writeback if the page has no more pending IO
2385 *
2386 * Scheduling is not allowed, so the extent state tree is expected
2387 * to have one and only one object corresponding to this IO.
2388 */
d1310b2e 2389static void end_bio_extent_writepage(struct bio *bio, int err)
d1310b2e 2390{
2c30c71b 2391 struct bio_vec *bvec;
d1310b2e
CM
2392 u64 start;
2393 u64 end;
2c30c71b 2394 int i;
d1310b2e 2395
2c30c71b 2396 bio_for_each_segment_all(bvec, bio, i) {
d1310b2e 2397 struct page *page = bvec->bv_page;
902b22f3 2398
17a5adcc
AO
2399 /* We always issue full-page reads, but if some block
2400 * in a page fails to read, blk_update_request() will
2401 * advance bv_offset and adjust bv_len to compensate.
2402 * Print a warning for nonzero offsets, and an error
2403 * if they don't add up to a full page. */
efe120a0
FH
2404 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2405 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2406 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2407 "partial page write in btrfs with offset %u and length %u",
2408 bvec->bv_offset, bvec->bv_len);
2409 else
2410 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2411 "incomplete page write in btrfs with offset %u and "
2412 "length %u",
2413 bvec->bv_offset, bvec->bv_len);
2414 }
d1310b2e 2415
17a5adcc
AO
2416 start = page_offset(page);
2417 end = start + bvec->bv_offset + bvec->bv_len - 1;
d1310b2e 2418
87826df0
JM
2419 if (end_extent_writepage(page, err, start, end))
2420 continue;
70dec807 2421
17a5adcc 2422 end_page_writeback(page);
2c30c71b 2423 }
2b1f55b0 2424
d1310b2e 2425 bio_put(bio);
d1310b2e
CM
2426}
2427
883d0de4
MX
2428static void
2429endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2430 int uptodate)
2431{
2432 struct extent_state *cached = NULL;
2433 u64 end = start + len - 1;
2434
2435 if (uptodate && tree->track_uptodate)
2436 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2437 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2438}
2439
d1310b2e
CM
2440/*
2441 * after a readpage IO is done, we need to:
2442 * clear the uptodate bits on error
2443 * set the uptodate bits if things worked
2444 * set the page up to date if all extents in the tree are uptodate
2445 * clear the lock bit in the extent tree
2446 * unlock the page if there are no other extents locked for it
2447 *
2448 * Scheduling is not allowed, so the extent state tree is expected
2449 * to have one and only one object corresponding to this IO.
2450 */
d1310b2e 2451static void end_bio_extent_readpage(struct bio *bio, int err)
d1310b2e 2452{
2c30c71b 2453 struct bio_vec *bvec;
d1310b2e 2454 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
facc8a22 2455 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
902b22f3 2456 struct extent_io_tree *tree;
facc8a22 2457 u64 offset = 0;
d1310b2e
CM
2458 u64 start;
2459 u64 end;
facc8a22 2460 u64 len;
883d0de4
MX
2461 u64 extent_start = 0;
2462 u64 extent_len = 0;
5cf1ab56 2463 int mirror;
d1310b2e 2464 int ret;
2c30c71b 2465 int i;
d1310b2e 2466
d20f7043
CM
2467 if (err)
2468 uptodate = 0;
2469
2c30c71b 2470 bio_for_each_segment_all(bvec, bio, i) {
d1310b2e 2471 struct page *page = bvec->bv_page;
a71754fc 2472 struct inode *inode = page->mapping->host;
507903b8 2473
be3940c0 2474 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
c1dc0896 2475 "mirror=%u\n", (u64)bio->bi_iter.bi_sector, err,
9be3395b 2476 io_bio->mirror_num);
a71754fc 2477 tree = &BTRFS_I(inode)->io_tree;
902b22f3 2478
17a5adcc
AO
2479 /* We always issue full-page reads, but if some block
2480 * in a page fails to read, blk_update_request() will
2481 * advance bv_offset and adjust bv_len to compensate.
2482 * Print a warning for nonzero offsets, and an error
2483 * if they don't add up to a full page. */
efe120a0
FH
2484 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2485 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2486 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2487 "partial page read in btrfs with offset %u and length %u",
2488 bvec->bv_offset, bvec->bv_len);
2489 else
2490 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2491 "incomplete page read in btrfs with offset %u and "
2492 "length %u",
2493 bvec->bv_offset, bvec->bv_len);
2494 }
d1310b2e 2495
17a5adcc
AO
2496 start = page_offset(page);
2497 end = start + bvec->bv_offset + bvec->bv_len - 1;
facc8a22 2498 len = bvec->bv_len;
d1310b2e 2499
9be3395b 2500 mirror = io_bio->mirror_num;
f2a09da9
MX
2501 if (likely(uptodate && tree->ops &&
2502 tree->ops->readpage_end_io_hook)) {
facc8a22
MX
2503 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2504 page, start, end,
2505 mirror);
5ee0844d 2506 if (ret)
d1310b2e 2507 uptodate = 0;
5ee0844d 2508 else
4a54c8c1 2509 clean_io_failure(start, page);
d1310b2e 2510 }
ea466794 2511
f2a09da9
MX
2512 if (likely(uptodate))
2513 goto readpage_ok;
2514
2515 if (tree->ops && tree->ops->readpage_io_failed_hook) {
5cf1ab56 2516 ret = tree->ops->readpage_io_failed_hook(page, mirror);
ea466794
JB
2517 if (!ret && !err &&
2518 test_bit(BIO_UPTODATE, &bio->bi_flags))
2519 uptodate = 1;
f2a09da9 2520 } else {
f4a8e656
JS
2521 /*
2522 * The generic bio_readpage_error handles errors the
2523 * following way: If possible, new read requests are
2524 * created and submitted and will end up in
2525 * end_bio_extent_readpage as well (if we're lucky, not
2526 * in the !uptodate case). In that case it returns 0 and
2527 * we just go on with the next page in our bio. If it
2528 * can't handle the error it will return -EIO and we
2529 * remain responsible for that page.
2530 */
facc8a22
MX
2531 ret = bio_readpage_error(bio, offset, page, start, end,
2532 mirror);
7e38326f 2533 if (ret == 0) {
3b951516
CM
2534 uptodate =
2535 test_bit(BIO_UPTODATE, &bio->bi_flags);
d20f7043
CM
2536 if (err)
2537 uptodate = 0;
38c1c2e4 2538 offset += len;
7e38326f
CM
2539 continue;
2540 }
2541 }
f2a09da9 2542readpage_ok:
883d0de4 2543 if (likely(uptodate)) {
a71754fc
JB
2544 loff_t i_size = i_size_read(inode);
2545 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
a583c026 2546 unsigned off;
a71754fc
JB
2547
2548 /* Zero out the end if this page straddles i_size */
a583c026
LB
2549 off = i_size & (PAGE_CACHE_SIZE-1);
2550 if (page->index == end_index && off)
2551 zero_user_segment(page, off, PAGE_CACHE_SIZE);
17a5adcc 2552 SetPageUptodate(page);
70dec807 2553 } else {
17a5adcc
AO
2554 ClearPageUptodate(page);
2555 SetPageError(page);
70dec807 2556 }
17a5adcc 2557 unlock_page(page);
facc8a22 2558 offset += len;
883d0de4
MX
2559
2560 if (unlikely(!uptodate)) {
2561 if (extent_len) {
2562 endio_readpage_release_extent(tree,
2563 extent_start,
2564 extent_len, 1);
2565 extent_start = 0;
2566 extent_len = 0;
2567 }
2568 endio_readpage_release_extent(tree, start,
2569 end - start + 1, 0);
2570 } else if (!extent_len) {
2571 extent_start = start;
2572 extent_len = end + 1 - start;
2573 } else if (extent_start + extent_len == start) {
2574 extent_len += end + 1 - start;
2575 } else {
2576 endio_readpage_release_extent(tree, extent_start,
2577 extent_len, uptodate);
2578 extent_start = start;
2579 extent_len = end + 1 - start;
2580 }
2c30c71b 2581 }
d1310b2e 2582
883d0de4
MX
2583 if (extent_len)
2584 endio_readpage_release_extent(tree, extent_start, extent_len,
2585 uptodate);
facc8a22
MX
2586 if (io_bio->end_io)
2587 io_bio->end_io(io_bio, err);
d1310b2e 2588 bio_put(bio);
d1310b2e
CM
2589}
2590
9be3395b
CM
2591/*
2592 * this allocates from the btrfs_bioset. We're returning a bio right now
2593 * but you can call btrfs_io_bio for the appropriate container_of magic
2594 */
88f794ed
MX
2595struct bio *
2596btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2597 gfp_t gfp_flags)
d1310b2e 2598{
facc8a22 2599 struct btrfs_io_bio *btrfs_bio;
d1310b2e
CM
2600 struct bio *bio;
2601
9be3395b 2602 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
d1310b2e
CM
2603
2604 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
9be3395b
CM
2605 while (!bio && (nr_vecs /= 2)) {
2606 bio = bio_alloc_bioset(gfp_flags,
2607 nr_vecs, btrfs_bioset);
2608 }
d1310b2e
CM
2609 }
2610
2611 if (bio) {
2612 bio->bi_bdev = bdev;
4f024f37 2613 bio->bi_iter.bi_sector = first_sector;
facc8a22
MX
2614 btrfs_bio = btrfs_io_bio(bio);
2615 btrfs_bio->csum = NULL;
2616 btrfs_bio->csum_allocated = NULL;
2617 btrfs_bio->end_io = NULL;
d1310b2e
CM
2618 }
2619 return bio;
2620}
2621
9be3395b
CM
2622struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2623{
23ea8e5a
MX
2624 struct btrfs_io_bio *btrfs_bio;
2625 struct bio *new;
9be3395b 2626
23ea8e5a
MX
2627 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2628 if (new) {
2629 btrfs_bio = btrfs_io_bio(new);
2630 btrfs_bio->csum = NULL;
2631 btrfs_bio->csum_allocated = NULL;
2632 btrfs_bio->end_io = NULL;
2633 }
2634 return new;
2635}
9be3395b
CM
2636
2637/* this also allocates from the btrfs_bioset */
2638struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2639{
facc8a22
MX
2640 struct btrfs_io_bio *btrfs_bio;
2641 struct bio *bio;
2642
2643 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2644 if (bio) {
2645 btrfs_bio = btrfs_io_bio(bio);
2646 btrfs_bio->csum = NULL;
2647 btrfs_bio->csum_allocated = NULL;
2648 btrfs_bio->end_io = NULL;
2649 }
2650 return bio;
9be3395b
CM
2651}
2652
2653
355808c2
JM
2654static int __must_check submit_one_bio(int rw, struct bio *bio,
2655 int mirror_num, unsigned long bio_flags)
d1310b2e 2656{
d1310b2e 2657 int ret = 0;
70dec807
CM
2658 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2659 struct page *page = bvec->bv_page;
2660 struct extent_io_tree *tree = bio->bi_private;
70dec807 2661 u64 start;
70dec807 2662
4eee4fa4 2663 start = page_offset(page) + bvec->bv_offset;
70dec807 2664
902b22f3 2665 bio->bi_private = NULL;
d1310b2e
CM
2666
2667 bio_get(bio);
2668
065631f6 2669 if (tree->ops && tree->ops->submit_bio_hook)
6b82ce8d 2670 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
eaf25d93 2671 mirror_num, bio_flags, start);
0b86a832 2672 else
21adbd5c 2673 btrfsic_submit_bio(rw, bio);
4a54c8c1 2674
d1310b2e
CM
2675 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2676 ret = -EOPNOTSUPP;
2677 bio_put(bio);
2678 return ret;
2679}
2680
64a16701 2681static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
3444a972
JM
2682 unsigned long offset, size_t size, struct bio *bio,
2683 unsigned long bio_flags)
2684{
2685 int ret = 0;
2686 if (tree->ops && tree->ops->merge_bio_hook)
64a16701 2687 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
3444a972
JM
2688 bio_flags);
2689 BUG_ON(ret < 0);
2690 return ret;
2691
2692}
2693
d1310b2e
CM
2694static int submit_extent_page(int rw, struct extent_io_tree *tree,
2695 struct page *page, sector_t sector,
2696 size_t size, unsigned long offset,
2697 struct block_device *bdev,
2698 struct bio **bio_ret,
2699 unsigned long max_pages,
f188591e 2700 bio_end_io_t end_io_func,
c8b97818
CM
2701 int mirror_num,
2702 unsigned long prev_bio_flags,
2703 unsigned long bio_flags)
d1310b2e
CM
2704{
2705 int ret = 0;
2706 struct bio *bio;
2707 int nr;
c8b97818
CM
2708 int contig = 0;
2709 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2710 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
5b050f04 2711 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
d1310b2e
CM
2712
2713 if (bio_ret && *bio_ret) {
2714 bio = *bio_ret;
c8b97818 2715 if (old_compressed)
4f024f37 2716 contig = bio->bi_iter.bi_sector == sector;
c8b97818 2717 else
f73a1c7d 2718 contig = bio_end_sector(bio) == sector;
c8b97818
CM
2719
2720 if (prev_bio_flags != bio_flags || !contig ||
64a16701 2721 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
c8b97818
CM
2722 bio_add_page(bio, page, page_size, offset) < page_size) {
2723 ret = submit_one_bio(rw, bio, mirror_num,
2724 prev_bio_flags);
79787eaa
JM
2725 if (ret < 0)
2726 return ret;
d1310b2e
CM
2727 bio = NULL;
2728 } else {
2729 return 0;
2730 }
2731 }
c8b97818
CM
2732 if (this_compressed)
2733 nr = BIO_MAX_PAGES;
2734 else
2735 nr = bio_get_nr_vecs(bdev);
2736
88f794ed 2737 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
5df67083
TI
2738 if (!bio)
2739 return -ENOMEM;
70dec807 2740
c8b97818 2741 bio_add_page(bio, page, page_size, offset);
d1310b2e
CM
2742 bio->bi_end_io = end_io_func;
2743 bio->bi_private = tree;
70dec807 2744
d397712b 2745 if (bio_ret)
d1310b2e 2746 *bio_ret = bio;
d397712b 2747 else
c8b97818 2748 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
d1310b2e
CM
2749
2750 return ret;
2751}
2752
48a3b636
ES
2753static void attach_extent_buffer_page(struct extent_buffer *eb,
2754 struct page *page)
d1310b2e
CM
2755{
2756 if (!PagePrivate(page)) {
2757 SetPagePrivate(page);
d1310b2e 2758 page_cache_get(page);
4f2de97a
JB
2759 set_page_private(page, (unsigned long)eb);
2760 } else {
2761 WARN_ON(page->private != (unsigned long)eb);
d1310b2e
CM
2762 }
2763}
2764
4f2de97a 2765void set_page_extent_mapped(struct page *page)
d1310b2e 2766{
4f2de97a
JB
2767 if (!PagePrivate(page)) {
2768 SetPagePrivate(page);
2769 page_cache_get(page);
2770 set_page_private(page, EXTENT_PAGE_PRIVATE);
2771 }
d1310b2e
CM
2772}
2773
125bac01
MX
2774static struct extent_map *
2775__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2776 u64 start, u64 len, get_extent_t *get_extent,
2777 struct extent_map **em_cached)
2778{
2779 struct extent_map *em;
2780
2781 if (em_cached && *em_cached) {
2782 em = *em_cached;
cbc0e928 2783 if (extent_map_in_tree(em) && start >= em->start &&
125bac01
MX
2784 start < extent_map_end(em)) {
2785 atomic_inc(&em->refs);
2786 return em;
2787 }
2788
2789 free_extent_map(em);
2790 *em_cached = NULL;
2791 }
2792
2793 em = get_extent(inode, page, pg_offset, start, len, 0);
2794 if (em_cached && !IS_ERR_OR_NULL(em)) {
2795 BUG_ON(*em_cached);
2796 atomic_inc(&em->refs);
2797 *em_cached = em;
2798 }
2799 return em;
2800}
d1310b2e
CM
2801/*
2802 * basic readpage implementation. Locked extent state structs are inserted
2803 * into the tree that are removed when the IO is done (by the end_io
2804 * handlers)
79787eaa 2805 * XXX JDM: This needs looking at to ensure proper page locking
d1310b2e 2806 */
9974090b
MX
2807static int __do_readpage(struct extent_io_tree *tree,
2808 struct page *page,
2809 get_extent_t *get_extent,
125bac01 2810 struct extent_map **em_cached,
9974090b
MX
2811 struct bio **bio, int mirror_num,
2812 unsigned long *bio_flags, int rw)
d1310b2e
CM
2813{
2814 struct inode *inode = page->mapping->host;
4eee4fa4 2815 u64 start = page_offset(page);
d1310b2e
CM
2816 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2817 u64 end;
2818 u64 cur = start;
2819 u64 extent_offset;
2820 u64 last_byte = i_size_read(inode);
2821 u64 block_start;
2822 u64 cur_end;
2823 sector_t sector;
2824 struct extent_map *em;
2825 struct block_device *bdev;
2826 int ret;
2827 int nr = 0;
4b384318 2828 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
306e16ce 2829 size_t pg_offset = 0;
d1310b2e 2830 size_t iosize;
c8b97818 2831 size_t disk_io_size;
d1310b2e 2832 size_t blocksize = inode->i_sb->s_blocksize;
4b384318 2833 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
d1310b2e
CM
2834
2835 set_page_extent_mapped(page);
2836
9974090b 2837 end = page_end;
90a887c9
DM
2838 if (!PageUptodate(page)) {
2839 if (cleancache_get_page(page) == 0) {
2840 BUG_ON(blocksize != PAGE_SIZE);
9974090b 2841 unlock_extent(tree, start, end);
90a887c9
DM
2842 goto out;
2843 }
2844 }
2845
c8b97818
CM
2846 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2847 char *userpage;
2848 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2849
2850 if (zero_offset) {
2851 iosize = PAGE_CACHE_SIZE - zero_offset;
7ac687d9 2852 userpage = kmap_atomic(page);
c8b97818
CM
2853 memset(userpage + zero_offset, 0, iosize);
2854 flush_dcache_page(page);
7ac687d9 2855 kunmap_atomic(userpage);
c8b97818
CM
2856 }
2857 }
d1310b2e 2858 while (cur <= end) {
c8f2f24b
JB
2859 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2860
d1310b2e
CM
2861 if (cur >= last_byte) {
2862 char *userpage;
507903b8
AJ
2863 struct extent_state *cached = NULL;
2864
306e16ce 2865 iosize = PAGE_CACHE_SIZE - pg_offset;
7ac687d9 2866 userpage = kmap_atomic(page);
306e16ce 2867 memset(userpage + pg_offset, 0, iosize);
d1310b2e 2868 flush_dcache_page(page);
7ac687d9 2869 kunmap_atomic(userpage);
d1310b2e 2870 set_extent_uptodate(tree, cur, cur + iosize - 1,
507903b8 2871 &cached, GFP_NOFS);
4b384318
MF
2872 if (!parent_locked)
2873 unlock_extent_cached(tree, cur,
2874 cur + iosize - 1,
2875 &cached, GFP_NOFS);
d1310b2e
CM
2876 break;
2877 }
125bac01
MX
2878 em = __get_extent_map(inode, page, pg_offset, cur,
2879 end - cur + 1, get_extent, em_cached);
c704005d 2880 if (IS_ERR_OR_NULL(em)) {
d1310b2e 2881 SetPageError(page);
4b384318
MF
2882 if (!parent_locked)
2883 unlock_extent(tree, cur, end);
d1310b2e
CM
2884 break;
2885 }
d1310b2e
CM
2886 extent_offset = cur - em->start;
2887 BUG_ON(extent_map_end(em) <= cur);
2888 BUG_ON(end < cur);
2889
261507a0 2890 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
4b384318 2891 this_bio_flag |= EXTENT_BIO_COMPRESSED;
261507a0
LZ
2892 extent_set_compress_type(&this_bio_flag,
2893 em->compress_type);
2894 }
c8b97818 2895
d1310b2e
CM
2896 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2897 cur_end = min(extent_map_end(em) - 1, end);
fda2832f 2898 iosize = ALIGN(iosize, blocksize);
c8b97818
CM
2899 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2900 disk_io_size = em->block_len;
2901 sector = em->block_start >> 9;
2902 } else {
2903 sector = (em->block_start + extent_offset) >> 9;
2904 disk_io_size = iosize;
2905 }
d1310b2e
CM
2906 bdev = em->bdev;
2907 block_start = em->block_start;
d899e052
YZ
2908 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2909 block_start = EXTENT_MAP_HOLE;
d1310b2e
CM
2910 free_extent_map(em);
2911 em = NULL;
2912
2913 /* we've found a hole, just zero and go on */
2914 if (block_start == EXTENT_MAP_HOLE) {
2915 char *userpage;
507903b8
AJ
2916 struct extent_state *cached = NULL;
2917
7ac687d9 2918 userpage = kmap_atomic(page);
306e16ce 2919 memset(userpage + pg_offset, 0, iosize);
d1310b2e 2920 flush_dcache_page(page);
7ac687d9 2921 kunmap_atomic(userpage);
d1310b2e
CM
2922
2923 set_extent_uptodate(tree, cur, cur + iosize - 1,
507903b8
AJ
2924 &cached, GFP_NOFS);
2925 unlock_extent_cached(tree, cur, cur + iosize - 1,
2926 &cached, GFP_NOFS);
d1310b2e 2927 cur = cur + iosize;
306e16ce 2928 pg_offset += iosize;
d1310b2e
CM
2929 continue;
2930 }
2931 /* the get_extent function already copied into the page */
9655d298
CM
2932 if (test_range_bit(tree, cur, cur_end,
2933 EXTENT_UPTODATE, 1, NULL)) {
a1b32a59 2934 check_page_uptodate(tree, page);
4b384318
MF
2935 if (!parent_locked)
2936 unlock_extent(tree, cur, cur + iosize - 1);
d1310b2e 2937 cur = cur + iosize;
306e16ce 2938 pg_offset += iosize;
d1310b2e
CM
2939 continue;
2940 }
70dec807
CM
2941 /* we have an inline extent but it didn't get marked up
2942 * to date. Error out
2943 */
2944 if (block_start == EXTENT_MAP_INLINE) {
2945 SetPageError(page);
4b384318
MF
2946 if (!parent_locked)
2947 unlock_extent(tree, cur, cur + iosize - 1);
70dec807 2948 cur = cur + iosize;
306e16ce 2949 pg_offset += iosize;
70dec807
CM
2950 continue;
2951 }
d1310b2e 2952
c8f2f24b 2953 pnr -= page->index;
d4c7ca86 2954 ret = submit_extent_page(rw, tree, page,
306e16ce 2955 sector, disk_io_size, pg_offset,
89642229 2956 bdev, bio, pnr,
c8b97818
CM
2957 end_bio_extent_readpage, mirror_num,
2958 *bio_flags,
2959 this_bio_flag);
c8f2f24b
JB
2960 if (!ret) {
2961 nr++;
2962 *bio_flags = this_bio_flag;
2963 } else {
d1310b2e 2964 SetPageError(page);
4b384318
MF
2965 if (!parent_locked)
2966 unlock_extent(tree, cur, cur + iosize - 1);
edd33c99 2967 }
d1310b2e 2968 cur = cur + iosize;
306e16ce 2969 pg_offset += iosize;
d1310b2e 2970 }
90a887c9 2971out:
d1310b2e
CM
2972 if (!nr) {
2973 if (!PageError(page))
2974 SetPageUptodate(page);
2975 unlock_page(page);
2976 }
2977 return 0;
2978}
2979
9974090b
MX
2980static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2981 struct page *pages[], int nr_pages,
2982 u64 start, u64 end,
2983 get_extent_t *get_extent,
125bac01 2984 struct extent_map **em_cached,
9974090b
MX
2985 struct bio **bio, int mirror_num,
2986 unsigned long *bio_flags, int rw)
2987{
2988 struct inode *inode;
2989 struct btrfs_ordered_extent *ordered;
2990 int index;
2991
2992 inode = pages[0]->mapping->host;
2993 while (1) {
2994 lock_extent(tree, start, end);
2995 ordered = btrfs_lookup_ordered_range(inode, start,
2996 end - start + 1);
2997 if (!ordered)
2998 break;
2999 unlock_extent(tree, start, end);
3000 btrfs_start_ordered_extent(inode, ordered, 1);
3001 btrfs_put_ordered_extent(ordered);
3002 }
3003
3004 for (index = 0; index < nr_pages; index++) {
125bac01
MX
3005 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
3006 mirror_num, bio_flags, rw);
9974090b
MX
3007 page_cache_release(pages[index]);
3008 }
3009}
3010
3011static void __extent_readpages(struct extent_io_tree *tree,
3012 struct page *pages[],
3013 int nr_pages, get_extent_t *get_extent,
125bac01 3014 struct extent_map **em_cached,
9974090b
MX
3015 struct bio **bio, int mirror_num,
3016 unsigned long *bio_flags, int rw)
3017{
35a3621b 3018 u64 start = 0;
9974090b
MX
3019 u64 end = 0;
3020 u64 page_start;
3021 int index;
35a3621b 3022 int first_index = 0;
9974090b
MX
3023
3024 for (index = 0; index < nr_pages; index++) {
3025 page_start = page_offset(pages[index]);
3026 if (!end) {
3027 start = page_start;
3028 end = start + PAGE_CACHE_SIZE - 1;
3029 first_index = index;
3030 } else if (end + 1 == page_start) {
3031 end += PAGE_CACHE_SIZE;
3032 } else {
3033 __do_contiguous_readpages(tree, &pages[first_index],
3034 index - first_index, start,
125bac01
MX
3035 end, get_extent, em_cached,
3036 bio, mirror_num, bio_flags,
3037 rw);
9974090b
MX
3038 start = page_start;
3039 end = start + PAGE_CACHE_SIZE - 1;
3040 first_index = index;
3041 }
3042 }
3043
3044 if (end)
3045 __do_contiguous_readpages(tree, &pages[first_index],
3046 index - first_index, start,
125bac01 3047 end, get_extent, em_cached, bio,
9974090b
MX
3048 mirror_num, bio_flags, rw);
3049}
3050
3051static int __extent_read_full_page(struct extent_io_tree *tree,
3052 struct page *page,
3053 get_extent_t *get_extent,
3054 struct bio **bio, int mirror_num,
3055 unsigned long *bio_flags, int rw)
3056{
3057 struct inode *inode = page->mapping->host;
3058 struct btrfs_ordered_extent *ordered;
3059 u64 start = page_offset(page);
3060 u64 end = start + PAGE_CACHE_SIZE - 1;
3061 int ret;
3062
3063 while (1) {
3064 lock_extent(tree, start, end);
3065 ordered = btrfs_lookup_ordered_extent(inode, start);
3066 if (!ordered)
3067 break;
3068 unlock_extent(tree, start, end);
3069 btrfs_start_ordered_extent(inode, ordered, 1);
3070 btrfs_put_ordered_extent(ordered);
3071 }
3072
125bac01
MX
3073 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3074 bio_flags, rw);
9974090b
MX
3075 return ret;
3076}
3077
d1310b2e 3078int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
8ddc7d9c 3079 get_extent_t *get_extent, int mirror_num)
d1310b2e
CM
3080{
3081 struct bio *bio = NULL;
c8b97818 3082 unsigned long bio_flags = 0;
d1310b2e
CM
3083 int ret;
3084
8ddc7d9c 3085 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
d4c7ca86 3086 &bio_flags, READ);
d1310b2e 3087 if (bio)
8ddc7d9c 3088 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
d1310b2e
CM
3089 return ret;
3090}
d1310b2e 3091
4b384318
MF
3092int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3093 get_extent_t *get_extent, int mirror_num)
3094{
3095 struct bio *bio = NULL;
3096 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3097 int ret;
3098
3099 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3100 &bio_flags, READ);
3101 if (bio)
3102 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3103 return ret;
3104}
3105
11c8349b
CM
3106static noinline void update_nr_written(struct page *page,
3107 struct writeback_control *wbc,
3108 unsigned long nr_written)
3109{
3110 wbc->nr_to_write -= nr_written;
3111 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3112 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3113 page->mapping->writeback_index = page->index + nr_written;
3114}
3115
d1310b2e 3116/*
40f76580
CM
3117 * helper for __extent_writepage, doing all of the delayed allocation setup.
3118 *
3119 * This returns 1 if our fill_delalloc function did all the work required
3120 * to write the page (copy into inline extent). In this case the IO has
3121 * been started and the page is already unlocked.
3122 *
3123 * This returns 0 if all went well (page still locked)
3124 * This returns < 0 if there were errors (page still locked)
d1310b2e 3125 */
40f76580
CM
3126static noinline_for_stack int writepage_delalloc(struct inode *inode,
3127 struct page *page, struct writeback_control *wbc,
3128 struct extent_page_data *epd,
3129 u64 delalloc_start,
3130 unsigned long *nr_written)
3131{
3132 struct extent_io_tree *tree = epd->tree;
3133 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3134 u64 nr_delalloc;
3135 u64 delalloc_to_write = 0;
3136 u64 delalloc_end = 0;
3137 int ret;
3138 int page_started = 0;
3139
3140 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3141 return 0;
3142
3143 while (delalloc_end < page_end) {
3144 nr_delalloc = find_lock_delalloc_range(inode, tree,
3145 page,
3146 &delalloc_start,
3147 &delalloc_end,
3148 128 * 1024 * 1024);
3149 if (nr_delalloc == 0) {
3150 delalloc_start = delalloc_end + 1;
3151 continue;
3152 }
3153 ret = tree->ops->fill_delalloc(inode, page,
3154 delalloc_start,
3155 delalloc_end,
3156 &page_started,
3157 nr_written);
3158 /* File system has been set read-only */
3159 if (ret) {
3160 SetPageError(page);
3161 /* fill_delalloc should be return < 0 for error
3162 * but just in case, we use > 0 here meaning the
3163 * IO is started, so we don't want to return > 0
3164 * unless things are going well.
3165 */
3166 ret = ret < 0 ? ret : -EIO;
3167 goto done;
3168 }
3169 /*
3170 * delalloc_end is already one less than the total
3171 * length, so we don't subtract one from
3172 * PAGE_CACHE_SIZE
3173 */
3174 delalloc_to_write += (delalloc_end - delalloc_start +
3175 PAGE_CACHE_SIZE) >>
3176 PAGE_CACHE_SHIFT;
3177 delalloc_start = delalloc_end + 1;
3178 }
3179 if (wbc->nr_to_write < delalloc_to_write) {
3180 int thresh = 8192;
3181
3182 if (delalloc_to_write < thresh * 2)
3183 thresh = delalloc_to_write;
3184 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3185 thresh);
3186 }
3187
3188 /* did the fill delalloc function already unlock and start
3189 * the IO?
3190 */
3191 if (page_started) {
3192 /*
3193 * we've unlocked the page, so we can't update
3194 * the mapping's writeback index, just update
3195 * nr_to_write.
3196 */
3197 wbc->nr_to_write -= *nr_written;
3198 return 1;
3199 }
3200
3201 ret = 0;
3202
3203done:
3204 return ret;
3205}
3206
3207/*
3208 * helper for __extent_writepage. This calls the writepage start hooks,
3209 * and does the loop to map the page into extents and bios.
3210 *
3211 * We return 1 if the IO is started and the page is unlocked,
3212 * 0 if all went well (page still locked)
3213 * < 0 if there were errors (page still locked)
3214 */
3215static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3216 struct page *page,
3217 struct writeback_control *wbc,
3218 struct extent_page_data *epd,
3219 loff_t i_size,
3220 unsigned long nr_written,
3221 int write_flags, int *nr_ret)
d1310b2e 3222{
d1310b2e 3223 struct extent_io_tree *tree = epd->tree;
4eee4fa4 3224 u64 start = page_offset(page);
d1310b2e
CM
3225 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3226 u64 end;
3227 u64 cur = start;
3228 u64 extent_offset;
d1310b2e
CM
3229 u64 block_start;
3230 u64 iosize;
3231 sector_t sector;
2c64c53d 3232 struct extent_state *cached_state = NULL;
d1310b2e
CM
3233 struct extent_map *em;
3234 struct block_device *bdev;
7f3c74fb 3235 size_t pg_offset = 0;
d1310b2e 3236 size_t blocksize;
40f76580
CM
3237 int ret = 0;
3238 int nr = 0;
3239 bool compressed;
c8b97818 3240
247e743c 3241 if (tree->ops && tree->ops->writepage_start_hook) {
c8b97818
CM
3242 ret = tree->ops->writepage_start_hook(page, start,
3243 page_end);
87826df0
JM
3244 if (ret) {
3245 /* Fixup worker will requeue */
3246 if (ret == -EBUSY)
3247 wbc->pages_skipped++;
3248 else
3249 redirty_page_for_writepage(wbc, page);
40f76580 3250
11c8349b 3251 update_nr_written(page, wbc, nr_written);
247e743c 3252 unlock_page(page);
40f76580 3253 ret = 1;
11c8349b 3254 goto done_unlocked;
247e743c
CM
3255 }
3256 }
3257
11c8349b
CM
3258 /*
3259 * we don't want to touch the inode after unlocking the page,
3260 * so we update the mapping writeback index now
3261 */
3262 update_nr_written(page, wbc, nr_written + 1);
771ed689 3263
d1310b2e 3264 end = page_end;
40f76580 3265 if (i_size <= start) {
e6dcd2dc
CM
3266 if (tree->ops && tree->ops->writepage_end_io_hook)
3267 tree->ops->writepage_end_io_hook(page, start,
3268 page_end, NULL, 1);
d1310b2e
CM
3269 goto done;
3270 }
3271
d1310b2e
CM
3272 blocksize = inode->i_sb->s_blocksize;
3273
3274 while (cur <= end) {
40f76580
CM
3275 u64 em_end;
3276 if (cur >= i_size) {
e6dcd2dc
CM
3277 if (tree->ops && tree->ops->writepage_end_io_hook)
3278 tree->ops->writepage_end_io_hook(page, cur,
3279 page_end, NULL, 1);
d1310b2e
CM
3280 break;
3281 }
7f3c74fb 3282 em = epd->get_extent(inode, page, pg_offset, cur,
d1310b2e 3283 end - cur + 1, 1);
c704005d 3284 if (IS_ERR_OR_NULL(em)) {
d1310b2e 3285 SetPageError(page);
61391d56 3286 ret = PTR_ERR_OR_ZERO(em);
d1310b2e
CM
3287 break;
3288 }
3289
3290 extent_offset = cur - em->start;
40f76580
CM
3291 em_end = extent_map_end(em);
3292 BUG_ON(em_end <= cur);
d1310b2e 3293 BUG_ON(end < cur);
40f76580 3294 iosize = min(em_end - cur, end - cur + 1);
fda2832f 3295 iosize = ALIGN(iosize, blocksize);
d1310b2e
CM
3296 sector = (em->block_start + extent_offset) >> 9;
3297 bdev = em->bdev;
3298 block_start = em->block_start;
c8b97818 3299 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
d1310b2e
CM
3300 free_extent_map(em);
3301 em = NULL;
3302
c8b97818
CM
3303 /*
3304 * compressed and inline extents are written through other
3305 * paths in the FS
3306 */
3307 if (compressed || block_start == EXTENT_MAP_HOLE ||
d1310b2e 3308 block_start == EXTENT_MAP_INLINE) {
c8b97818
CM
3309 /*
3310 * end_io notification does not happen here for
3311 * compressed extents
3312 */
3313 if (!compressed && tree->ops &&
3314 tree->ops->writepage_end_io_hook)
e6dcd2dc
CM
3315 tree->ops->writepage_end_io_hook(page, cur,
3316 cur + iosize - 1,
3317 NULL, 1);
c8b97818
CM
3318 else if (compressed) {
3319 /* we don't want to end_page_writeback on
3320 * a compressed extent. this happens
3321 * elsewhere
3322 */
3323 nr++;
3324 }
3325
3326 cur += iosize;
7f3c74fb 3327 pg_offset += iosize;
d1310b2e
CM
3328 continue;
3329 }
c8b97818 3330
d1310b2e
CM
3331 if (tree->ops && tree->ops->writepage_io_hook) {
3332 ret = tree->ops->writepage_io_hook(page, cur,
3333 cur + iosize - 1);
3334 } else {
3335 ret = 0;
3336 }
1259ab75 3337 if (ret) {
d1310b2e 3338 SetPageError(page);
1259ab75 3339 } else {
40f76580 3340 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
7f3c74fb 3341
d1310b2e
CM
3342 set_range_writeback(tree, cur, cur + iosize - 1);
3343 if (!PageWriteback(page)) {
efe120a0
FH
3344 btrfs_err(BTRFS_I(inode)->root->fs_info,
3345 "page %lu not writeback, cur %llu end %llu",
c1c9ff7c 3346 page->index, cur, end);
d1310b2e
CM
3347 }
3348
ffbd517d
CM
3349 ret = submit_extent_page(write_flags, tree, page,
3350 sector, iosize, pg_offset,
3351 bdev, &epd->bio, max_nr,
c8b97818
CM
3352 end_bio_extent_writepage,
3353 0, 0, 0);
d1310b2e
CM
3354 if (ret)
3355 SetPageError(page);
3356 }
3357 cur = cur + iosize;
7f3c74fb 3358 pg_offset += iosize;
d1310b2e
CM
3359 nr++;
3360 }
40f76580
CM
3361done:
3362 *nr_ret = nr;
3363
3364done_unlocked:
3365
3366 /* drop our reference on any cached states */
3367 free_extent_state(cached_state);
3368 return ret;
3369}
3370
3371/*
3372 * the writepage semantics are similar to regular writepage. extent
3373 * records are inserted to lock ranges in the tree, and as dirty areas
3374 * are found, they are marked writeback. Then the lock bits are removed
3375 * and the end_io handler clears the writeback ranges
3376 */
3377static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3378 void *data)
3379{
3380 struct inode *inode = page->mapping->host;
3381 struct extent_page_data *epd = data;
3382 u64 start = page_offset(page);
3383 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3384 int ret;
3385 int nr = 0;
3386 size_t pg_offset = 0;
3387 loff_t i_size = i_size_read(inode);
3388 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3389 int write_flags;
3390 unsigned long nr_written = 0;
3391
3392 if (wbc->sync_mode == WB_SYNC_ALL)
3393 write_flags = WRITE_SYNC;
3394 else
3395 write_flags = WRITE;
3396
3397 trace___extent_writepage(page, inode, wbc);
3398
3399 WARN_ON(!PageLocked(page));
3400
3401 ClearPageError(page);
3402
3403 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3404 if (page->index > end_index ||
3405 (page->index == end_index && !pg_offset)) {
3406 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3407 unlock_page(page);
3408 return 0;
3409 }
3410
3411 if (page->index == end_index) {
3412 char *userpage;
3413
3414 userpage = kmap_atomic(page);
3415 memset(userpage + pg_offset, 0,
3416 PAGE_CACHE_SIZE - pg_offset);
3417 kunmap_atomic(userpage);
3418 flush_dcache_page(page);
3419 }
3420
3421 pg_offset = 0;
3422
3423 set_page_extent_mapped(page);
3424
3425 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3426 if (ret == 1)
3427 goto done_unlocked;
3428 if (ret)
3429 goto done;
3430
3431 ret = __extent_writepage_io(inode, page, wbc, epd,
3432 i_size, nr_written, write_flags, &nr);
3433 if (ret == 1)
3434 goto done_unlocked;
3435
d1310b2e
CM
3436done:
3437 if (nr == 0) {
3438 /* make sure the mapping tag for page dirty gets cleared */
3439 set_page_writeback(page);
3440 end_page_writeback(page);
3441 }
61391d56
FM
3442 if (PageError(page)) {
3443 ret = ret < 0 ? ret : -EIO;
3444 end_extent_writepage(page, ret, start, page_end);
3445 }
d1310b2e 3446 unlock_page(page);
40f76580 3447 return ret;
771ed689 3448
11c8349b 3449done_unlocked:
d1310b2e
CM
3450 return 0;
3451}
3452
fd8b2b61 3453void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
0b32f4bb 3454{
74316201
N
3455 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3456 TASK_UNINTERRUPTIBLE);
0b32f4bb
JB
3457}
3458
0e378df1
CM
3459static noinline_for_stack int
3460lock_extent_buffer_for_io(struct extent_buffer *eb,
3461 struct btrfs_fs_info *fs_info,
3462 struct extent_page_data *epd)
0b32f4bb
JB
3463{
3464 unsigned long i, num_pages;
3465 int flush = 0;
3466 int ret = 0;
3467
3468 if (!btrfs_try_tree_write_lock(eb)) {
3469 flush = 1;
3470 flush_write_bio(epd);
3471 btrfs_tree_lock(eb);
3472 }
3473
3474 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3475 btrfs_tree_unlock(eb);
3476 if (!epd->sync_io)
3477 return 0;
3478 if (!flush) {
3479 flush_write_bio(epd);
3480 flush = 1;
3481 }
a098d8e8
CM
3482 while (1) {
3483 wait_on_extent_buffer_writeback(eb);
3484 btrfs_tree_lock(eb);
3485 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3486 break;
0b32f4bb 3487 btrfs_tree_unlock(eb);
0b32f4bb
JB
3488 }
3489 }
3490
51561ffe
JB
3491 /*
3492 * We need to do this to prevent races in people who check if the eb is
3493 * under IO since we can end up having no IO bits set for a short period
3494 * of time.
3495 */
3496 spin_lock(&eb->refs_lock);
0b32f4bb
JB
3497 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3498 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
51561ffe 3499 spin_unlock(&eb->refs_lock);
0b32f4bb 3500 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
e2d84521
MX
3501 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3502 -eb->len,
3503 fs_info->dirty_metadata_batch);
0b32f4bb 3504 ret = 1;
51561ffe
JB
3505 } else {
3506 spin_unlock(&eb->refs_lock);
0b32f4bb
JB
3507 }
3508
3509 btrfs_tree_unlock(eb);
3510
3511 if (!ret)
3512 return ret;
3513
3514 num_pages = num_extent_pages(eb->start, eb->len);
3515 for (i = 0; i < num_pages; i++) {
3516 struct page *p = extent_buffer_page(eb, i);
3517
3518 if (!trylock_page(p)) {
3519 if (!flush) {
3520 flush_write_bio(epd);
3521 flush = 1;
3522 }
3523 lock_page(p);
3524 }
3525 }
3526
3527 return ret;
3528}
3529
3530static void end_extent_buffer_writeback(struct extent_buffer *eb)
3531{
3532 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
4e857c58 3533 smp_mb__after_atomic();
0b32f4bb
JB
3534 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3535}
3536
3537static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3538{
2c30c71b 3539 struct bio_vec *bvec;
0b32f4bb 3540 struct extent_buffer *eb;
2c30c71b 3541 int i, done;
0b32f4bb 3542
2c30c71b 3543 bio_for_each_segment_all(bvec, bio, i) {
0b32f4bb
JB
3544 struct page *page = bvec->bv_page;
3545
0b32f4bb
JB
3546 eb = (struct extent_buffer *)page->private;
3547 BUG_ON(!eb);
3548 done = atomic_dec_and_test(&eb->io_pages);
3549
2c30c71b 3550 if (err || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
0b32f4bb
JB
3551 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3552 ClearPageUptodate(page);
3553 SetPageError(page);
3554 }
3555
3556 end_page_writeback(page);
3557
3558 if (!done)
3559 continue;
3560
3561 end_extent_buffer_writeback(eb);
2c30c71b 3562 }
0b32f4bb
JB
3563
3564 bio_put(bio);
0b32f4bb
JB
3565}
3566
0e378df1 3567static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
0b32f4bb
JB
3568 struct btrfs_fs_info *fs_info,
3569 struct writeback_control *wbc,
3570 struct extent_page_data *epd)
3571{
3572 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
f28491e0 3573 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
0b32f4bb
JB
3574 u64 offset = eb->start;
3575 unsigned long i, num_pages;
de0022b9 3576 unsigned long bio_flags = 0;
d4c7ca86 3577 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
d7dbe9e7 3578 int ret = 0;
0b32f4bb
JB
3579
3580 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3581 num_pages = num_extent_pages(eb->start, eb->len);
3582 atomic_set(&eb->io_pages, num_pages);
de0022b9
JB
3583 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3584 bio_flags = EXTENT_BIO_TREE_LOG;
3585
0b32f4bb
JB
3586 for (i = 0; i < num_pages; i++) {
3587 struct page *p = extent_buffer_page(eb, i);
3588
3589 clear_page_dirty_for_io(p);
3590 set_page_writeback(p);
f28491e0 3591 ret = submit_extent_page(rw, tree, p, offset >> 9,
0b32f4bb
JB
3592 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3593 -1, end_bio_extent_buffer_writepage,
de0022b9
JB
3594 0, epd->bio_flags, bio_flags);
3595 epd->bio_flags = bio_flags;
0b32f4bb
JB
3596 if (ret) {
3597 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3598 SetPageError(p);
3599 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3600 end_extent_buffer_writeback(eb);
3601 ret = -EIO;
3602 break;
3603 }
3604 offset += PAGE_CACHE_SIZE;
3605 update_nr_written(p, wbc, 1);
3606 unlock_page(p);
3607 }
3608
3609 if (unlikely(ret)) {
3610 for (; i < num_pages; i++) {
3611 struct page *p = extent_buffer_page(eb, i);
3612 unlock_page(p);
3613 }
3614 }
3615
3616 return ret;
3617}
3618
3619int btree_write_cache_pages(struct address_space *mapping,
3620 struct writeback_control *wbc)
3621{
3622 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3623 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3624 struct extent_buffer *eb, *prev_eb = NULL;
3625 struct extent_page_data epd = {
3626 .bio = NULL,
3627 .tree = tree,
3628 .extent_locked = 0,
3629 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
de0022b9 3630 .bio_flags = 0,
0b32f4bb
JB
3631 };
3632 int ret = 0;
3633 int done = 0;
3634 int nr_to_write_done = 0;
3635 struct pagevec pvec;
3636 int nr_pages;
3637 pgoff_t index;
3638 pgoff_t end; /* Inclusive */
3639 int scanned = 0;
3640 int tag;
3641
3642 pagevec_init(&pvec, 0);
3643 if (wbc->range_cyclic) {
3644 index = mapping->writeback_index; /* Start from prev offset */
3645 end = -1;
3646 } else {
3647 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3648 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3649 scanned = 1;
3650 }
3651 if (wbc->sync_mode == WB_SYNC_ALL)
3652 tag = PAGECACHE_TAG_TOWRITE;
3653 else
3654 tag = PAGECACHE_TAG_DIRTY;
3655retry:
3656 if (wbc->sync_mode == WB_SYNC_ALL)
3657 tag_pages_for_writeback(mapping, index, end);
3658 while (!done && !nr_to_write_done && (index <= end) &&
3659 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3660 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3661 unsigned i;
3662
3663 scanned = 1;
3664 for (i = 0; i < nr_pages; i++) {
3665 struct page *page = pvec.pages[i];
3666
3667 if (!PagePrivate(page))
3668 continue;
3669
3670 if (!wbc->range_cyclic && page->index > end) {
3671 done = 1;
3672 break;
3673 }
3674
b5bae261
JB
3675 spin_lock(&mapping->private_lock);
3676 if (!PagePrivate(page)) {
3677 spin_unlock(&mapping->private_lock);
3678 continue;
3679 }
3680
0b32f4bb 3681 eb = (struct extent_buffer *)page->private;
b5bae261
JB
3682
3683 /*
3684 * Shouldn't happen and normally this would be a BUG_ON
3685 * but no sense in crashing the users box for something
3686 * we can survive anyway.
3687 */
fae7f21c 3688 if (WARN_ON(!eb)) {
b5bae261 3689 spin_unlock(&mapping->private_lock);
0b32f4bb
JB
3690 continue;
3691 }
3692
b5bae261
JB
3693 if (eb == prev_eb) {
3694 spin_unlock(&mapping->private_lock);
0b32f4bb 3695 continue;
b5bae261 3696 }
0b32f4bb 3697
b5bae261
JB
3698 ret = atomic_inc_not_zero(&eb->refs);
3699 spin_unlock(&mapping->private_lock);
3700 if (!ret)
0b32f4bb 3701 continue;
0b32f4bb
JB
3702
3703 prev_eb = eb;
3704 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3705 if (!ret) {
3706 free_extent_buffer(eb);
3707 continue;
3708 }
3709
3710 ret = write_one_eb(eb, fs_info, wbc, &epd);
3711 if (ret) {
3712 done = 1;
3713 free_extent_buffer(eb);
3714 break;
3715 }
3716 free_extent_buffer(eb);
3717
3718 /*
3719 * the filesystem may choose to bump up nr_to_write.
3720 * We have to make sure to honor the new nr_to_write
3721 * at any time
3722 */
3723 nr_to_write_done = wbc->nr_to_write <= 0;
3724 }
3725 pagevec_release(&pvec);
3726 cond_resched();
3727 }
3728 if (!scanned && !done) {
3729 /*
3730 * We hit the last page and there is more work to be done: wrap
3731 * back to the start of the file
3732 */
3733 scanned = 1;
3734 index = 0;
3735 goto retry;
3736 }
3737 flush_write_bio(&epd);
3738 return ret;
3739}
3740
d1310b2e 3741/**
4bef0848 3742 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
d1310b2e
CM
3743 * @mapping: address space structure to write
3744 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3745 * @writepage: function called for each page
3746 * @data: data passed to writepage function
3747 *
3748 * If a page is already under I/O, write_cache_pages() skips it, even
3749 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3750 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3751 * and msync() need to guarantee that all the data which was dirty at the time
3752 * the call was made get new I/O started against them. If wbc->sync_mode is
3753 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3754 * existing IO to complete.
3755 */
b2950863 3756static int extent_write_cache_pages(struct extent_io_tree *tree,
4bef0848
CM
3757 struct address_space *mapping,
3758 struct writeback_control *wbc,
d2c3f4f6
CM
3759 writepage_t writepage, void *data,
3760 void (*flush_fn)(void *))
d1310b2e 3761{
7fd1a3f7 3762 struct inode *inode = mapping->host;
d1310b2e
CM
3763 int ret = 0;
3764 int done = 0;
61391d56 3765 int err = 0;
f85d7d6c 3766 int nr_to_write_done = 0;
d1310b2e
CM
3767 struct pagevec pvec;
3768 int nr_pages;
3769 pgoff_t index;
3770 pgoff_t end; /* Inclusive */
3771 int scanned = 0;
f7aaa06b 3772 int tag;
d1310b2e 3773
7fd1a3f7
JB
3774 /*
3775 * We have to hold onto the inode so that ordered extents can do their
3776 * work when the IO finishes. The alternative to this is failing to add
3777 * an ordered extent if the igrab() fails there and that is a huge pain
3778 * to deal with, so instead just hold onto the inode throughout the
3779 * writepages operation. If it fails here we are freeing up the inode
3780 * anyway and we'd rather not waste our time writing out stuff that is
3781 * going to be truncated anyway.
3782 */
3783 if (!igrab(inode))
3784 return 0;
3785
d1310b2e
CM
3786 pagevec_init(&pvec, 0);
3787 if (wbc->range_cyclic) {
3788 index = mapping->writeback_index; /* Start from prev offset */
3789 end = -1;
3790 } else {
3791 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3792 end = wbc->range_end >> PAGE_CACHE_SHIFT;
d1310b2e
CM
3793 scanned = 1;
3794 }
f7aaa06b
JB
3795 if (wbc->sync_mode == WB_SYNC_ALL)
3796 tag = PAGECACHE_TAG_TOWRITE;
3797 else
3798 tag = PAGECACHE_TAG_DIRTY;
d1310b2e 3799retry:
f7aaa06b
JB
3800 if (wbc->sync_mode == WB_SYNC_ALL)
3801 tag_pages_for_writeback(mapping, index, end);
f85d7d6c 3802 while (!done && !nr_to_write_done && (index <= end) &&
f7aaa06b
JB
3803 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3804 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
d1310b2e
CM
3805 unsigned i;
3806
3807 scanned = 1;
3808 for (i = 0; i < nr_pages; i++) {
3809 struct page *page = pvec.pages[i];
3810
3811 /*
3812 * At this point we hold neither mapping->tree_lock nor
3813 * lock on the page itself: the page may be truncated or
3814 * invalidated (changing page->mapping to NULL), or even
3815 * swizzled back from swapper_space to tmpfs file
3816 * mapping
3817 */
c8f2f24b
JB
3818 if (!trylock_page(page)) {
3819 flush_fn(data);
3820 lock_page(page);
01d658f2 3821 }
d1310b2e
CM
3822
3823 if (unlikely(page->mapping != mapping)) {
3824 unlock_page(page);
3825 continue;
3826 }
3827
3828 if (!wbc->range_cyclic && page->index > end) {
3829 done = 1;
3830 unlock_page(page);
3831 continue;
3832 }
3833
d2c3f4f6 3834 if (wbc->sync_mode != WB_SYNC_NONE) {
0e6bd956
CM
3835 if (PageWriteback(page))
3836 flush_fn(data);
d1310b2e 3837 wait_on_page_writeback(page);
d2c3f4f6 3838 }
d1310b2e
CM
3839
3840 if (PageWriteback(page) ||
3841 !clear_page_dirty_for_io(page)) {
3842 unlock_page(page);
3843 continue;
3844 }
3845
3846 ret = (*writepage)(page, wbc, data);
3847
3848 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3849 unlock_page(page);
3850 ret = 0;
3851 }
61391d56
FM
3852 if (!err && ret < 0)
3853 err = ret;
f85d7d6c
CM
3854
3855 /*
3856 * the filesystem may choose to bump up nr_to_write.
3857 * We have to make sure to honor the new nr_to_write
3858 * at any time
3859 */
3860 nr_to_write_done = wbc->nr_to_write <= 0;
d1310b2e
CM
3861 }
3862 pagevec_release(&pvec);
3863 cond_resched();
3864 }
61391d56 3865 if (!scanned && !done && !err) {
d1310b2e
CM
3866 /*
3867 * We hit the last page and there is more work to be done: wrap
3868 * back to the start of the file
3869 */
3870 scanned = 1;
3871 index = 0;
3872 goto retry;
3873 }
7fd1a3f7 3874 btrfs_add_delayed_iput(inode);
61391d56 3875 return err;
d1310b2e 3876}
d1310b2e 3877
ffbd517d 3878static void flush_epd_write_bio(struct extent_page_data *epd)
d2c3f4f6 3879{
d2c3f4f6 3880 if (epd->bio) {
355808c2
JM
3881 int rw = WRITE;
3882 int ret;
3883
ffbd517d 3884 if (epd->sync_io)
355808c2
JM
3885 rw = WRITE_SYNC;
3886
de0022b9 3887 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
79787eaa 3888 BUG_ON(ret < 0); /* -ENOMEM */
d2c3f4f6
CM
3889 epd->bio = NULL;
3890 }
3891}
3892
ffbd517d
CM
3893static noinline void flush_write_bio(void *data)
3894{
3895 struct extent_page_data *epd = data;
3896 flush_epd_write_bio(epd);
3897}
3898
d1310b2e
CM
3899int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3900 get_extent_t *get_extent,
3901 struct writeback_control *wbc)
3902{
3903 int ret;
d1310b2e
CM
3904 struct extent_page_data epd = {
3905 .bio = NULL,
3906 .tree = tree,
3907 .get_extent = get_extent,
771ed689 3908 .extent_locked = 0,
ffbd517d 3909 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
de0022b9 3910 .bio_flags = 0,
d1310b2e 3911 };
d1310b2e 3912
d1310b2e
CM
3913 ret = __extent_writepage(page, wbc, &epd);
3914
ffbd517d 3915 flush_epd_write_bio(&epd);
d1310b2e
CM
3916 return ret;
3917}
d1310b2e 3918
771ed689
CM
3919int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3920 u64 start, u64 end, get_extent_t *get_extent,
3921 int mode)
3922{
3923 int ret = 0;
3924 struct address_space *mapping = inode->i_mapping;
3925 struct page *page;
3926 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3927 PAGE_CACHE_SHIFT;
3928
3929 struct extent_page_data epd = {
3930 .bio = NULL,
3931 .tree = tree,
3932 .get_extent = get_extent,
3933 .extent_locked = 1,
ffbd517d 3934 .sync_io = mode == WB_SYNC_ALL,
de0022b9 3935 .bio_flags = 0,
771ed689
CM
3936 };
3937 struct writeback_control wbc_writepages = {
771ed689 3938 .sync_mode = mode,
771ed689
CM
3939 .nr_to_write = nr_pages * 2,
3940 .range_start = start,
3941 .range_end = end + 1,
3942 };
3943
d397712b 3944 while (start <= end) {
771ed689
CM
3945 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3946 if (clear_page_dirty_for_io(page))
3947 ret = __extent_writepage(page, &wbc_writepages, &epd);
3948 else {
3949 if (tree->ops && tree->ops->writepage_end_io_hook)
3950 tree->ops->writepage_end_io_hook(page, start,
3951 start + PAGE_CACHE_SIZE - 1,
3952 NULL, 1);
3953 unlock_page(page);
3954 }
3955 page_cache_release(page);
3956 start += PAGE_CACHE_SIZE;
3957 }
3958
ffbd517d 3959 flush_epd_write_bio(&epd);
771ed689
CM
3960 return ret;
3961}
d1310b2e
CM
3962
3963int extent_writepages(struct extent_io_tree *tree,
3964 struct address_space *mapping,
3965 get_extent_t *get_extent,
3966 struct writeback_control *wbc)
3967{
3968 int ret = 0;
3969 struct extent_page_data epd = {
3970 .bio = NULL,
3971 .tree = tree,
3972 .get_extent = get_extent,
771ed689 3973 .extent_locked = 0,
ffbd517d 3974 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
de0022b9 3975 .bio_flags = 0,
d1310b2e
CM
3976 };
3977
4bef0848 3978 ret = extent_write_cache_pages(tree, mapping, wbc,
d2c3f4f6
CM
3979 __extent_writepage, &epd,
3980 flush_write_bio);
ffbd517d 3981 flush_epd_write_bio(&epd);
d1310b2e
CM
3982 return ret;
3983}
d1310b2e
CM
3984
3985int extent_readpages(struct extent_io_tree *tree,
3986 struct address_space *mapping,
3987 struct list_head *pages, unsigned nr_pages,
3988 get_extent_t get_extent)
3989{
3990 struct bio *bio = NULL;
3991 unsigned page_idx;
c8b97818 3992 unsigned long bio_flags = 0;
67c9684f
LB
3993 struct page *pagepool[16];
3994 struct page *page;
125bac01 3995 struct extent_map *em_cached = NULL;
67c9684f 3996 int nr = 0;
d1310b2e 3997
d1310b2e 3998 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
67c9684f 3999 page = list_entry(pages->prev, struct page, lru);
d1310b2e
CM
4000
4001 prefetchw(&page->flags);
4002 list_del(&page->lru);
67c9684f 4003 if (add_to_page_cache_lru(page, mapping,
43e817a1 4004 page->index, GFP_NOFS)) {
67c9684f
LB
4005 page_cache_release(page);
4006 continue;
d1310b2e 4007 }
67c9684f
LB
4008
4009 pagepool[nr++] = page;
4010 if (nr < ARRAY_SIZE(pagepool))
4011 continue;
125bac01 4012 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
9974090b 4013 &bio, 0, &bio_flags, READ);
67c9684f 4014 nr = 0;
d1310b2e 4015 }
9974090b 4016 if (nr)
125bac01 4017 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
9974090b 4018 &bio, 0, &bio_flags, READ);
67c9684f 4019
125bac01
MX
4020 if (em_cached)
4021 free_extent_map(em_cached);
4022
d1310b2e
CM
4023 BUG_ON(!list_empty(pages));
4024 if (bio)
79787eaa 4025 return submit_one_bio(READ, bio, 0, bio_flags);
d1310b2e
CM
4026 return 0;
4027}
d1310b2e
CM
4028
4029/*
4030 * basic invalidatepage code, this waits on any locked or writeback
4031 * ranges corresponding to the page, and then deletes any extent state
4032 * records from the tree
4033 */
4034int extent_invalidatepage(struct extent_io_tree *tree,
4035 struct page *page, unsigned long offset)
4036{
2ac55d41 4037 struct extent_state *cached_state = NULL;
4eee4fa4 4038 u64 start = page_offset(page);
d1310b2e
CM
4039 u64 end = start + PAGE_CACHE_SIZE - 1;
4040 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4041
fda2832f 4042 start += ALIGN(offset, blocksize);
d1310b2e
CM
4043 if (start > end)
4044 return 0;
4045
d0082371 4046 lock_extent_bits(tree, start, end, 0, &cached_state);
1edbb734 4047 wait_on_page_writeback(page);
d1310b2e 4048 clear_extent_bit(tree, start, end,
32c00aff
JB
4049 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4050 EXTENT_DO_ACCOUNTING,
2ac55d41 4051 1, 1, &cached_state, GFP_NOFS);
d1310b2e
CM
4052 return 0;
4053}
d1310b2e 4054
7b13b7b1
CM
4055/*
4056 * a helper for releasepage, this tests for areas of the page that
4057 * are locked or under IO and drops the related state bits if it is safe
4058 * to drop the page.
4059 */
48a3b636
ES
4060static int try_release_extent_state(struct extent_map_tree *map,
4061 struct extent_io_tree *tree,
4062 struct page *page, gfp_t mask)
7b13b7b1 4063{
4eee4fa4 4064 u64 start = page_offset(page);
7b13b7b1
CM
4065 u64 end = start + PAGE_CACHE_SIZE - 1;
4066 int ret = 1;
4067
211f90e6 4068 if (test_range_bit(tree, start, end,
8b62b72b 4069 EXTENT_IOBITS, 0, NULL))
7b13b7b1
CM
4070 ret = 0;
4071 else {
4072 if ((mask & GFP_NOFS) == GFP_NOFS)
4073 mask = GFP_NOFS;
11ef160f
CM
4074 /*
4075 * at this point we can safely clear everything except the
4076 * locked bit and the nodatasum bit
4077 */
e3f24cc5 4078 ret = clear_extent_bit(tree, start, end,
11ef160f
CM
4079 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4080 0, 0, NULL, mask);
e3f24cc5
CM
4081
4082 /* if clear_extent_bit failed for enomem reasons,
4083 * we can't allow the release to continue.
4084 */
4085 if (ret < 0)
4086 ret = 0;
4087 else
4088 ret = 1;
7b13b7b1
CM
4089 }
4090 return ret;
4091}
7b13b7b1 4092
d1310b2e
CM
4093/*
4094 * a helper for releasepage. As long as there are no locked extents
4095 * in the range corresponding to the page, both state records and extent
4096 * map records are removed
4097 */
4098int try_release_extent_mapping(struct extent_map_tree *map,
70dec807
CM
4099 struct extent_io_tree *tree, struct page *page,
4100 gfp_t mask)
d1310b2e
CM
4101{
4102 struct extent_map *em;
4eee4fa4 4103 u64 start = page_offset(page);
d1310b2e 4104 u64 end = start + PAGE_CACHE_SIZE - 1;
7b13b7b1 4105
70dec807
CM
4106 if ((mask & __GFP_WAIT) &&
4107 page->mapping->host->i_size > 16 * 1024 * 1024) {
39b5637f 4108 u64 len;
70dec807 4109 while (start <= end) {
39b5637f 4110 len = end - start + 1;
890871be 4111 write_lock(&map->lock);
39b5637f 4112 em = lookup_extent_mapping(map, start, len);
285190d9 4113 if (!em) {
890871be 4114 write_unlock(&map->lock);
70dec807
CM
4115 break;
4116 }
7f3c74fb
CM
4117 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4118 em->start != start) {
890871be 4119 write_unlock(&map->lock);
70dec807
CM
4120 free_extent_map(em);
4121 break;
4122 }
4123 if (!test_range_bit(tree, em->start,
4124 extent_map_end(em) - 1,
8b62b72b 4125 EXTENT_LOCKED | EXTENT_WRITEBACK,
9655d298 4126 0, NULL)) {
70dec807
CM
4127 remove_extent_mapping(map, em);
4128 /* once for the rb tree */
4129 free_extent_map(em);
4130 }
4131 start = extent_map_end(em);
890871be 4132 write_unlock(&map->lock);
70dec807
CM
4133
4134 /* once for us */
d1310b2e
CM
4135 free_extent_map(em);
4136 }
d1310b2e 4137 }
7b13b7b1 4138 return try_release_extent_state(map, tree, page, mask);
d1310b2e 4139}
d1310b2e 4140
ec29ed5b
CM
4141/*
4142 * helper function for fiemap, which doesn't want to see any holes.
4143 * This maps until we find something past 'last'
4144 */
4145static struct extent_map *get_extent_skip_holes(struct inode *inode,
4146 u64 offset,
4147 u64 last,
4148 get_extent_t *get_extent)
4149{
4150 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4151 struct extent_map *em;
4152 u64 len;
4153
4154 if (offset >= last)
4155 return NULL;
4156
67871254 4157 while (1) {
ec29ed5b
CM
4158 len = last - offset;
4159 if (len == 0)
4160 break;
fda2832f 4161 len = ALIGN(len, sectorsize);
ec29ed5b 4162 em = get_extent(inode, NULL, 0, offset, len, 0);
c704005d 4163 if (IS_ERR_OR_NULL(em))
ec29ed5b
CM
4164 return em;
4165
4166 /* if this isn't a hole return it */
4167 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4168 em->block_start != EXTENT_MAP_HOLE) {
4169 return em;
4170 }
4171
4172 /* this is a hole, advance to the next extent */
4173 offset = extent_map_end(em);
4174 free_extent_map(em);
4175 if (offset >= last)
4176 break;
4177 }
4178 return NULL;
4179}
4180
1506fcc8
YS
4181int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4182 __u64 start, __u64 len, get_extent_t *get_extent)
4183{
975f84fe 4184 int ret = 0;
1506fcc8
YS
4185 u64 off = start;
4186 u64 max = start + len;
4187 u32 flags = 0;
975f84fe
JB
4188 u32 found_type;
4189 u64 last;
ec29ed5b 4190 u64 last_for_get_extent = 0;
1506fcc8 4191 u64 disko = 0;
ec29ed5b 4192 u64 isize = i_size_read(inode);
975f84fe 4193 struct btrfs_key found_key;
1506fcc8 4194 struct extent_map *em = NULL;
2ac55d41 4195 struct extent_state *cached_state = NULL;
975f84fe 4196 struct btrfs_path *path;
dc046b10 4197 struct btrfs_root *root = BTRFS_I(inode)->root;
1506fcc8 4198 int end = 0;
ec29ed5b
CM
4199 u64 em_start = 0;
4200 u64 em_len = 0;
4201 u64 em_end = 0;
1506fcc8
YS
4202
4203 if (len == 0)
4204 return -EINVAL;
4205
975f84fe
JB
4206 path = btrfs_alloc_path();
4207 if (!path)
4208 return -ENOMEM;
4209 path->leave_spinning = 1;
4210
2c91943b
QW
4211 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4212 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
4d479cf0 4213
ec29ed5b
CM
4214 /*
4215 * lookup the last file extent. We're not using i_size here
4216 * because there might be preallocation past i_size
4217 */
dc046b10
JB
4218 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4219 0);
975f84fe
JB
4220 if (ret < 0) {
4221 btrfs_free_path(path);
4222 return ret;
4223 }
4224 WARN_ON(!ret);
4225 path->slots[0]--;
975f84fe 4226 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
962a298f 4227 found_type = found_key.type;
975f84fe 4228
ec29ed5b 4229 /* No extents, but there might be delalloc bits */
33345d01 4230 if (found_key.objectid != btrfs_ino(inode) ||
975f84fe 4231 found_type != BTRFS_EXTENT_DATA_KEY) {
ec29ed5b
CM
4232 /* have to trust i_size as the end */
4233 last = (u64)-1;
4234 last_for_get_extent = isize;
4235 } else {
4236 /*
4237 * remember the start of the last extent. There are a
4238 * bunch of different factors that go into the length of the
4239 * extent, so its much less complex to remember where it started
4240 */
4241 last = found_key.offset;
4242 last_for_get_extent = last + 1;
975f84fe 4243 }
fe09e16c 4244 btrfs_release_path(path);
975f84fe 4245
ec29ed5b
CM
4246 /*
4247 * we might have some extents allocated but more delalloc past those
4248 * extents. so, we trust isize unless the start of the last extent is
4249 * beyond isize
4250 */
4251 if (last < isize) {
4252 last = (u64)-1;
4253 last_for_get_extent = isize;
4254 }
4255
a52f4cd2 4256 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
d0082371 4257 &cached_state);
ec29ed5b 4258
4d479cf0 4259 em = get_extent_skip_holes(inode, start, last_for_get_extent,
ec29ed5b 4260 get_extent);
1506fcc8
YS
4261 if (!em)
4262 goto out;
4263 if (IS_ERR(em)) {
4264 ret = PTR_ERR(em);
4265 goto out;
4266 }
975f84fe 4267
1506fcc8 4268 while (!end) {
b76bb701 4269 u64 offset_in_extent = 0;
ea8efc74
CM
4270
4271 /* break if the extent we found is outside the range */
4272 if (em->start >= max || extent_map_end(em) < off)
4273 break;
4274
4275 /*
4276 * get_extent may return an extent that starts before our
4277 * requested range. We have to make sure the ranges
4278 * we return to fiemap always move forward and don't
4279 * overlap, so adjust the offsets here
4280 */
4281 em_start = max(em->start, off);
1506fcc8 4282
ea8efc74
CM
4283 /*
4284 * record the offset from the start of the extent
b76bb701
JB
4285 * for adjusting the disk offset below. Only do this if the
4286 * extent isn't compressed since our in ram offset may be past
4287 * what we have actually allocated on disk.
ea8efc74 4288 */
b76bb701
JB
4289 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4290 offset_in_extent = em_start - em->start;
ec29ed5b 4291 em_end = extent_map_end(em);
ea8efc74 4292 em_len = em_end - em_start;
1506fcc8
YS
4293 disko = 0;
4294 flags = 0;
4295
ea8efc74
CM
4296 /*
4297 * bump off for our next call to get_extent
4298 */
4299 off = extent_map_end(em);
4300 if (off >= max)
4301 end = 1;
4302
93dbfad7 4303 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
1506fcc8
YS
4304 end = 1;
4305 flags |= FIEMAP_EXTENT_LAST;
93dbfad7 4306 } else if (em->block_start == EXTENT_MAP_INLINE) {
1506fcc8
YS
4307 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4308 FIEMAP_EXTENT_NOT_ALIGNED);
93dbfad7 4309 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
1506fcc8
YS
4310 flags |= (FIEMAP_EXTENT_DELALLOC |
4311 FIEMAP_EXTENT_UNKNOWN);
dc046b10
JB
4312 } else if (fieinfo->fi_extents_max) {
4313 u64 bytenr = em->block_start -
4314 (em->start - em->orig_start);
fe09e16c 4315
ea8efc74 4316 disko = em->block_start + offset_in_extent;
fe09e16c
LB
4317
4318 /*
4319 * As btrfs supports shared space, this information
4320 * can be exported to userspace tools via
dc046b10
JB
4321 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4322 * then we're just getting a count and we can skip the
4323 * lookup stuff.
fe09e16c 4324 */
dc046b10
JB
4325 ret = btrfs_check_shared(NULL, root->fs_info,
4326 root->objectid,
4327 btrfs_ino(inode), bytenr);
4328 if (ret < 0)
fe09e16c 4329 goto out_free;
dc046b10 4330 if (ret)
fe09e16c 4331 flags |= FIEMAP_EXTENT_SHARED;
dc046b10 4332 ret = 0;
1506fcc8
YS
4333 }
4334 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4335 flags |= FIEMAP_EXTENT_ENCODED;
4336
1506fcc8
YS
4337 free_extent_map(em);
4338 em = NULL;
ec29ed5b
CM
4339 if ((em_start >= last) || em_len == (u64)-1 ||
4340 (last == (u64)-1 && isize <= em_end)) {
1506fcc8
YS
4341 flags |= FIEMAP_EXTENT_LAST;
4342 end = 1;
4343 }
4344
ec29ed5b
CM
4345 /* now scan forward to see if this is really the last extent. */
4346 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4347 get_extent);
4348 if (IS_ERR(em)) {
4349 ret = PTR_ERR(em);
4350 goto out;
4351 }
4352 if (!em) {
975f84fe
JB
4353 flags |= FIEMAP_EXTENT_LAST;
4354 end = 1;
4355 }
ec29ed5b
CM
4356 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4357 em_len, flags);
4358 if (ret)
4359 goto out_free;
1506fcc8
YS
4360 }
4361out_free:
4362 free_extent_map(em);
4363out:
fe09e16c 4364 btrfs_free_path(path);
a52f4cd2 4365 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
2ac55d41 4366 &cached_state, GFP_NOFS);
1506fcc8
YS
4367 return ret;
4368}
4369
727011e0
CM
4370static void __free_extent_buffer(struct extent_buffer *eb)
4371{
6d49ba1b 4372 btrfs_leak_debug_del(&eb->leak_list);
727011e0
CM
4373 kmem_cache_free(extent_buffer_cache, eb);
4374}
4375
a26e8c9f 4376int extent_buffer_under_io(struct extent_buffer *eb)
db7f3436
JB
4377{
4378 return (atomic_read(&eb->io_pages) ||
4379 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4380 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4381}
4382
4383/*
4384 * Helper for releasing extent buffer page.
4385 */
4386static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4387 unsigned long start_idx)
4388{
4389 unsigned long index;
4390 unsigned long num_pages;
4391 struct page *page;
4392 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4393
4394 BUG_ON(extent_buffer_under_io(eb));
4395
4396 num_pages = num_extent_pages(eb->start, eb->len);
4397 index = start_idx + num_pages;
4398 if (start_idx >= index)
4399 return;
4400
4401 do {
4402 index--;
4403 page = extent_buffer_page(eb, index);
4404 if (page && mapped) {
4405 spin_lock(&page->mapping->private_lock);
4406 /*
4407 * We do this since we'll remove the pages after we've
4408 * removed the eb from the radix tree, so we could race
4409 * and have this page now attached to the new eb. So
4410 * only clear page_private if it's still connected to
4411 * this eb.
4412 */
4413 if (PagePrivate(page) &&
4414 page->private == (unsigned long)eb) {
4415 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4416 BUG_ON(PageDirty(page));
4417 BUG_ON(PageWriteback(page));
4418 /*
4419 * We need to make sure we haven't be attached
4420 * to a new eb.
4421 */
4422 ClearPagePrivate(page);
4423 set_page_private(page, 0);
4424 /* One for the page private */
4425 page_cache_release(page);
4426 }
4427 spin_unlock(&page->mapping->private_lock);
4428
4429 }
4430 if (page) {
4431 /* One for when we alloced the page */
4432 page_cache_release(page);
4433 }
4434 } while (index != start_idx);
4435}
4436
4437/*
4438 * Helper for releasing the extent buffer.
4439 */
4440static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4441{
4442 btrfs_release_extent_buffer_page(eb, 0);
4443 __free_extent_buffer(eb);
4444}
4445
f28491e0
JB
4446static struct extent_buffer *
4447__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
4448 unsigned long len, gfp_t mask)
d1310b2e
CM
4449{
4450 struct extent_buffer *eb = NULL;
4451
d1310b2e 4452 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
91ca338d
TI
4453 if (eb == NULL)
4454 return NULL;
d1310b2e
CM
4455 eb->start = start;
4456 eb->len = len;
f28491e0 4457 eb->fs_info = fs_info;
815a51c7 4458 eb->bflags = 0;
bd681513
CM
4459 rwlock_init(&eb->lock);
4460 atomic_set(&eb->write_locks, 0);
4461 atomic_set(&eb->read_locks, 0);
4462 atomic_set(&eb->blocking_readers, 0);
4463 atomic_set(&eb->blocking_writers, 0);
4464 atomic_set(&eb->spinning_readers, 0);
4465 atomic_set(&eb->spinning_writers, 0);
5b25f70f 4466 eb->lock_nested = 0;
bd681513
CM
4467 init_waitqueue_head(&eb->write_lock_wq);
4468 init_waitqueue_head(&eb->read_lock_wq);
b4ce94de 4469
6d49ba1b
ES
4470 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4471
3083ee2e 4472 spin_lock_init(&eb->refs_lock);
d1310b2e 4473 atomic_set(&eb->refs, 1);
0b32f4bb 4474 atomic_set(&eb->io_pages, 0);
727011e0 4475
b8dae313
DS
4476 /*
4477 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4478 */
4479 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4480 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4481 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
d1310b2e
CM
4482
4483 return eb;
4484}
4485
815a51c7
JS
4486struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4487{
4488 unsigned long i;
4489 struct page *p;
4490 struct extent_buffer *new;
4491 unsigned long num_pages = num_extent_pages(src->start, src->len);
4492
9ec72677 4493 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
815a51c7
JS
4494 if (new == NULL)
4495 return NULL;
4496
4497 for (i = 0; i < num_pages; i++) {
9ec72677 4498 p = alloc_page(GFP_NOFS);
db7f3436
JB
4499 if (!p) {
4500 btrfs_release_extent_buffer(new);
4501 return NULL;
4502 }
815a51c7
JS
4503 attach_extent_buffer_page(new, p);
4504 WARN_ON(PageDirty(p));
4505 SetPageUptodate(p);
4506 new->pages[i] = p;
4507 }
4508
4509 copy_extent_buffer(new, src, 0, 0, src->len);
4510 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4511 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4512
4513 return new;
4514}
4515
4516struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4517{
4518 struct extent_buffer *eb;
4519 unsigned long num_pages = num_extent_pages(0, len);
4520 unsigned long i;
4521
9ec72677 4522 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
815a51c7
JS
4523 if (!eb)
4524 return NULL;
4525
4526 for (i = 0; i < num_pages; i++) {
9ec72677 4527 eb->pages[i] = alloc_page(GFP_NOFS);
815a51c7
JS
4528 if (!eb->pages[i])
4529 goto err;
4530 }
4531 set_extent_buffer_uptodate(eb);
4532 btrfs_set_header_nritems(eb, 0);
4533 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4534
4535 return eb;
4536err:
84167d19
SB
4537 for (; i > 0; i--)
4538 __free_page(eb->pages[i - 1]);
815a51c7
JS
4539 __free_extent_buffer(eb);
4540 return NULL;
4541}
4542
0b32f4bb
JB
4543static void check_buffer_tree_ref(struct extent_buffer *eb)
4544{
242e18c7 4545 int refs;
0b32f4bb
JB
4546 /* the ref bit is tricky. We have to make sure it is set
4547 * if we have the buffer dirty. Otherwise the
4548 * code to free a buffer can end up dropping a dirty
4549 * page
4550 *
4551 * Once the ref bit is set, it won't go away while the
4552 * buffer is dirty or in writeback, and it also won't
4553 * go away while we have the reference count on the
4554 * eb bumped.
4555 *
4556 * We can't just set the ref bit without bumping the
4557 * ref on the eb because free_extent_buffer might
4558 * see the ref bit and try to clear it. If this happens
4559 * free_extent_buffer might end up dropping our original
4560 * ref by mistake and freeing the page before we are able
4561 * to add one more ref.
4562 *
4563 * So bump the ref count first, then set the bit. If someone
4564 * beat us to it, drop the ref we added.
4565 */
242e18c7
CM
4566 refs = atomic_read(&eb->refs);
4567 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4568 return;
4569
594831c4
JB
4570 spin_lock(&eb->refs_lock);
4571 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
0b32f4bb 4572 atomic_inc(&eb->refs);
594831c4 4573 spin_unlock(&eb->refs_lock);
0b32f4bb
JB
4574}
4575
2457aec6
MG
4576static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4577 struct page *accessed)
5df4235e
JB
4578{
4579 unsigned long num_pages, i;
4580
0b32f4bb
JB
4581 check_buffer_tree_ref(eb);
4582
5df4235e
JB
4583 num_pages = num_extent_pages(eb->start, eb->len);
4584 for (i = 0; i < num_pages; i++) {
4585 struct page *p = extent_buffer_page(eb, i);
2457aec6
MG
4586 if (p != accessed)
4587 mark_page_accessed(p);
5df4235e
JB
4588 }
4589}
4590
f28491e0
JB
4591struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4592 u64 start)
452c75c3
CS
4593{
4594 struct extent_buffer *eb;
4595
4596 rcu_read_lock();
f28491e0
JB
4597 eb = radix_tree_lookup(&fs_info->buffer_radix,
4598 start >> PAGE_CACHE_SHIFT);
452c75c3
CS
4599 if (eb && atomic_inc_not_zero(&eb->refs)) {
4600 rcu_read_unlock();
2457aec6 4601 mark_extent_buffer_accessed(eb, NULL);
452c75c3
CS
4602 return eb;
4603 }
4604 rcu_read_unlock();
4605
4606 return NULL;
4607}
4608
faa2dbf0
JB
4609#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4610struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
4611 u64 start, unsigned long len)
4612{
4613 struct extent_buffer *eb, *exists = NULL;
4614 int ret;
4615
4616 eb = find_extent_buffer(fs_info, start);
4617 if (eb)
4618 return eb;
4619 eb = alloc_dummy_extent_buffer(start, len);
4620 if (!eb)
4621 return NULL;
4622 eb->fs_info = fs_info;
4623again:
4624 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4625 if (ret)
4626 goto free_eb;
4627 spin_lock(&fs_info->buffer_lock);
4628 ret = radix_tree_insert(&fs_info->buffer_radix,
4629 start >> PAGE_CACHE_SHIFT, eb);
4630 spin_unlock(&fs_info->buffer_lock);
4631 radix_tree_preload_end();
4632 if (ret == -EEXIST) {
4633 exists = find_extent_buffer(fs_info, start);
4634 if (exists)
4635 goto free_eb;
4636 else
4637 goto again;
4638 }
4639 check_buffer_tree_ref(eb);
4640 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4641
4642 /*
4643 * We will free dummy extent buffer's if they come into
4644 * free_extent_buffer with a ref count of 2, but if we are using this we
4645 * want the buffers to stay in memory until we're done with them, so
4646 * bump the ref count again.
4647 */
4648 atomic_inc(&eb->refs);
4649 return eb;
4650free_eb:
4651 btrfs_release_extent_buffer(eb);
4652 return exists;
4653}
4654#endif
4655
f28491e0 4656struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
727011e0 4657 u64 start, unsigned long len)
d1310b2e
CM
4658{
4659 unsigned long num_pages = num_extent_pages(start, len);
4660 unsigned long i;
4661 unsigned long index = start >> PAGE_CACHE_SHIFT;
4662 struct extent_buffer *eb;
6af118ce 4663 struct extent_buffer *exists = NULL;
d1310b2e 4664 struct page *p;
f28491e0 4665 struct address_space *mapping = fs_info->btree_inode->i_mapping;
d1310b2e 4666 int uptodate = 1;
19fe0a8b 4667 int ret;
d1310b2e 4668
f28491e0 4669 eb = find_extent_buffer(fs_info, start);
452c75c3 4670 if (eb)
6af118ce 4671 return eb;
6af118ce 4672
f28491e0 4673 eb = __alloc_extent_buffer(fs_info, start, len, GFP_NOFS);
2b114d1d 4674 if (!eb)
d1310b2e
CM
4675 return NULL;
4676
727011e0 4677 for (i = 0; i < num_pages; i++, index++) {
a6591715 4678 p = find_or_create_page(mapping, index, GFP_NOFS);
4804b382 4679 if (!p)
6af118ce 4680 goto free_eb;
4f2de97a
JB
4681
4682 spin_lock(&mapping->private_lock);
4683 if (PagePrivate(p)) {
4684 /*
4685 * We could have already allocated an eb for this page
4686 * and attached one so lets see if we can get a ref on
4687 * the existing eb, and if we can we know it's good and
4688 * we can just return that one, else we know we can just
4689 * overwrite page->private.
4690 */
4691 exists = (struct extent_buffer *)p->private;
4692 if (atomic_inc_not_zero(&exists->refs)) {
4693 spin_unlock(&mapping->private_lock);
4694 unlock_page(p);
17de39ac 4695 page_cache_release(p);
2457aec6 4696 mark_extent_buffer_accessed(exists, p);
4f2de97a
JB
4697 goto free_eb;
4698 }
4699
0b32f4bb 4700 /*
4f2de97a
JB
4701 * Do this so attach doesn't complain and we need to
4702 * drop the ref the old guy had.
4703 */
4704 ClearPagePrivate(p);
0b32f4bb 4705 WARN_ON(PageDirty(p));
4f2de97a 4706 page_cache_release(p);
d1310b2e 4707 }
4f2de97a
JB
4708 attach_extent_buffer_page(eb, p);
4709 spin_unlock(&mapping->private_lock);
0b32f4bb 4710 WARN_ON(PageDirty(p));
727011e0 4711 eb->pages[i] = p;
d1310b2e
CM
4712 if (!PageUptodate(p))
4713 uptodate = 0;
eb14ab8e
CM
4714
4715 /*
4716 * see below about how we avoid a nasty race with release page
4717 * and why we unlock later
4718 */
d1310b2e
CM
4719 }
4720 if (uptodate)
b4ce94de 4721 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
115391d2 4722again:
19fe0a8b
MX
4723 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4724 if (ret)
4725 goto free_eb;
4726
f28491e0
JB
4727 spin_lock(&fs_info->buffer_lock);
4728 ret = radix_tree_insert(&fs_info->buffer_radix,
4729 start >> PAGE_CACHE_SHIFT, eb);
4730 spin_unlock(&fs_info->buffer_lock);
452c75c3 4731 radix_tree_preload_end();
19fe0a8b 4732 if (ret == -EEXIST) {
f28491e0 4733 exists = find_extent_buffer(fs_info, start);
452c75c3
CS
4734 if (exists)
4735 goto free_eb;
4736 else
115391d2 4737 goto again;
6af118ce 4738 }
6af118ce 4739 /* add one reference for the tree */
0b32f4bb 4740 check_buffer_tree_ref(eb);
34b41ace 4741 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
eb14ab8e
CM
4742
4743 /*
4744 * there is a race where release page may have
4745 * tried to find this extent buffer in the radix
4746 * but failed. It will tell the VM it is safe to
4747 * reclaim the, and it will clear the page private bit.
4748 * We must make sure to set the page private bit properly
4749 * after the extent buffer is in the radix tree so
4750 * it doesn't get lost
4751 */
727011e0
CM
4752 SetPageChecked(eb->pages[0]);
4753 for (i = 1; i < num_pages; i++) {
4754 p = extent_buffer_page(eb, i);
727011e0
CM
4755 ClearPageChecked(p);
4756 unlock_page(p);
4757 }
4758 unlock_page(eb->pages[0]);
d1310b2e
CM
4759 return eb;
4760
6af118ce 4761free_eb:
727011e0
CM
4762 for (i = 0; i < num_pages; i++) {
4763 if (eb->pages[i])
4764 unlock_page(eb->pages[i]);
4765 }
eb14ab8e 4766
17de39ac 4767 WARN_ON(!atomic_dec_and_test(&eb->refs));
897ca6e9 4768 btrfs_release_extent_buffer(eb);
6af118ce 4769 return exists;
d1310b2e 4770}
d1310b2e 4771
3083ee2e
JB
4772static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4773{
4774 struct extent_buffer *eb =
4775 container_of(head, struct extent_buffer, rcu_head);
4776
4777 __free_extent_buffer(eb);
4778}
4779
3083ee2e 4780/* Expects to have eb->eb_lock already held */
f7a52a40 4781static int release_extent_buffer(struct extent_buffer *eb)
3083ee2e
JB
4782{
4783 WARN_ON(atomic_read(&eb->refs) == 0);
4784 if (atomic_dec_and_test(&eb->refs)) {
34b41ace 4785 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
f28491e0 4786 struct btrfs_fs_info *fs_info = eb->fs_info;
3083ee2e 4787
815a51c7 4788 spin_unlock(&eb->refs_lock);
3083ee2e 4789
f28491e0
JB
4790 spin_lock(&fs_info->buffer_lock);
4791 radix_tree_delete(&fs_info->buffer_radix,
815a51c7 4792 eb->start >> PAGE_CACHE_SHIFT);
f28491e0 4793 spin_unlock(&fs_info->buffer_lock);
34b41ace
JB
4794 } else {
4795 spin_unlock(&eb->refs_lock);
815a51c7 4796 }
3083ee2e
JB
4797
4798 /* Should be safe to release our pages at this point */
4799 btrfs_release_extent_buffer_page(eb, 0);
3083ee2e 4800 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
e64860aa 4801 return 1;
3083ee2e
JB
4802 }
4803 spin_unlock(&eb->refs_lock);
e64860aa
JB
4804
4805 return 0;
3083ee2e
JB
4806}
4807
d1310b2e
CM
4808void free_extent_buffer(struct extent_buffer *eb)
4809{
242e18c7
CM
4810 int refs;
4811 int old;
d1310b2e
CM
4812 if (!eb)
4813 return;
4814
242e18c7
CM
4815 while (1) {
4816 refs = atomic_read(&eb->refs);
4817 if (refs <= 3)
4818 break;
4819 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4820 if (old == refs)
4821 return;
4822 }
4823
3083ee2e 4824 spin_lock(&eb->refs_lock);
815a51c7
JS
4825 if (atomic_read(&eb->refs) == 2 &&
4826 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4827 atomic_dec(&eb->refs);
4828
3083ee2e
JB
4829 if (atomic_read(&eb->refs) == 2 &&
4830 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
0b32f4bb 4831 !extent_buffer_under_io(eb) &&
3083ee2e
JB
4832 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4833 atomic_dec(&eb->refs);
4834
4835 /*
4836 * I know this is terrible, but it's temporary until we stop tracking
4837 * the uptodate bits and such for the extent buffers.
4838 */
f7a52a40 4839 release_extent_buffer(eb);
3083ee2e
JB
4840}
4841
4842void free_extent_buffer_stale(struct extent_buffer *eb)
4843{
4844 if (!eb)
d1310b2e
CM
4845 return;
4846
3083ee2e
JB
4847 spin_lock(&eb->refs_lock);
4848 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4849
0b32f4bb 4850 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
3083ee2e
JB
4851 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4852 atomic_dec(&eb->refs);
f7a52a40 4853 release_extent_buffer(eb);
d1310b2e 4854}
d1310b2e 4855
1d4284bd 4856void clear_extent_buffer_dirty(struct extent_buffer *eb)
d1310b2e 4857{
d1310b2e
CM
4858 unsigned long i;
4859 unsigned long num_pages;
4860 struct page *page;
4861
d1310b2e
CM
4862 num_pages = num_extent_pages(eb->start, eb->len);
4863
4864 for (i = 0; i < num_pages; i++) {
4865 page = extent_buffer_page(eb, i);
b9473439 4866 if (!PageDirty(page))
d2c3f4f6
CM
4867 continue;
4868
a61e6f29 4869 lock_page(page);
eb14ab8e
CM
4870 WARN_ON(!PagePrivate(page));
4871
d1310b2e 4872 clear_page_dirty_for_io(page);
0ee0fda0 4873 spin_lock_irq(&page->mapping->tree_lock);
d1310b2e
CM
4874 if (!PageDirty(page)) {
4875 radix_tree_tag_clear(&page->mapping->page_tree,
4876 page_index(page),
4877 PAGECACHE_TAG_DIRTY);
4878 }
0ee0fda0 4879 spin_unlock_irq(&page->mapping->tree_lock);
bf0da8c1 4880 ClearPageError(page);
a61e6f29 4881 unlock_page(page);
d1310b2e 4882 }
0b32f4bb 4883 WARN_ON(atomic_read(&eb->refs) == 0);
d1310b2e 4884}
d1310b2e 4885
0b32f4bb 4886int set_extent_buffer_dirty(struct extent_buffer *eb)
d1310b2e
CM
4887{
4888 unsigned long i;
4889 unsigned long num_pages;
b9473439 4890 int was_dirty = 0;
d1310b2e 4891
0b32f4bb
JB
4892 check_buffer_tree_ref(eb);
4893
b9473439 4894 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
0b32f4bb 4895
d1310b2e 4896 num_pages = num_extent_pages(eb->start, eb->len);
3083ee2e 4897 WARN_ON(atomic_read(&eb->refs) == 0);
0b32f4bb
JB
4898 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4899
b9473439 4900 for (i = 0; i < num_pages; i++)
0b32f4bb 4901 set_page_dirty(extent_buffer_page(eb, i));
b9473439 4902 return was_dirty;
d1310b2e 4903}
d1310b2e 4904
0b32f4bb 4905int clear_extent_buffer_uptodate(struct extent_buffer *eb)
1259ab75
CM
4906{
4907 unsigned long i;
4908 struct page *page;
4909 unsigned long num_pages;
4910
b4ce94de 4911 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
0b32f4bb 4912 num_pages = num_extent_pages(eb->start, eb->len);
1259ab75
CM
4913 for (i = 0; i < num_pages; i++) {
4914 page = extent_buffer_page(eb, i);
33958dc6
CM
4915 if (page)
4916 ClearPageUptodate(page);
1259ab75
CM
4917 }
4918 return 0;
4919}
4920
0b32f4bb 4921int set_extent_buffer_uptodate(struct extent_buffer *eb)
d1310b2e
CM
4922{
4923 unsigned long i;
4924 struct page *page;
4925 unsigned long num_pages;
4926
0b32f4bb 4927 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
d1310b2e 4928 num_pages = num_extent_pages(eb->start, eb->len);
d1310b2e
CM
4929 for (i = 0; i < num_pages; i++) {
4930 page = extent_buffer_page(eb, i);
d1310b2e
CM
4931 SetPageUptodate(page);
4932 }
4933 return 0;
4934}
d1310b2e 4935
0b32f4bb 4936int extent_buffer_uptodate(struct extent_buffer *eb)
d1310b2e 4937{
0b32f4bb 4938 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
d1310b2e 4939}
d1310b2e
CM
4940
4941int read_extent_buffer_pages(struct extent_io_tree *tree,
bb82ab88 4942 struct extent_buffer *eb, u64 start, int wait,
f188591e 4943 get_extent_t *get_extent, int mirror_num)
d1310b2e
CM
4944{
4945 unsigned long i;
4946 unsigned long start_i;
4947 struct page *page;
4948 int err;
4949 int ret = 0;
ce9adaa5
CM
4950 int locked_pages = 0;
4951 int all_uptodate = 1;
d1310b2e 4952 unsigned long num_pages;
727011e0 4953 unsigned long num_reads = 0;
a86c12c7 4954 struct bio *bio = NULL;
c8b97818 4955 unsigned long bio_flags = 0;
a86c12c7 4956
b4ce94de 4957 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
d1310b2e
CM
4958 return 0;
4959
d1310b2e
CM
4960 if (start) {
4961 WARN_ON(start < eb->start);
4962 start_i = (start >> PAGE_CACHE_SHIFT) -
4963 (eb->start >> PAGE_CACHE_SHIFT);
4964 } else {
4965 start_i = 0;
4966 }
4967
4968 num_pages = num_extent_pages(eb->start, eb->len);
4969 for (i = start_i; i < num_pages; i++) {
4970 page = extent_buffer_page(eb, i);
bb82ab88 4971 if (wait == WAIT_NONE) {
2db04966 4972 if (!trylock_page(page))
ce9adaa5 4973 goto unlock_exit;
d1310b2e
CM
4974 } else {
4975 lock_page(page);
4976 }
ce9adaa5 4977 locked_pages++;
727011e0
CM
4978 if (!PageUptodate(page)) {
4979 num_reads++;
ce9adaa5 4980 all_uptodate = 0;
727011e0 4981 }
ce9adaa5
CM
4982 }
4983 if (all_uptodate) {
4984 if (start_i == 0)
b4ce94de 4985 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
ce9adaa5
CM
4986 goto unlock_exit;
4987 }
4988
ea466794 4989 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
5cf1ab56 4990 eb->read_mirror = 0;
0b32f4bb 4991 atomic_set(&eb->io_pages, num_reads);
ce9adaa5
CM
4992 for (i = start_i; i < num_pages; i++) {
4993 page = extent_buffer_page(eb, i);
ce9adaa5 4994 if (!PageUptodate(page)) {
f188591e 4995 ClearPageError(page);
a86c12c7 4996 err = __extent_read_full_page(tree, page,
f188591e 4997 get_extent, &bio,
d4c7ca86
JB
4998 mirror_num, &bio_flags,
4999 READ | REQ_META);
d397712b 5000 if (err)
d1310b2e 5001 ret = err;
d1310b2e
CM
5002 } else {
5003 unlock_page(page);
5004 }
5005 }
5006
355808c2 5007 if (bio) {
d4c7ca86
JB
5008 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5009 bio_flags);
79787eaa
JM
5010 if (err)
5011 return err;
355808c2 5012 }
a86c12c7 5013
bb82ab88 5014 if (ret || wait != WAIT_COMPLETE)
d1310b2e 5015 return ret;
d397712b 5016
d1310b2e
CM
5017 for (i = start_i; i < num_pages; i++) {
5018 page = extent_buffer_page(eb, i);
5019 wait_on_page_locked(page);
d397712b 5020 if (!PageUptodate(page))
d1310b2e 5021 ret = -EIO;
d1310b2e 5022 }
d397712b 5023
d1310b2e 5024 return ret;
ce9adaa5
CM
5025
5026unlock_exit:
5027 i = start_i;
d397712b 5028 while (locked_pages > 0) {
ce9adaa5
CM
5029 page = extent_buffer_page(eb, i);
5030 i++;
5031 unlock_page(page);
5032 locked_pages--;
5033 }
5034 return ret;
d1310b2e 5035}
d1310b2e
CM
5036
5037void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5038 unsigned long start,
5039 unsigned long len)
5040{
5041 size_t cur;
5042 size_t offset;
5043 struct page *page;
5044 char *kaddr;
5045 char *dst = (char *)dstv;
5046 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5047 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
d1310b2e
CM
5048
5049 WARN_ON(start > eb->len);
5050 WARN_ON(start + len > eb->start + eb->len);
5051
778746b5 5052 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
d1310b2e 5053
d397712b 5054 while (len > 0) {
d1310b2e 5055 page = extent_buffer_page(eb, i);
d1310b2e
CM
5056
5057 cur = min(len, (PAGE_CACHE_SIZE - offset));
a6591715 5058 kaddr = page_address(page);
d1310b2e 5059 memcpy(dst, kaddr + offset, cur);
d1310b2e
CM
5060
5061 dst += cur;
5062 len -= cur;
5063 offset = 0;
5064 i++;
5065 }
5066}
d1310b2e 5067
550ac1d8
GH
5068int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5069 unsigned long start,
5070 unsigned long len)
5071{
5072 size_t cur;
5073 size_t offset;
5074 struct page *page;
5075 char *kaddr;
5076 char __user *dst = (char __user *)dstv;
5077 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5078 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5079 int ret = 0;
5080
5081 WARN_ON(start > eb->len);
5082 WARN_ON(start + len > eb->start + eb->len);
5083
5084 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5085
5086 while (len > 0) {
5087 page = extent_buffer_page(eb, i);
5088
5089 cur = min(len, (PAGE_CACHE_SIZE - offset));
5090 kaddr = page_address(page);
5091 if (copy_to_user(dst, kaddr + offset, cur)) {
5092 ret = -EFAULT;
5093 break;
5094 }
5095
5096 dst += cur;
5097 len -= cur;
5098 offset = 0;
5099 i++;
5100 }
5101
5102 return ret;
5103}
5104
d1310b2e 5105int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
a6591715 5106 unsigned long min_len, char **map,
d1310b2e 5107 unsigned long *map_start,
a6591715 5108 unsigned long *map_len)
d1310b2e
CM
5109{
5110 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5111 char *kaddr;
5112 struct page *p;
5113 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5114 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5115 unsigned long end_i = (start_offset + start + min_len - 1) >>
5116 PAGE_CACHE_SHIFT;
5117
5118 if (i != end_i)
5119 return -EINVAL;
5120
5121 if (i == 0) {
5122 offset = start_offset;
5123 *map_start = 0;
5124 } else {
5125 offset = 0;
5126 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5127 }
d397712b 5128
d1310b2e 5129 if (start + min_len > eb->len) {
31b1a2bd 5130 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
c1c9ff7c
GU
5131 "wanted %lu %lu\n",
5132 eb->start, eb->len, start, min_len);
85026533 5133 return -EINVAL;
d1310b2e
CM
5134 }
5135
5136 p = extent_buffer_page(eb, i);
a6591715 5137 kaddr = page_address(p);
d1310b2e
CM
5138 *map = kaddr + offset;
5139 *map_len = PAGE_CACHE_SIZE - offset;
5140 return 0;
5141}
d1310b2e 5142
d1310b2e
CM
5143int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5144 unsigned long start,
5145 unsigned long len)
5146{
5147 size_t cur;
5148 size_t offset;
5149 struct page *page;
5150 char *kaddr;
5151 char *ptr = (char *)ptrv;
5152 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5153 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5154 int ret = 0;
5155
5156 WARN_ON(start > eb->len);
5157 WARN_ON(start + len > eb->start + eb->len);
5158
778746b5 5159 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
d1310b2e 5160
d397712b 5161 while (len > 0) {
d1310b2e 5162 page = extent_buffer_page(eb, i);
d1310b2e
CM
5163
5164 cur = min(len, (PAGE_CACHE_SIZE - offset));
5165
a6591715 5166 kaddr = page_address(page);
d1310b2e 5167 ret = memcmp(ptr, kaddr + offset, cur);
d1310b2e
CM
5168 if (ret)
5169 break;
5170
5171 ptr += cur;
5172 len -= cur;
5173 offset = 0;
5174 i++;
5175 }
5176 return ret;
5177}
d1310b2e
CM
5178
5179void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5180 unsigned long start, unsigned long len)
5181{
5182 size_t cur;
5183 size_t offset;
5184 struct page *page;
5185 char *kaddr;
5186 char *src = (char *)srcv;
5187 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5188 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5189
5190 WARN_ON(start > eb->len);
5191 WARN_ON(start + len > eb->start + eb->len);
5192
778746b5 5193 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
d1310b2e 5194
d397712b 5195 while (len > 0) {
d1310b2e
CM
5196 page = extent_buffer_page(eb, i);
5197 WARN_ON(!PageUptodate(page));
5198
5199 cur = min(len, PAGE_CACHE_SIZE - offset);
a6591715 5200 kaddr = page_address(page);
d1310b2e 5201 memcpy(kaddr + offset, src, cur);
d1310b2e
CM
5202
5203 src += cur;
5204 len -= cur;
5205 offset = 0;
5206 i++;
5207 }
5208}
d1310b2e
CM
5209
5210void memset_extent_buffer(struct extent_buffer *eb, char c,
5211 unsigned long start, unsigned long len)
5212{
5213 size_t cur;
5214 size_t offset;
5215 struct page *page;
5216 char *kaddr;
5217 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5218 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5219
5220 WARN_ON(start > eb->len);
5221 WARN_ON(start + len > eb->start + eb->len);
5222
778746b5 5223 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
d1310b2e 5224
d397712b 5225 while (len > 0) {
d1310b2e
CM
5226 page = extent_buffer_page(eb, i);
5227 WARN_ON(!PageUptodate(page));
5228
5229 cur = min(len, PAGE_CACHE_SIZE - offset);
a6591715 5230 kaddr = page_address(page);
d1310b2e 5231 memset(kaddr + offset, c, cur);
d1310b2e
CM
5232
5233 len -= cur;
5234 offset = 0;
5235 i++;
5236 }
5237}
d1310b2e
CM
5238
5239void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5240 unsigned long dst_offset, unsigned long src_offset,
5241 unsigned long len)
5242{
5243 u64 dst_len = dst->len;
5244 size_t cur;
5245 size_t offset;
5246 struct page *page;
5247 char *kaddr;
5248 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5249 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5250
5251 WARN_ON(src->len != dst_len);
5252
5253 offset = (start_offset + dst_offset) &
778746b5 5254 (PAGE_CACHE_SIZE - 1);
d1310b2e 5255
d397712b 5256 while (len > 0) {
d1310b2e
CM
5257 page = extent_buffer_page(dst, i);
5258 WARN_ON(!PageUptodate(page));
5259
5260 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5261
a6591715 5262 kaddr = page_address(page);
d1310b2e 5263 read_extent_buffer(src, kaddr + offset, src_offset, cur);
d1310b2e
CM
5264
5265 src_offset += cur;
5266 len -= cur;
5267 offset = 0;
5268 i++;
5269 }
5270}
d1310b2e 5271
3387206f
ST
5272static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5273{
5274 unsigned long distance = (src > dst) ? src - dst : dst - src;
5275 return distance < len;
5276}
5277
d1310b2e
CM
5278static void copy_pages(struct page *dst_page, struct page *src_page,
5279 unsigned long dst_off, unsigned long src_off,
5280 unsigned long len)
5281{
a6591715 5282 char *dst_kaddr = page_address(dst_page);
d1310b2e 5283 char *src_kaddr;
727011e0 5284 int must_memmove = 0;
d1310b2e 5285
3387206f 5286 if (dst_page != src_page) {
a6591715 5287 src_kaddr = page_address(src_page);
3387206f 5288 } else {
d1310b2e 5289 src_kaddr = dst_kaddr;
727011e0
CM
5290 if (areas_overlap(src_off, dst_off, len))
5291 must_memmove = 1;
3387206f 5292 }
d1310b2e 5293
727011e0
CM
5294 if (must_memmove)
5295 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5296 else
5297 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
d1310b2e
CM
5298}
5299
5300void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5301 unsigned long src_offset, unsigned long len)
5302{
5303 size_t cur;
5304 size_t dst_off_in_page;
5305 size_t src_off_in_page;
5306 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5307 unsigned long dst_i;
5308 unsigned long src_i;
5309
5310 if (src_offset + len > dst->len) {
efe120a0 5311 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
d397712b 5312 "len %lu dst len %lu\n", src_offset, len, dst->len);
d1310b2e
CM
5313 BUG_ON(1);
5314 }
5315 if (dst_offset + len > dst->len) {
efe120a0 5316 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
d397712b 5317 "len %lu dst len %lu\n", dst_offset, len, dst->len);
d1310b2e
CM
5318 BUG_ON(1);
5319 }
5320
d397712b 5321 while (len > 0) {
d1310b2e 5322 dst_off_in_page = (start_offset + dst_offset) &
778746b5 5323 (PAGE_CACHE_SIZE - 1);
d1310b2e 5324 src_off_in_page = (start_offset + src_offset) &
778746b5 5325 (PAGE_CACHE_SIZE - 1);
d1310b2e
CM
5326
5327 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5328 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5329
5330 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5331 src_off_in_page));
5332 cur = min_t(unsigned long, cur,
5333 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5334
5335 copy_pages(extent_buffer_page(dst, dst_i),
5336 extent_buffer_page(dst, src_i),
5337 dst_off_in_page, src_off_in_page, cur);
5338
5339 src_offset += cur;
5340 dst_offset += cur;
5341 len -= cur;
5342 }
5343}
d1310b2e
CM
5344
5345void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5346 unsigned long src_offset, unsigned long len)
5347{
5348 size_t cur;
5349 size_t dst_off_in_page;
5350 size_t src_off_in_page;
5351 unsigned long dst_end = dst_offset + len - 1;
5352 unsigned long src_end = src_offset + len - 1;
5353 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5354 unsigned long dst_i;
5355 unsigned long src_i;
5356
5357 if (src_offset + len > dst->len) {
efe120a0 5358 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
d397712b 5359 "len %lu len %lu\n", src_offset, len, dst->len);
d1310b2e
CM
5360 BUG_ON(1);
5361 }
5362 if (dst_offset + len > dst->len) {
efe120a0 5363 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
d397712b 5364 "len %lu len %lu\n", dst_offset, len, dst->len);
d1310b2e
CM
5365 BUG_ON(1);
5366 }
727011e0 5367 if (dst_offset < src_offset) {
d1310b2e
CM
5368 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5369 return;
5370 }
d397712b 5371 while (len > 0) {
d1310b2e
CM
5372 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5373 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5374
5375 dst_off_in_page = (start_offset + dst_end) &
778746b5 5376 (PAGE_CACHE_SIZE - 1);
d1310b2e 5377 src_off_in_page = (start_offset + src_end) &
778746b5 5378 (PAGE_CACHE_SIZE - 1);
d1310b2e
CM
5379
5380 cur = min_t(unsigned long, len, src_off_in_page + 1);
5381 cur = min(cur, dst_off_in_page + 1);
1877e1a7 5382 copy_pages(extent_buffer_page(dst, dst_i),
d1310b2e
CM
5383 extent_buffer_page(dst, src_i),
5384 dst_off_in_page - cur + 1,
5385 src_off_in_page - cur + 1, cur);
5386
5387 dst_end -= cur;
5388 src_end -= cur;
5389 len -= cur;
5390 }
5391}
6af118ce 5392
f7a52a40 5393int try_release_extent_buffer(struct page *page)
19fe0a8b 5394{
6af118ce 5395 struct extent_buffer *eb;
6af118ce 5396
3083ee2e
JB
5397 /*
5398 * We need to make sure noboody is attaching this page to an eb right
5399 * now.
5400 */
5401 spin_lock(&page->mapping->private_lock);
5402 if (!PagePrivate(page)) {
5403 spin_unlock(&page->mapping->private_lock);
4f2de97a 5404 return 1;
45f49bce 5405 }
6af118ce 5406
3083ee2e
JB
5407 eb = (struct extent_buffer *)page->private;
5408 BUG_ON(!eb);
19fe0a8b
MX
5409
5410 /*
3083ee2e
JB
5411 * This is a little awful but should be ok, we need to make sure that
5412 * the eb doesn't disappear out from under us while we're looking at
5413 * this page.
19fe0a8b 5414 */
3083ee2e 5415 spin_lock(&eb->refs_lock);
0b32f4bb 5416 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
3083ee2e
JB
5417 spin_unlock(&eb->refs_lock);
5418 spin_unlock(&page->mapping->private_lock);
5419 return 0;
b9473439 5420 }
3083ee2e 5421 spin_unlock(&page->mapping->private_lock);
897ca6e9 5422
19fe0a8b 5423 /*
3083ee2e
JB
5424 * If tree ref isn't set then we know the ref on this eb is a real ref,
5425 * so just return, this page will likely be freed soon anyway.
19fe0a8b 5426 */
3083ee2e
JB
5427 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5428 spin_unlock(&eb->refs_lock);
5429 return 0;
b9473439 5430 }
19fe0a8b 5431
f7a52a40 5432 return release_extent_buffer(eb);
6af118ce 5433}