1 #include <linux/bitops.h>
2 #include <linux/slab.h>
5 #include <linux/pagemap.h>
6 #include <linux/page-flags.h>
7 #include <linux/module.h>
8 #include <linux/spinlock.h>
9 #include <linux/blkdev.h>
10 #include <linux/swap.h>
11 #include <linux/writeback.h>
12 #include <linux/pagevec.h>
13 #include <linux/prefetch.h>
14 #include <linux/cleancache.h>
15 #include "extent_io.h"
16 #include "extent_map.h"
19 #include "btrfs_inode.h"
21 #include "check-integrity.h"
24 static struct kmem_cache *extent_state_cache;
25 static struct kmem_cache *extent_buffer_cache;
27 static LIST_HEAD(buffers);
28 static LIST_HEAD(states);
32 static DEFINE_SPINLOCK(leak_lock);
35 #define BUFFER_LRU_MAX 64
40 struct rb_node rb_node;
43 struct extent_page_data {
45 struct extent_io_tree *tree;
46 get_extent_t *get_extent;
48 /* tells writepage not to lock the state bits for this range
49 * it still does the unlocking
51 unsigned int extent_locked:1;
53 /* tells the submit_bio code to use a WRITE_SYNC */
54 unsigned int sync_io:1;
57 static noinline void flush_write_bio(void *data);
58 static inline struct btrfs_fs_info *
59 tree_fs_info(struct extent_io_tree *tree)
61 return btrfs_sb(tree->mapping->host->i_sb);
64 int __init extent_io_init(void)
66 extent_state_cache = kmem_cache_create("extent_state",
67 sizeof(struct extent_state), 0,
68 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
69 if (!extent_state_cache)
72 extent_buffer_cache = kmem_cache_create("extent_buffers",
73 sizeof(struct extent_buffer), 0,
74 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
75 if (!extent_buffer_cache)
76 goto free_state_cache;
80 kmem_cache_destroy(extent_state_cache);
84 void extent_io_exit(void)
86 struct extent_state *state;
87 struct extent_buffer *eb;
89 while (!list_empty(&states)) {
90 state = list_entry(states.next, struct extent_state, leak_list);
91 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
92 "state %lu in tree %p refs %d\n",
93 (unsigned long long)state->start,
94 (unsigned long long)state->end,
95 state->state, state->tree, atomic_read(&state->refs));
96 list_del(&state->leak_list);
97 kmem_cache_free(extent_state_cache, state);
101 while (!list_empty(&buffers)) {
102 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
103 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
104 "refs %d\n", (unsigned long long)eb->start,
105 eb->len, atomic_read(&eb->refs));
106 list_del(&eb->leak_list);
107 kmem_cache_free(extent_buffer_cache, eb);
109 if (extent_state_cache)
110 kmem_cache_destroy(extent_state_cache);
111 if (extent_buffer_cache)
112 kmem_cache_destroy(extent_buffer_cache);
115 void extent_io_tree_init(struct extent_io_tree *tree,
116 struct address_space *mapping)
118 tree->state = RB_ROOT;
119 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
121 tree->dirty_bytes = 0;
122 spin_lock_init(&tree->lock);
123 spin_lock_init(&tree->buffer_lock);
124 tree->mapping = mapping;
127 static struct extent_state *alloc_extent_state(gfp_t mask)
129 struct extent_state *state;
134 state = kmem_cache_alloc(extent_state_cache, mask);
141 spin_lock_irqsave(&leak_lock, flags);
142 list_add(&state->leak_list, &states);
143 spin_unlock_irqrestore(&leak_lock, flags);
145 atomic_set(&state->refs, 1);
146 init_waitqueue_head(&state->wq);
147 trace_alloc_extent_state(state, mask, _RET_IP_);
151 void free_extent_state(struct extent_state *state)
155 if (atomic_dec_and_test(&state->refs)) {
159 WARN_ON(state->tree);
161 spin_lock_irqsave(&leak_lock, flags);
162 list_del(&state->leak_list);
163 spin_unlock_irqrestore(&leak_lock, flags);
165 trace_free_extent_state(state, _RET_IP_);
166 kmem_cache_free(extent_state_cache, state);
170 static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
171 struct rb_node *node)
173 struct rb_node **p = &root->rb_node;
174 struct rb_node *parent = NULL;
175 struct tree_entry *entry;
179 entry = rb_entry(parent, struct tree_entry, rb_node);
181 if (offset < entry->start)
183 else if (offset > entry->end)
189 entry = rb_entry(node, struct tree_entry, rb_node);
190 rb_link_node(node, parent, p);
191 rb_insert_color(node, root);
195 static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
196 struct rb_node **prev_ret,
197 struct rb_node **next_ret)
199 struct rb_root *root = &tree->state;
200 struct rb_node *n = root->rb_node;
201 struct rb_node *prev = NULL;
202 struct rb_node *orig_prev = NULL;
203 struct tree_entry *entry;
204 struct tree_entry *prev_entry = NULL;
207 entry = rb_entry(n, struct tree_entry, rb_node);
211 if (offset < entry->start)
213 else if (offset > entry->end)
221 while (prev && offset > prev_entry->end) {
222 prev = rb_next(prev);
223 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
230 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
231 while (prev && offset < prev_entry->start) {
232 prev = rb_prev(prev);
233 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
240 static inline struct rb_node *tree_search(struct extent_io_tree *tree,
243 struct rb_node *prev = NULL;
246 ret = __etree_search(tree, offset, &prev, NULL);
252 static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
253 struct extent_state *other)
255 if (tree->ops && tree->ops->merge_extent_hook)
256 tree->ops->merge_extent_hook(tree->mapping->host, new,
261 * utility function to look for merge candidates inside a given range.
262 * Any extents with matching state are merged together into a single
263 * extent in the tree. Extents with EXTENT_IO in their state field
264 * are not merged because the end_io handlers need to be able to do
265 * operations on them without sleeping (or doing allocations/splits).
267 * This should be called with the tree lock held.
269 static void merge_state(struct extent_io_tree *tree,
270 struct extent_state *state)
272 struct extent_state *other;
273 struct rb_node *other_node;
275 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
278 other_node = rb_prev(&state->rb_node);
280 other = rb_entry(other_node, struct extent_state, rb_node);
281 if (other->end == state->start - 1 &&
282 other->state == state->state) {
283 merge_cb(tree, state, other);
284 state->start = other->start;
286 rb_erase(&other->rb_node, &tree->state);
287 free_extent_state(other);
290 other_node = rb_next(&state->rb_node);
292 other = rb_entry(other_node, struct extent_state, rb_node);
293 if (other->start == state->end + 1 &&
294 other->state == state->state) {
295 merge_cb(tree, state, other);
296 state->end = other->end;
298 rb_erase(&other->rb_node, &tree->state);
299 free_extent_state(other);
304 static void set_state_cb(struct extent_io_tree *tree,
305 struct extent_state *state, int *bits)
307 if (tree->ops && tree->ops->set_bit_hook)
308 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
311 static void clear_state_cb(struct extent_io_tree *tree,
312 struct extent_state *state, int *bits)
314 if (tree->ops && tree->ops->clear_bit_hook)
315 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
318 static void set_state_bits(struct extent_io_tree *tree,
319 struct extent_state *state, int *bits);
322 * insert an extent_state struct into the tree. 'bits' are set on the
323 * struct before it is inserted.
325 * This may return -EEXIST if the extent is already there, in which case the
326 * state struct is freed.
328 * The tree lock is not taken internally. This is a utility function and
329 * probably isn't what you want to call (see set/clear_extent_bit).
331 static int insert_state(struct extent_io_tree *tree,
332 struct extent_state *state, u64 start, u64 end,
335 struct rb_node *node;
338 printk(KERN_ERR "btrfs end < start %llu %llu\n",
339 (unsigned long long)end,
340 (unsigned long long)start);
343 state->start = start;
346 set_state_bits(tree, state, bits);
348 node = tree_insert(&tree->state, end, &state->rb_node);
350 struct extent_state *found;
351 found = rb_entry(node, struct extent_state, rb_node);
352 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
353 "%llu %llu\n", (unsigned long long)found->start,
354 (unsigned long long)found->end,
355 (unsigned long long)start, (unsigned long long)end);
359 merge_state(tree, state);
363 static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
366 if (tree->ops && tree->ops->split_extent_hook)
367 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
371 * split a given extent state struct in two, inserting the preallocated
372 * struct 'prealloc' as the newly created second half. 'split' indicates an
373 * offset inside 'orig' where it should be split.
376 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
377 * are two extent state structs in the tree:
378 * prealloc: [orig->start, split - 1]
379 * orig: [ split, orig->end ]
381 * The tree locks are not taken by this function. They need to be held
384 static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
385 struct extent_state *prealloc, u64 split)
387 struct rb_node *node;
389 split_cb(tree, orig, split);
391 prealloc->start = orig->start;
392 prealloc->end = split - 1;
393 prealloc->state = orig->state;
396 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
398 free_extent_state(prealloc);
401 prealloc->tree = tree;
406 * utility function to clear some bits in an extent state struct.
407 * it will optionally wake up any one waiting on this state (wake == 1), or
408 * forcibly remove the state from the tree (delete == 1).
410 * If no bits are set on the state struct after clearing things, the
411 * struct is freed and removed from the tree
413 static int clear_state_bit(struct extent_io_tree *tree,
414 struct extent_state *state,
417 int bits_to_clear = *bits & ~EXTENT_CTLBITS;
418 int ret = state->state & bits_to_clear;
420 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
421 u64 range = state->end - state->start + 1;
422 WARN_ON(range > tree->dirty_bytes);
423 tree->dirty_bytes -= range;
425 clear_state_cb(tree, state, bits);
426 state->state &= ~bits_to_clear;
429 if (state->state == 0) {
431 rb_erase(&state->rb_node, &tree->state);
433 free_extent_state(state);
438 merge_state(tree, state);
443 static struct extent_state *
444 alloc_extent_state_atomic(struct extent_state *prealloc)
447 prealloc = alloc_extent_state(GFP_ATOMIC);
452 void extent_io_tree_panic(struct extent_io_tree *tree, int err)
454 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
455 "Extent tree was modified by another "
456 "thread while locked.");
460 * clear some bits on a range in the tree. This may require splitting
461 * or inserting elements in the tree, so the gfp mask is used to
462 * indicate which allocations or sleeping are allowed.
464 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
465 * the given range from the tree regardless of state (ie for truncate).
467 * the range [start, end] is inclusive.
469 * This takes the tree lock, and returns 0 on success and < 0 on error.
471 int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
472 int bits, int wake, int delete,
473 struct extent_state **cached_state,
476 struct extent_state *state;
477 struct extent_state *cached;
478 struct extent_state *prealloc = NULL;
479 struct rb_node *next_node;
480 struct rb_node *node;
486 bits |= ~EXTENT_CTLBITS;
487 bits |= EXTENT_FIRST_DELALLOC;
489 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
492 if (!prealloc && (mask & __GFP_WAIT)) {
493 prealloc = alloc_extent_state(mask);
498 spin_lock(&tree->lock);
500 cached = *cached_state;
503 *cached_state = NULL;
507 if (cached && cached->tree && cached->start <= start &&
508 cached->end > start) {
510 atomic_dec(&cached->refs);
515 free_extent_state(cached);
518 * this search will find the extents that end after
521 node = tree_search(tree, start);
524 state = rb_entry(node, struct extent_state, rb_node);
526 if (state->start > end)
528 WARN_ON(state->end < start);
529 last_end = state->end;
531 if (state->end < end && !need_resched())
532 next_node = rb_next(&state->rb_node);
536 /* the state doesn't have the wanted bits, go ahead */
537 if (!(state->state & bits))
541 * | ---- desired range ---- |
543 * | ------------- state -------------- |
545 * We need to split the extent we found, and may flip
546 * bits on second half.
548 * If the extent we found extends past our range, we
549 * just split and search again. It'll get split again
550 * the next time though.
552 * If the extent we found is inside our range, we clear
553 * the desired bit on it.
556 if (state->start < start) {
557 prealloc = alloc_extent_state_atomic(prealloc);
559 err = split_state(tree, state, prealloc, start);
561 extent_io_tree_panic(tree, err);
566 if (state->end <= end) {
567 clear_state_bit(tree, state, &bits, wake);
568 if (last_end == (u64)-1)
570 start = last_end + 1;
575 * | ---- desired range ---- |
577 * We need to split the extent, and clear the bit
580 if (state->start <= end && state->end > end) {
581 prealloc = alloc_extent_state_atomic(prealloc);
583 err = split_state(tree, state, prealloc, end + 1);
585 extent_io_tree_panic(tree, err);
590 clear_state_bit(tree, prealloc, &bits, wake);
596 clear_state_bit(tree, state, &bits, wake);
598 if (last_end == (u64)-1)
600 start = last_end + 1;
601 if (start <= end && next_node) {
602 state = rb_entry(next_node, struct extent_state,
609 spin_unlock(&tree->lock);
611 free_extent_state(prealloc);
618 spin_unlock(&tree->lock);
619 if (mask & __GFP_WAIT)
624 static void wait_on_state(struct extent_io_tree *tree,
625 struct extent_state *state)
626 __releases(tree->lock)
627 __acquires(tree->lock)
630 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
631 spin_unlock(&tree->lock);
633 spin_lock(&tree->lock);
634 finish_wait(&state->wq, &wait);
638 * waits for one or more bits to clear on a range in the state tree.
639 * The range [start, end] is inclusive.
640 * The tree lock is taken by this function
642 void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
644 struct extent_state *state;
645 struct rb_node *node;
647 spin_lock(&tree->lock);
651 * this search will find all the extents that end after
654 node = tree_search(tree, start);
658 state = rb_entry(node, struct extent_state, rb_node);
660 if (state->start > end)
663 if (state->state & bits) {
664 start = state->start;
665 atomic_inc(&state->refs);
666 wait_on_state(tree, state);
667 free_extent_state(state);
670 start = state->end + 1;
675 cond_resched_lock(&tree->lock);
678 spin_unlock(&tree->lock);
681 static void set_state_bits(struct extent_io_tree *tree,
682 struct extent_state *state,
685 int bits_to_set = *bits & ~EXTENT_CTLBITS;
687 set_state_cb(tree, state, bits);
688 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
689 u64 range = state->end - state->start + 1;
690 tree->dirty_bytes += range;
692 state->state |= bits_to_set;
695 static void cache_state(struct extent_state *state,
696 struct extent_state **cached_ptr)
698 if (cached_ptr && !(*cached_ptr)) {
699 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
701 atomic_inc(&state->refs);
706 static void uncache_state(struct extent_state **cached_ptr)
708 if (cached_ptr && (*cached_ptr)) {
709 struct extent_state *state = *cached_ptr;
711 free_extent_state(state);
716 * set some bits on a range in the tree. This may require allocations or
717 * sleeping, so the gfp mask is used to indicate what is allowed.
719 * If any of the exclusive bits are set, this will fail with -EEXIST if some
720 * part of the range already has the desired bits set. The start of the
721 * existing range is returned in failed_start in this case.
723 * [start, end] is inclusive This takes the tree lock.
726 static int __must_check
727 __set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
728 int bits, int exclusive_bits, u64 *failed_start,
729 struct extent_state **cached_state, gfp_t mask)
731 struct extent_state *state;
732 struct extent_state *prealloc = NULL;
733 struct rb_node *node;
738 bits |= EXTENT_FIRST_DELALLOC;
740 if (!prealloc && (mask & __GFP_WAIT)) {
741 prealloc = alloc_extent_state(mask);
745 spin_lock(&tree->lock);
746 if (cached_state && *cached_state) {
747 state = *cached_state;
748 if (state->start <= start && state->end > start &&
750 node = &state->rb_node;
755 * this search will find all the extents that end after
758 node = tree_search(tree, start);
760 prealloc = alloc_extent_state_atomic(prealloc);
762 err = insert_state(tree, prealloc, start, end, &bits);
764 extent_io_tree_panic(tree, err);
769 state = rb_entry(node, struct extent_state, rb_node);
771 last_start = state->start;
772 last_end = state->end;
775 * | ---- desired range ---- |
778 * Just lock what we found and keep going
780 if (state->start == start && state->end <= end) {
781 struct rb_node *next_node;
782 if (state->state & exclusive_bits) {
783 *failed_start = state->start;
788 set_state_bits(tree, state, &bits);
790 cache_state(state, cached_state);
791 merge_state(tree, state);
792 if (last_end == (u64)-1)
795 start = last_end + 1;
796 next_node = rb_next(&state->rb_node);
797 if (next_node && start < end && prealloc && !need_resched()) {
798 state = rb_entry(next_node, struct extent_state,
800 if (state->start == start)
807 * | ---- desired range ---- |
810 * | ------------- state -------------- |
812 * We need to split the extent we found, and may flip bits on
815 * If the extent we found extends past our
816 * range, we just split and search again. It'll get split
817 * again the next time though.
819 * If the extent we found is inside our range, we set the
822 if (state->start < start) {
823 if (state->state & exclusive_bits) {
824 *failed_start = start;
829 prealloc = alloc_extent_state_atomic(prealloc);
831 err = split_state(tree, state, prealloc, start);
833 extent_io_tree_panic(tree, err);
838 if (state->end <= end) {
839 set_state_bits(tree, state, &bits);
840 cache_state(state, cached_state);
841 merge_state(tree, state);
842 if (last_end == (u64)-1)
844 start = last_end + 1;
849 * | ---- desired range ---- |
850 * | state | or | state |
852 * There's a hole, we need to insert something in it and
853 * ignore the extent we found.
855 if (state->start > start) {
857 if (end < last_start)
860 this_end = last_start - 1;
862 prealloc = alloc_extent_state_atomic(prealloc);
866 * Avoid to free 'prealloc' if it can be merged with
869 err = insert_state(tree, prealloc, start, this_end,
872 extent_io_tree_panic(tree, err);
874 cache_state(prealloc, cached_state);
876 start = this_end + 1;
880 * | ---- desired range ---- |
882 * We need to split the extent, and set the bit
885 if (state->start <= end && state->end > end) {
886 if (state->state & exclusive_bits) {
887 *failed_start = start;
892 prealloc = alloc_extent_state_atomic(prealloc);
894 err = split_state(tree, state, prealloc, end + 1);
896 extent_io_tree_panic(tree, err);
898 set_state_bits(tree, prealloc, &bits);
899 cache_state(prealloc, cached_state);
900 merge_state(tree, prealloc);
908 spin_unlock(&tree->lock);
910 free_extent_state(prealloc);
917 spin_unlock(&tree->lock);
918 if (mask & __GFP_WAIT)
923 int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits,
924 u64 *failed_start, struct extent_state **cached_state,
927 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
933 * convert_extent - convert all bits in a given range from one bit to another
934 * @tree: the io tree to search
935 * @start: the start offset in bytes
936 * @end: the end offset in bytes (inclusive)
937 * @bits: the bits to set in this range
938 * @clear_bits: the bits to clear in this range
939 * @mask: the allocation mask
941 * This will go through and set bits for the given range. If any states exist
942 * already in this range they are set with the given bit and cleared of the
943 * clear_bits. This is only meant to be used by things that are mergeable, ie
944 * converting from say DELALLOC to DIRTY. This is not meant to be used with
945 * boundary bits like LOCK.
947 int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
948 int bits, int clear_bits, gfp_t mask)
950 struct extent_state *state;
951 struct extent_state *prealloc = NULL;
952 struct rb_node *node;
958 if (!prealloc && (mask & __GFP_WAIT)) {
959 prealloc = alloc_extent_state(mask);
964 spin_lock(&tree->lock);
966 * this search will find all the extents that end after
969 node = tree_search(tree, start);
971 prealloc = alloc_extent_state_atomic(prealloc);
976 err = insert_state(tree, prealloc, start, end, &bits);
979 extent_io_tree_panic(tree, err);
982 state = rb_entry(node, struct extent_state, rb_node);
984 last_start = state->start;
985 last_end = state->end;
988 * | ---- desired range ---- |
991 * Just lock what we found and keep going
993 if (state->start == start && state->end <= end) {
994 struct rb_node *next_node;
996 set_state_bits(tree, state, &bits);
997 clear_state_bit(tree, state, &clear_bits, 0);
998 if (last_end == (u64)-1)
1001 start = last_end + 1;
1002 next_node = rb_next(&state->rb_node);
1003 if (next_node && start < end && prealloc && !need_resched()) {
1004 state = rb_entry(next_node, struct extent_state,
1006 if (state->start == start)
1013 * | ---- desired range ---- |
1016 * | ------------- state -------------- |
1018 * We need to split the extent we found, and may flip bits on
1021 * If the extent we found extends past our
1022 * range, we just split and search again. It'll get split
1023 * again the next time though.
1025 * If the extent we found is inside our range, we set the
1026 * desired bit on it.
1028 if (state->start < start) {
1029 prealloc = alloc_extent_state_atomic(prealloc);
1034 err = split_state(tree, state, prealloc, start);
1036 extent_io_tree_panic(tree, err);
1040 if (state->end <= end) {
1041 set_state_bits(tree, state, &bits);
1042 clear_state_bit(tree, state, &clear_bits, 0);
1043 if (last_end == (u64)-1)
1045 start = last_end + 1;
1050 * | ---- desired range ---- |
1051 * | state | or | state |
1053 * There's a hole, we need to insert something in it and
1054 * ignore the extent we found.
1056 if (state->start > start) {
1058 if (end < last_start)
1061 this_end = last_start - 1;
1063 prealloc = alloc_extent_state_atomic(prealloc);
1070 * Avoid to free 'prealloc' if it can be merged with
1073 err = insert_state(tree, prealloc, start, this_end,
1076 extent_io_tree_panic(tree, err);
1078 start = this_end + 1;
1082 * | ---- desired range ---- |
1084 * We need to split the extent, and set the bit
1087 if (state->start <= end && state->end > end) {
1088 prealloc = alloc_extent_state_atomic(prealloc);
1094 err = split_state(tree, state, prealloc, end + 1);
1096 extent_io_tree_panic(tree, err);
1098 set_state_bits(tree, prealloc, &bits);
1099 clear_state_bit(tree, prealloc, &clear_bits, 0);
1107 spin_unlock(&tree->lock);
1109 free_extent_state(prealloc);
1116 spin_unlock(&tree->lock);
1117 if (mask & __GFP_WAIT)
1122 /* wrappers around set/clear extent bit */
1123 int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1126 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
1130 int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1131 int bits, gfp_t mask)
1133 return set_extent_bit(tree, start, end, bits, NULL,
1137 int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1138 int bits, gfp_t mask)
1140 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
1143 int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
1144 struct extent_state **cached_state, gfp_t mask)
1146 return set_extent_bit(tree, start, end,
1147 EXTENT_DELALLOC | EXTENT_UPTODATE,
1148 NULL, cached_state, mask);
1151 int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1154 return clear_extent_bit(tree, start, end,
1155 EXTENT_DIRTY | EXTENT_DELALLOC |
1156 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
1159 int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1162 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
1166 int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1167 struct extent_state **cached_state, gfp_t mask)
1169 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0,
1170 cached_state, mask);
1173 static int clear_extent_uptodate(struct extent_io_tree *tree, u64 start,
1174 u64 end, struct extent_state **cached_state,
1177 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
1178 cached_state, mask);
1182 * either insert or lock state struct between start and end use mask to tell
1183 * us if waiting is desired.
1185 int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1186 int bits, struct extent_state **cached_state)
1191 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1192 EXTENT_LOCKED, &failed_start,
1193 cached_state, GFP_NOFS);
1194 if (err == -EEXIST) {
1195 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1196 start = failed_start;
1199 WARN_ON(start > end);
1204 int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
1206 return lock_extent_bits(tree, start, end, 0, NULL);
1209 int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
1214 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1215 &failed_start, NULL, GFP_NOFS);
1216 if (err == -EEXIST) {
1217 if (failed_start > start)
1218 clear_extent_bit(tree, start, failed_start - 1,
1219 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
1225 int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1226 struct extent_state **cached, gfp_t mask)
1228 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1232 int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
1234 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
1239 * helper function to set both pages and extents in the tree writeback
1241 static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
1243 unsigned long index = start >> PAGE_CACHE_SHIFT;
1244 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1247 while (index <= end_index) {
1248 page = find_get_page(tree->mapping, index);
1249 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1250 set_page_writeback(page);
1251 page_cache_release(page);
1257 /* find the first state struct with 'bits' set after 'start', and
1258 * return it. tree->lock must be held. NULL will returned if
1259 * nothing was found after 'start'
1261 struct extent_state *find_first_extent_bit_state(struct extent_io_tree *tree,
1262 u64 start, int bits)
1264 struct rb_node *node;
1265 struct extent_state *state;
1268 * this search will find all the extents that end after
1271 node = tree_search(tree, start);
1276 state = rb_entry(node, struct extent_state, rb_node);
1277 if (state->end >= start && (state->state & bits))
1280 node = rb_next(node);
1289 * find the first offset in the io tree with 'bits' set. zero is
1290 * returned if we find something, and *start_ret and *end_ret are
1291 * set to reflect the state struct that was found.
1293 * If nothing was found, 1 is returned, < 0 on error
1295 int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1296 u64 *start_ret, u64 *end_ret, int bits)
1298 struct extent_state *state;
1301 spin_lock(&tree->lock);
1302 state = find_first_extent_bit_state(tree, start, bits);
1304 *start_ret = state->start;
1305 *end_ret = state->end;
1308 spin_unlock(&tree->lock);
1313 * find a contiguous range of bytes in the file marked as delalloc, not
1314 * more than 'max_bytes'. start and end are used to return the range,
1316 * 1 is returned if we find something, 0 if nothing was in the tree
1318 static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
1319 u64 *start, u64 *end, u64 max_bytes,
1320 struct extent_state **cached_state)
1322 struct rb_node *node;
1323 struct extent_state *state;
1324 u64 cur_start = *start;
1326 u64 total_bytes = 0;
1328 spin_lock(&tree->lock);
1331 * this search will find all the extents that end after
1334 node = tree_search(tree, cur_start);
1342 state = rb_entry(node, struct extent_state, rb_node);
1343 if (found && (state->start != cur_start ||
1344 (state->state & EXTENT_BOUNDARY))) {
1347 if (!(state->state & EXTENT_DELALLOC)) {
1353 *start = state->start;
1354 *cached_state = state;
1355 atomic_inc(&state->refs);
1359 cur_start = state->end + 1;
1360 node = rb_next(node);
1363 total_bytes += state->end - state->start + 1;
1364 if (total_bytes >= max_bytes)
1368 spin_unlock(&tree->lock);
1372 static noinline void __unlock_for_delalloc(struct inode *inode,
1373 struct page *locked_page,
1377 struct page *pages[16];
1378 unsigned long index = start >> PAGE_CACHE_SHIFT;
1379 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1380 unsigned long nr_pages = end_index - index + 1;
1383 if (index == locked_page->index && end_index == index)
1386 while (nr_pages > 0) {
1387 ret = find_get_pages_contig(inode->i_mapping, index,
1388 min_t(unsigned long, nr_pages,
1389 ARRAY_SIZE(pages)), pages);
1390 for (i = 0; i < ret; i++) {
1391 if (pages[i] != locked_page)
1392 unlock_page(pages[i]);
1393 page_cache_release(pages[i]);
1401 static noinline int lock_delalloc_pages(struct inode *inode,
1402 struct page *locked_page,
1406 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1407 unsigned long start_index = index;
1408 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1409 unsigned long pages_locked = 0;
1410 struct page *pages[16];
1411 unsigned long nrpages;
1415 /* the caller is responsible for locking the start index */
1416 if (index == locked_page->index && index == end_index)
1419 /* skip the page at the start index */
1420 nrpages = end_index - index + 1;
1421 while (nrpages > 0) {
1422 ret = find_get_pages_contig(inode->i_mapping, index,
1423 min_t(unsigned long,
1424 nrpages, ARRAY_SIZE(pages)), pages);
1429 /* now we have an array of pages, lock them all */
1430 for (i = 0; i < ret; i++) {
1432 * the caller is taking responsibility for
1435 if (pages[i] != locked_page) {
1436 lock_page(pages[i]);
1437 if (!PageDirty(pages[i]) ||
1438 pages[i]->mapping != inode->i_mapping) {
1440 unlock_page(pages[i]);
1441 page_cache_release(pages[i]);
1445 page_cache_release(pages[i]);
1454 if (ret && pages_locked) {
1455 __unlock_for_delalloc(inode, locked_page,
1457 ((u64)(start_index + pages_locked - 1)) <<
1464 * find a contiguous range of bytes in the file marked as delalloc, not
1465 * more than 'max_bytes'. start and end are used to return the range,
1467 * 1 is returned if we find something, 0 if nothing was in the tree
1469 static noinline u64 find_lock_delalloc_range(struct inode *inode,
1470 struct extent_io_tree *tree,
1471 struct page *locked_page,
1472 u64 *start, u64 *end,
1478 struct extent_state *cached_state = NULL;
1483 /* step one, find a bunch of delalloc bytes starting at start */
1484 delalloc_start = *start;
1486 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
1487 max_bytes, &cached_state);
1488 if (!found || delalloc_end <= *start) {
1489 *start = delalloc_start;
1490 *end = delalloc_end;
1491 free_extent_state(cached_state);
1496 * start comes from the offset of locked_page. We have to lock
1497 * pages in order, so we can't process delalloc bytes before
1500 if (delalloc_start < *start)
1501 delalloc_start = *start;
1504 * make sure to limit the number of pages we try to lock down
1507 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
1508 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
1510 /* step two, lock all the pages after the page that has start */
1511 ret = lock_delalloc_pages(inode, locked_page,
1512 delalloc_start, delalloc_end);
1513 if (ret == -EAGAIN) {
1514 /* some of the pages are gone, lets avoid looping by
1515 * shortening the size of the delalloc range we're searching
1517 free_extent_state(cached_state);
1519 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1520 max_bytes = PAGE_CACHE_SIZE - offset;
1528 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
1530 /* step three, lock the state bits for the whole range */
1531 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
1533 /* then test to make sure it is all still delalloc */
1534 ret = test_range_bit(tree, delalloc_start, delalloc_end,
1535 EXTENT_DELALLOC, 1, cached_state);
1537 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1538 &cached_state, GFP_NOFS);
1539 __unlock_for_delalloc(inode, locked_page,
1540 delalloc_start, delalloc_end);
1544 free_extent_state(cached_state);
1545 *start = delalloc_start;
1546 *end = delalloc_end;
1551 int extent_clear_unlock_delalloc(struct inode *inode,
1552 struct extent_io_tree *tree,
1553 u64 start, u64 end, struct page *locked_page,
1557 struct page *pages[16];
1558 unsigned long index = start >> PAGE_CACHE_SHIFT;
1559 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1560 unsigned long nr_pages = end_index - index + 1;
1564 if (op & EXTENT_CLEAR_UNLOCK)
1565 clear_bits |= EXTENT_LOCKED;
1566 if (op & EXTENT_CLEAR_DIRTY)
1567 clear_bits |= EXTENT_DIRTY;
1569 if (op & EXTENT_CLEAR_DELALLOC)
1570 clear_bits |= EXTENT_DELALLOC;
1572 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
1573 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1574 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1575 EXTENT_SET_PRIVATE2)))
1578 while (nr_pages > 0) {
1579 ret = find_get_pages_contig(inode->i_mapping, index,
1580 min_t(unsigned long,
1581 nr_pages, ARRAY_SIZE(pages)), pages);
1582 for (i = 0; i < ret; i++) {
1584 if (op & EXTENT_SET_PRIVATE2)
1585 SetPagePrivate2(pages[i]);
1587 if (pages[i] == locked_page) {
1588 page_cache_release(pages[i]);
1591 if (op & EXTENT_CLEAR_DIRTY)
1592 clear_page_dirty_for_io(pages[i]);
1593 if (op & EXTENT_SET_WRITEBACK)
1594 set_page_writeback(pages[i]);
1595 if (op & EXTENT_END_WRITEBACK)
1596 end_page_writeback(pages[i]);
1597 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
1598 unlock_page(pages[i]);
1599 page_cache_release(pages[i]);
1609 * count the number of bytes in the tree that have a given bit(s)
1610 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1611 * cached. The total number found is returned.
1613 u64 count_range_bits(struct extent_io_tree *tree,
1614 u64 *start, u64 search_end, u64 max_bytes,
1615 unsigned long bits, int contig)
1617 struct rb_node *node;
1618 struct extent_state *state;
1619 u64 cur_start = *start;
1620 u64 total_bytes = 0;
1624 if (search_end <= cur_start) {
1629 spin_lock(&tree->lock);
1630 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1631 total_bytes = tree->dirty_bytes;
1635 * this search will find all the extents that end after
1638 node = tree_search(tree, cur_start);
1643 state = rb_entry(node, struct extent_state, rb_node);
1644 if (state->start > search_end)
1646 if (contig && found && state->start > last + 1)
1648 if (state->end >= cur_start && (state->state & bits) == bits) {
1649 total_bytes += min(search_end, state->end) + 1 -
1650 max(cur_start, state->start);
1651 if (total_bytes >= max_bytes)
1654 *start = max(cur_start, state->start);
1658 } else if (contig && found) {
1661 node = rb_next(node);
1666 spin_unlock(&tree->lock);
1671 * set the private field for a given byte offset in the tree. If there isn't
1672 * an extent_state there already, this does nothing.
1674 int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1676 struct rb_node *node;
1677 struct extent_state *state;
1680 spin_lock(&tree->lock);
1682 * this search will find all the extents that end after
1685 node = tree_search(tree, start);
1690 state = rb_entry(node, struct extent_state, rb_node);
1691 if (state->start != start) {
1695 state->private = private;
1697 spin_unlock(&tree->lock);
1701 int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1703 struct rb_node *node;
1704 struct extent_state *state;
1707 spin_lock(&tree->lock);
1709 * this search will find all the extents that end after
1712 node = tree_search(tree, start);
1717 state = rb_entry(node, struct extent_state, rb_node);
1718 if (state->start != start) {
1722 *private = state->private;
1724 spin_unlock(&tree->lock);
1729 * searches a range in the state tree for a given mask.
1730 * If 'filled' == 1, this returns 1 only if every extent in the tree
1731 * has the bits set. Otherwise, 1 is returned if any bit in the
1732 * range is found set.
1734 int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
1735 int bits, int filled, struct extent_state *cached)
1737 struct extent_state *state = NULL;
1738 struct rb_node *node;
1741 spin_lock(&tree->lock);
1742 if (cached && cached->tree && cached->start <= start &&
1743 cached->end > start)
1744 node = &cached->rb_node;
1746 node = tree_search(tree, start);
1747 while (node && start <= end) {
1748 state = rb_entry(node, struct extent_state, rb_node);
1750 if (filled && state->start > start) {
1755 if (state->start > end)
1758 if (state->state & bits) {
1762 } else if (filled) {
1767 if (state->end == (u64)-1)
1770 start = state->end + 1;
1773 node = rb_next(node);
1780 spin_unlock(&tree->lock);
1785 * helper function to set a given page up to date if all the
1786 * extents in the tree for that page are up to date
1788 static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
1790 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1791 u64 end = start + PAGE_CACHE_SIZE - 1;
1792 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
1793 SetPageUptodate(page);
1797 * helper function to unlock a page if all the extents in the tree
1798 * for that page are unlocked
1800 static void check_page_locked(struct extent_io_tree *tree, struct page *page)
1802 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1803 u64 end = start + PAGE_CACHE_SIZE - 1;
1804 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
1809 * helper function to end page writeback if all the extents
1810 * in the tree for that page are done with writeback
1812 static void check_page_writeback(struct extent_io_tree *tree,
1815 end_page_writeback(page);
1819 * When IO fails, either with EIO or csum verification fails, we
1820 * try other mirrors that might have a good copy of the data. This
1821 * io_failure_record is used to record state as we go through all the
1822 * mirrors. If another mirror has good data, the page is set up to date
1823 * and things continue. If a good mirror can't be found, the original
1824 * bio end_io callback is called to indicate things have failed.
1826 struct io_failure_record {
1831 unsigned long bio_flags;
1837 static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1842 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1844 set_state_private(failure_tree, rec->start, 0);
1845 ret = clear_extent_bits(failure_tree, rec->start,
1846 rec->start + rec->len - 1,
1847 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1852 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1853 rec->start + rec->len - 1,
1854 EXTENT_DAMAGED, GFP_NOFS);
1863 static void repair_io_failure_callback(struct bio *bio, int err)
1865 complete(bio->bi_private);
1869 * this bypasses the standard btrfs submit functions deliberately, as
1870 * the standard behavior is to write all copies in a raid setup. here we only
1871 * want to write the one bad copy. so we do the mapping for ourselves and issue
1872 * submit_bio directly.
1873 * to avoid any synchonization issues, wait for the data after writing, which
1874 * actually prevents the read that triggered the error from finishing.
1875 * currently, there can be no more than two copies of every data bit. thus,
1876 * exactly one rewrite is required.
1878 int repair_io_failure(struct btrfs_mapping_tree *map_tree, u64 start,
1879 u64 length, u64 logical, struct page *page,
1883 struct btrfs_device *dev;
1884 DECLARE_COMPLETION_ONSTACK(compl);
1887 struct btrfs_bio *bbio = NULL;
1890 BUG_ON(!mirror_num);
1892 bio = bio_alloc(GFP_NOFS, 1);
1895 bio->bi_private = &compl;
1896 bio->bi_end_io = repair_io_failure_callback;
1898 map_length = length;
1900 ret = btrfs_map_block(map_tree, WRITE, logical,
1901 &map_length, &bbio, mirror_num);
1906 BUG_ON(mirror_num != bbio->mirror_num);
1907 sector = bbio->stripes[mirror_num-1].physical >> 9;
1908 bio->bi_sector = sector;
1909 dev = bbio->stripes[mirror_num-1].dev;
1911 if (!dev || !dev->bdev || !dev->writeable) {
1915 bio->bi_bdev = dev->bdev;
1916 bio_add_page(bio, page, length, start-page_offset(page));
1917 btrfsic_submit_bio(WRITE_SYNC, bio);
1918 wait_for_completion(&compl);
1920 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
1921 /* try to remap that extent elsewhere? */
1926 printk(KERN_INFO "btrfs read error corrected: ino %lu off %llu (dev %s "
1927 "sector %llu)\n", page->mapping->host->i_ino, start,
1934 int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
1937 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
1938 u64 start = eb->start;
1939 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
1942 for (i = 0; i < num_pages; i++) {
1943 struct page *p = extent_buffer_page(eb, i);
1944 ret = repair_io_failure(map_tree, start, PAGE_CACHE_SIZE,
1945 start, p, mirror_num);
1948 start += PAGE_CACHE_SIZE;
1955 * each time an IO finishes, we do a fast check in the IO failure tree
1956 * to see if we need to process or clean up an io_failure_record
1958 static int clean_io_failure(u64 start, struct page *page)
1961 u64 private_failure;
1962 struct io_failure_record *failrec;
1963 struct btrfs_mapping_tree *map_tree;
1964 struct extent_state *state;
1968 struct inode *inode = page->mapping->host;
1971 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1972 (u64)-1, 1, EXTENT_DIRTY, 0);
1976 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
1981 failrec = (struct io_failure_record *)(unsigned long) private_failure;
1982 BUG_ON(!failrec->this_mirror);
1984 if (failrec->in_validation) {
1985 /* there was no real error, just free the record */
1986 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
1992 spin_lock(&BTRFS_I(inode)->io_tree.lock);
1993 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1996 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
1998 if (state && state->start == failrec->start) {
1999 map_tree = &BTRFS_I(inode)->root->fs_info->mapping_tree;
2000 num_copies = btrfs_num_copies(map_tree, failrec->logical,
2002 if (num_copies > 1) {
2003 ret = repair_io_failure(map_tree, start, failrec->len,
2004 failrec->logical, page,
2005 failrec->failed_mirror);
2012 ret = free_io_failure(inode, failrec, did_repair);
2018 * this is a generic handler for readpage errors (default
2019 * readpage_io_failed_hook). if other copies exist, read those and write back
2020 * good data to the failed position. does not investigate in remapping the
2021 * failed extent elsewhere, hoping the device will be smart enough to do this as
2025 static int bio_readpage_error(struct bio *failed_bio, struct page *page,
2026 u64 start, u64 end, int failed_mirror,
2027 struct extent_state *state)
2029 struct io_failure_record *failrec = NULL;
2031 struct extent_map *em;
2032 struct inode *inode = page->mapping->host;
2033 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2034 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2035 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2042 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2044 ret = get_state_private(failure_tree, start, &private);
2046 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2049 failrec->start = start;
2050 failrec->len = end - start + 1;
2051 failrec->this_mirror = 0;
2052 failrec->bio_flags = 0;
2053 failrec->in_validation = 0;
2055 read_lock(&em_tree->lock);
2056 em = lookup_extent_mapping(em_tree, start, failrec->len);
2058 read_unlock(&em_tree->lock);
2063 if (em->start > start || em->start + em->len < start) {
2064 free_extent_map(em);
2067 read_unlock(&em_tree->lock);
2069 if (!em || IS_ERR(em)) {
2073 logical = start - em->start;
2074 logical = em->block_start + logical;
2075 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2076 logical = em->block_start;
2077 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2078 extent_set_compress_type(&failrec->bio_flags,
2081 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2082 "len=%llu\n", logical, start, failrec->len);
2083 failrec->logical = logical;
2084 free_extent_map(em);
2086 /* set the bits in the private failure tree */
2087 ret = set_extent_bits(failure_tree, start, end,
2088 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2090 ret = set_state_private(failure_tree, start,
2091 (u64)(unsigned long)failrec);
2092 /* set the bits in the inode's tree */
2094 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2101 failrec = (struct io_failure_record *)(unsigned long)private;
2102 pr_debug("bio_readpage_error: (found) logical=%llu, "
2103 "start=%llu, len=%llu, validation=%d\n",
2104 failrec->logical, failrec->start, failrec->len,
2105 failrec->in_validation);
2107 * when data can be on disk more than twice, add to failrec here
2108 * (e.g. with a list for failed_mirror) to make
2109 * clean_io_failure() clean all those errors at once.
2112 num_copies = btrfs_num_copies(
2113 &BTRFS_I(inode)->root->fs_info->mapping_tree,
2114 failrec->logical, failrec->len);
2115 if (num_copies == 1) {
2117 * we only have a single copy of the data, so don't bother with
2118 * all the retry and error correction code that follows. no
2119 * matter what the error is, it is very likely to persist.
2121 pr_debug("bio_readpage_error: cannot repair, num_copies == 1. "
2122 "state=%p, num_copies=%d, next_mirror %d, "
2123 "failed_mirror %d\n", state, num_copies,
2124 failrec->this_mirror, failed_mirror);
2125 free_io_failure(inode, failrec, 0);
2130 spin_lock(&tree->lock);
2131 state = find_first_extent_bit_state(tree, failrec->start,
2133 if (state && state->start != failrec->start)
2135 spin_unlock(&tree->lock);
2139 * there are two premises:
2140 * a) deliver good data to the caller
2141 * b) correct the bad sectors on disk
2143 if (failed_bio->bi_vcnt > 1) {
2145 * to fulfill b), we need to know the exact failing sectors, as
2146 * we don't want to rewrite any more than the failed ones. thus,
2147 * we need separate read requests for the failed bio
2149 * if the following BUG_ON triggers, our validation request got
2150 * merged. we need separate requests for our algorithm to work.
2152 BUG_ON(failrec->in_validation);
2153 failrec->in_validation = 1;
2154 failrec->this_mirror = failed_mirror;
2155 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2158 * we're ready to fulfill a) and b) alongside. get a good copy
2159 * of the failed sector and if we succeed, we have setup
2160 * everything for repair_io_failure to do the rest for us.
2162 if (failrec->in_validation) {
2163 BUG_ON(failrec->this_mirror != failed_mirror);
2164 failrec->in_validation = 0;
2165 failrec->this_mirror = 0;
2167 failrec->failed_mirror = failed_mirror;
2168 failrec->this_mirror++;
2169 if (failrec->this_mirror == failed_mirror)
2170 failrec->this_mirror++;
2171 read_mode = READ_SYNC;
2174 if (!state || failrec->this_mirror > num_copies) {
2175 pr_debug("bio_readpage_error: (fail) state=%p, num_copies=%d, "
2176 "next_mirror %d, failed_mirror %d\n", state,
2177 num_copies, failrec->this_mirror, failed_mirror);
2178 free_io_failure(inode, failrec, 0);
2182 bio = bio_alloc(GFP_NOFS, 1);
2184 free_io_failure(inode, failrec, 0);
2187 bio->bi_private = state;
2188 bio->bi_end_io = failed_bio->bi_end_io;
2189 bio->bi_sector = failrec->logical >> 9;
2190 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2193 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2195 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2196 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2197 failrec->this_mirror, num_copies, failrec->in_validation);
2199 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2200 failrec->this_mirror,
2201 failrec->bio_flags, 0);
2205 /* lots and lots of room for performance fixes in the end_bio funcs */
2207 int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2209 int uptodate = (err == 0);
2210 struct extent_io_tree *tree;
2213 tree = &BTRFS_I(page->mapping->host)->io_tree;
2215 if (tree->ops && tree->ops->writepage_end_io_hook) {
2216 ret = tree->ops->writepage_end_io_hook(page, start,
2217 end, NULL, uptodate);
2222 if (!uptodate && tree->ops &&
2223 tree->ops->writepage_io_failed_hook) {
2224 ret = tree->ops->writepage_io_failed_hook(NULL, page,
2226 /* Writeback already completed */
2232 clear_extent_uptodate(tree, start, end, NULL, GFP_NOFS);
2233 ClearPageUptodate(page);
2240 * after a writepage IO is done, we need to:
2241 * clear the uptodate bits on error
2242 * clear the writeback bits in the extent tree for this IO
2243 * end_page_writeback if the page has no more pending IO
2245 * Scheduling is not allowed, so the extent state tree is expected
2246 * to have one and only one object corresponding to this IO.
2248 static void end_bio_extent_writepage(struct bio *bio, int err)
2250 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2251 struct extent_io_tree *tree;
2257 struct page *page = bvec->bv_page;
2258 tree = &BTRFS_I(page->mapping->host)->io_tree;
2260 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
2262 end = start + bvec->bv_len - 1;
2264 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
2269 if (--bvec >= bio->bi_io_vec)
2270 prefetchw(&bvec->bv_page->flags);
2272 if (end_extent_writepage(page, err, start, end))
2276 end_page_writeback(page);
2278 check_page_writeback(tree, page);
2279 } while (bvec >= bio->bi_io_vec);
2285 * after a readpage IO is done, we need to:
2286 * clear the uptodate bits on error
2287 * set the uptodate bits if things worked
2288 * set the page up to date if all extents in the tree are uptodate
2289 * clear the lock bit in the extent tree
2290 * unlock the page if there are no other extents locked for it
2292 * Scheduling is not allowed, so the extent state tree is expected
2293 * to have one and only one object corresponding to this IO.
2295 static void end_bio_extent_readpage(struct bio *bio, int err)
2297 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
2298 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2299 struct bio_vec *bvec = bio->bi_io_vec;
2300 struct extent_io_tree *tree;
2311 struct page *page = bvec->bv_page;
2312 struct extent_state *cached = NULL;
2313 struct extent_state *state;
2315 pr_debug("end_bio_extent_readpage: bi_vcnt=%d, idx=%d, err=%d, "
2316 "mirror=%ld\n", bio->bi_vcnt, bio->bi_idx, err,
2317 (long int)bio->bi_bdev);
2318 tree = &BTRFS_I(page->mapping->host)->io_tree;
2320 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
2322 end = start + bvec->bv_len - 1;
2324 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
2329 if (++bvec <= bvec_end)
2330 prefetchw(&bvec->bv_page->flags);
2332 spin_lock(&tree->lock);
2333 state = find_first_extent_bit_state(tree, start, EXTENT_LOCKED);
2334 if (state && state->start == start) {
2336 * take a reference on the state, unlock will drop
2339 cache_state(state, &cached);
2341 spin_unlock(&tree->lock);
2343 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
2344 ret = tree->ops->readpage_end_io_hook(page, start, end,
2349 clean_io_failure(start, page);
2353 failed_mirror = (int)(unsigned long)bio->bi_bdev;
2355 if (!uptodate && tree->ops && tree->ops->readpage_io_failed_hook) {
2356 ret = tree->ops->readpage_io_failed_hook(page, failed_mirror);
2358 test_bit(BIO_UPTODATE, &bio->bi_flags))
2360 } else if (!uptodate) {
2362 * The generic bio_readpage_error handles errors the
2363 * following way: If possible, new read requests are
2364 * created and submitted and will end up in
2365 * end_bio_extent_readpage as well (if we're lucky, not
2366 * in the !uptodate case). In that case it returns 0 and
2367 * we just go on with the next page in our bio. If it
2368 * can't handle the error it will return -EIO and we
2369 * remain responsible for that page.
2371 ret = bio_readpage_error(bio, page, start, end,
2372 failed_mirror, NULL);
2375 test_bit(BIO_UPTODATE, &bio->bi_flags);
2378 uncache_state(&cached);
2383 if (uptodate && tree->track_uptodate) {
2384 set_extent_uptodate(tree, start, end, &cached,
2387 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2391 SetPageUptodate(page);
2393 ClearPageUptodate(page);
2399 check_page_uptodate(tree, page);
2401 ClearPageUptodate(page);
2404 check_page_locked(tree, page);
2406 } while (bvec <= bvec_end);
2412 btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2417 bio = bio_alloc(gfp_flags, nr_vecs);
2419 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
2420 while (!bio && (nr_vecs /= 2))
2421 bio = bio_alloc(gfp_flags, nr_vecs);
2426 bio->bi_bdev = bdev;
2427 bio->bi_sector = first_sector;
2433 * Since writes are async, they will only return -ENOMEM.
2434 * Reads can return the full range of I/O error conditions.
2436 static int __must_check submit_one_bio(int rw, struct bio *bio,
2437 int mirror_num, unsigned long bio_flags)
2440 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2441 struct page *page = bvec->bv_page;
2442 struct extent_io_tree *tree = bio->bi_private;
2445 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
2447 bio->bi_private = NULL;
2451 if (tree->ops && tree->ops->submit_bio_hook)
2452 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
2453 mirror_num, bio_flags, start);
2455 btrfsic_submit_bio(rw, bio);
2457 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2463 static int merge_bio(struct extent_io_tree *tree, struct page *page,
2464 unsigned long offset, size_t size, struct bio *bio,
2465 unsigned long bio_flags)
2468 if (tree->ops && tree->ops->merge_bio_hook)
2469 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
2476 static int submit_extent_page(int rw, struct extent_io_tree *tree,
2477 struct page *page, sector_t sector,
2478 size_t size, unsigned long offset,
2479 struct block_device *bdev,
2480 struct bio **bio_ret,
2481 unsigned long max_pages,
2482 bio_end_io_t end_io_func,
2484 unsigned long prev_bio_flags,
2485 unsigned long bio_flags)
2491 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2492 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
2493 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
2495 if (bio_ret && *bio_ret) {
2498 contig = bio->bi_sector == sector;
2500 contig = bio->bi_sector + (bio->bi_size >> 9) ==
2503 if (prev_bio_flags != bio_flags || !contig ||
2504 merge_bio(tree, page, offset, page_size, bio, bio_flags) ||
2505 bio_add_page(bio, page, page_size, offset) < page_size) {
2506 ret = submit_one_bio(rw, bio, mirror_num,
2515 if (this_compressed)
2518 nr = bio_get_nr_vecs(bdev);
2520 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
2524 bio_add_page(bio, page, page_size, offset);
2525 bio->bi_end_io = end_io_func;
2526 bio->bi_private = tree;
2531 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
2536 void attach_extent_buffer_page(struct extent_buffer *eb, struct page *page)
2538 if (!PagePrivate(page)) {
2539 SetPagePrivate(page);
2540 page_cache_get(page);
2541 set_page_private(page, (unsigned long)eb);
2543 WARN_ON(page->private != (unsigned long)eb);
2547 void set_page_extent_mapped(struct page *page)
2549 if (!PagePrivate(page)) {
2550 SetPagePrivate(page);
2551 page_cache_get(page);
2552 set_page_private(page, EXTENT_PAGE_PRIVATE);
2557 * basic readpage implementation. Locked extent state structs are inserted
2558 * into the tree that are removed when the IO is done (by the end_io
2560 * XXX JDM: This needs looking at to ensure proper page locking
2562 static int __extent_read_full_page(struct extent_io_tree *tree,
2564 get_extent_t *get_extent,
2565 struct bio **bio, int mirror_num,
2566 unsigned long *bio_flags)
2568 struct inode *inode = page->mapping->host;
2569 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2570 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2574 u64 last_byte = i_size_read(inode);
2578 struct extent_map *em;
2579 struct block_device *bdev;
2580 struct btrfs_ordered_extent *ordered;
2583 size_t pg_offset = 0;
2585 size_t disk_io_size;
2586 size_t blocksize = inode->i_sb->s_blocksize;
2587 unsigned long this_bio_flag = 0;
2589 set_page_extent_mapped(page);
2591 if (!PageUptodate(page)) {
2592 if (cleancache_get_page(page) == 0) {
2593 BUG_ON(blocksize != PAGE_SIZE);
2600 lock_extent(tree, start, end);
2601 ordered = btrfs_lookup_ordered_extent(inode, start);
2604 unlock_extent(tree, start, end);
2605 btrfs_start_ordered_extent(inode, ordered, 1);
2606 btrfs_put_ordered_extent(ordered);
2609 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2611 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2614 iosize = PAGE_CACHE_SIZE - zero_offset;
2615 userpage = kmap_atomic(page);
2616 memset(userpage + zero_offset, 0, iosize);
2617 flush_dcache_page(page);
2618 kunmap_atomic(userpage);
2621 while (cur <= end) {
2622 if (cur >= last_byte) {
2624 struct extent_state *cached = NULL;
2626 iosize = PAGE_CACHE_SIZE - pg_offset;
2627 userpage = kmap_atomic(page);
2628 memset(userpage + pg_offset, 0, iosize);
2629 flush_dcache_page(page);
2630 kunmap_atomic(userpage);
2631 set_extent_uptodate(tree, cur, cur + iosize - 1,
2633 unlock_extent_cached(tree, cur, cur + iosize - 1,
2637 em = get_extent(inode, page, pg_offset, cur,
2639 if (IS_ERR_OR_NULL(em)) {
2641 unlock_extent(tree, cur, end);
2644 extent_offset = cur - em->start;
2645 BUG_ON(extent_map_end(em) <= cur);
2648 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2649 this_bio_flag = EXTENT_BIO_COMPRESSED;
2650 extent_set_compress_type(&this_bio_flag,
2654 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2655 cur_end = min(extent_map_end(em) - 1, end);
2656 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2657 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2658 disk_io_size = em->block_len;
2659 sector = em->block_start >> 9;
2661 sector = (em->block_start + extent_offset) >> 9;
2662 disk_io_size = iosize;
2665 block_start = em->block_start;
2666 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2667 block_start = EXTENT_MAP_HOLE;
2668 free_extent_map(em);
2671 /* we've found a hole, just zero and go on */
2672 if (block_start == EXTENT_MAP_HOLE) {
2674 struct extent_state *cached = NULL;
2676 userpage = kmap_atomic(page);
2677 memset(userpage + pg_offset, 0, iosize);
2678 flush_dcache_page(page);
2679 kunmap_atomic(userpage);
2681 set_extent_uptodate(tree, cur, cur + iosize - 1,
2683 unlock_extent_cached(tree, cur, cur + iosize - 1,
2686 pg_offset += iosize;
2689 /* the get_extent function already copied into the page */
2690 if (test_range_bit(tree, cur, cur_end,
2691 EXTENT_UPTODATE, 1, NULL)) {
2692 check_page_uptodate(tree, page);
2693 unlock_extent(tree, cur, cur + iosize - 1);
2695 pg_offset += iosize;
2698 /* we have an inline extent but it didn't get marked up
2699 * to date. Error out
2701 if (block_start == EXTENT_MAP_INLINE) {
2703 unlock_extent(tree, cur, cur + iosize - 1);
2705 pg_offset += iosize;
2710 if (tree->ops && tree->ops->readpage_io_hook) {
2711 ret = tree->ops->readpage_io_hook(page, cur,
2715 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2717 ret = submit_extent_page(READ, tree, page,
2718 sector, disk_io_size, pg_offset,
2720 end_bio_extent_readpage, mirror_num,
2723 BUG_ON(ret == -ENOMEM);
2725 *bio_flags = this_bio_flag;
2730 pg_offset += iosize;
2734 if (!PageError(page))
2735 SetPageUptodate(page);
2741 int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
2742 get_extent_t *get_extent, int mirror_num)
2744 struct bio *bio = NULL;
2745 unsigned long bio_flags = 0;
2748 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
2751 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
2755 static noinline void update_nr_written(struct page *page,
2756 struct writeback_control *wbc,
2757 unsigned long nr_written)
2759 wbc->nr_to_write -= nr_written;
2760 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2761 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2762 page->mapping->writeback_index = page->index + nr_written;
2766 * the writepage semantics are similar to regular writepage. extent
2767 * records are inserted to lock ranges in the tree, and as dirty areas
2768 * are found, they are marked writeback. Then the lock bits are removed
2769 * and the end_io handler clears the writeback ranges
2771 static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2774 struct inode *inode = page->mapping->host;
2775 struct extent_page_data *epd = data;
2776 struct extent_io_tree *tree = epd->tree;
2777 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2779 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2783 u64 last_byte = i_size_read(inode);
2787 struct extent_state *cached_state = NULL;
2788 struct extent_map *em;
2789 struct block_device *bdev;
2792 size_t pg_offset = 0;
2794 loff_t i_size = i_size_read(inode);
2795 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2801 unsigned long nr_written = 0;
2802 bool fill_delalloc = true;
2804 if (wbc->sync_mode == WB_SYNC_ALL)
2805 write_flags = WRITE_SYNC;
2807 write_flags = WRITE;
2809 trace___extent_writepage(page, inode, wbc);
2811 WARN_ON(!PageLocked(page));
2813 ClearPageError(page);
2815 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
2816 if (page->index > end_index ||
2817 (page->index == end_index && !pg_offset)) {
2818 page->mapping->a_ops->invalidatepage(page, 0);
2823 if (page->index == end_index) {
2826 userpage = kmap_atomic(page);
2827 memset(userpage + pg_offset, 0,
2828 PAGE_CACHE_SIZE - pg_offset);
2829 kunmap_atomic(userpage);
2830 flush_dcache_page(page);
2834 set_page_extent_mapped(page);
2836 if (!tree->ops || !tree->ops->fill_delalloc)
2837 fill_delalloc = false;
2839 delalloc_start = start;
2842 if (!epd->extent_locked && fill_delalloc) {
2843 u64 delalloc_to_write = 0;
2845 * make sure the wbc mapping index is at least updated
2848 update_nr_written(page, wbc, 0);
2850 while (delalloc_end < page_end) {
2851 nr_delalloc = find_lock_delalloc_range(inode, tree,
2856 if (nr_delalloc == 0) {
2857 delalloc_start = delalloc_end + 1;
2860 ret = tree->ops->fill_delalloc(inode, page,
2865 /* File system has been set read-only */
2871 * delalloc_end is already one less than the total
2872 * length, so we don't subtract one from
2875 delalloc_to_write += (delalloc_end - delalloc_start +
2878 delalloc_start = delalloc_end + 1;
2880 if (wbc->nr_to_write < delalloc_to_write) {
2883 if (delalloc_to_write < thresh * 2)
2884 thresh = delalloc_to_write;
2885 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2889 /* did the fill delalloc function already unlock and start
2895 * we've unlocked the page, so we can't update
2896 * the mapping's writeback index, just update
2899 wbc->nr_to_write -= nr_written;
2903 if (tree->ops && tree->ops->writepage_start_hook) {
2904 ret = tree->ops->writepage_start_hook(page, start,
2907 /* Fixup worker will requeue */
2909 wbc->pages_skipped++;
2911 redirty_page_for_writepage(wbc, page);
2912 update_nr_written(page, wbc, nr_written);
2920 * we don't want to touch the inode after unlocking the page,
2921 * so we update the mapping writeback index now
2923 update_nr_written(page, wbc, nr_written + 1);
2926 if (last_byte <= start) {
2927 if (tree->ops && tree->ops->writepage_end_io_hook)
2928 tree->ops->writepage_end_io_hook(page, start,
2933 blocksize = inode->i_sb->s_blocksize;
2935 while (cur <= end) {
2936 if (cur >= last_byte) {
2937 if (tree->ops && tree->ops->writepage_end_io_hook)
2938 tree->ops->writepage_end_io_hook(page, cur,
2942 em = epd->get_extent(inode, page, pg_offset, cur,
2944 if (IS_ERR_OR_NULL(em)) {
2949 extent_offset = cur - em->start;
2950 BUG_ON(extent_map_end(em) <= cur);
2952 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2953 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2954 sector = (em->block_start + extent_offset) >> 9;
2956 block_start = em->block_start;
2957 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
2958 free_extent_map(em);
2962 * compressed and inline extents are written through other
2965 if (compressed || block_start == EXTENT_MAP_HOLE ||
2966 block_start == EXTENT_MAP_INLINE) {
2968 * end_io notification does not happen here for
2969 * compressed extents
2971 if (!compressed && tree->ops &&
2972 tree->ops->writepage_end_io_hook)
2973 tree->ops->writepage_end_io_hook(page, cur,
2976 else if (compressed) {
2977 /* we don't want to end_page_writeback on
2978 * a compressed extent. this happens
2985 pg_offset += iosize;
2988 /* leave this out until we have a page_mkwrite call */
2989 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
2990 EXTENT_DIRTY, 0, NULL)) {
2992 pg_offset += iosize;
2996 if (tree->ops && tree->ops->writepage_io_hook) {
2997 ret = tree->ops->writepage_io_hook(page, cur,
3005 unsigned long max_nr = end_index + 1;
3007 set_range_writeback(tree, cur, cur + iosize - 1);
3008 if (!PageWriteback(page)) {
3009 printk(KERN_ERR "btrfs warning page %lu not "
3010 "writeback, cur %llu end %llu\n",
3011 page->index, (unsigned long long)cur,
3012 (unsigned long long)end);
3015 ret = submit_extent_page(write_flags, tree, page,
3016 sector, iosize, pg_offset,
3017 bdev, &epd->bio, max_nr,
3018 end_bio_extent_writepage,
3024 pg_offset += iosize;
3029 /* make sure the mapping tag for page dirty gets cleared */
3030 set_page_writeback(page);
3031 end_page_writeback(page);
3037 /* drop our reference on any cached states */
3038 free_extent_state(cached_state);
3042 static int eb_wait(void *word)
3048 static void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
3050 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3051 TASK_UNINTERRUPTIBLE);
3054 static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3055 struct btrfs_fs_info *fs_info,
3056 struct extent_page_data *epd)
3058 unsigned long i, num_pages;
3062 if (!btrfs_try_tree_write_lock(eb)) {
3064 flush_write_bio(epd);
3065 btrfs_tree_lock(eb);
3068 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3069 btrfs_tree_unlock(eb);
3073 flush_write_bio(epd);
3077 wait_on_extent_buffer_writeback(eb);
3078 btrfs_tree_lock(eb);
3079 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3081 btrfs_tree_unlock(eb);
3085 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3086 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3087 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
3088 spin_lock(&fs_info->delalloc_lock);
3089 if (fs_info->dirty_metadata_bytes >= eb->len)
3090 fs_info->dirty_metadata_bytes -= eb->len;
3093 spin_unlock(&fs_info->delalloc_lock);
3097 btrfs_tree_unlock(eb);
3102 num_pages = num_extent_pages(eb->start, eb->len);
3103 for (i = 0; i < num_pages; i++) {
3104 struct page *p = extent_buffer_page(eb, i);
3106 if (!trylock_page(p)) {
3108 flush_write_bio(epd);
3118 static void end_extent_buffer_writeback(struct extent_buffer *eb)
3120 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3121 smp_mb__after_clear_bit();
3122 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3125 static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3127 int uptodate = err == 0;
3128 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3129 struct extent_buffer *eb;
3133 struct page *page = bvec->bv_page;
3136 eb = (struct extent_buffer *)page->private;
3138 done = atomic_dec_and_test(&eb->io_pages);
3140 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3141 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3142 ClearPageUptodate(page);
3146 end_page_writeback(page);
3151 end_extent_buffer_writeback(eb);
3152 } while (bvec >= bio->bi_io_vec);
3158 static int write_one_eb(struct extent_buffer *eb,
3159 struct btrfs_fs_info *fs_info,
3160 struct writeback_control *wbc,
3161 struct extent_page_data *epd)
3163 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3164 u64 offset = eb->start;
3165 unsigned long i, num_pages;
3166 int rw = (epd->sync_io ? WRITE_SYNC : WRITE);
3169 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3170 num_pages = num_extent_pages(eb->start, eb->len);
3171 atomic_set(&eb->io_pages, num_pages);
3172 for (i = 0; i < num_pages; i++) {
3173 struct page *p = extent_buffer_page(eb, i);
3175 clear_page_dirty_for_io(p);
3176 set_page_writeback(p);
3177 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3178 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3179 -1, end_bio_extent_buffer_writepage,
3182 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3184 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3185 end_extent_buffer_writeback(eb);
3189 offset += PAGE_CACHE_SIZE;
3190 update_nr_written(p, wbc, 1);
3194 if (unlikely(ret)) {
3195 for (; i < num_pages; i++) {
3196 struct page *p = extent_buffer_page(eb, i);
3204 int btree_write_cache_pages(struct address_space *mapping,
3205 struct writeback_control *wbc)
3207 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3208 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3209 struct extent_buffer *eb, *prev_eb = NULL;
3210 struct extent_page_data epd = {
3214 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3218 int nr_to_write_done = 0;
3219 struct pagevec pvec;
3222 pgoff_t end; /* Inclusive */
3226 pagevec_init(&pvec, 0);
3227 if (wbc->range_cyclic) {
3228 index = mapping->writeback_index; /* Start from prev offset */
3231 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3232 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3235 if (wbc->sync_mode == WB_SYNC_ALL)
3236 tag = PAGECACHE_TAG_TOWRITE;
3238 tag = PAGECACHE_TAG_DIRTY;
3240 if (wbc->sync_mode == WB_SYNC_ALL)
3241 tag_pages_for_writeback(mapping, index, end);
3242 while (!done && !nr_to_write_done && (index <= end) &&
3243 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3244 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3248 for (i = 0; i < nr_pages; i++) {
3249 struct page *page = pvec.pages[i];
3251 if (!PagePrivate(page))
3254 if (!wbc->range_cyclic && page->index > end) {
3259 eb = (struct extent_buffer *)page->private;
3268 if (!atomic_inc_not_zero(&eb->refs)) {
3274 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3276 free_extent_buffer(eb);
3280 ret = write_one_eb(eb, fs_info, wbc, &epd);
3283 free_extent_buffer(eb);
3286 free_extent_buffer(eb);
3289 * the filesystem may choose to bump up nr_to_write.
3290 * We have to make sure to honor the new nr_to_write
3293 nr_to_write_done = wbc->nr_to_write <= 0;
3295 pagevec_release(&pvec);
3298 if (!scanned && !done) {
3300 * We hit the last page and there is more work to be done: wrap
3301 * back to the start of the file
3307 flush_write_bio(&epd);
3312 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3313 * @mapping: address space structure to write
3314 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3315 * @writepage: function called for each page
3316 * @data: data passed to writepage function
3318 * If a page is already under I/O, write_cache_pages() skips it, even
3319 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3320 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3321 * and msync() need to guarantee that all the data which was dirty at the time
3322 * the call was made get new I/O started against them. If wbc->sync_mode is
3323 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3324 * existing IO to complete.
3326 static int extent_write_cache_pages(struct extent_io_tree *tree,
3327 struct address_space *mapping,
3328 struct writeback_control *wbc,
3329 writepage_t writepage, void *data,
3330 void (*flush_fn)(void *))
3334 int nr_to_write_done = 0;
3335 struct pagevec pvec;
3338 pgoff_t end; /* Inclusive */
3342 pagevec_init(&pvec, 0);
3343 if (wbc->range_cyclic) {
3344 index = mapping->writeback_index; /* Start from prev offset */
3347 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3348 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3351 if (wbc->sync_mode == WB_SYNC_ALL)
3352 tag = PAGECACHE_TAG_TOWRITE;
3354 tag = PAGECACHE_TAG_DIRTY;
3356 if (wbc->sync_mode == WB_SYNC_ALL)
3357 tag_pages_for_writeback(mapping, index, end);
3358 while (!done && !nr_to_write_done && (index <= end) &&
3359 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3360 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3364 for (i = 0; i < nr_pages; i++) {
3365 struct page *page = pvec.pages[i];
3368 * At this point we hold neither mapping->tree_lock nor
3369 * lock on the page itself: the page may be truncated or
3370 * invalidated (changing page->mapping to NULL), or even
3371 * swizzled back from swapper_space to tmpfs file
3375 tree->ops->write_cache_pages_lock_hook) {
3376 tree->ops->write_cache_pages_lock_hook(page,
3379 if (!trylock_page(page)) {
3385 if (unlikely(page->mapping != mapping)) {
3390 if (!wbc->range_cyclic && page->index > end) {
3396 if (wbc->sync_mode != WB_SYNC_NONE) {
3397 if (PageWriteback(page))
3399 wait_on_page_writeback(page);
3402 if (PageWriteback(page) ||
3403 !clear_page_dirty_for_io(page)) {
3408 ret = (*writepage)(page, wbc, data);
3410 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3418 * the filesystem may choose to bump up nr_to_write.
3419 * We have to make sure to honor the new nr_to_write
3422 nr_to_write_done = wbc->nr_to_write <= 0;
3424 pagevec_release(&pvec);
3427 if (!scanned && !done) {
3429 * We hit the last page and there is more work to be done: wrap
3430 * back to the start of the file
3439 static void flush_epd_write_bio(struct extent_page_data *epd)
3448 ret = submit_one_bio(rw, epd->bio, 0, 0);
3449 BUG_ON(ret < 0); /* -ENOMEM */
3454 static noinline void flush_write_bio(void *data)
3456 struct extent_page_data *epd = data;
3457 flush_epd_write_bio(epd);
3460 int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3461 get_extent_t *get_extent,
3462 struct writeback_control *wbc)
3465 struct extent_page_data epd = {
3468 .get_extent = get_extent,
3470 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3473 ret = __extent_writepage(page, wbc, &epd);
3475 flush_epd_write_bio(&epd);
3479 int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3480 u64 start, u64 end, get_extent_t *get_extent,
3484 struct address_space *mapping = inode->i_mapping;
3486 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3489 struct extent_page_data epd = {
3492 .get_extent = get_extent,
3494 .sync_io = mode == WB_SYNC_ALL,
3496 struct writeback_control wbc_writepages = {
3498 .nr_to_write = nr_pages * 2,
3499 .range_start = start,
3500 .range_end = end + 1,
3503 while (start <= end) {
3504 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3505 if (clear_page_dirty_for_io(page))
3506 ret = __extent_writepage(page, &wbc_writepages, &epd);
3508 if (tree->ops && tree->ops->writepage_end_io_hook)
3509 tree->ops->writepage_end_io_hook(page, start,
3510 start + PAGE_CACHE_SIZE - 1,
3514 page_cache_release(page);
3515 start += PAGE_CACHE_SIZE;
3518 flush_epd_write_bio(&epd);
3522 int extent_writepages(struct extent_io_tree *tree,
3523 struct address_space *mapping,
3524 get_extent_t *get_extent,
3525 struct writeback_control *wbc)
3528 struct extent_page_data epd = {
3531 .get_extent = get_extent,
3533 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3536 ret = extent_write_cache_pages(tree, mapping, wbc,
3537 __extent_writepage, &epd,
3539 flush_epd_write_bio(&epd);
3543 int extent_readpages(struct extent_io_tree *tree,
3544 struct address_space *mapping,
3545 struct list_head *pages, unsigned nr_pages,
3546 get_extent_t get_extent)
3548 struct bio *bio = NULL;
3550 unsigned long bio_flags = 0;
3552 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
3553 struct page *page = list_entry(pages->prev, struct page, lru);
3555 prefetchw(&page->flags);
3556 list_del(&page->lru);
3557 if (!add_to_page_cache_lru(page, mapping,
3558 page->index, GFP_NOFS)) {
3559 __extent_read_full_page(tree, page, get_extent,
3560 &bio, 0, &bio_flags);
3562 page_cache_release(page);
3564 BUG_ON(!list_empty(pages));
3566 return submit_one_bio(READ, bio, 0, bio_flags);
3571 * basic invalidatepage code, this waits on any locked or writeback
3572 * ranges corresponding to the page, and then deletes any extent state
3573 * records from the tree
3575 int extent_invalidatepage(struct extent_io_tree *tree,
3576 struct page *page, unsigned long offset)
3578 struct extent_state *cached_state = NULL;
3579 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
3580 u64 end = start + PAGE_CACHE_SIZE - 1;
3581 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3583 start += (offset + blocksize - 1) & ~(blocksize - 1);
3587 lock_extent_bits(tree, start, end, 0, &cached_state);
3588 wait_on_page_writeback(page);
3589 clear_extent_bit(tree, start, end,
3590 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3591 EXTENT_DO_ACCOUNTING,
3592 1, 1, &cached_state, GFP_NOFS);
3597 * a helper for releasepage, this tests for areas of the page that
3598 * are locked or under IO and drops the related state bits if it is safe
3601 int try_release_extent_state(struct extent_map_tree *map,
3602 struct extent_io_tree *tree, struct page *page,
3605 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
3606 u64 end = start + PAGE_CACHE_SIZE - 1;
3609 if (test_range_bit(tree, start, end,
3610 EXTENT_IOBITS, 0, NULL))
3613 if ((mask & GFP_NOFS) == GFP_NOFS)
3616 * at this point we can safely clear everything except the
3617 * locked bit and the nodatasum bit
3619 ret = clear_extent_bit(tree, start, end,
3620 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3623 /* if clear_extent_bit failed for enomem reasons,
3624 * we can't allow the release to continue.
3635 * a helper for releasepage. As long as there are no locked extents
3636 * in the range corresponding to the page, both state records and extent
3637 * map records are removed
3639 int try_release_extent_mapping(struct extent_map_tree *map,
3640 struct extent_io_tree *tree, struct page *page,
3643 struct extent_map *em;
3644 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
3645 u64 end = start + PAGE_CACHE_SIZE - 1;
3647 if ((mask & __GFP_WAIT) &&
3648 page->mapping->host->i_size > 16 * 1024 * 1024) {
3650 while (start <= end) {
3651 len = end - start + 1;
3652 write_lock(&map->lock);
3653 em = lookup_extent_mapping(map, start, len);
3655 write_unlock(&map->lock);
3658 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3659 em->start != start) {
3660 write_unlock(&map->lock);
3661 free_extent_map(em);
3664 if (!test_range_bit(tree, em->start,
3665 extent_map_end(em) - 1,
3666 EXTENT_LOCKED | EXTENT_WRITEBACK,
3668 remove_extent_mapping(map, em);
3669 /* once for the rb tree */
3670 free_extent_map(em);
3672 start = extent_map_end(em);
3673 write_unlock(&map->lock);
3676 free_extent_map(em);
3679 return try_release_extent_state(map, tree, page, mask);
3683 * helper function for fiemap, which doesn't want to see any holes.
3684 * This maps until we find something past 'last'
3686 static struct extent_map *get_extent_skip_holes(struct inode *inode,
3689 get_extent_t *get_extent)
3691 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
3692 struct extent_map *em;
3699 len = last - offset;
3702 len = (len + sectorsize - 1) & ~(sectorsize - 1);
3703 em = get_extent(inode, NULL, 0, offset, len, 0);
3704 if (IS_ERR_OR_NULL(em))
3707 /* if this isn't a hole return it */
3708 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
3709 em->block_start != EXTENT_MAP_HOLE) {
3713 /* this is a hole, advance to the next extent */
3714 offset = extent_map_end(em);
3715 free_extent_map(em);
3722 int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3723 __u64 start, __u64 len, get_extent_t *get_extent)
3727 u64 max = start + len;
3731 u64 last_for_get_extent = 0;
3733 u64 isize = i_size_read(inode);
3734 struct btrfs_key found_key;
3735 struct extent_map *em = NULL;
3736 struct extent_state *cached_state = NULL;
3737 struct btrfs_path *path;
3738 struct btrfs_file_extent_item *item;
3743 unsigned long emflags;
3748 path = btrfs_alloc_path();
3751 path->leave_spinning = 1;
3753 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
3754 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
3757 * lookup the last file extent. We're not using i_size here
3758 * because there might be preallocation past i_size
3760 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
3761 path, btrfs_ino(inode), -1, 0);
3763 btrfs_free_path(path);
3768 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3769 struct btrfs_file_extent_item);
3770 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
3771 found_type = btrfs_key_type(&found_key);
3773 /* No extents, but there might be delalloc bits */
3774 if (found_key.objectid != btrfs_ino(inode) ||
3775 found_type != BTRFS_EXTENT_DATA_KEY) {
3776 /* have to trust i_size as the end */
3778 last_for_get_extent = isize;
3781 * remember the start of the last extent. There are a
3782 * bunch of different factors that go into the length of the
3783 * extent, so its much less complex to remember where it started
3785 last = found_key.offset;
3786 last_for_get_extent = last + 1;
3788 btrfs_free_path(path);
3791 * we might have some extents allocated but more delalloc past those
3792 * extents. so, we trust isize unless the start of the last extent is
3797 last_for_get_extent = isize;
3800 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
3803 em = get_extent_skip_holes(inode, start, last_for_get_extent,
3813 u64 offset_in_extent;
3815 /* break if the extent we found is outside the range */
3816 if (em->start >= max || extent_map_end(em) < off)
3820 * get_extent may return an extent that starts before our
3821 * requested range. We have to make sure the ranges
3822 * we return to fiemap always move forward and don't
3823 * overlap, so adjust the offsets here
3825 em_start = max(em->start, off);
3828 * record the offset from the start of the extent
3829 * for adjusting the disk offset below
3831 offset_in_extent = em_start - em->start;
3832 em_end = extent_map_end(em);
3833 em_len = em_end - em_start;
3834 emflags = em->flags;
3839 * bump off for our next call to get_extent
3841 off = extent_map_end(em);
3845 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
3847 flags |= FIEMAP_EXTENT_LAST;
3848 } else if (em->block_start == EXTENT_MAP_INLINE) {
3849 flags |= (FIEMAP_EXTENT_DATA_INLINE |
3850 FIEMAP_EXTENT_NOT_ALIGNED);
3851 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
3852 flags |= (FIEMAP_EXTENT_DELALLOC |
3853 FIEMAP_EXTENT_UNKNOWN);
3855 disko = em->block_start + offset_in_extent;
3857 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
3858 flags |= FIEMAP_EXTENT_ENCODED;
3860 free_extent_map(em);
3862 if ((em_start >= last) || em_len == (u64)-1 ||
3863 (last == (u64)-1 && isize <= em_end)) {
3864 flags |= FIEMAP_EXTENT_LAST;
3868 /* now scan forward to see if this is really the last extent. */
3869 em = get_extent_skip_holes(inode, off, last_for_get_extent,
3876 flags |= FIEMAP_EXTENT_LAST;
3879 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
3885 free_extent_map(em);
3887 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
3888 &cached_state, GFP_NOFS);
3892 inline struct page *extent_buffer_page(struct extent_buffer *eb,
3895 return eb->pages[i];
3898 inline unsigned long num_extent_pages(u64 start, u64 len)
3900 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3901 (start >> PAGE_CACHE_SHIFT);
3904 static void __free_extent_buffer(struct extent_buffer *eb)
3907 unsigned long flags;
3908 spin_lock_irqsave(&leak_lock, flags);
3909 list_del(&eb->leak_list);
3910 spin_unlock_irqrestore(&leak_lock, flags);
3912 if (eb->pages && eb->pages != eb->inline_pages)
3914 kmem_cache_free(extent_buffer_cache, eb);
3917 static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3922 struct extent_buffer *eb = NULL;
3924 unsigned long flags;
3927 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
3933 rwlock_init(&eb->lock);
3934 atomic_set(&eb->write_locks, 0);
3935 atomic_set(&eb->read_locks, 0);
3936 atomic_set(&eb->blocking_readers, 0);
3937 atomic_set(&eb->blocking_writers, 0);
3938 atomic_set(&eb->spinning_readers, 0);
3939 atomic_set(&eb->spinning_writers, 0);
3940 eb->lock_nested = 0;
3941 init_waitqueue_head(&eb->write_lock_wq);
3942 init_waitqueue_head(&eb->read_lock_wq);
3945 spin_lock_irqsave(&leak_lock, flags);
3946 list_add(&eb->leak_list, &buffers);
3947 spin_unlock_irqrestore(&leak_lock, flags);
3949 spin_lock_init(&eb->refs_lock);
3950 atomic_set(&eb->refs, 1);
3951 atomic_set(&eb->io_pages, 0);
3953 if (len > MAX_INLINE_EXTENT_BUFFER_SIZE) {
3954 struct page **pages;
3955 int num_pages = (len + PAGE_CACHE_SIZE - 1) >>
3957 pages = kzalloc(num_pages, mask);
3959 __free_extent_buffer(eb);
3964 eb->pages = eb->inline_pages;
3970 static int extent_buffer_under_io(struct extent_buffer *eb)
3972 return (atomic_read(&eb->io_pages) ||
3973 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
3974 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
3978 * Helper for releasing extent buffer page.
3980 static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
3981 unsigned long start_idx)
3983 unsigned long index;
3986 BUG_ON(extent_buffer_under_io(eb));
3988 index = num_extent_pages(eb->start, eb->len);
3989 if (start_idx >= index)
3994 page = extent_buffer_page(eb, index);
3996 spin_lock(&page->mapping->private_lock);
3998 * We do this since we'll remove the pages after we've
3999 * removed the eb from the radix tree, so we could race
4000 * and have this page now attached to the new eb. So
4001 * only clear page_private if it's still connected to
4004 if (PagePrivate(page) &&
4005 page->private == (unsigned long)eb) {
4006 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
4007 BUG_ON(PageDirty(page));
4008 BUG_ON(PageWriteback(page));
4010 * We need to make sure we haven't be attached
4013 ClearPagePrivate(page);
4014 set_page_private(page, 0);
4015 /* One for the page private */
4016 page_cache_release(page);
4018 spin_unlock(&page->mapping->private_lock);
4020 /* One for when we alloced the page */
4021 page_cache_release(page);
4023 } while (index != start_idx);
4027 * Helper for releasing the extent buffer.
4029 static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4031 btrfs_release_extent_buffer_page(eb, 0);
4032 __free_extent_buffer(eb);
4035 static void check_buffer_tree_ref(struct extent_buffer *eb)
4037 /* the ref bit is tricky. We have to make sure it is set
4038 * if we have the buffer dirty. Otherwise the
4039 * code to free a buffer can end up dropping a dirty
4042 * Once the ref bit is set, it won't go away while the
4043 * buffer is dirty or in writeback, and it also won't
4044 * go away while we have the reference count on the
4047 * We can't just set the ref bit without bumping the
4048 * ref on the eb because free_extent_buffer might
4049 * see the ref bit and try to clear it. If this happens
4050 * free_extent_buffer might end up dropping our original
4051 * ref by mistake and freeing the page before we are able
4052 * to add one more ref.
4054 * So bump the ref count first, then set the bit. If someone
4055 * beat us to it, drop the ref we added.
4057 if (!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
4058 atomic_inc(&eb->refs);
4059 if (test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4060 atomic_dec(&eb->refs);
4064 static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4066 unsigned long num_pages, i;
4068 check_buffer_tree_ref(eb);
4070 num_pages = num_extent_pages(eb->start, eb->len);
4071 for (i = 0; i < num_pages; i++) {
4072 struct page *p = extent_buffer_page(eb, i);
4073 mark_page_accessed(p);
4077 struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
4078 u64 start, unsigned long len)
4080 unsigned long num_pages = num_extent_pages(start, len);
4082 unsigned long index = start >> PAGE_CACHE_SHIFT;
4083 struct extent_buffer *eb;
4084 struct extent_buffer *exists = NULL;
4086 struct address_space *mapping = tree->mapping;
4091 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4092 if (eb && atomic_inc_not_zero(&eb->refs)) {
4094 mark_extent_buffer_accessed(eb);
4099 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
4103 for (i = 0; i < num_pages; i++, index++) {
4104 p = find_or_create_page(mapping, index, GFP_NOFS);
4110 spin_lock(&mapping->private_lock);
4111 if (PagePrivate(p)) {
4113 * We could have already allocated an eb for this page
4114 * and attached one so lets see if we can get a ref on
4115 * the existing eb, and if we can we know it's good and
4116 * we can just return that one, else we know we can just
4117 * overwrite page->private.
4119 exists = (struct extent_buffer *)p->private;
4120 if (atomic_inc_not_zero(&exists->refs)) {
4121 spin_unlock(&mapping->private_lock);
4123 mark_extent_buffer_accessed(exists);
4128 * Do this so attach doesn't complain and we need to
4129 * drop the ref the old guy had.
4131 ClearPagePrivate(p);
4132 WARN_ON(PageDirty(p));
4133 page_cache_release(p);
4135 attach_extent_buffer_page(eb, p);
4136 spin_unlock(&mapping->private_lock);
4137 WARN_ON(PageDirty(p));
4138 mark_page_accessed(p);
4140 if (!PageUptodate(p))
4144 * see below about how we avoid a nasty race with release page
4145 * and why we unlock later
4149 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
4151 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4155 spin_lock(&tree->buffer_lock);
4156 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4157 if (ret == -EEXIST) {
4158 exists = radix_tree_lookup(&tree->buffer,
4159 start >> PAGE_CACHE_SHIFT);
4160 if (!atomic_inc_not_zero(&exists->refs)) {
4161 spin_unlock(&tree->buffer_lock);
4162 radix_tree_preload_end();
4166 spin_unlock(&tree->buffer_lock);
4167 radix_tree_preload_end();
4168 mark_extent_buffer_accessed(exists);
4171 /* add one reference for the tree */
4172 spin_lock(&eb->refs_lock);
4173 check_buffer_tree_ref(eb);
4174 spin_unlock(&eb->refs_lock);
4175 spin_unlock(&tree->buffer_lock);
4176 radix_tree_preload_end();
4179 * there is a race where release page may have
4180 * tried to find this extent buffer in the radix
4181 * but failed. It will tell the VM it is safe to
4182 * reclaim the, and it will clear the page private bit.
4183 * We must make sure to set the page private bit properly
4184 * after the extent buffer is in the radix tree so
4185 * it doesn't get lost
4187 SetPageChecked(eb->pages[0]);
4188 for (i = 1; i < num_pages; i++) {
4189 p = extent_buffer_page(eb, i);
4190 ClearPageChecked(p);
4193 unlock_page(eb->pages[0]);
4197 for (i = 0; i < num_pages; i++) {
4199 unlock_page(eb->pages[i]);
4202 if (!atomic_dec_and_test(&eb->refs))
4204 btrfs_release_extent_buffer(eb);
4208 struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
4209 u64 start, unsigned long len)
4211 struct extent_buffer *eb;
4214 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4215 if (eb && atomic_inc_not_zero(&eb->refs)) {
4217 mark_extent_buffer_accessed(eb);
4225 static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4227 struct extent_buffer *eb =
4228 container_of(head, struct extent_buffer, rcu_head);
4230 __free_extent_buffer(eb);
4233 /* Expects to have eb->eb_lock already held */
4234 static void release_extent_buffer(struct extent_buffer *eb, gfp_t mask)
4236 WARN_ON(atomic_read(&eb->refs) == 0);
4237 if (atomic_dec_and_test(&eb->refs)) {
4238 struct extent_io_tree *tree = eb->tree;
4240 spin_unlock(&eb->refs_lock);
4242 spin_lock(&tree->buffer_lock);
4243 radix_tree_delete(&tree->buffer,
4244 eb->start >> PAGE_CACHE_SHIFT);
4245 spin_unlock(&tree->buffer_lock);
4247 /* Should be safe to release our pages at this point */
4248 btrfs_release_extent_buffer_page(eb, 0);
4250 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
4253 spin_unlock(&eb->refs_lock);
4256 void free_extent_buffer(struct extent_buffer *eb)
4261 spin_lock(&eb->refs_lock);
4262 if (atomic_read(&eb->refs) == 2 &&
4263 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
4264 !extent_buffer_under_io(eb) &&
4265 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4266 atomic_dec(&eb->refs);
4269 * I know this is terrible, but it's temporary until we stop tracking
4270 * the uptodate bits and such for the extent buffers.
4272 release_extent_buffer(eb, GFP_ATOMIC);
4275 void free_extent_buffer_stale(struct extent_buffer *eb)
4280 spin_lock(&eb->refs_lock);
4281 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4283 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
4284 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4285 atomic_dec(&eb->refs);
4286 release_extent_buffer(eb, GFP_NOFS);
4289 void clear_extent_buffer_dirty(struct extent_buffer *eb)
4292 unsigned long num_pages;
4295 num_pages = num_extent_pages(eb->start, eb->len);
4297 for (i = 0; i < num_pages; i++) {
4298 page = extent_buffer_page(eb, i);
4299 if (!PageDirty(page))
4303 WARN_ON(!PagePrivate(page));
4305 clear_page_dirty_for_io(page);
4306 spin_lock_irq(&page->mapping->tree_lock);
4307 if (!PageDirty(page)) {
4308 radix_tree_tag_clear(&page->mapping->page_tree,
4310 PAGECACHE_TAG_DIRTY);
4312 spin_unlock_irq(&page->mapping->tree_lock);
4313 ClearPageError(page);
4316 WARN_ON(atomic_read(&eb->refs) == 0);
4319 int set_extent_buffer_dirty(struct extent_buffer *eb)
4322 unsigned long num_pages;
4325 check_buffer_tree_ref(eb);
4327 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
4329 num_pages = num_extent_pages(eb->start, eb->len);
4330 WARN_ON(atomic_read(&eb->refs) == 0);
4331 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4333 for (i = 0; i < num_pages; i++)
4334 set_page_dirty(extent_buffer_page(eb, i));
4338 static int range_straddles_pages(u64 start, u64 len)
4340 if (len < PAGE_CACHE_SIZE)
4342 if (start & (PAGE_CACHE_SIZE - 1))
4344 if ((start + len) & (PAGE_CACHE_SIZE - 1))
4349 int clear_extent_buffer_uptodate(struct extent_buffer *eb)
4353 unsigned long num_pages;
4355 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
4356 num_pages = num_extent_pages(eb->start, eb->len);
4357 for (i = 0; i < num_pages; i++) {
4358 page = extent_buffer_page(eb, i);
4360 ClearPageUptodate(page);
4365 int set_extent_buffer_uptodate(struct extent_buffer *eb)
4369 unsigned long num_pages;
4371 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
4372 num_pages = num_extent_pages(eb->start, eb->len);
4373 for (i = 0; i < num_pages; i++) {
4374 page = extent_buffer_page(eb, i);
4375 SetPageUptodate(page);
4380 int extent_range_uptodate(struct extent_io_tree *tree,
4385 int pg_uptodate = 1;
4387 unsigned long index;
4389 if (range_straddles_pages(start, end - start + 1)) {
4390 ret = test_range_bit(tree, start, end,
4391 EXTENT_UPTODATE, 1, NULL);
4395 while (start <= end) {
4396 index = start >> PAGE_CACHE_SHIFT;
4397 page = find_get_page(tree->mapping, index);
4400 uptodate = PageUptodate(page);
4401 page_cache_release(page);
4406 start += PAGE_CACHE_SIZE;
4411 int extent_buffer_uptodate(struct extent_buffer *eb)
4413 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
4416 int read_extent_buffer_pages(struct extent_io_tree *tree,
4417 struct extent_buffer *eb, u64 start, int wait,
4418 get_extent_t *get_extent, int mirror_num)
4421 unsigned long start_i;
4425 int locked_pages = 0;
4426 int all_uptodate = 1;
4427 unsigned long num_pages;
4428 unsigned long num_reads = 0;
4429 struct bio *bio = NULL;
4430 unsigned long bio_flags = 0;
4432 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
4436 WARN_ON(start < eb->start);
4437 start_i = (start >> PAGE_CACHE_SHIFT) -
4438 (eb->start >> PAGE_CACHE_SHIFT);
4443 num_pages = num_extent_pages(eb->start, eb->len);
4444 for (i = start_i; i < num_pages; i++) {
4445 page = extent_buffer_page(eb, i);
4446 if (wait == WAIT_NONE) {
4447 if (!trylock_page(page))
4453 if (!PageUptodate(page)) {
4460 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
4464 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
4465 eb->failed_mirror = 0;
4466 atomic_set(&eb->io_pages, num_reads);
4467 for (i = start_i; i < num_pages; i++) {
4468 page = extent_buffer_page(eb, i);
4469 if (!PageUptodate(page)) {
4470 ClearPageError(page);
4471 err = __extent_read_full_page(tree, page,
4473 mirror_num, &bio_flags);
4482 err = submit_one_bio(READ, bio, mirror_num, bio_flags);
4487 if (ret || wait != WAIT_COMPLETE)
4490 for (i = start_i; i < num_pages; i++) {
4491 page = extent_buffer_page(eb, i);
4492 wait_on_page_locked(page);
4493 if (!PageUptodate(page))
4501 while (locked_pages > 0) {
4502 page = extent_buffer_page(eb, i);
4510 void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4511 unsigned long start,
4518 char *dst = (char *)dstv;
4519 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4520 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4522 WARN_ON(start > eb->len);
4523 WARN_ON(start + len > eb->start + eb->len);
4525 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4528 page = extent_buffer_page(eb, i);
4530 cur = min(len, (PAGE_CACHE_SIZE - offset));
4531 kaddr = page_address(page);
4532 memcpy(dst, kaddr + offset, cur);
4541 int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
4542 unsigned long min_len, char **map,
4543 unsigned long *map_start,
4544 unsigned long *map_len)
4546 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4549 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4550 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4551 unsigned long end_i = (start_offset + start + min_len - 1) >>
4558 offset = start_offset;
4562 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4565 if (start + min_len > eb->len) {
4566 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
4567 "wanted %lu %lu\n", (unsigned long long)eb->start,
4568 eb->len, start, min_len);
4573 p = extent_buffer_page(eb, i);
4574 kaddr = page_address(p);
4575 *map = kaddr + offset;
4576 *map_len = PAGE_CACHE_SIZE - offset;
4580 int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4581 unsigned long start,
4588 char *ptr = (char *)ptrv;
4589 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4590 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4593 WARN_ON(start > eb->len);
4594 WARN_ON(start + len > eb->start + eb->len);
4596 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4599 page = extent_buffer_page(eb, i);
4601 cur = min(len, (PAGE_CACHE_SIZE - offset));
4603 kaddr = page_address(page);
4604 ret = memcmp(ptr, kaddr + offset, cur);
4616 void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4617 unsigned long start, unsigned long len)
4623 char *src = (char *)srcv;
4624 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4625 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4627 WARN_ON(start > eb->len);
4628 WARN_ON(start + len > eb->start + eb->len);
4630 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4633 page = extent_buffer_page(eb, i);
4634 WARN_ON(!PageUptodate(page));
4636 cur = min(len, PAGE_CACHE_SIZE - offset);
4637 kaddr = page_address(page);
4638 memcpy(kaddr + offset, src, cur);
4647 void memset_extent_buffer(struct extent_buffer *eb, char c,
4648 unsigned long start, unsigned long len)
4654 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4655 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4657 WARN_ON(start > eb->len);
4658 WARN_ON(start + len > eb->start + eb->len);
4660 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4663 page = extent_buffer_page(eb, i);
4664 WARN_ON(!PageUptodate(page));
4666 cur = min(len, PAGE_CACHE_SIZE - offset);
4667 kaddr = page_address(page);
4668 memset(kaddr + offset, c, cur);
4676 void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
4677 unsigned long dst_offset, unsigned long src_offset,
4680 u64 dst_len = dst->len;
4685 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4686 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4688 WARN_ON(src->len != dst_len);
4690 offset = (start_offset + dst_offset) &
4691 ((unsigned long)PAGE_CACHE_SIZE - 1);
4694 page = extent_buffer_page(dst, i);
4695 WARN_ON(!PageUptodate(page));
4697 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
4699 kaddr = page_address(page);
4700 read_extent_buffer(src, kaddr + offset, src_offset, cur);
4709 static void move_pages(struct page *dst_page, struct page *src_page,
4710 unsigned long dst_off, unsigned long src_off,
4713 char *dst_kaddr = page_address(dst_page);
4714 if (dst_page == src_page) {
4715 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
4717 char *src_kaddr = page_address(src_page);
4718 char *p = dst_kaddr + dst_off + len;
4719 char *s = src_kaddr + src_off + len;
4726 static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
4728 unsigned long distance = (src > dst) ? src - dst : dst - src;
4729 return distance < len;
4732 static void copy_pages(struct page *dst_page, struct page *src_page,
4733 unsigned long dst_off, unsigned long src_off,
4736 char *dst_kaddr = page_address(dst_page);
4738 int must_memmove = 0;
4740 if (dst_page != src_page) {
4741 src_kaddr = page_address(src_page);
4743 src_kaddr = dst_kaddr;
4744 if (areas_overlap(src_off, dst_off, len))
4749 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
4751 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
4754 void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4755 unsigned long src_offset, unsigned long len)
4758 size_t dst_off_in_page;
4759 size_t src_off_in_page;
4760 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4761 unsigned long dst_i;
4762 unsigned long src_i;
4764 if (src_offset + len > dst->len) {
4765 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4766 "len %lu dst len %lu\n", src_offset, len, dst->len);
4769 if (dst_offset + len > dst->len) {
4770 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4771 "len %lu dst len %lu\n", dst_offset, len, dst->len);
4776 dst_off_in_page = (start_offset + dst_offset) &
4777 ((unsigned long)PAGE_CACHE_SIZE - 1);
4778 src_off_in_page = (start_offset + src_offset) &
4779 ((unsigned long)PAGE_CACHE_SIZE - 1);
4781 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4782 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
4784 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
4786 cur = min_t(unsigned long, cur,
4787 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
4789 copy_pages(extent_buffer_page(dst, dst_i),
4790 extent_buffer_page(dst, src_i),
4791 dst_off_in_page, src_off_in_page, cur);
4799 void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4800 unsigned long src_offset, unsigned long len)
4803 size_t dst_off_in_page;
4804 size_t src_off_in_page;
4805 unsigned long dst_end = dst_offset + len - 1;
4806 unsigned long src_end = src_offset + len - 1;
4807 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4808 unsigned long dst_i;
4809 unsigned long src_i;
4811 if (src_offset + len > dst->len) {
4812 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4813 "len %lu len %lu\n", src_offset, len, dst->len);
4816 if (dst_offset + len > dst->len) {
4817 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4818 "len %lu len %lu\n", dst_offset, len, dst->len);
4821 if (dst_offset < src_offset) {
4822 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
4826 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
4827 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
4829 dst_off_in_page = (start_offset + dst_end) &
4830 ((unsigned long)PAGE_CACHE_SIZE - 1);
4831 src_off_in_page = (start_offset + src_end) &
4832 ((unsigned long)PAGE_CACHE_SIZE - 1);
4834 cur = min_t(unsigned long, len, src_off_in_page + 1);
4835 cur = min(cur, dst_off_in_page + 1);
4836 move_pages(extent_buffer_page(dst, dst_i),
4837 extent_buffer_page(dst, src_i),
4838 dst_off_in_page - cur + 1,
4839 src_off_in_page - cur + 1, cur);
4847 int try_release_extent_buffer(struct page *page, gfp_t mask)
4849 struct extent_buffer *eb;
4852 * We need to make sure noboody is attaching this page to an eb right
4855 spin_lock(&page->mapping->private_lock);
4856 if (!PagePrivate(page)) {
4857 spin_unlock(&page->mapping->private_lock);
4861 eb = (struct extent_buffer *)page->private;
4865 * This is a little awful but should be ok, we need to make sure that
4866 * the eb doesn't disappear out from under us while we're looking at
4869 spin_lock(&eb->refs_lock);
4870 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
4871 spin_unlock(&eb->refs_lock);
4872 spin_unlock(&page->mapping->private_lock);
4875 spin_unlock(&page->mapping->private_lock);
4877 if ((mask & GFP_NOFS) == GFP_NOFS)
4881 * If tree ref isn't set then we know the ref on this eb is a real ref,
4882 * so just return, this page will likely be freed soon anyway.
4884 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
4885 spin_unlock(&eb->refs_lock);
4888 release_extent_buffer(eb, mask);