blob: 74d47e197ca08455a91ffd9cc2fbb27183c60a09 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050010#include <linux/writeback.h>
11#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070012#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060013#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050014#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040016#include "ctree.h"
17#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020018#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010019#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040020#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040021#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080022#include "backref.h"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040026static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050027
Filipe Manana27a35072014-07-06 20:09:59 +010028static inline bool extent_state_in_tree(const struct extent_state *state)
29{
30 return !RB_EMPTY_NODE(&state->rb_node);
31}
32
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050034static LIST_HEAD(buffers);
35static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040036
Chris Masond3977122009-01-05 21:25:51 -050037static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000038
39static inline
40void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
41{
42 unsigned long flags;
43
44 spin_lock_irqsave(&leak_lock, flags);
45 list_add(new, head);
46 spin_unlock_irqrestore(&leak_lock, flags);
47}
48
49static inline
50void btrfs_leak_debug_del(struct list_head *entry)
51{
52 unsigned long flags;
53
54 spin_lock_irqsave(&leak_lock, flags);
55 list_del(entry);
56 spin_unlock_irqrestore(&leak_lock, flags);
57}
58
59static inline
60void btrfs_leak_debug_check(void)
61{
62 struct extent_state *state;
63 struct extent_buffer *eb;
64
65 while (!list_empty(&states)) {
66 state = list_entry(states.next, struct extent_state, leak_list);
Filipe Manana27a35072014-07-06 20:09:59 +010067 pr_err("BTRFS: state leak: start %llu end %llu state %lu in tree %d refs %d\n",
68 state->start, state->end, state->state,
69 extent_state_in_tree(state),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020070 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000071 list_del(&state->leak_list);
72 kmem_cache_free(extent_state_cache, state);
73 }
74
75 while (!list_empty(&buffers)) {
76 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Frank Holtonefe120a2013-12-20 11:37:06 -050077 printk(KERN_ERR "BTRFS: buffer leak start %llu len %lu "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020078 "refs %d\n",
79 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000080 list_del(&eb->leak_list);
81 kmem_cache_free(extent_buffer_cache, eb);
82 }
83}
David Sterba8d599ae2013-04-30 15:22:23 +000084
Josef Bacika5dee372013-12-13 10:02:44 -050085#define btrfs_debug_check_extent_io_range(tree, start, end) \
86 __btrfs_debug_check_extent_io_range(__func__, (tree), (start), (end))
David Sterba8d599ae2013-04-30 15:22:23 +000087static inline void __btrfs_debug_check_extent_io_range(const char *caller,
Josef Bacika5dee372013-12-13 10:02:44 -050088 struct extent_io_tree *tree, u64 start, u64 end)
David Sterba8d599ae2013-04-30 15:22:23 +000089{
Josef Bacika5dee372013-12-13 10:02:44 -050090 struct inode *inode;
91 u64 isize;
David Sterba8d599ae2013-04-30 15:22:23 +000092
Josef Bacika5dee372013-12-13 10:02:44 -050093 if (!tree->mapping)
94 return;
95
96 inode = tree->mapping->host;
97 isize = i_size_read(inode);
David Sterba8d599ae2013-04-30 15:22:23 +000098 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
99 printk_ratelimited(KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -0500100 "BTRFS: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200101 caller, btrfs_ino(inode), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000102 }
103}
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000104#else
105#define btrfs_leak_debug_add(new, head) do {} while (0)
106#define btrfs_leak_debug_del(entry) do {} while (0)
107#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000108#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400109#endif
Chris Masond1310b22008-01-24 16:13:08 -0500110
Chris Masond1310b22008-01-24 16:13:08 -0500111#define BUFFER_LRU_MAX 64
112
113struct tree_entry {
114 u64 start;
115 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500116 struct rb_node rb_node;
117};
118
119struct extent_page_data {
120 struct bio *bio;
121 struct extent_io_tree *tree;
122 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400123 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500124
125 /* tells writepage not to lock the state bits for this range
126 * it still does the unlocking
127 */
Chris Masonffbd5172009-04-20 15:50:09 -0400128 unsigned int extent_locked:1;
129
130 /* tells the submit_bio code to use a WRITE_SYNC */
131 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500132};
133
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400134static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400135static inline struct btrfs_fs_info *
136tree_fs_info(struct extent_io_tree *tree)
137{
Josef Bacika5dee372013-12-13 10:02:44 -0500138 if (!tree->mapping)
139 return NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400140 return btrfs_sb(tree->mapping->host->i_sb);
141}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400142
Chris Masond1310b22008-01-24 16:13:08 -0500143int __init extent_io_init(void)
144{
David Sterba837e1972012-09-07 03:00:48 -0600145 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200146 sizeof(struct extent_state), 0,
147 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500148 if (!extent_state_cache)
149 return -ENOMEM;
150
David Sterba837e1972012-09-07 03:00:48 -0600151 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200152 sizeof(struct extent_buffer), 0,
153 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500154 if (!extent_buffer_cache)
155 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400156
157 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
158 offsetof(struct btrfs_io_bio, bio));
159 if (!btrfs_bioset)
160 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700161
162 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
163 goto free_bioset;
164
Chris Masond1310b22008-01-24 16:13:08 -0500165 return 0;
166
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700167free_bioset:
168 bioset_free(btrfs_bioset);
169 btrfs_bioset = NULL;
170
Chris Mason9be33952013-05-17 18:30:14 -0400171free_buffer_cache:
172 kmem_cache_destroy(extent_buffer_cache);
173 extent_buffer_cache = NULL;
174
Chris Masond1310b22008-01-24 16:13:08 -0500175free_state_cache:
176 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400177 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500178 return -ENOMEM;
179}
180
181void extent_io_exit(void)
182{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000183 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000184
185 /*
186 * Make sure all delayed rcu free are flushed before we
187 * destroy caches.
188 */
189 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500190 if (extent_state_cache)
191 kmem_cache_destroy(extent_state_cache);
192 if (extent_buffer_cache)
193 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400194 if (btrfs_bioset)
195 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500196}
197
198void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200199 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500200{
Eric Paris6bef4d32010-02-23 19:43:04 +0000201 tree->state = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500202 tree->ops = NULL;
203 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500204 spin_lock_init(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500205 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500206}
Chris Masond1310b22008-01-24 16:13:08 -0500207
Christoph Hellwigb2950862008-12-02 09:54:17 -0500208static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500209{
210 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500211
212 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400213 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500214 return state;
215 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500216 state->private = 0;
Filipe Manana27a35072014-07-06 20:09:59 +0100217 RB_CLEAR_NODE(&state->rb_node);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000218 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500219 atomic_set(&state->refs, 1);
220 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100221 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500222 return state;
223}
Chris Masond1310b22008-01-24 16:13:08 -0500224
Chris Mason4845e442010-05-25 20:56:50 -0400225void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500226{
Chris Masond1310b22008-01-24 16:13:08 -0500227 if (!state)
228 return;
229 if (atomic_dec_and_test(&state->refs)) {
Filipe Manana27a35072014-07-06 20:09:59 +0100230 WARN_ON(extent_state_in_tree(state));
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000231 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100232 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500233 kmem_cache_free(extent_state_cache, state);
234 }
235}
Chris Masond1310b22008-01-24 16:13:08 -0500236
Filipe Mananaf2071b22014-02-12 15:05:53 +0000237static struct rb_node *tree_insert(struct rb_root *root,
238 struct rb_node *search_start,
239 u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000240 struct rb_node *node,
241 struct rb_node ***p_in,
242 struct rb_node **parent_in)
Chris Masond1310b22008-01-24 16:13:08 -0500243{
Filipe Mananaf2071b22014-02-12 15:05:53 +0000244 struct rb_node **p;
Chris Masond3977122009-01-05 21:25:51 -0500245 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500246 struct tree_entry *entry;
247
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000248 if (p_in && parent_in) {
249 p = *p_in;
250 parent = *parent_in;
251 goto do_insert;
252 }
253
Filipe Mananaf2071b22014-02-12 15:05:53 +0000254 p = search_start ? &search_start : &root->rb_node;
Chris Masond3977122009-01-05 21:25:51 -0500255 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500256 parent = *p;
257 entry = rb_entry(parent, struct tree_entry, rb_node);
258
259 if (offset < entry->start)
260 p = &(*p)->rb_left;
261 else if (offset > entry->end)
262 p = &(*p)->rb_right;
263 else
264 return parent;
265 }
266
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000267do_insert:
Chris Masond1310b22008-01-24 16:13:08 -0500268 rb_link_node(node, parent, p);
269 rb_insert_color(node, root);
270 return NULL;
271}
272
Chris Mason80ea96b2008-02-01 14:51:59 -0500273static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000274 struct rb_node **prev_ret,
275 struct rb_node **next_ret,
276 struct rb_node ***p_ret,
277 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500278{
Chris Mason80ea96b2008-02-01 14:51:59 -0500279 struct rb_root *root = &tree->state;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000280 struct rb_node **n = &root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500281 struct rb_node *prev = NULL;
282 struct rb_node *orig_prev = NULL;
283 struct tree_entry *entry;
284 struct tree_entry *prev_entry = NULL;
285
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000286 while (*n) {
287 prev = *n;
288 entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500289 prev_entry = entry;
290
291 if (offset < entry->start)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000292 n = &(*n)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500293 else if (offset > entry->end)
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000294 n = &(*n)->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500295 else
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000296 return *n;
Chris Masond1310b22008-01-24 16:13:08 -0500297 }
298
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000299 if (p_ret)
300 *p_ret = n;
301 if (parent_ret)
302 *parent_ret = prev;
303
Chris Masond1310b22008-01-24 16:13:08 -0500304 if (prev_ret) {
305 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500306 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500307 prev = rb_next(prev);
308 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
309 }
310 *prev_ret = prev;
311 prev = orig_prev;
312 }
313
314 if (next_ret) {
315 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500316 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500317 prev = rb_prev(prev);
318 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
319 }
320 *next_ret = prev;
321 }
322 return NULL;
323}
324
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000325static inline struct rb_node *
326tree_search_for_insert(struct extent_io_tree *tree,
327 u64 offset,
328 struct rb_node ***p_ret,
329 struct rb_node **parent_ret)
Chris Masond1310b22008-01-24 16:13:08 -0500330{
Chris Mason70dec802008-01-29 09:59:12 -0500331 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500332 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500333
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000334 ret = __etree_search(tree, offset, &prev, NULL, p_ret, parent_ret);
Chris Masond3977122009-01-05 21:25:51 -0500335 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500336 return prev;
337 return ret;
338}
339
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000340static inline struct rb_node *tree_search(struct extent_io_tree *tree,
341 u64 offset)
342{
343 return tree_search_for_insert(tree, offset, NULL, NULL);
344}
345
Josef Bacik9ed74f22009-09-11 16:12:44 -0400346static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
347 struct extent_state *other)
348{
349 if (tree->ops && tree->ops->merge_extent_hook)
350 tree->ops->merge_extent_hook(tree->mapping->host, new,
351 other);
352}
353
Chris Masond1310b22008-01-24 16:13:08 -0500354/*
355 * utility function to look for merge candidates inside a given range.
356 * Any extents with matching state are merged together into a single
357 * extent in the tree. Extents with EXTENT_IO in their state field
358 * are not merged because the end_io handlers need to be able to do
359 * operations on them without sleeping (or doing allocations/splits).
360 *
361 * This should be called with the tree lock held.
362 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000363static void merge_state(struct extent_io_tree *tree,
364 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500365{
366 struct extent_state *other;
367 struct rb_node *other_node;
368
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400369 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000370 return;
Chris Masond1310b22008-01-24 16:13:08 -0500371
372 other_node = rb_prev(&state->rb_node);
373 if (other_node) {
374 other = rb_entry(other_node, struct extent_state, rb_node);
375 if (other->end == state->start - 1 &&
376 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400377 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500378 state->start = other->start;
Chris Masond1310b22008-01-24 16:13:08 -0500379 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100380 RB_CLEAR_NODE(&other->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500381 free_extent_state(other);
382 }
383 }
384 other_node = rb_next(&state->rb_node);
385 if (other_node) {
386 other = rb_entry(other_node, struct extent_state, rb_node);
387 if (other->start == state->end + 1 &&
388 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400389 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400390 state->end = other->end;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400391 rb_erase(&other->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100392 RB_CLEAR_NODE(&other->rb_node);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400393 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500394 }
395 }
Chris Masond1310b22008-01-24 16:13:08 -0500396}
397
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000398static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000399 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500400{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000401 if (tree->ops && tree->ops->set_bit_hook)
402 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500403}
404
405static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000406 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500407{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400408 if (tree->ops && tree->ops->clear_bit_hook)
409 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500410}
411
Xiao Guangrong3150b692011-07-14 03:19:08 +0000412static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000413 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000414
Chris Masond1310b22008-01-24 16:13:08 -0500415/*
416 * insert an extent_state struct into the tree. 'bits' are set on the
417 * struct before it is inserted.
418 *
419 * This may return -EEXIST if the extent is already there, in which case the
420 * state struct is freed.
421 *
422 * The tree lock is not taken internally. This is a utility function and
423 * probably isn't what you want to call (see set/clear_extent_bit).
424 */
425static int insert_state(struct extent_io_tree *tree,
426 struct extent_state *state, u64 start, u64 end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000427 struct rb_node ***p,
428 struct rb_node **parent,
David Sterba41074882013-04-29 13:38:46 +0000429 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500430{
431 struct rb_node *node;
432
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000433 if (end < start)
Frank Holtonefe120a2013-12-20 11:37:06 -0500434 WARN(1, KERN_ERR "BTRFS: end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200435 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500436 state->start = start;
437 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400438
Xiao Guangrong3150b692011-07-14 03:19:08 +0000439 set_state_bits(tree, state, bits);
440
Filipe Mananaf2071b22014-02-12 15:05:53 +0000441 node = tree_insert(&tree->state, NULL, end, &state->rb_node, p, parent);
Chris Masond1310b22008-01-24 16:13:08 -0500442 if (node) {
443 struct extent_state *found;
444 found = rb_entry(node, struct extent_state, rb_node);
Frank Holtonefe120a2013-12-20 11:37:06 -0500445 printk(KERN_ERR "BTRFS: found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200446 "%llu %llu\n",
447 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500448 return -EEXIST;
449 }
450 merge_state(tree, state);
451 return 0;
452}
453
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000454static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400455 u64 split)
456{
457 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000458 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400459}
460
Chris Masond1310b22008-01-24 16:13:08 -0500461/*
462 * split a given extent state struct in two, inserting the preallocated
463 * struct 'prealloc' as the newly created second half. 'split' indicates an
464 * offset inside 'orig' where it should be split.
465 *
466 * Before calling,
467 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
468 * are two extent state structs in the tree:
469 * prealloc: [orig->start, split - 1]
470 * orig: [ split, orig->end ]
471 *
472 * The tree locks are not taken by this function. They need to be held
473 * by the caller.
474 */
475static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
476 struct extent_state *prealloc, u64 split)
477{
478 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400479
480 split_cb(tree, orig, split);
481
Chris Masond1310b22008-01-24 16:13:08 -0500482 prealloc->start = orig->start;
483 prealloc->end = split - 1;
484 prealloc->state = orig->state;
485 orig->start = split;
486
Filipe Mananaf2071b22014-02-12 15:05:53 +0000487 node = tree_insert(&tree->state, &orig->rb_node, prealloc->end,
488 &prealloc->rb_node, NULL, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500489 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500490 free_extent_state(prealloc);
491 return -EEXIST;
492 }
493 return 0;
494}
495
Li Zefancdc6a392012-03-12 16:39:48 +0800496static struct extent_state *next_state(struct extent_state *state)
497{
498 struct rb_node *next = rb_next(&state->rb_node);
499 if (next)
500 return rb_entry(next, struct extent_state, rb_node);
501 else
502 return NULL;
503}
504
Chris Masond1310b22008-01-24 16:13:08 -0500505/*
506 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800507 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500508 *
509 * If no bits are set on the state struct after clearing things, the
510 * struct is freed and removed from the tree
511 */
Li Zefancdc6a392012-03-12 16:39:48 +0800512static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
513 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000514 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500515{
Li Zefancdc6a392012-03-12 16:39:48 +0800516 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000517 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500518
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400519 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500520 u64 range = state->end - state->start + 1;
521 WARN_ON(range > tree->dirty_bytes);
522 tree->dirty_bytes -= range;
523 }
Chris Mason291d6732008-01-29 15:55:23 -0500524 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400525 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500526 if (wake)
527 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400528 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800529 next = next_state(state);
Filipe Manana27a35072014-07-06 20:09:59 +0100530 if (extent_state_in_tree(state)) {
Chris Masond1310b22008-01-24 16:13:08 -0500531 rb_erase(&state->rb_node, &tree->state);
Filipe Manana27a35072014-07-06 20:09:59 +0100532 RB_CLEAR_NODE(&state->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500533 free_extent_state(state);
534 } else {
535 WARN_ON(1);
536 }
537 } else {
538 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800539 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500540 }
Li Zefancdc6a392012-03-12 16:39:48 +0800541 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500542}
543
Xiao Guangrong82337672011-04-20 06:44:57 +0000544static struct extent_state *
545alloc_extent_state_atomic(struct extent_state *prealloc)
546{
547 if (!prealloc)
548 prealloc = alloc_extent_state(GFP_ATOMIC);
549
550 return prealloc;
551}
552
Eric Sandeen48a3b632013-04-25 20:41:01 +0000553static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400554{
555 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
556 "Extent tree was modified by another "
557 "thread while locked.");
558}
559
Chris Masond1310b22008-01-24 16:13:08 -0500560/*
561 * clear some bits on a range in the tree. This may require splitting
562 * or inserting elements in the tree, so the gfp mask is used to
563 * indicate which allocations or sleeping are allowed.
564 *
565 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
566 * the given range from the tree regardless of state (ie for truncate).
567 *
568 * the range [start, end] is inclusive.
569 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100570 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500571 */
572int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000573 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400574 struct extent_state **cached_state,
575 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500576{
577 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400578 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500579 struct extent_state *prealloc = NULL;
580 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400581 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500582 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000583 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500584
Josef Bacika5dee372013-12-13 10:02:44 -0500585 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000586
Josef Bacik7ee9e442013-06-21 16:37:03 -0400587 if (bits & EXTENT_DELALLOC)
588 bits |= EXTENT_NORESERVE;
589
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400590 if (delete)
591 bits |= ~EXTENT_CTLBITS;
592 bits |= EXTENT_FIRST_DELALLOC;
593
Josef Bacik2ac55d42010-02-03 19:33:23 +0000594 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
595 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500596again:
597 if (!prealloc && (mask & __GFP_WAIT)) {
598 prealloc = alloc_extent_state(mask);
599 if (!prealloc)
600 return -ENOMEM;
601 }
602
Chris Masoncad321a2008-12-17 14:51:42 -0500603 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400604 if (cached_state) {
605 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000606
607 if (clear) {
608 *cached_state = NULL;
609 cached_state = NULL;
610 }
611
Filipe Manana27a35072014-07-06 20:09:59 +0100612 if (cached && extent_state_in_tree(cached) &&
613 cached->start <= start && cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000614 if (clear)
615 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400616 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400617 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400618 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000619 if (clear)
620 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400621 }
Chris Masond1310b22008-01-24 16:13:08 -0500622 /*
623 * this search will find the extents that end after
624 * our range starts
625 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500626 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500627 if (!node)
628 goto out;
629 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400630hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500631 if (state->start > end)
632 goto out;
633 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400634 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500635
Liu Bo04493142012-02-16 18:34:37 +0800636 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800637 if (!(state->state & bits)) {
638 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800639 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800640 }
Liu Bo04493142012-02-16 18:34:37 +0800641
Chris Masond1310b22008-01-24 16:13:08 -0500642 /*
643 * | ---- desired range ---- |
644 * | state | or
645 * | ------------- state -------------- |
646 *
647 * We need to split the extent we found, and may flip
648 * bits on second half.
649 *
650 * If the extent we found extends past our range, we
651 * just split and search again. It'll get split again
652 * the next time though.
653 *
654 * If the extent we found is inside our range, we clear
655 * the desired bit on it.
656 */
657
658 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000659 prealloc = alloc_extent_state_atomic(prealloc);
660 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500661 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400662 if (err)
663 extent_io_tree_panic(tree, err);
664
Chris Masond1310b22008-01-24 16:13:08 -0500665 prealloc = NULL;
666 if (err)
667 goto out;
668 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800669 state = clear_state_bit(tree, state, &bits, wake);
670 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500671 }
672 goto search_again;
673 }
674 /*
675 * | ---- desired range ---- |
676 * | state |
677 * We need to split the extent, and clear the bit
678 * on the first half
679 */
680 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000681 prealloc = alloc_extent_state_atomic(prealloc);
682 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500683 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400684 if (err)
685 extent_io_tree_panic(tree, err);
686
Chris Masond1310b22008-01-24 16:13:08 -0500687 if (wake)
688 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400689
Jeff Mahoney6763af82012-03-01 14:56:29 +0100690 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400691
Chris Masond1310b22008-01-24 16:13:08 -0500692 prealloc = NULL;
693 goto out;
694 }
Chris Mason42daec22009-09-23 19:51:09 -0400695
Li Zefancdc6a392012-03-12 16:39:48 +0800696 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800697next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400698 if (last_end == (u64)-1)
699 goto out;
700 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800701 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800702 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500703 goto search_again;
704
705out:
Chris Masoncad321a2008-12-17 14:51:42 -0500706 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500707 if (prealloc)
708 free_extent_state(prealloc);
709
Jeff Mahoney6763af82012-03-01 14:56:29 +0100710 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500711
712search_again:
713 if (start > end)
714 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500715 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500716 if (mask & __GFP_WAIT)
717 cond_resched();
718 goto again;
719}
Chris Masond1310b22008-01-24 16:13:08 -0500720
Jeff Mahoney143bede2012-03-01 14:56:26 +0100721static void wait_on_state(struct extent_io_tree *tree,
722 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500723 __releases(tree->lock)
724 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500725{
726 DEFINE_WAIT(wait);
727 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500728 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500729 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500730 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500731 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500732}
733
734/*
735 * waits for one or more bits to clear on a range in the state tree.
736 * The range [start, end] is inclusive.
737 * The tree lock is taken by this function
738 */
David Sterba41074882013-04-29 13:38:46 +0000739static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
740 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500741{
742 struct extent_state *state;
743 struct rb_node *node;
744
Josef Bacika5dee372013-12-13 10:02:44 -0500745 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000746
Chris Masoncad321a2008-12-17 14:51:42 -0500747 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500748again:
749 while (1) {
750 /*
751 * this search will find all the extents that end after
752 * our range starts
753 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500754 node = tree_search(tree, start);
Filipe Mananac50d3e72014-03-31 14:53:25 +0100755process_node:
Chris Masond1310b22008-01-24 16:13:08 -0500756 if (!node)
757 break;
758
759 state = rb_entry(node, struct extent_state, rb_node);
760
761 if (state->start > end)
762 goto out;
763
764 if (state->state & bits) {
765 start = state->start;
766 atomic_inc(&state->refs);
767 wait_on_state(tree, state);
768 free_extent_state(state);
769 goto again;
770 }
771 start = state->end + 1;
772
773 if (start > end)
774 break;
775
Filipe Mananac50d3e72014-03-31 14:53:25 +0100776 if (!cond_resched_lock(&tree->lock)) {
777 node = rb_next(node);
778 goto process_node;
779 }
Chris Masond1310b22008-01-24 16:13:08 -0500780 }
781out:
Chris Masoncad321a2008-12-17 14:51:42 -0500782 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500783}
Chris Masond1310b22008-01-24 16:13:08 -0500784
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000785static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500786 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000787 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500788{
David Sterba41074882013-04-29 13:38:46 +0000789 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400790
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000791 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400792 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500793 u64 range = state->end - state->start + 1;
794 tree->dirty_bytes += range;
795 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400796 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500797}
798
Chris Mason2c64c532009-09-02 15:04:12 -0400799static void cache_state(struct extent_state *state,
800 struct extent_state **cached_ptr)
801{
802 if (cached_ptr && !(*cached_ptr)) {
803 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
804 *cached_ptr = state;
805 atomic_inc(&state->refs);
806 }
807 }
808}
809
Chris Masond1310b22008-01-24 16:13:08 -0500810/*
Chris Mason1edbb732009-09-02 13:24:36 -0400811 * set some bits on a range in the tree. This may require allocations or
812 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500813 *
Chris Mason1edbb732009-09-02 13:24:36 -0400814 * If any of the exclusive bits are set, this will fail with -EEXIST if some
815 * part of the range already has the desired bits set. The start of the
816 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500817 *
Chris Mason1edbb732009-09-02 13:24:36 -0400818 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500819 */
Chris Mason1edbb732009-09-02 13:24:36 -0400820
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100821static int __must_check
822__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000823 unsigned long bits, unsigned long exclusive_bits,
824 u64 *failed_start, struct extent_state **cached_state,
825 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500826{
827 struct extent_state *state;
828 struct extent_state *prealloc = NULL;
829 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000830 struct rb_node **p;
831 struct rb_node *parent;
Chris Masond1310b22008-01-24 16:13:08 -0500832 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500833 u64 last_start;
834 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400835
Josef Bacika5dee372013-12-13 10:02:44 -0500836 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +0000837
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400838 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500839again:
840 if (!prealloc && (mask & __GFP_WAIT)) {
841 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000842 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500843 }
844
Chris Masoncad321a2008-12-17 14:51:42 -0500845 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400846 if (cached_state && *cached_state) {
847 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400848 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +0100849 extent_state_in_tree(state)) {
Chris Mason9655d292009-09-02 15:22:30 -0400850 node = &state->rb_node;
851 goto hit_next;
852 }
853 }
Chris Masond1310b22008-01-24 16:13:08 -0500854 /*
855 * this search will find all the extents that end after
856 * our range starts.
857 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000858 node = tree_search_for_insert(tree, start, &p, &parent);
Chris Masond1310b22008-01-24 16:13:08 -0500859 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000860 prealloc = alloc_extent_state_atomic(prealloc);
861 BUG_ON(!prealloc);
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000862 err = insert_state(tree, prealloc, start, end,
863 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400864 if (err)
865 extent_io_tree_panic(tree, err);
866
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000867 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500868 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500869 goto out;
870 }
Chris Masond1310b22008-01-24 16:13:08 -0500871 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400872hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500873 last_start = state->start;
874 last_end = state->end;
875
876 /*
877 * | ---- desired range ---- |
878 * | state |
879 *
880 * Just lock what we found and keep going
881 */
882 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400883 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500884 *failed_start = state->start;
885 err = -EEXIST;
886 goto out;
887 }
Chris Mason42daec22009-09-23 19:51:09 -0400888
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000889 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400890 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500891 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400892 if (last_end == (u64)-1)
893 goto out;
894 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800895 state = next_state(state);
896 if (start < end && state && state->start == start &&
897 !need_resched())
898 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500899 goto search_again;
900 }
901
902 /*
903 * | ---- desired range ---- |
904 * | state |
905 * or
906 * | ------------- state -------------- |
907 *
908 * We need to split the extent we found, and may flip bits on
909 * second half.
910 *
911 * If the extent we found extends past our
912 * range, we just split and search again. It'll get split
913 * again the next time though.
914 *
915 * If the extent we found is inside our range, we set the
916 * desired bit on it.
917 */
918 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400919 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500920 *failed_start = start;
921 err = -EEXIST;
922 goto out;
923 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000924
925 prealloc = alloc_extent_state_atomic(prealloc);
926 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500927 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400928 if (err)
929 extent_io_tree_panic(tree, err);
930
Chris Masond1310b22008-01-24 16:13:08 -0500931 prealloc = NULL;
932 if (err)
933 goto out;
934 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000935 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400936 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500937 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400938 if (last_end == (u64)-1)
939 goto out;
940 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800941 state = next_state(state);
942 if (start < end && state && state->start == start &&
943 !need_resched())
944 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500945 }
946 goto search_again;
947 }
948 /*
949 * | ---- desired range ---- |
950 * | state | or | state |
951 *
952 * There's a hole, we need to insert something in it and
953 * ignore the extent we found.
954 */
955 if (state->start > start) {
956 u64 this_end;
957 if (end < last_start)
958 this_end = end;
959 else
Chris Masond3977122009-01-05 21:25:51 -0500960 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000961
962 prealloc = alloc_extent_state_atomic(prealloc);
963 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000964
965 /*
966 * Avoid to free 'prealloc' if it can be merged with
967 * the later extent.
968 */
Chris Masond1310b22008-01-24 16:13:08 -0500969 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +0000970 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400971 if (err)
972 extent_io_tree_panic(tree, err);
973
Chris Mason2c64c532009-09-02 15:04:12 -0400974 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500975 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500976 start = this_end + 1;
977 goto search_again;
978 }
979 /*
980 * | ---- desired range ---- |
981 * | state |
982 * We need to split the extent, and set the bit
983 * on the first half
984 */
985 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400986 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500987 *failed_start = start;
988 err = -EEXIST;
989 goto out;
990 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000991
992 prealloc = alloc_extent_state_atomic(prealloc);
993 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500994 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400995 if (err)
996 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500997
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000998 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400999 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05001000 merge_state(tree, prealloc);
1001 prealloc = NULL;
1002 goto out;
1003 }
1004
1005 goto search_again;
1006
1007out:
Chris Masoncad321a2008-12-17 14:51:42 -05001008 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001009 if (prealloc)
1010 free_extent_state(prealloc);
1011
1012 return err;
1013
1014search_again:
1015 if (start > end)
1016 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -05001017 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001018 if (mask & __GFP_WAIT)
1019 cond_resched();
1020 goto again;
1021}
Chris Masond1310b22008-01-24 16:13:08 -05001022
David Sterba41074882013-04-29 13:38:46 +00001023int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
1024 unsigned long bits, u64 * failed_start,
1025 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001026{
1027 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
1028 cached_state, mask);
1029}
1030
1031
Josef Bacik462d6fa2011-09-26 13:56:12 -04001032/**
Liu Bo10983f22012-07-11 15:26:19 +08001033 * convert_extent_bit - convert all bits in a given range from one bit to
1034 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -04001035 * @tree: the io tree to search
1036 * @start: the start offset in bytes
1037 * @end: the end offset in bytes (inclusive)
1038 * @bits: the bits to set in this range
1039 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -04001040 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -04001041 * @mask: the allocation mask
1042 *
1043 * This will go through and set bits for the given range. If any states exist
1044 * already in this range they are set with the given bit and cleared of the
1045 * clear_bits. This is only meant to be used by things that are mergeable, ie
1046 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1047 * boundary bits like LOCK.
1048 */
1049int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001050 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001051 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001052{
1053 struct extent_state *state;
1054 struct extent_state *prealloc = NULL;
1055 struct rb_node *node;
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001056 struct rb_node **p;
1057 struct rb_node *parent;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001058 int err = 0;
1059 u64 last_start;
1060 u64 last_end;
1061
Josef Bacika5dee372013-12-13 10:02:44 -05001062 btrfs_debug_check_extent_io_range(tree, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +00001063
Josef Bacik462d6fa2011-09-26 13:56:12 -04001064again:
1065 if (!prealloc && (mask & __GFP_WAIT)) {
1066 prealloc = alloc_extent_state(mask);
1067 if (!prealloc)
1068 return -ENOMEM;
1069 }
1070
1071 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001072 if (cached_state && *cached_state) {
1073 state = *cached_state;
1074 if (state->start <= start && state->end > start &&
Filipe Manana27a35072014-07-06 20:09:59 +01001075 extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001076 node = &state->rb_node;
1077 goto hit_next;
1078 }
1079 }
1080
Josef Bacik462d6fa2011-09-26 13:56:12 -04001081 /*
1082 * this search will find all the extents that end after
1083 * our range starts.
1084 */
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001085 node = tree_search_for_insert(tree, start, &p, &parent);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001086 if (!node) {
1087 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001088 if (!prealloc) {
1089 err = -ENOMEM;
1090 goto out;
1091 }
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001092 err = insert_state(tree, prealloc, start, end,
1093 &p, &parent, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001094 if (err)
1095 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001096 cache_state(prealloc, cached_state);
1097 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001098 goto out;
1099 }
1100 state = rb_entry(node, struct extent_state, rb_node);
1101hit_next:
1102 last_start = state->start;
1103 last_end = state->end;
1104
1105 /*
1106 * | ---- desired range ---- |
1107 * | state |
1108 *
1109 * Just lock what we found and keep going
1110 */
1111 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001112 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001113 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001114 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001115 if (last_end == (u64)-1)
1116 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001117 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001118 if (start < end && state && state->start == start &&
1119 !need_resched())
1120 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001121 goto search_again;
1122 }
1123
1124 /*
1125 * | ---- desired range ---- |
1126 * | state |
1127 * or
1128 * | ------------- state -------------- |
1129 *
1130 * We need to split the extent we found, and may flip bits on
1131 * second half.
1132 *
1133 * If the extent we found extends past our
1134 * range, we just split and search again. It'll get split
1135 * again the next time though.
1136 *
1137 * If the extent we found is inside our range, we set the
1138 * desired bit on it.
1139 */
1140 if (state->start < start) {
1141 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001142 if (!prealloc) {
1143 err = -ENOMEM;
1144 goto out;
1145 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001146 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001147 if (err)
1148 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001149 prealloc = NULL;
1150 if (err)
1151 goto out;
1152 if (state->end <= end) {
1153 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001154 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001155 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001156 if (last_end == (u64)-1)
1157 goto out;
1158 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001159 if (start < end && state && state->start == start &&
1160 !need_resched())
1161 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001162 }
1163 goto search_again;
1164 }
1165 /*
1166 * | ---- desired range ---- |
1167 * | state | or | state |
1168 *
1169 * There's a hole, we need to insert something in it and
1170 * ignore the extent we found.
1171 */
1172 if (state->start > start) {
1173 u64 this_end;
1174 if (end < last_start)
1175 this_end = end;
1176 else
1177 this_end = last_start - 1;
1178
1179 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001180 if (!prealloc) {
1181 err = -ENOMEM;
1182 goto out;
1183 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001184
1185 /*
1186 * Avoid to free 'prealloc' if it can be merged with
1187 * the later extent.
1188 */
1189 err = insert_state(tree, prealloc, start, this_end,
Filipe David Borba Manana12cfbad2013-11-26 15:41:47 +00001190 NULL, NULL, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001191 if (err)
1192 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001193 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001194 prealloc = NULL;
1195 start = this_end + 1;
1196 goto search_again;
1197 }
1198 /*
1199 * | ---- desired range ---- |
1200 * | state |
1201 * We need to split the extent, and set the bit
1202 * on the first half
1203 */
1204 if (state->start <= end && state->end > end) {
1205 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001206 if (!prealloc) {
1207 err = -ENOMEM;
1208 goto out;
1209 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001210
1211 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001212 if (err)
1213 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001214
1215 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001216 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001217 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001218 prealloc = NULL;
1219 goto out;
1220 }
1221
1222 goto search_again;
1223
1224out:
1225 spin_unlock(&tree->lock);
1226 if (prealloc)
1227 free_extent_state(prealloc);
1228
1229 return err;
1230
1231search_again:
1232 if (start > end)
1233 goto out;
1234 spin_unlock(&tree->lock);
1235 if (mask & __GFP_WAIT)
1236 cond_resched();
1237 goto again;
1238}
1239
Chris Masond1310b22008-01-24 16:13:08 -05001240/* wrappers around set/clear extent bit */
1241int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1242 gfp_t mask)
1243{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001244 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001245 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001246}
Chris Masond1310b22008-01-24 16:13:08 -05001247
1248int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001249 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001250{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001251 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001252 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001253}
Chris Masond1310b22008-01-24 16:13:08 -05001254
1255int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001256 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001257{
Chris Mason2c64c532009-09-02 15:04:12 -04001258 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001259}
Chris Masond1310b22008-01-24 16:13:08 -05001260
1261int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001262 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001263{
1264 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001265 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001266 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001267}
Chris Masond1310b22008-01-24 16:13:08 -05001268
Liu Bo9e8a4a82012-09-05 19:10:51 -06001269int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1270 struct extent_state **cached_state, gfp_t mask)
1271{
1272 return set_extent_bit(tree, start, end,
1273 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1274 NULL, cached_state, mask);
1275}
1276
Chris Masond1310b22008-01-24 16:13:08 -05001277int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1278 gfp_t mask)
1279{
1280 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001281 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001282 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001283}
Chris Masond1310b22008-01-24 16:13:08 -05001284
1285int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1286 gfp_t mask)
1287{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001288 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001289 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001290}
Chris Masond1310b22008-01-24 16:13:08 -05001291
Chris Masond1310b22008-01-24 16:13:08 -05001292int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001293 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001294{
Liu Bo6b67a322013-03-28 08:30:28 +00001295 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001296 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001297}
Chris Masond1310b22008-01-24 16:13:08 -05001298
Josef Bacik5fd02042012-05-02 14:00:54 -04001299int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1300 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001301{
Chris Mason2c64c532009-09-02 15:04:12 -04001302 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001303 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001304}
Chris Masond1310b22008-01-24 16:13:08 -05001305
Chris Masond352ac62008-09-29 15:18:18 -04001306/*
1307 * either insert or lock state struct between start and end use mask to tell
1308 * us if waiting is desired.
1309 */
Chris Mason1edbb732009-09-02 13:24:36 -04001310int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001311 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001312{
1313 int err;
1314 u64 failed_start;
1315 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001316 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1317 EXTENT_LOCKED, &failed_start,
1318 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001319 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001320 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1321 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001322 } else
Chris Masond1310b22008-01-24 16:13:08 -05001323 break;
Chris Masond1310b22008-01-24 16:13:08 -05001324 WARN_ON(start > end);
1325 }
1326 return err;
1327}
Chris Masond1310b22008-01-24 16:13:08 -05001328
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001329int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001330{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001331 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001332}
1333
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001334int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001335{
1336 int err;
1337 u64 failed_start;
1338
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001339 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1340 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001341 if (err == -EEXIST) {
1342 if (failed_start > start)
1343 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001344 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001345 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001346 }
Josef Bacik25179202008-10-29 14:49:05 -04001347 return 1;
1348}
Josef Bacik25179202008-10-29 14:49:05 -04001349
Chris Mason2c64c532009-09-02 15:04:12 -04001350int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1351 struct extent_state **cached, gfp_t mask)
1352{
1353 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1354 mask);
1355}
1356
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001357int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001358{
Chris Mason2c64c532009-09-02 15:04:12 -04001359 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001360 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001361}
Chris Masond1310b22008-01-24 16:13:08 -05001362
Chris Mason4adaa612013-03-26 13:07:00 -04001363int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1364{
1365 unsigned long index = start >> PAGE_CACHE_SHIFT;
1366 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1367 struct page *page;
1368
1369 while (index <= end_index) {
1370 page = find_get_page(inode->i_mapping, index);
1371 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1372 clear_page_dirty_for_io(page);
1373 page_cache_release(page);
1374 index++;
1375 }
1376 return 0;
1377}
1378
1379int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1380{
1381 unsigned long index = start >> PAGE_CACHE_SHIFT;
1382 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1383 struct page *page;
1384
1385 while (index <= end_index) {
1386 page = find_get_page(inode->i_mapping, index);
1387 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1388 account_page_redirty(page);
1389 __set_page_dirty_nobuffers(page);
1390 page_cache_release(page);
1391 index++;
1392 }
1393 return 0;
1394}
1395
Chris Masond1310b22008-01-24 16:13:08 -05001396/*
Chris Masond1310b22008-01-24 16:13:08 -05001397 * helper function to set both pages and extents in the tree writeback
1398 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001399static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001400{
1401 unsigned long index = start >> PAGE_CACHE_SHIFT;
1402 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1403 struct page *page;
1404
1405 while (index <= end_index) {
1406 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001407 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001408 set_page_writeback(page);
1409 page_cache_release(page);
1410 index++;
1411 }
Chris Masond1310b22008-01-24 16:13:08 -05001412 return 0;
1413}
Chris Masond1310b22008-01-24 16:13:08 -05001414
Chris Masond352ac62008-09-29 15:18:18 -04001415/* find the first state struct with 'bits' set after 'start', and
1416 * return it. tree->lock must be held. NULL will returned if
1417 * nothing was found after 'start'
1418 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001419static struct extent_state *
1420find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001421 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001422{
1423 struct rb_node *node;
1424 struct extent_state *state;
1425
1426 /*
1427 * this search will find all the extents that end after
1428 * our range starts.
1429 */
1430 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001431 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001432 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001433
Chris Masond3977122009-01-05 21:25:51 -05001434 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001435 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001436 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001437 return state;
Chris Masond3977122009-01-05 21:25:51 -05001438
Chris Masond7fc6402008-02-18 12:12:38 -05001439 node = rb_next(node);
1440 if (!node)
1441 break;
1442 }
1443out:
1444 return NULL;
1445}
Chris Masond7fc6402008-02-18 12:12:38 -05001446
Chris Masond352ac62008-09-29 15:18:18 -04001447/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001448 * find the first offset in the io tree with 'bits' set. zero is
1449 * returned if we find something, and *start_ret and *end_ret are
1450 * set to reflect the state struct that was found.
1451 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001452 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001453 */
1454int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001455 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001456 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001457{
1458 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001459 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001460 int ret = 1;
1461
1462 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001463 if (cached_state && *cached_state) {
1464 state = *cached_state;
Filipe Manana27a35072014-07-06 20:09:59 +01001465 if (state->end == start - 1 && extent_state_in_tree(state)) {
Josef Bacike6138872012-09-27 17:07:30 -04001466 n = rb_next(&state->rb_node);
1467 while (n) {
1468 state = rb_entry(n, struct extent_state,
1469 rb_node);
1470 if (state->state & bits)
1471 goto got_it;
1472 n = rb_next(n);
1473 }
1474 free_extent_state(*cached_state);
1475 *cached_state = NULL;
1476 goto out;
1477 }
1478 free_extent_state(*cached_state);
1479 *cached_state = NULL;
1480 }
1481
Xiao Guangrong69261c42011-07-14 03:19:45 +00001482 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001483got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001484 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001485 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001486 *start_ret = state->start;
1487 *end_ret = state->end;
1488 ret = 0;
1489 }
Josef Bacike6138872012-09-27 17:07:30 -04001490out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001491 spin_unlock(&tree->lock);
1492 return ret;
1493}
1494
1495/*
Chris Masond352ac62008-09-29 15:18:18 -04001496 * find a contiguous range of bytes in the file marked as delalloc, not
1497 * more than 'max_bytes'. start and end are used to return the range,
1498 *
1499 * 1 is returned if we find something, 0 if nothing was in the tree
1500 */
Chris Masonc8b97812008-10-29 14:49:59 -04001501static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001502 u64 *start, u64 *end, u64 max_bytes,
1503 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001504{
1505 struct rb_node *node;
1506 struct extent_state *state;
1507 u64 cur_start = *start;
1508 u64 found = 0;
1509 u64 total_bytes = 0;
1510
Chris Masoncad321a2008-12-17 14:51:42 -05001511 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001512
Chris Masond1310b22008-01-24 16:13:08 -05001513 /*
1514 * this search will find all the extents that end after
1515 * our range starts.
1516 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001517 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001518 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001519 if (!found)
1520 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001521 goto out;
1522 }
1523
Chris Masond3977122009-01-05 21:25:51 -05001524 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001525 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001526 if (found && (state->start != cur_start ||
1527 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001528 goto out;
1529 }
1530 if (!(state->state & EXTENT_DELALLOC)) {
1531 if (!found)
1532 *end = state->end;
1533 goto out;
1534 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001535 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001536 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001537 *cached_state = state;
1538 atomic_inc(&state->refs);
1539 }
Chris Masond1310b22008-01-24 16:13:08 -05001540 found++;
1541 *end = state->end;
1542 cur_start = state->end + 1;
1543 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001544 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001545 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001546 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001547 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001548 break;
1549 }
1550out:
Chris Masoncad321a2008-12-17 14:51:42 -05001551 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001552 return found;
1553}
1554
Jeff Mahoney143bede2012-03-01 14:56:26 +01001555static noinline void __unlock_for_delalloc(struct inode *inode,
1556 struct page *locked_page,
1557 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001558{
1559 int ret;
1560 struct page *pages[16];
1561 unsigned long index = start >> PAGE_CACHE_SHIFT;
1562 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1563 unsigned long nr_pages = end_index - index + 1;
1564 int i;
1565
1566 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001567 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001568
Chris Masond3977122009-01-05 21:25:51 -05001569 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001570 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001571 min_t(unsigned long, nr_pages,
1572 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001573 for (i = 0; i < ret; i++) {
1574 if (pages[i] != locked_page)
1575 unlock_page(pages[i]);
1576 page_cache_release(pages[i]);
1577 }
1578 nr_pages -= ret;
1579 index += ret;
1580 cond_resched();
1581 }
Chris Masonc8b97812008-10-29 14:49:59 -04001582}
1583
1584static noinline int lock_delalloc_pages(struct inode *inode,
1585 struct page *locked_page,
1586 u64 delalloc_start,
1587 u64 delalloc_end)
1588{
1589 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1590 unsigned long start_index = index;
1591 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1592 unsigned long pages_locked = 0;
1593 struct page *pages[16];
1594 unsigned long nrpages;
1595 int ret;
1596 int i;
1597
1598 /* the caller is responsible for locking the start index */
1599 if (index == locked_page->index && index == end_index)
1600 return 0;
1601
1602 /* skip the page at the start index */
1603 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001604 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001605 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001606 min_t(unsigned long,
1607 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001608 if (ret == 0) {
1609 ret = -EAGAIN;
1610 goto done;
1611 }
1612 /* now we have an array of pages, lock them all */
1613 for (i = 0; i < ret; i++) {
1614 /*
1615 * the caller is taking responsibility for
1616 * locked_page
1617 */
Chris Mason771ed682008-11-06 22:02:51 -05001618 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001619 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001620 if (!PageDirty(pages[i]) ||
1621 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001622 ret = -EAGAIN;
1623 unlock_page(pages[i]);
1624 page_cache_release(pages[i]);
1625 goto done;
1626 }
1627 }
Chris Masonc8b97812008-10-29 14:49:59 -04001628 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001629 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001630 }
Chris Masonc8b97812008-10-29 14:49:59 -04001631 nrpages -= ret;
1632 index += ret;
1633 cond_resched();
1634 }
1635 ret = 0;
1636done:
1637 if (ret && pages_locked) {
1638 __unlock_for_delalloc(inode, locked_page,
1639 delalloc_start,
1640 ((u64)(start_index + pages_locked - 1)) <<
1641 PAGE_CACHE_SHIFT);
1642 }
1643 return ret;
1644}
1645
1646/*
1647 * find a contiguous range of bytes in the file marked as delalloc, not
1648 * more than 'max_bytes'. start and end are used to return the range,
1649 *
1650 * 1 is returned if we find something, 0 if nothing was in the tree
1651 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001652STATIC u64 find_lock_delalloc_range(struct inode *inode,
1653 struct extent_io_tree *tree,
1654 struct page *locked_page, u64 *start,
1655 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001656{
1657 u64 delalloc_start;
1658 u64 delalloc_end;
1659 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001660 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001661 int ret;
1662 int loops = 0;
1663
1664again:
1665 /* step one, find a bunch of delalloc bytes starting at start */
1666 delalloc_start = *start;
1667 delalloc_end = 0;
1668 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001669 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001670 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001671 *start = delalloc_start;
1672 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001673 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001674 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001675 }
1676
1677 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001678 * start comes from the offset of locked_page. We have to lock
1679 * pages in order, so we can't process delalloc bytes before
1680 * locked_page
1681 */
Chris Masond3977122009-01-05 21:25:51 -05001682 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001683 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001684
1685 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001686 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001687 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001688 if (delalloc_end + 1 - delalloc_start > max_bytes)
1689 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001690
Chris Masonc8b97812008-10-29 14:49:59 -04001691 /* step two, lock all the pages after the page that has start */
1692 ret = lock_delalloc_pages(inode, locked_page,
1693 delalloc_start, delalloc_end);
1694 if (ret == -EAGAIN) {
1695 /* some of the pages are gone, lets avoid looping by
1696 * shortening the size of the delalloc range we're searching
1697 */
Chris Mason9655d292009-09-02 15:22:30 -04001698 free_extent_state(cached_state);
Chris Mason7d788742014-05-21 05:49:54 -07001699 cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001700 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001701 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001702 loops = 1;
1703 goto again;
1704 } else {
1705 found = 0;
1706 goto out_failed;
1707 }
1708 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001709 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001710
1711 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001712 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001713
1714 /* then test to make sure it is all still delalloc */
1715 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001716 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001717 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001718 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1719 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001720 __unlock_for_delalloc(inode, locked_page,
1721 delalloc_start, delalloc_end);
1722 cond_resched();
1723 goto again;
1724 }
Chris Mason9655d292009-09-02 15:22:30 -04001725 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001726 *start = delalloc_start;
1727 *end = delalloc_end;
1728out_failed:
1729 return found;
1730}
1731
Josef Bacikc2790a22013-07-29 11:20:47 -04001732int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1733 struct page *locked_page,
1734 unsigned long clear_bits,
1735 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001736{
Josef Bacikc2790a22013-07-29 11:20:47 -04001737 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001738 int ret;
1739 struct page *pages[16];
1740 unsigned long index = start >> PAGE_CACHE_SHIFT;
1741 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1742 unsigned long nr_pages = end_index - index + 1;
1743 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001744
Chris Mason2c64c532009-09-02 15:04:12 -04001745 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001746 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001747 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001748
Chris Masond3977122009-01-05 21:25:51 -05001749 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001750 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001751 min_t(unsigned long,
1752 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001753 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001754
Josef Bacikc2790a22013-07-29 11:20:47 -04001755 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001756 SetPagePrivate2(pages[i]);
1757
Chris Masonc8b97812008-10-29 14:49:59 -04001758 if (pages[i] == locked_page) {
1759 page_cache_release(pages[i]);
1760 continue;
1761 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001762 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001763 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001764 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001765 set_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001766 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001767 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001768 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001769 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001770 page_cache_release(pages[i]);
1771 }
1772 nr_pages -= ret;
1773 index += ret;
1774 cond_resched();
1775 }
1776 return 0;
1777}
Chris Masonc8b97812008-10-29 14:49:59 -04001778
Chris Masond352ac62008-09-29 15:18:18 -04001779/*
1780 * count the number of bytes in the tree that have a given bit(s)
1781 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1782 * cached. The total number found is returned.
1783 */
Chris Masond1310b22008-01-24 16:13:08 -05001784u64 count_range_bits(struct extent_io_tree *tree,
1785 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001786 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001787{
1788 struct rb_node *node;
1789 struct extent_state *state;
1790 u64 cur_start = *start;
1791 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001792 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001793 int found = 0;
1794
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301795 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001796 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001797
Chris Masoncad321a2008-12-17 14:51:42 -05001798 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001799 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1800 total_bytes = tree->dirty_bytes;
1801 goto out;
1802 }
1803 /*
1804 * this search will find all the extents that end after
1805 * our range starts.
1806 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001807 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001808 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001809 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001810
Chris Masond3977122009-01-05 21:25:51 -05001811 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001812 state = rb_entry(node, struct extent_state, rb_node);
1813 if (state->start > search_end)
1814 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001815 if (contig && found && state->start > last + 1)
1816 break;
1817 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001818 total_bytes += min(search_end, state->end) + 1 -
1819 max(cur_start, state->start);
1820 if (total_bytes >= max_bytes)
1821 break;
1822 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001823 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001824 found = 1;
1825 }
Chris Masonec29ed52011-02-23 16:23:20 -05001826 last = state->end;
1827 } else if (contig && found) {
1828 break;
Chris Masond1310b22008-01-24 16:13:08 -05001829 }
1830 node = rb_next(node);
1831 if (!node)
1832 break;
1833 }
1834out:
Chris Masoncad321a2008-12-17 14:51:42 -05001835 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001836 return total_bytes;
1837}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001838
Chris Masond352ac62008-09-29 15:18:18 -04001839/*
1840 * set the private field for a given byte offset in the tree. If there isn't
1841 * an extent_state there already, this does nothing.
1842 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001843static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001844{
1845 struct rb_node *node;
1846 struct extent_state *state;
1847 int ret = 0;
1848
Chris Masoncad321a2008-12-17 14:51:42 -05001849 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001850 /*
1851 * this search will find all the extents that end after
1852 * our range starts.
1853 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001854 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001855 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001856 ret = -ENOENT;
1857 goto out;
1858 }
1859 state = rb_entry(node, struct extent_state, rb_node);
1860 if (state->start != start) {
1861 ret = -ENOENT;
1862 goto out;
1863 }
1864 state->private = private;
1865out:
Chris Masoncad321a2008-12-17 14:51:42 -05001866 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001867 return ret;
1868}
1869
1870int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1871{
1872 struct rb_node *node;
1873 struct extent_state *state;
1874 int ret = 0;
1875
Chris Masoncad321a2008-12-17 14:51:42 -05001876 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001877 /*
1878 * this search will find all the extents that end after
1879 * our range starts.
1880 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001881 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001882 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001883 ret = -ENOENT;
1884 goto out;
1885 }
1886 state = rb_entry(node, struct extent_state, rb_node);
1887 if (state->start != start) {
1888 ret = -ENOENT;
1889 goto out;
1890 }
1891 *private = state->private;
1892out:
Chris Masoncad321a2008-12-17 14:51:42 -05001893 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001894 return ret;
1895}
1896
1897/*
1898 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001899 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001900 * has the bits set. Otherwise, 1 is returned if any bit in the
1901 * range is found set.
1902 */
1903int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001904 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001905{
1906 struct extent_state *state = NULL;
1907 struct rb_node *node;
1908 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001909
Chris Masoncad321a2008-12-17 14:51:42 -05001910 spin_lock(&tree->lock);
Filipe Manana27a35072014-07-06 20:09:59 +01001911 if (cached && extent_state_in_tree(cached) && cached->start <= start &&
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001912 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001913 node = &cached->rb_node;
1914 else
1915 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001916 while (node && start <= end) {
1917 state = rb_entry(node, struct extent_state, rb_node);
1918
1919 if (filled && state->start > start) {
1920 bitset = 0;
1921 break;
1922 }
1923
1924 if (state->start > end)
1925 break;
1926
1927 if (state->state & bits) {
1928 bitset = 1;
1929 if (!filled)
1930 break;
1931 } else if (filled) {
1932 bitset = 0;
1933 break;
1934 }
Chris Mason46562cec2009-09-23 20:23:16 -04001935
1936 if (state->end == (u64)-1)
1937 break;
1938
Chris Masond1310b22008-01-24 16:13:08 -05001939 start = state->end + 1;
1940 if (start > end)
1941 break;
1942 node = rb_next(node);
1943 if (!node) {
1944 if (filled)
1945 bitset = 0;
1946 break;
1947 }
1948 }
Chris Masoncad321a2008-12-17 14:51:42 -05001949 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001950 return bitset;
1951}
Chris Masond1310b22008-01-24 16:13:08 -05001952
1953/*
1954 * helper function to set a given page up to date if all the
1955 * extents in the tree for that page are up to date
1956 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001957static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001958{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001959 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001960 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001961 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001962 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001963}
1964
Miao Xie454ff3d2014-09-12 18:43:58 +08001965static int free_io_failure(struct inode *inode, struct io_failure_record *rec)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001966{
1967 int ret;
1968 int err = 0;
1969 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1970
1971 set_state_private(failure_tree, rec->start, 0);
1972 ret = clear_extent_bits(failure_tree, rec->start,
1973 rec->start + rec->len - 1,
1974 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1975 if (ret)
1976 err = ret;
1977
David Woodhouse53b381b2013-01-29 18:40:14 -05001978 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1979 rec->start + rec->len - 1,
1980 EXTENT_DAMAGED, GFP_NOFS);
1981 if (ret && !err)
1982 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001983
1984 kfree(rec);
1985 return err;
1986}
1987
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001988/*
1989 * this bypasses the standard btrfs submit functions deliberately, as
1990 * the standard behavior is to write all copies in a raid setup. here we only
1991 * want to write the one bad copy. so we do the mapping for ourselves and issue
1992 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001993 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001994 * actually prevents the read that triggered the error from finishing.
1995 * currently, there can be no more than two copies of every data bit. thus,
1996 * exactly one rewrite is required.
1997 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001998int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001999 u64 length, u64 logical, struct page *page,
Miao Xieffdd2012014-09-12 18:44:00 +08002000 unsigned int pg_offset, int mirror_num)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002001{
2002 struct bio *bio;
2003 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002004 u64 map_length = 0;
2005 u64 sector;
2006 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002007 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002008 int ret;
2009
Ilya Dryomov908960c2013-11-03 19:06:39 +02002010 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002011 BUG_ON(!mirror_num);
2012
David Woodhouse53b381b2013-01-29 18:40:14 -05002013 /* we can't repair anything in raid56 yet */
2014 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2015 return 0;
2016
Chris Mason9be33952013-05-17 18:30:14 -04002017 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002018 if (!bio)
2019 return -EIO;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002020 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002021 map_length = length;
2022
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002023 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002024 &map_length, &bbio, mirror_num);
2025 if (ret) {
2026 bio_put(bio);
2027 return -EIO;
2028 }
2029 BUG_ON(mirror_num != bbio->mirror_num);
2030 sector = bbio->stripes[mirror_num-1].physical >> 9;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002031 bio->bi_iter.bi_sector = sector;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002032 dev = bbio->stripes[mirror_num-1].dev;
2033 kfree(bbio);
2034 if (!dev || !dev->bdev || !dev->writeable) {
2035 bio_put(bio);
2036 return -EIO;
2037 }
2038 bio->bi_bdev = dev->bdev;
Miao Xieffdd2012014-09-12 18:44:00 +08002039 bio_add_page(bio, page, length, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002040
Kent Overstreet33879d42013-11-23 22:33:32 -08002041 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002042 /* try to remap that extent elsewhere? */
2043 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002044 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002045 return -EIO;
2046 }
2047
Frank Holtonefe120a2013-12-20 11:37:06 -05002048 printk_ratelimited_in_rcu(KERN_INFO
2049 "BTRFS: read error corrected: ino %lu off %llu "
2050 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2051 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002052
2053 bio_put(bio);
2054 return 0;
2055}
2056
Josef Bacikea466792012-03-26 21:57:36 -04002057int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2058 int mirror_num)
2059{
Josef Bacikea466792012-03-26 21:57:36 -04002060 u64 start = eb->start;
2061 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002062 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002063
Ilya Dryomov908960c2013-11-03 19:06:39 +02002064 if (root->fs_info->sb->s_flags & MS_RDONLY)
2065 return -EROFS;
2066
Josef Bacikea466792012-03-26 21:57:36 -04002067 for (i = 0; i < num_pages; i++) {
2068 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002069 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Miao Xieffdd2012014-09-12 18:44:00 +08002070 start, p, start - page_offset(p),
2071 mirror_num);
Josef Bacikea466792012-03-26 21:57:36 -04002072 if (ret)
2073 break;
2074 start += PAGE_CACHE_SIZE;
2075 }
2076
2077 return ret;
2078}
2079
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002080/*
2081 * each time an IO finishes, we do a fast check in the IO failure tree
2082 * to see if we need to process or clean up an io_failure_record
2083 */
2084static int clean_io_failure(u64 start, struct page *page)
2085{
2086 u64 private;
2087 u64 private_failure;
2088 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002089 struct inode *inode = page->mapping->host;
2090 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002091 struct extent_state *state;
2092 int num_copies;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002094
2095 private = 0;
2096 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2097 (u64)-1, 1, EXTENT_DIRTY, 0);
2098 if (!ret)
2099 return 0;
2100
2101 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2102 &private_failure);
2103 if (ret)
2104 return 0;
2105
2106 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2107 BUG_ON(!failrec->this_mirror);
2108
2109 if (failrec->in_validation) {
2110 /* there was no real error, just free the record */
2111 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2112 failrec->start);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002113 goto out;
2114 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002115 if (fs_info->sb->s_flags & MS_RDONLY)
2116 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002117
2118 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2119 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2120 failrec->start,
2121 EXTENT_LOCKED);
2122 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2123
Miao Xie883d0de2013-07-25 19:22:35 +08002124 if (state && state->start <= failrec->start &&
2125 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002126 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2127 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002128 if (num_copies > 1) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002129 repair_io_failure(fs_info, start, failrec->len,
2130 failrec->logical, page,
Miao Xieffdd2012014-09-12 18:44:00 +08002131 start - page_offset(page),
Miao Xie454ff3d2014-09-12 18:43:58 +08002132 failrec->failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002133 }
2134 }
2135
2136out:
Miao Xie454ff3d2014-09-12 18:43:58 +08002137 free_io_failure(inode, failrec);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002138
Miao Xie454ff3d2014-09-12 18:43:58 +08002139 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002140}
2141
Miao Xie2fe63032014-09-12 18:43:59 +08002142int btrfs_get_io_failure_record(struct inode *inode, u64 start, u64 end,
2143 struct io_failure_record **failrec_ret)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002144{
Miao Xie2fe63032014-09-12 18:43:59 +08002145 struct io_failure_record *failrec;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002146 u64 private;
2147 struct extent_map *em;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002148 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2149 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2150 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002151 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002152 u64 logical;
2153
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002154 ret = get_state_private(failure_tree, start, &private);
2155 if (ret) {
2156 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2157 if (!failrec)
2158 return -ENOMEM;
Miao Xie2fe63032014-09-12 18:43:59 +08002159
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002160 failrec->start = start;
2161 failrec->len = end - start + 1;
2162 failrec->this_mirror = 0;
2163 failrec->bio_flags = 0;
2164 failrec->in_validation = 0;
2165
2166 read_lock(&em_tree->lock);
2167 em = lookup_extent_mapping(em_tree, start, failrec->len);
2168 if (!em) {
2169 read_unlock(&em_tree->lock);
2170 kfree(failrec);
2171 return -EIO;
2172 }
2173
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002174 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002175 free_extent_map(em);
2176 em = NULL;
2177 }
2178 read_unlock(&em_tree->lock);
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002179 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002180 kfree(failrec);
2181 return -EIO;
2182 }
Miao Xie2fe63032014-09-12 18:43:59 +08002183
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 logical = start - em->start;
2185 logical = em->block_start + logical;
2186 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2187 logical = em->block_start;
2188 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2189 extent_set_compress_type(&failrec->bio_flags,
2190 em->compress_type);
2191 }
Miao Xie2fe63032014-09-12 18:43:59 +08002192
2193 pr_debug("Get IO Failure Record: (new) logical=%llu, start=%llu, len=%llu\n",
2194 logical, start, failrec->len);
2195
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002196 failrec->logical = logical;
2197 free_extent_map(em);
2198
2199 /* set the bits in the private failure tree */
2200 ret = set_extent_bits(failure_tree, start, end,
2201 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2202 if (ret >= 0)
2203 ret = set_state_private(failure_tree, start,
2204 (u64)(unsigned long)failrec);
2205 /* set the bits in the inode's tree */
2206 if (ret >= 0)
2207 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2208 GFP_NOFS);
2209 if (ret < 0) {
2210 kfree(failrec);
2211 return ret;
2212 }
2213 } else {
2214 failrec = (struct io_failure_record *)(unsigned long)private;
Miao Xie2fe63032014-09-12 18:43:59 +08002215 pr_debug("Get IO Failure Record: (found) logical=%llu, start=%llu, len=%llu, validation=%d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002216 failrec->logical, failrec->start, failrec->len,
2217 failrec->in_validation);
2218 /*
2219 * when data can be on disk more than twice, add to failrec here
2220 * (e.g. with a list for failed_mirror) to make
2221 * clean_io_failure() clean all those errors at once.
2222 */
2223 }
Miao Xie2fe63032014-09-12 18:43:59 +08002224
2225 *failrec_ret = failrec;
2226
2227 return 0;
2228}
2229
2230int btrfs_check_repairable(struct inode *inode, struct bio *failed_bio,
2231 struct io_failure_record *failrec, int failed_mirror)
2232{
2233 int num_copies;
2234
Stefan Behrens5d964052012-11-05 14:59:07 +01002235 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2236 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002237 if (num_copies == 1) {
2238 /*
2239 * we only have a single copy of the data, so don't bother with
2240 * all the retry and error correction code that follows. no
2241 * matter what the error is, it is very likely to persist.
2242 */
Miao Xie2fe63032014-09-12 18:43:59 +08002243 pr_debug("Check Repairable: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
Miao Xie09a7f7a2013-07-25 19:22:32 +08002244 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002245 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 }
2247
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002248 /*
2249 * there are two premises:
2250 * a) deliver good data to the caller
2251 * b) correct the bad sectors on disk
2252 */
2253 if (failed_bio->bi_vcnt > 1) {
2254 /*
2255 * to fulfill b), we need to know the exact failing sectors, as
2256 * we don't want to rewrite any more than the failed ones. thus,
2257 * we need separate read requests for the failed bio
2258 *
2259 * if the following BUG_ON triggers, our validation request got
2260 * merged. we need separate requests for our algorithm to work.
2261 */
2262 BUG_ON(failrec->in_validation);
2263 failrec->in_validation = 1;
2264 failrec->this_mirror = failed_mirror;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002265 } else {
2266 /*
2267 * we're ready to fulfill a) and b) alongside. get a good copy
2268 * of the failed sector and if we succeed, we have setup
2269 * everything for repair_io_failure to do the rest for us.
2270 */
2271 if (failrec->in_validation) {
2272 BUG_ON(failrec->this_mirror != failed_mirror);
2273 failrec->in_validation = 0;
2274 failrec->this_mirror = 0;
2275 }
2276 failrec->failed_mirror = failed_mirror;
2277 failrec->this_mirror++;
2278 if (failrec->this_mirror == failed_mirror)
2279 failrec->this_mirror++;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002280 }
2281
Miao Xiefacc8a22013-07-25 19:22:34 +08002282 if (failrec->this_mirror > num_copies) {
Miao Xie2fe63032014-09-12 18:43:59 +08002283 pr_debug("Check Repairable: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002284 num_copies, failrec->this_mirror, failed_mirror);
Miao Xie2fe63032014-09-12 18:43:59 +08002285 return 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002286 }
2287
Miao Xie2fe63032014-09-12 18:43:59 +08002288 return 1;
2289}
2290
2291
2292struct bio *btrfs_create_repair_bio(struct inode *inode, struct bio *failed_bio,
2293 struct io_failure_record *failrec,
2294 struct page *page, int pg_offset, int icsum,
2295 bio_end_io_t *endio_func)
2296{
2297 struct bio *bio;
2298 struct btrfs_io_bio *btrfs_failed_bio;
2299 struct btrfs_io_bio *btrfs_bio;
2300
Chris Mason9be33952013-05-17 18:30:14 -04002301 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Miao Xie2fe63032014-09-12 18:43:59 +08002302 if (!bio)
2303 return NULL;
2304
2305 bio->bi_end_io = endio_func;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002306 bio->bi_iter.bi_sector = failrec->logical >> 9;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002307 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002308 bio->bi_iter.bi_size = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002309
Miao Xiefacc8a22013-07-25 19:22:34 +08002310 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2311 if (btrfs_failed_bio->csum) {
2312 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2313 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2314
2315 btrfs_bio = btrfs_io_bio(bio);
2316 btrfs_bio->csum = btrfs_bio->csum_inline;
Miao Xie2fe63032014-09-12 18:43:59 +08002317 icsum *= csum_size;
2318 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + icsum,
Miao Xiefacc8a22013-07-25 19:22:34 +08002319 csum_size);
2320 }
2321
Miao Xie2fe63032014-09-12 18:43:59 +08002322 bio_add_page(bio, page, failrec->len, pg_offset);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002323
Miao Xie2fe63032014-09-12 18:43:59 +08002324 return bio;
2325}
2326
2327/*
2328 * this is a generic handler for readpage errors (default
2329 * readpage_io_failed_hook). if other copies exist, read those and write back
2330 * good data to the failed position. does not investigate in remapping the
2331 * failed extent elsewhere, hoping the device will be smart enough to do this as
2332 * needed
2333 */
2334
2335static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2336 struct page *page, u64 start, u64 end,
2337 int failed_mirror)
2338{
2339 struct io_failure_record *failrec;
2340 struct inode *inode = page->mapping->host;
2341 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2342 struct bio *bio;
2343 int read_mode;
2344 int ret;
2345
2346 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2347
2348 ret = btrfs_get_io_failure_record(inode, start, end, &failrec);
2349 if (ret)
2350 return ret;
2351
2352 ret = btrfs_check_repairable(inode, failed_bio, failrec, failed_mirror);
2353 if (!ret) {
2354 free_io_failure(inode, failrec);
2355 return -EIO;
2356 }
2357
2358 if (failed_bio->bi_vcnt > 1)
2359 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2360 else
2361 read_mode = READ_SYNC;
2362
2363 phy_offset >>= inode->i_sb->s_blocksize_bits;
2364 bio = btrfs_create_repair_bio(inode, failed_bio, failrec, page,
2365 start - page_offset(page),
2366 (int)phy_offset, failed_bio->bi_end_io);
2367 if (!bio) {
2368 free_io_failure(inode, failrec);
2369 return -EIO;
2370 }
2371
2372 pr_debug("Repair Read Error: submitting new read[%#x] to this_mirror=%d, in_validation=%d\n",
2373 read_mode, failrec->this_mirror, failrec->in_validation);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002374
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002375 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2376 failrec->this_mirror,
2377 failrec->bio_flags, 0);
Miao Xie6c387ab2014-09-12 18:43:57 +08002378 if (ret) {
Miao Xie454ff3d2014-09-12 18:43:58 +08002379 free_io_failure(inode, failrec);
Miao Xie6c387ab2014-09-12 18:43:57 +08002380 bio_put(bio);
2381 }
2382
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002383 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002384}
2385
Chris Masond1310b22008-01-24 16:13:08 -05002386/* lots and lots of room for performance fixes in the end_bio funcs */
2387
Jeff Mahoney87826df2012-02-15 16:23:57 +01002388int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2389{
2390 int uptodate = (err == 0);
2391 struct extent_io_tree *tree;
Eric Sandeen3e2426b2014-06-12 00:39:58 -05002392 int ret = 0;
Jeff Mahoney87826df2012-02-15 16:23:57 +01002393
2394 tree = &BTRFS_I(page->mapping->host)->io_tree;
2395
2396 if (tree->ops && tree->ops->writepage_end_io_hook) {
2397 ret = tree->ops->writepage_end_io_hook(page, start,
2398 end, NULL, uptodate);
2399 if (ret)
2400 uptodate = 0;
2401 }
2402
Jeff Mahoney87826df2012-02-15 16:23:57 +01002403 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002404 ClearPageUptodate(page);
2405 SetPageError(page);
Liu Bo5dca6ee2014-05-12 12:47:36 +08002406 ret = ret < 0 ? ret : -EIO;
2407 mapping_set_error(page->mapping, ret);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002408 }
2409 return 0;
2410}
2411
Chris Masond1310b22008-01-24 16:13:08 -05002412/*
2413 * after a writepage IO is done, we need to:
2414 * clear the uptodate bits on error
2415 * clear the writeback bits in the extent tree for this IO
2416 * end_page_writeback if the page has no more pending IO
2417 *
2418 * Scheduling is not allowed, so the extent state tree is expected
2419 * to have one and only one object corresponding to this IO.
2420 */
Chris Masond1310b22008-01-24 16:13:08 -05002421static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002422{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002423 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002424 u64 start;
2425 u64 end;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002426 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002427
Kent Overstreet2c30c712013-11-07 12:20:26 -08002428 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002429 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002430
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002431 /* We always issue full-page reads, but if some block
2432 * in a page fails to read, blk_update_request() will
2433 * advance bv_offset and adjust bv_len to compensate.
2434 * Print a warning for nonzero offsets, and an error
2435 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002436 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2437 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2438 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2439 "partial page write in btrfs with offset %u and length %u",
2440 bvec->bv_offset, bvec->bv_len);
2441 else
2442 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2443 "incomplete page write in btrfs with offset %u and "
2444 "length %u",
2445 bvec->bv_offset, bvec->bv_len);
2446 }
Chris Masond1310b22008-01-24 16:13:08 -05002447
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002448 start = page_offset(page);
2449 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002450
Jeff Mahoney87826df2012-02-15 16:23:57 +01002451 if (end_extent_writepage(page, err, start, end))
2452 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002453
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002454 end_page_writeback(page);
Kent Overstreet2c30c712013-11-07 12:20:26 -08002455 }
Chris Mason2b1f55b2008-09-24 11:48:04 -04002456
Chris Masond1310b22008-01-24 16:13:08 -05002457 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002458}
2459
Miao Xie883d0de2013-07-25 19:22:35 +08002460static void
2461endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2462 int uptodate)
2463{
2464 struct extent_state *cached = NULL;
2465 u64 end = start + len - 1;
2466
2467 if (uptodate && tree->track_uptodate)
2468 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2469 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2470}
2471
Chris Masond1310b22008-01-24 16:13:08 -05002472/*
2473 * after a readpage IO is done, we need to:
2474 * clear the uptodate bits on error
2475 * set the uptodate bits if things worked
2476 * set the page up to date if all extents in the tree are uptodate
2477 * clear the lock bit in the extent tree
2478 * unlock the page if there are no other extents locked for it
2479 *
2480 * Scheduling is not allowed, so the extent state tree is expected
2481 * to have one and only one object corresponding to this IO.
2482 */
Chris Masond1310b22008-01-24 16:13:08 -05002483static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002484{
Kent Overstreet2c30c712013-11-07 12:20:26 -08002485 struct bio_vec *bvec;
Chris Masond1310b22008-01-24 16:13:08 -05002486 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Miao Xiefacc8a22013-07-25 19:22:34 +08002487 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002488 struct extent_io_tree *tree;
Miao Xiefacc8a22013-07-25 19:22:34 +08002489 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002490 u64 start;
2491 u64 end;
Miao Xiefacc8a22013-07-25 19:22:34 +08002492 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002493 u64 extent_start = 0;
2494 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002495 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002496 int ret;
Kent Overstreet2c30c712013-11-07 12:20:26 -08002497 int i;
Chris Masond1310b22008-01-24 16:13:08 -05002498
Chris Masond20f7042008-12-08 16:58:54 -05002499 if (err)
2500 uptodate = 0;
2501
Kent Overstreet2c30c712013-11-07 12:20:26 -08002502 bio_for_each_segment_all(bvec, bio, i) {
Chris Masond1310b22008-01-24 16:13:08 -05002503 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002504 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002505
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002506 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Miao Xiec1dc0892014-09-12 18:43:56 +08002507 "mirror=%u\n", (u64)bio->bi_iter.bi_sector, err,
Chris Mason9be33952013-05-17 18:30:14 -04002508 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002509 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002510
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002511 /* We always issue full-page reads, but if some block
2512 * in a page fails to read, blk_update_request() will
2513 * advance bv_offset and adjust bv_len to compensate.
2514 * Print a warning for nonzero offsets, and an error
2515 * if they don't add up to a full page. */
Frank Holtonefe120a2013-12-20 11:37:06 -05002516 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE) {
2517 if (bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE)
2518 btrfs_err(BTRFS_I(page->mapping->host)->root->fs_info,
2519 "partial page read in btrfs with offset %u and length %u",
2520 bvec->bv_offset, bvec->bv_len);
2521 else
2522 btrfs_info(BTRFS_I(page->mapping->host)->root->fs_info,
2523 "incomplete page read in btrfs with offset %u and "
2524 "length %u",
2525 bvec->bv_offset, bvec->bv_len);
2526 }
Chris Masond1310b22008-01-24 16:13:08 -05002527
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002528 start = page_offset(page);
2529 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a22013-07-25 19:22:34 +08002530 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002531
Chris Mason9be33952013-05-17 18:30:14 -04002532 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002533 if (likely(uptodate && tree->ops &&
2534 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a22013-07-25 19:22:34 +08002535 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2536 page, start, end,
2537 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002538 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002539 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002540 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002541 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002542 }
Josef Bacikea466792012-03-26 21:57:36 -04002543
Miao Xief2a09da2013-07-25 19:22:33 +08002544 if (likely(uptodate))
2545 goto readpage_ok;
2546
2547 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002548 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002549 if (!ret && !err &&
2550 test_bit(BIO_UPTODATE, &bio->bi_flags))
2551 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002552 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002553 /*
2554 * The generic bio_readpage_error handles errors the
2555 * following way: If possible, new read requests are
2556 * created and submitted and will end up in
2557 * end_bio_extent_readpage as well (if we're lucky, not
2558 * in the !uptodate case). In that case it returns 0 and
2559 * we just go on with the next page in our bio. If it
2560 * can't handle the error it will return -EIO and we
2561 * remain responsible for that page.
2562 */
Miao Xiefacc8a22013-07-25 19:22:34 +08002563 ret = bio_readpage_error(bio, offset, page, start, end,
2564 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002565 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002566 uptodate =
2567 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002568 if (err)
2569 uptodate = 0;
Liu Bo38c1c2e2014-08-19 23:33:13 +08002570 offset += len;
Chris Mason7e383262008-04-09 16:28:12 -04002571 continue;
2572 }
2573 }
Miao Xief2a09da2013-07-25 19:22:33 +08002574readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002575 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002576 loff_t i_size = i_size_read(inode);
2577 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
Liu Boa583c022014-08-19 23:32:22 +08002578 unsigned off;
Josef Bacika71754f2013-06-17 17:14:39 -04002579
2580 /* Zero out the end if this page straddles i_size */
Liu Boa583c022014-08-19 23:32:22 +08002581 off = i_size & (PAGE_CACHE_SIZE-1);
2582 if (page->index == end_index && off)
2583 zero_user_segment(page, off, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002584 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002585 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002586 ClearPageUptodate(page);
2587 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002588 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002589 unlock_page(page);
Miao Xiefacc8a22013-07-25 19:22:34 +08002590 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002591
2592 if (unlikely(!uptodate)) {
2593 if (extent_len) {
2594 endio_readpage_release_extent(tree,
2595 extent_start,
2596 extent_len, 1);
2597 extent_start = 0;
2598 extent_len = 0;
2599 }
2600 endio_readpage_release_extent(tree, start,
2601 end - start + 1, 0);
2602 } else if (!extent_len) {
2603 extent_start = start;
2604 extent_len = end + 1 - start;
2605 } else if (extent_start + extent_len == start) {
2606 extent_len += end + 1 - start;
2607 } else {
2608 endio_readpage_release_extent(tree, extent_start,
2609 extent_len, uptodate);
2610 extent_start = start;
2611 extent_len = end + 1 - start;
2612 }
Kent Overstreet2c30c712013-11-07 12:20:26 -08002613 }
Chris Masond1310b22008-01-24 16:13:08 -05002614
Miao Xie883d0de2013-07-25 19:22:35 +08002615 if (extent_len)
2616 endio_readpage_release_extent(tree, extent_start, extent_len,
2617 uptodate);
Miao Xiefacc8a22013-07-25 19:22:34 +08002618 if (io_bio->end_io)
2619 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002620 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002621}
2622
Chris Mason9be33952013-05-17 18:30:14 -04002623/*
2624 * this allocates from the btrfs_bioset. We're returning a bio right now
2625 * but you can call btrfs_io_bio for the appropriate container_of magic
2626 */
Miao Xie88f794e2010-11-22 03:02:55 +00002627struct bio *
2628btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2629 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002630{
Miao Xiefacc8a22013-07-25 19:22:34 +08002631 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002632 struct bio *bio;
2633
Chris Mason9be33952013-05-17 18:30:14 -04002634 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002635
2636 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002637 while (!bio && (nr_vecs /= 2)) {
2638 bio = bio_alloc_bioset(gfp_flags,
2639 nr_vecs, btrfs_bioset);
2640 }
Chris Masond1310b22008-01-24 16:13:08 -05002641 }
2642
2643 if (bio) {
2644 bio->bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07002645 bio->bi_iter.bi_sector = first_sector;
Miao Xiefacc8a22013-07-25 19:22:34 +08002646 btrfs_bio = btrfs_io_bio(bio);
2647 btrfs_bio->csum = NULL;
2648 btrfs_bio->csum_allocated = NULL;
2649 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002650 }
2651 return bio;
2652}
2653
Chris Mason9be33952013-05-17 18:30:14 -04002654struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2655{
Miao Xie23ea8e52014-09-12 18:43:54 +08002656 struct btrfs_io_bio *btrfs_bio;
2657 struct bio *new;
Chris Mason9be33952013-05-17 18:30:14 -04002658
Miao Xie23ea8e52014-09-12 18:43:54 +08002659 new = bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2660 if (new) {
2661 btrfs_bio = btrfs_io_bio(new);
2662 btrfs_bio->csum = NULL;
2663 btrfs_bio->csum_allocated = NULL;
2664 btrfs_bio->end_io = NULL;
2665 }
2666 return new;
2667}
Chris Mason9be33952013-05-17 18:30:14 -04002668
2669/* this also allocates from the btrfs_bioset */
2670struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2671{
Miao Xiefacc8a22013-07-25 19:22:34 +08002672 struct btrfs_io_bio *btrfs_bio;
2673 struct bio *bio;
2674
2675 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2676 if (bio) {
2677 btrfs_bio = btrfs_io_bio(bio);
2678 btrfs_bio->csum = NULL;
2679 btrfs_bio->csum_allocated = NULL;
2680 btrfs_bio->end_io = NULL;
2681 }
2682 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002683}
2684
2685
Jeff Mahoney355808c2011-10-03 23:23:14 -04002686static int __must_check submit_one_bio(int rw, struct bio *bio,
2687 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002688{
Chris Masond1310b22008-01-24 16:13:08 -05002689 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002690 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2691 struct page *page = bvec->bv_page;
2692 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002693 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002694
Miao Xie4eee4fa2012-12-21 09:17:45 +00002695 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002696
David Woodhouse902b22f2008-08-20 08:51:49 -04002697 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002698
2699 bio_get(bio);
2700
Chris Mason065631f2008-02-20 12:07:25 -05002701 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002702 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002703 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002704 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002705 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002706
Chris Masond1310b22008-01-24 16:13:08 -05002707 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2708 ret = -EOPNOTSUPP;
2709 bio_put(bio);
2710 return ret;
2711}
2712
David Woodhouse64a16702009-07-15 23:29:37 +01002713static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002714 unsigned long offset, size_t size, struct bio *bio,
2715 unsigned long bio_flags)
2716{
2717 int ret = 0;
2718 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002719 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002720 bio_flags);
2721 BUG_ON(ret < 0);
2722 return ret;
2723
2724}
2725
Chris Masond1310b22008-01-24 16:13:08 -05002726static int submit_extent_page(int rw, struct extent_io_tree *tree,
2727 struct page *page, sector_t sector,
2728 size_t size, unsigned long offset,
2729 struct block_device *bdev,
2730 struct bio **bio_ret,
2731 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002732 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002733 int mirror_num,
2734 unsigned long prev_bio_flags,
2735 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002736{
2737 int ret = 0;
2738 struct bio *bio;
2739 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002740 int contig = 0;
2741 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2742 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002743 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002744
2745 if (bio_ret && *bio_ret) {
2746 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002747 if (old_compressed)
Kent Overstreet4f024f32013-10-11 15:44:27 -07002748 contig = bio->bi_iter.bi_sector == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002749 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002750 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002751
2752 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002753 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002754 bio_add_page(bio, page, page_size, offset) < page_size) {
2755 ret = submit_one_bio(rw, bio, mirror_num,
2756 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002757 if (ret < 0)
2758 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002759 bio = NULL;
2760 } else {
2761 return 0;
2762 }
2763 }
Chris Masonc8b97812008-10-29 14:49:59 -04002764 if (this_compressed)
2765 nr = BIO_MAX_PAGES;
2766 else
2767 nr = bio_get_nr_vecs(bdev);
2768
Miao Xie88f794e2010-11-22 03:02:55 +00002769 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002770 if (!bio)
2771 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002772
Chris Masonc8b97812008-10-29 14:49:59 -04002773 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002774 bio->bi_end_io = end_io_func;
2775 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002776
Chris Masond3977122009-01-05 21:25:51 -05002777 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002778 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002779 else
Chris Masonc8b97812008-10-29 14:49:59 -04002780 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002781
2782 return ret;
2783}
2784
Eric Sandeen48a3b632013-04-25 20:41:01 +00002785static void attach_extent_buffer_page(struct extent_buffer *eb,
2786 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002787{
2788 if (!PagePrivate(page)) {
2789 SetPagePrivate(page);
2790 page_cache_get(page);
2791 set_page_private(page, (unsigned long)eb);
2792 } else {
2793 WARN_ON(page->private != (unsigned long)eb);
2794 }
2795}
2796
Chris Masond1310b22008-01-24 16:13:08 -05002797void set_page_extent_mapped(struct page *page)
2798{
2799 if (!PagePrivate(page)) {
2800 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002801 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002802 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002803 }
2804}
2805
Miao Xie125bac012013-07-25 19:22:37 +08002806static struct extent_map *
2807__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2808 u64 start, u64 len, get_extent_t *get_extent,
2809 struct extent_map **em_cached)
2810{
2811 struct extent_map *em;
2812
2813 if (em_cached && *em_cached) {
2814 em = *em_cached;
Filipe Mananacbc0e922014-02-25 14:15:12 +00002815 if (extent_map_in_tree(em) && start >= em->start &&
Miao Xie125bac012013-07-25 19:22:37 +08002816 start < extent_map_end(em)) {
2817 atomic_inc(&em->refs);
2818 return em;
2819 }
2820
2821 free_extent_map(em);
2822 *em_cached = NULL;
2823 }
2824
2825 em = get_extent(inode, page, pg_offset, start, len, 0);
2826 if (em_cached && !IS_ERR_OR_NULL(em)) {
2827 BUG_ON(*em_cached);
2828 atomic_inc(&em->refs);
2829 *em_cached = em;
2830 }
2831 return em;
2832}
Chris Masond1310b22008-01-24 16:13:08 -05002833/*
2834 * basic readpage implementation. Locked extent state structs are inserted
2835 * into the tree that are removed when the IO is done (by the end_io
2836 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002837 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002838 */
Miao Xie99740902013-07-25 19:22:36 +08002839static int __do_readpage(struct extent_io_tree *tree,
2840 struct page *page,
2841 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002842 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002843 struct bio **bio, int mirror_num,
2844 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002845{
2846 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002847 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002848 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2849 u64 end;
2850 u64 cur = start;
2851 u64 extent_offset;
2852 u64 last_byte = i_size_read(inode);
2853 u64 block_start;
2854 u64 cur_end;
2855 sector_t sector;
2856 struct extent_map *em;
2857 struct block_device *bdev;
2858 int ret;
2859 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002860 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002861 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002862 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002863 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002864 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002865 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002866
2867 set_page_extent_mapped(page);
2868
Miao Xie99740902013-07-25 19:22:36 +08002869 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002870 if (!PageUptodate(page)) {
2871 if (cleancache_get_page(page) == 0) {
2872 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002873 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002874 goto out;
2875 }
2876 }
2877
Chris Masonc8b97812008-10-29 14:49:59 -04002878 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2879 char *userpage;
2880 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2881
2882 if (zero_offset) {
2883 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002884 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002885 memset(userpage + zero_offset, 0, iosize);
2886 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002887 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002888 }
2889 }
Chris Masond1310b22008-01-24 16:13:08 -05002890 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002891 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2892
Chris Masond1310b22008-01-24 16:13:08 -05002893 if (cur >= last_byte) {
2894 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002895 struct extent_state *cached = NULL;
2896
David Sterba306e16c2011-04-19 14:29:38 +02002897 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002898 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002899 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002900 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002901 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002902 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002903 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002904 if (!parent_locked)
2905 unlock_extent_cached(tree, cur,
2906 cur + iosize - 1,
2907 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002908 break;
2909 }
Miao Xie125bac012013-07-25 19:22:37 +08002910 em = __get_extent_map(inode, page, pg_offset, cur,
2911 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002912 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002913 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002914 if (!parent_locked)
2915 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002916 break;
2917 }
Chris Masond1310b22008-01-24 16:13:08 -05002918 extent_offset = cur - em->start;
2919 BUG_ON(extent_map_end(em) <= cur);
2920 BUG_ON(end < cur);
2921
Li Zefan261507a02010-12-17 14:21:50 +08002922 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002923 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002924 extent_set_compress_type(&this_bio_flag,
2925 em->compress_type);
2926 }
Chris Masonc8b97812008-10-29 14:49:59 -04002927
Chris Masond1310b22008-01-24 16:13:08 -05002928 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2929 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002930 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002931 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2932 disk_io_size = em->block_len;
2933 sector = em->block_start >> 9;
2934 } else {
2935 sector = (em->block_start + extent_offset) >> 9;
2936 disk_io_size = iosize;
2937 }
Chris Masond1310b22008-01-24 16:13:08 -05002938 bdev = em->bdev;
2939 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002940 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2941 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002942 free_extent_map(em);
2943 em = NULL;
2944
2945 /* we've found a hole, just zero and go on */
2946 if (block_start == EXTENT_MAP_HOLE) {
2947 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002948 struct extent_state *cached = NULL;
2949
Cong Wang7ac687d2011-11-25 23:14:28 +08002950 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002951 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002952 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002953 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002954
2955 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002956 &cached, GFP_NOFS);
2957 unlock_extent_cached(tree, cur, cur + iosize - 1,
2958 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002959 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002960 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002961 continue;
2962 }
2963 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002964 if (test_range_bit(tree, cur, cur_end,
2965 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002966 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002967 if (!parent_locked)
2968 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002969 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002970 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002971 continue;
2972 }
Chris Mason70dec802008-01-29 09:59:12 -05002973 /* we have an inline extent but it didn't get marked up
2974 * to date. Error out
2975 */
2976 if (block_start == EXTENT_MAP_INLINE) {
2977 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002978 if (!parent_locked)
2979 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002980 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002981 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002982 continue;
2983 }
Chris Masond1310b22008-01-24 16:13:08 -05002984
Josef Bacikc8f2f242013-02-11 11:33:00 -05002985 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002986 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002987 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002988 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002989 end_bio_extent_readpage, mirror_num,
2990 *bio_flags,
2991 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002992 if (!ret) {
2993 nr++;
2994 *bio_flags = this_bio_flag;
2995 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002996 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002997 if (!parent_locked)
2998 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04002999 }
Chris Masond1310b22008-01-24 16:13:08 -05003000 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02003001 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003002 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06003003out:
Chris Masond1310b22008-01-24 16:13:08 -05003004 if (!nr) {
3005 if (!PageError(page))
3006 SetPageUptodate(page);
3007 unlock_page(page);
3008 }
3009 return 0;
3010}
3011
Miao Xie99740902013-07-25 19:22:36 +08003012static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
3013 struct page *pages[], int nr_pages,
3014 u64 start, u64 end,
3015 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003016 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003017 struct bio **bio, int mirror_num,
3018 unsigned long *bio_flags, int rw)
3019{
3020 struct inode *inode;
3021 struct btrfs_ordered_extent *ordered;
3022 int index;
3023
3024 inode = pages[0]->mapping->host;
3025 while (1) {
3026 lock_extent(tree, start, end);
3027 ordered = btrfs_lookup_ordered_range(inode, start,
3028 end - start + 1);
3029 if (!ordered)
3030 break;
3031 unlock_extent(tree, start, end);
3032 btrfs_start_ordered_extent(inode, ordered, 1);
3033 btrfs_put_ordered_extent(ordered);
3034 }
3035
3036 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08003037 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
3038 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003039 page_cache_release(pages[index]);
3040 }
3041}
3042
3043static void __extent_readpages(struct extent_io_tree *tree,
3044 struct page *pages[],
3045 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08003046 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003047 struct bio **bio, int mirror_num,
3048 unsigned long *bio_flags, int rw)
3049{
Stefan Behrens35a36212013-08-14 18:12:25 +02003050 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08003051 u64 end = 0;
3052 u64 page_start;
3053 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02003054 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08003055
3056 for (index = 0; index < nr_pages; index++) {
3057 page_start = page_offset(pages[index]);
3058 if (!end) {
3059 start = page_start;
3060 end = start + PAGE_CACHE_SIZE - 1;
3061 first_index = index;
3062 } else if (end + 1 == page_start) {
3063 end += PAGE_CACHE_SIZE;
3064 } else {
3065 __do_contiguous_readpages(tree, &pages[first_index],
3066 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003067 end, get_extent, em_cached,
3068 bio, mirror_num, bio_flags,
3069 rw);
Miao Xie99740902013-07-25 19:22:36 +08003070 start = page_start;
3071 end = start + PAGE_CACHE_SIZE - 1;
3072 first_index = index;
3073 }
3074 }
3075
3076 if (end)
3077 __do_contiguous_readpages(tree, &pages[first_index],
3078 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08003079 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08003080 mirror_num, bio_flags, rw);
3081}
3082
3083static int __extent_read_full_page(struct extent_io_tree *tree,
3084 struct page *page,
3085 get_extent_t *get_extent,
3086 struct bio **bio, int mirror_num,
3087 unsigned long *bio_flags, int rw)
3088{
3089 struct inode *inode = page->mapping->host;
3090 struct btrfs_ordered_extent *ordered;
3091 u64 start = page_offset(page);
3092 u64 end = start + PAGE_CACHE_SIZE - 1;
3093 int ret;
3094
3095 while (1) {
3096 lock_extent(tree, start, end);
3097 ordered = btrfs_lookup_ordered_extent(inode, start);
3098 if (!ordered)
3099 break;
3100 unlock_extent(tree, start, end);
3101 btrfs_start_ordered_extent(inode, ordered, 1);
3102 btrfs_put_ordered_extent(ordered);
3103 }
3104
Miao Xie125bac012013-07-25 19:22:37 +08003105 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3106 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003107 return ret;
3108}
3109
Chris Masond1310b22008-01-24 16:13:08 -05003110int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003111 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003112{
3113 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003114 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003115 int ret;
3116
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003117 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003118 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003119 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003120 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003121 return ret;
3122}
Chris Masond1310b22008-01-24 16:13:08 -05003123
Mark Fasheh4b384312013-08-06 11:42:50 -07003124int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3125 get_extent_t *get_extent, int mirror_num)
3126{
3127 struct bio *bio = NULL;
3128 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3129 int ret;
3130
3131 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3132 &bio_flags, READ);
3133 if (bio)
3134 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3135 return ret;
3136}
3137
Chris Mason11c83492009-04-20 15:50:09 -04003138static noinline void update_nr_written(struct page *page,
3139 struct writeback_control *wbc,
3140 unsigned long nr_written)
3141{
3142 wbc->nr_to_write -= nr_written;
3143 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3144 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3145 page->mapping->writeback_index = page->index + nr_written;
3146}
3147
Chris Masond1310b22008-01-24 16:13:08 -05003148/*
Chris Mason40f76582014-05-21 13:35:51 -07003149 * helper for __extent_writepage, doing all of the delayed allocation setup.
3150 *
3151 * This returns 1 if our fill_delalloc function did all the work required
3152 * to write the page (copy into inline extent). In this case the IO has
3153 * been started and the page is already unlocked.
3154 *
3155 * This returns 0 if all went well (page still locked)
3156 * This returns < 0 if there were errors (page still locked)
Chris Masond1310b22008-01-24 16:13:08 -05003157 */
Chris Mason40f76582014-05-21 13:35:51 -07003158static noinline_for_stack int writepage_delalloc(struct inode *inode,
3159 struct page *page, struct writeback_control *wbc,
3160 struct extent_page_data *epd,
3161 u64 delalloc_start,
3162 unsigned long *nr_written)
Chris Masond1310b22008-01-24 16:13:08 -05003163{
Chris Mason40f76582014-05-21 13:35:51 -07003164 struct extent_io_tree *tree = epd->tree;
3165 u64 page_end = delalloc_start + PAGE_CACHE_SIZE - 1;
3166 u64 nr_delalloc;
3167 u64 delalloc_to_write = 0;
3168 u64 delalloc_end = 0;
3169 int ret;
3170 int page_started = 0;
3171
3172 if (epd->extent_locked || !tree->ops || !tree->ops->fill_delalloc)
3173 return 0;
3174
3175 while (delalloc_end < page_end) {
3176 nr_delalloc = find_lock_delalloc_range(inode, tree,
3177 page,
3178 &delalloc_start,
3179 &delalloc_end,
3180 128 * 1024 * 1024);
3181 if (nr_delalloc == 0) {
3182 delalloc_start = delalloc_end + 1;
3183 continue;
3184 }
3185 ret = tree->ops->fill_delalloc(inode, page,
3186 delalloc_start,
3187 delalloc_end,
3188 &page_started,
3189 nr_written);
3190 /* File system has been set read-only */
3191 if (ret) {
3192 SetPageError(page);
3193 /* fill_delalloc should be return < 0 for error
3194 * but just in case, we use > 0 here meaning the
3195 * IO is started, so we don't want to return > 0
3196 * unless things are going well.
3197 */
3198 ret = ret < 0 ? ret : -EIO;
3199 goto done;
3200 }
3201 /*
3202 * delalloc_end is already one less than the total
3203 * length, so we don't subtract one from
3204 * PAGE_CACHE_SIZE
3205 */
3206 delalloc_to_write += (delalloc_end - delalloc_start +
3207 PAGE_CACHE_SIZE) >>
3208 PAGE_CACHE_SHIFT;
3209 delalloc_start = delalloc_end + 1;
3210 }
3211 if (wbc->nr_to_write < delalloc_to_write) {
3212 int thresh = 8192;
3213
3214 if (delalloc_to_write < thresh * 2)
3215 thresh = delalloc_to_write;
3216 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3217 thresh);
3218 }
3219
3220 /* did the fill delalloc function already unlock and start
3221 * the IO?
3222 */
3223 if (page_started) {
3224 /*
3225 * we've unlocked the page, so we can't update
3226 * the mapping's writeback index, just update
3227 * nr_to_write.
3228 */
3229 wbc->nr_to_write -= *nr_written;
3230 return 1;
3231 }
3232
3233 ret = 0;
3234
3235done:
3236 return ret;
3237}
3238
3239/*
3240 * helper for __extent_writepage. This calls the writepage start hooks,
3241 * and does the loop to map the page into extents and bios.
3242 *
3243 * We return 1 if the IO is started and the page is unlocked,
3244 * 0 if all went well (page still locked)
3245 * < 0 if there were errors (page still locked)
3246 */
3247static noinline_for_stack int __extent_writepage_io(struct inode *inode,
3248 struct page *page,
3249 struct writeback_control *wbc,
3250 struct extent_page_data *epd,
3251 loff_t i_size,
3252 unsigned long nr_written,
3253 int write_flags, int *nr_ret)
3254{
Chris Masond1310b22008-01-24 16:13:08 -05003255 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003256 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003257 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3258 u64 end;
3259 u64 cur = start;
3260 u64 extent_offset;
Chris Masond1310b22008-01-24 16:13:08 -05003261 u64 block_start;
3262 u64 iosize;
3263 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003264 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003265 struct extent_map *em;
3266 struct block_device *bdev;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003267 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003268 size_t blocksize;
Chris Mason40f76582014-05-21 13:35:51 -07003269 int ret = 0;
3270 int nr = 0;
3271 bool compressed;
Chris Masond1310b22008-01-24 16:13:08 -05003272
Chris Mason247e7432008-07-17 12:53:51 -04003273 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003274 ret = tree->ops->writepage_start_hook(page, start,
3275 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003276 if (ret) {
3277 /* Fixup worker will requeue */
3278 if (ret == -EBUSY)
3279 wbc->pages_skipped++;
3280 else
3281 redirty_page_for_writepage(wbc, page);
Chris Mason40f76582014-05-21 13:35:51 -07003282
Chris Mason11c83492009-04-20 15:50:09 -04003283 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003284 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003285 ret = 1;
Chris Mason11c83492009-04-20 15:50:09 -04003286 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003287 }
3288 }
3289
Chris Mason11c83492009-04-20 15:50:09 -04003290 /*
3291 * we don't want to touch the inode after unlocking the page,
3292 * so we update the mapping writeback index now
3293 */
3294 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003295
Chris Masond1310b22008-01-24 16:13:08 -05003296 end = page_end;
Chris Mason40f76582014-05-21 13:35:51 -07003297 if (i_size <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003298 if (tree->ops && tree->ops->writepage_end_io_hook)
3299 tree->ops->writepage_end_io_hook(page, start,
3300 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003301 goto done;
3302 }
3303
Chris Masond1310b22008-01-24 16:13:08 -05003304 blocksize = inode->i_sb->s_blocksize;
3305
3306 while (cur <= end) {
Chris Mason40f76582014-05-21 13:35:51 -07003307 u64 em_end;
3308 if (cur >= i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003309 if (tree->ops && tree->ops->writepage_end_io_hook)
3310 tree->ops->writepage_end_io_hook(page, cur,
3311 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003312 break;
3313 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003314 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003315 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003316 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003317 SetPageError(page);
Filipe Manana61391d52014-05-09 17:17:40 +01003318 ret = PTR_ERR_OR_ZERO(em);
Chris Masond1310b22008-01-24 16:13:08 -05003319 break;
3320 }
3321
3322 extent_offset = cur - em->start;
Chris Mason40f76582014-05-21 13:35:51 -07003323 em_end = extent_map_end(em);
3324 BUG_ON(em_end <= cur);
Chris Masond1310b22008-01-24 16:13:08 -05003325 BUG_ON(end < cur);
Chris Mason40f76582014-05-21 13:35:51 -07003326 iosize = min(em_end - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003327 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003328 sector = (em->block_start + extent_offset) >> 9;
3329 bdev = em->bdev;
3330 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003331 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003332 free_extent_map(em);
3333 em = NULL;
3334
Chris Masonc8b97812008-10-29 14:49:59 -04003335 /*
3336 * compressed and inline extents are written through other
3337 * paths in the FS
3338 */
3339 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003340 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003341 /*
3342 * end_io notification does not happen here for
3343 * compressed extents
3344 */
3345 if (!compressed && tree->ops &&
3346 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003347 tree->ops->writepage_end_io_hook(page, cur,
3348 cur + iosize - 1,
3349 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003350 else if (compressed) {
3351 /* we don't want to end_page_writeback on
3352 * a compressed extent. this happens
3353 * elsewhere
3354 */
3355 nr++;
3356 }
3357
3358 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003359 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003360 continue;
3361 }
Chris Masonc8b97812008-10-29 14:49:59 -04003362
Chris Masond1310b22008-01-24 16:13:08 -05003363 if (tree->ops && tree->ops->writepage_io_hook) {
3364 ret = tree->ops->writepage_io_hook(page, cur,
3365 cur + iosize - 1);
3366 } else {
3367 ret = 0;
3368 }
Chris Mason1259ab72008-05-12 13:39:03 -04003369 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003370 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003371 } else {
Chris Mason40f76582014-05-21 13:35:51 -07003372 unsigned long max_nr = (i_size >> PAGE_CACHE_SHIFT) + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003373
Chris Masond1310b22008-01-24 16:13:08 -05003374 set_range_writeback(tree, cur, cur + iosize - 1);
3375 if (!PageWriteback(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05003376 btrfs_err(BTRFS_I(inode)->root->fs_info,
3377 "page %lu not writeback, cur %llu end %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003378 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003379 }
3380
Chris Masonffbd5172009-04-20 15:50:09 -04003381 ret = submit_extent_page(write_flags, tree, page,
3382 sector, iosize, pg_offset,
3383 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003384 end_bio_extent_writepage,
3385 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003386 if (ret)
3387 SetPageError(page);
3388 }
3389 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003390 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003391 nr++;
3392 }
3393done:
Chris Mason40f76582014-05-21 13:35:51 -07003394 *nr_ret = nr;
Chris Mason771ed682008-11-06 22:02:51 -05003395
Chris Mason11c83492009-04-20 15:50:09 -04003396done_unlocked:
3397
Chris Mason2c64c532009-09-02 15:04:12 -04003398 /* drop our reference on any cached states */
3399 free_extent_state(cached_state);
Chris Mason40f76582014-05-21 13:35:51 -07003400 return ret;
3401}
3402
3403/*
3404 * the writepage semantics are similar to regular writepage. extent
3405 * records are inserted to lock ranges in the tree, and as dirty areas
3406 * are found, they are marked writeback. Then the lock bits are removed
3407 * and the end_io handler clears the writeback ranges
3408 */
3409static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3410 void *data)
3411{
3412 struct inode *inode = page->mapping->host;
3413 struct extent_page_data *epd = data;
3414 u64 start = page_offset(page);
3415 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3416 int ret;
3417 int nr = 0;
3418 size_t pg_offset = 0;
3419 loff_t i_size = i_size_read(inode);
3420 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3421 int write_flags;
3422 unsigned long nr_written = 0;
3423
3424 if (wbc->sync_mode == WB_SYNC_ALL)
3425 write_flags = WRITE_SYNC;
3426 else
3427 write_flags = WRITE;
3428
3429 trace___extent_writepage(page, inode, wbc);
3430
3431 WARN_ON(!PageLocked(page));
3432
3433 ClearPageError(page);
3434
3435 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
3436 if (page->index > end_index ||
3437 (page->index == end_index && !pg_offset)) {
3438 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
3439 unlock_page(page);
3440 return 0;
3441 }
3442
3443 if (page->index == end_index) {
3444 char *userpage;
3445
3446 userpage = kmap_atomic(page);
3447 memset(userpage + pg_offset, 0,
3448 PAGE_CACHE_SIZE - pg_offset);
3449 kunmap_atomic(userpage);
3450 flush_dcache_page(page);
3451 }
3452
3453 pg_offset = 0;
3454
3455 set_page_extent_mapped(page);
3456
3457 ret = writepage_delalloc(inode, page, wbc, epd, start, &nr_written);
3458 if (ret == 1)
3459 goto done_unlocked;
3460 if (ret)
3461 goto done;
3462
3463 ret = __extent_writepage_io(inode, page, wbc, epd,
3464 i_size, nr_written, write_flags, &nr);
3465 if (ret == 1)
3466 goto done_unlocked;
3467
3468done:
Chris Masone6dcd2d2008-07-17 12:53:50 -04003469 if (nr == 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003470 /* make sure the mapping tag for page dirty gets cleared */
Chris Mason771ed682008-11-06 22:02:51 -05003471 set_page_writeback(page);
3472 end_page_writeback(page);
3473 }
Filipe Manana61391d52014-05-09 17:17:40 +01003474 if (PageError(page)) {
3475 ret = ret < 0 ? ret : -EIO;
3476 end_extent_writepage(page, ret, start, page_end);
3477 }
Christoph Hellwigb2950862008-12-02 09:54:17 -05003478 unlock_page(page);
Chris Mason40f76582014-05-21 13:35:51 -07003479 return ret;
Chris Mason4bef0842008-09-08 11:18:08 -04003480
3481done_unlocked:
Chris Masond1310b22008-01-24 16:13:08 -05003482 return 0;
3483}
3484
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003485void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003486{
NeilBrown74316202014-07-07 15:16:04 +10003487 wait_on_bit_io(&eb->bflags, EXTENT_BUFFER_WRITEBACK,
3488 TASK_UNINTERRUPTIBLE);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003489}
3490
Chris Mason0e378df2014-05-19 20:55:27 -07003491static noinline_for_stack int
3492lock_extent_buffer_for_io(struct extent_buffer *eb,
3493 struct btrfs_fs_info *fs_info,
3494 struct extent_page_data *epd)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003495{
3496 unsigned long i, num_pages;
3497 int flush = 0;
3498 int ret = 0;
3499
3500 if (!btrfs_try_tree_write_lock(eb)) {
3501 flush = 1;
3502 flush_write_bio(epd);
3503 btrfs_tree_lock(eb);
3504 }
3505
3506 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3507 btrfs_tree_unlock(eb);
3508 if (!epd->sync_io)
3509 return 0;
3510 if (!flush) {
3511 flush_write_bio(epd);
3512 flush = 1;
3513 }
Chris Masona098d8e2012-03-21 12:09:56 -04003514 while (1) {
3515 wait_on_extent_buffer_writeback(eb);
3516 btrfs_tree_lock(eb);
3517 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3518 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003519 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003520 }
3521 }
3522
Josef Bacik51561ff2012-07-20 16:25:24 -04003523 /*
3524 * We need to do this to prevent races in people who check if the eb is
3525 * under IO since we can end up having no IO bits set for a short period
3526 * of time.
3527 */
3528 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003529 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3530 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003531 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003532 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003533 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3534 -eb->len,
3535 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003536 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003537 } else {
3538 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003539 }
3540
3541 btrfs_tree_unlock(eb);
3542
3543 if (!ret)
3544 return ret;
3545
3546 num_pages = num_extent_pages(eb->start, eb->len);
3547 for (i = 0; i < num_pages; i++) {
3548 struct page *p = extent_buffer_page(eb, i);
3549
3550 if (!trylock_page(p)) {
3551 if (!flush) {
3552 flush_write_bio(epd);
3553 flush = 1;
3554 }
3555 lock_page(p);
3556 }
3557 }
3558
3559 return ret;
3560}
3561
3562static void end_extent_buffer_writeback(struct extent_buffer *eb)
3563{
3564 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003565 smp_mb__after_atomic();
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003566 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3567}
3568
3569static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3570{
Kent Overstreet2c30c712013-11-07 12:20:26 -08003571 struct bio_vec *bvec;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003572 struct extent_buffer *eb;
Kent Overstreet2c30c712013-11-07 12:20:26 -08003573 int i, done;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003574
Kent Overstreet2c30c712013-11-07 12:20:26 -08003575 bio_for_each_segment_all(bvec, bio, i) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003576 struct page *page = bvec->bv_page;
3577
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003578 eb = (struct extent_buffer *)page->private;
3579 BUG_ON(!eb);
3580 done = atomic_dec_and_test(&eb->io_pages);
3581
Kent Overstreet2c30c712013-11-07 12:20:26 -08003582 if (err || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003583 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3584 ClearPageUptodate(page);
3585 SetPageError(page);
3586 }
3587
3588 end_page_writeback(page);
3589
3590 if (!done)
3591 continue;
3592
3593 end_extent_buffer_writeback(eb);
Kent Overstreet2c30c712013-11-07 12:20:26 -08003594 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003595
3596 bio_put(bio);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003597}
3598
Chris Mason0e378df2014-05-19 20:55:27 -07003599static noinline_for_stack int write_one_eb(struct extent_buffer *eb,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003600 struct btrfs_fs_info *fs_info,
3601 struct writeback_control *wbc,
3602 struct extent_page_data *epd)
3603{
3604 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
Josef Bacikf28491e2013-12-16 13:24:27 -05003605 struct extent_io_tree *tree = &BTRFS_I(fs_info->btree_inode)->io_tree;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003606 u64 offset = eb->start;
3607 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003608 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003609 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003610 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003611
3612 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3613 num_pages = num_extent_pages(eb->start, eb->len);
3614 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003615 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3616 bio_flags = EXTENT_BIO_TREE_LOG;
3617
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003618 for (i = 0; i < num_pages; i++) {
3619 struct page *p = extent_buffer_page(eb, i);
3620
3621 clear_page_dirty_for_io(p);
3622 set_page_writeback(p);
Josef Bacikf28491e2013-12-16 13:24:27 -05003623 ret = submit_extent_page(rw, tree, p, offset >> 9,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003624 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3625 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003626 0, epd->bio_flags, bio_flags);
3627 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003628 if (ret) {
3629 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3630 SetPageError(p);
3631 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3632 end_extent_buffer_writeback(eb);
3633 ret = -EIO;
3634 break;
3635 }
3636 offset += PAGE_CACHE_SIZE;
3637 update_nr_written(p, wbc, 1);
3638 unlock_page(p);
3639 }
3640
3641 if (unlikely(ret)) {
3642 for (; i < num_pages; i++) {
3643 struct page *p = extent_buffer_page(eb, i);
3644 unlock_page(p);
3645 }
3646 }
3647
3648 return ret;
3649}
3650
3651int btree_write_cache_pages(struct address_space *mapping,
3652 struct writeback_control *wbc)
3653{
3654 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3655 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3656 struct extent_buffer *eb, *prev_eb = NULL;
3657 struct extent_page_data epd = {
3658 .bio = NULL,
3659 .tree = tree,
3660 .extent_locked = 0,
3661 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003662 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003663 };
3664 int ret = 0;
3665 int done = 0;
3666 int nr_to_write_done = 0;
3667 struct pagevec pvec;
3668 int nr_pages;
3669 pgoff_t index;
3670 pgoff_t end; /* Inclusive */
3671 int scanned = 0;
3672 int tag;
3673
3674 pagevec_init(&pvec, 0);
3675 if (wbc->range_cyclic) {
3676 index = mapping->writeback_index; /* Start from prev offset */
3677 end = -1;
3678 } else {
3679 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3680 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3681 scanned = 1;
3682 }
3683 if (wbc->sync_mode == WB_SYNC_ALL)
3684 tag = PAGECACHE_TAG_TOWRITE;
3685 else
3686 tag = PAGECACHE_TAG_DIRTY;
3687retry:
3688 if (wbc->sync_mode == WB_SYNC_ALL)
3689 tag_pages_for_writeback(mapping, index, end);
3690 while (!done && !nr_to_write_done && (index <= end) &&
3691 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3692 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3693 unsigned i;
3694
3695 scanned = 1;
3696 for (i = 0; i < nr_pages; i++) {
3697 struct page *page = pvec.pages[i];
3698
3699 if (!PagePrivate(page))
3700 continue;
3701
3702 if (!wbc->range_cyclic && page->index > end) {
3703 done = 1;
3704 break;
3705 }
3706
Josef Bacikb5bae262012-09-14 13:43:01 -04003707 spin_lock(&mapping->private_lock);
3708 if (!PagePrivate(page)) {
3709 spin_unlock(&mapping->private_lock);
3710 continue;
3711 }
3712
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003713 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003714
3715 /*
3716 * Shouldn't happen and normally this would be a BUG_ON
3717 * but no sense in crashing the users box for something
3718 * we can survive anyway.
3719 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303720 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003721 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003722 continue;
3723 }
3724
Josef Bacikb5bae262012-09-14 13:43:01 -04003725 if (eb == prev_eb) {
3726 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003727 continue;
3728 }
3729
Josef Bacikb5bae262012-09-14 13:43:01 -04003730 ret = atomic_inc_not_zero(&eb->refs);
3731 spin_unlock(&mapping->private_lock);
3732 if (!ret)
3733 continue;
3734
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003735 prev_eb = eb;
3736 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3737 if (!ret) {
3738 free_extent_buffer(eb);
3739 continue;
3740 }
3741
3742 ret = write_one_eb(eb, fs_info, wbc, &epd);
3743 if (ret) {
3744 done = 1;
3745 free_extent_buffer(eb);
3746 break;
3747 }
3748 free_extent_buffer(eb);
3749
3750 /*
3751 * the filesystem may choose to bump up nr_to_write.
3752 * We have to make sure to honor the new nr_to_write
3753 * at any time
3754 */
3755 nr_to_write_done = wbc->nr_to_write <= 0;
3756 }
3757 pagevec_release(&pvec);
3758 cond_resched();
3759 }
3760 if (!scanned && !done) {
3761 /*
3762 * We hit the last page and there is more work to be done: wrap
3763 * back to the start of the file
3764 */
3765 scanned = 1;
3766 index = 0;
3767 goto retry;
3768 }
3769 flush_write_bio(&epd);
3770 return ret;
3771}
3772
Chris Masond1310b22008-01-24 16:13:08 -05003773/**
3774 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
3775 * @mapping: address space structure to write
3776 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3777 * @writepage: function called for each page
3778 * @data: data passed to writepage function
3779 *
3780 * If a page is already under I/O, write_cache_pages() skips it, even
3781 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3782 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3783 * and msync() need to guarantee that all the data which was dirty at the time
3784 * the call was made get new I/O started against them. If wbc->sync_mode is
3785 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3786 * existing IO to complete.
3787 */
Chris Mason4bef0842008-09-08 11:18:08 -04003788static int extent_write_cache_pages(struct extent_io_tree *tree,
3789 struct address_space *mapping,
3790 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003791 writepage_t writepage, void *data,
3792 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003793{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003794 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003795 int ret = 0;
3796 int done = 0;
Filipe Manana61391d52014-05-09 17:17:40 +01003797 int err = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003798 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003799 struct pagevec pvec;
3800 int nr_pages;
3801 pgoff_t index;
3802 pgoff_t end; /* Inclusive */
3803 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003804 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003805
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003806 /*
3807 * We have to hold onto the inode so that ordered extents can do their
3808 * work when the IO finishes. The alternative to this is failing to add
3809 * an ordered extent if the igrab() fails there and that is a huge pain
3810 * to deal with, so instead just hold onto the inode throughout the
3811 * writepages operation. If it fails here we are freeing up the inode
3812 * anyway and we'd rather not waste our time writing out stuff that is
3813 * going to be truncated anyway.
3814 */
3815 if (!igrab(inode))
3816 return 0;
3817
Chris Masond1310b22008-01-24 16:13:08 -05003818 pagevec_init(&pvec, 0);
3819 if (wbc->range_cyclic) {
3820 index = mapping->writeback_index; /* Start from prev offset */
3821 end = -1;
3822 } else {
3823 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3824 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003825 scanned = 1;
3826 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003827 if (wbc->sync_mode == WB_SYNC_ALL)
3828 tag = PAGECACHE_TAG_TOWRITE;
3829 else
3830 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003831retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003832 if (wbc->sync_mode == WB_SYNC_ALL)
3833 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003834 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003835 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3836 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003837 unsigned i;
3838
3839 scanned = 1;
3840 for (i = 0; i < nr_pages; i++) {
3841 struct page *page = pvec.pages[i];
3842
3843 /*
3844 * At this point we hold neither mapping->tree_lock nor
3845 * lock on the page itself: the page may be truncated or
3846 * invalidated (changing page->mapping to NULL), or even
3847 * swizzled back from swapper_space to tmpfs file
3848 * mapping
3849 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003850 if (!trylock_page(page)) {
3851 flush_fn(data);
3852 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003853 }
Chris Masond1310b22008-01-24 16:13:08 -05003854
3855 if (unlikely(page->mapping != mapping)) {
3856 unlock_page(page);
3857 continue;
3858 }
3859
3860 if (!wbc->range_cyclic && page->index > end) {
3861 done = 1;
3862 unlock_page(page);
3863 continue;
3864 }
3865
Chris Masond2c3f4f2008-11-19 12:44:22 -05003866 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003867 if (PageWriteback(page))
3868 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003869 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003870 }
Chris Masond1310b22008-01-24 16:13:08 -05003871
3872 if (PageWriteback(page) ||
3873 !clear_page_dirty_for_io(page)) {
3874 unlock_page(page);
3875 continue;
3876 }
3877
3878 ret = (*writepage)(page, wbc, data);
3879
3880 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3881 unlock_page(page);
3882 ret = 0;
3883 }
Filipe Manana61391d52014-05-09 17:17:40 +01003884 if (!err && ret < 0)
3885 err = ret;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003886
3887 /*
3888 * the filesystem may choose to bump up nr_to_write.
3889 * We have to make sure to honor the new nr_to_write
3890 * at any time
3891 */
3892 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003893 }
3894 pagevec_release(&pvec);
3895 cond_resched();
3896 }
Filipe Manana61391d52014-05-09 17:17:40 +01003897 if (!scanned && !done && !err) {
Chris Masond1310b22008-01-24 16:13:08 -05003898 /*
3899 * We hit the last page and there is more work to be done: wrap
3900 * back to the start of the file
3901 */
3902 scanned = 1;
3903 index = 0;
3904 goto retry;
3905 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003906 btrfs_add_delayed_iput(inode);
Filipe Manana61391d52014-05-09 17:17:40 +01003907 return err;
Chris Masond1310b22008-01-24 16:13:08 -05003908}
Chris Masond1310b22008-01-24 16:13:08 -05003909
Chris Masonffbd5172009-04-20 15:50:09 -04003910static void flush_epd_write_bio(struct extent_page_data *epd)
3911{
3912 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003913 int rw = WRITE;
3914 int ret;
3915
Chris Masonffbd5172009-04-20 15:50:09 -04003916 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003917 rw = WRITE_SYNC;
3918
Josef Bacikde0022b2012-09-25 14:25:58 -04003919 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003920 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003921 epd->bio = NULL;
3922 }
3923}
3924
Chris Masond2c3f4f2008-11-19 12:44:22 -05003925static noinline void flush_write_bio(void *data)
3926{
3927 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003928 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003929}
3930
Chris Masond1310b22008-01-24 16:13:08 -05003931int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3932 get_extent_t *get_extent,
3933 struct writeback_control *wbc)
3934{
3935 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003936 struct extent_page_data epd = {
3937 .bio = NULL,
3938 .tree = tree,
3939 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003940 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003941 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003942 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003943 };
Chris Masond1310b22008-01-24 16:13:08 -05003944
Chris Masond1310b22008-01-24 16:13:08 -05003945 ret = __extent_writepage(page, wbc, &epd);
3946
Chris Masonffbd5172009-04-20 15:50:09 -04003947 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003948 return ret;
3949}
Chris Masond1310b22008-01-24 16:13:08 -05003950
Chris Mason771ed682008-11-06 22:02:51 -05003951int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3952 u64 start, u64 end, get_extent_t *get_extent,
3953 int mode)
3954{
3955 int ret = 0;
3956 struct address_space *mapping = inode->i_mapping;
3957 struct page *page;
3958 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3959 PAGE_CACHE_SHIFT;
3960
3961 struct extent_page_data epd = {
3962 .bio = NULL,
3963 .tree = tree,
3964 .get_extent = get_extent,
3965 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003966 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003967 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003968 };
3969 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003970 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003971 .nr_to_write = nr_pages * 2,
3972 .range_start = start,
3973 .range_end = end + 1,
3974 };
3975
Chris Masond3977122009-01-05 21:25:51 -05003976 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003977 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3978 if (clear_page_dirty_for_io(page))
3979 ret = __extent_writepage(page, &wbc_writepages, &epd);
3980 else {
3981 if (tree->ops && tree->ops->writepage_end_io_hook)
3982 tree->ops->writepage_end_io_hook(page, start,
3983 start + PAGE_CACHE_SIZE - 1,
3984 NULL, 1);
3985 unlock_page(page);
3986 }
3987 page_cache_release(page);
3988 start += PAGE_CACHE_SIZE;
3989 }
3990
Chris Masonffbd5172009-04-20 15:50:09 -04003991 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003992 return ret;
3993}
Chris Masond1310b22008-01-24 16:13:08 -05003994
3995int extent_writepages(struct extent_io_tree *tree,
3996 struct address_space *mapping,
3997 get_extent_t *get_extent,
3998 struct writeback_control *wbc)
3999{
4000 int ret = 0;
4001 struct extent_page_data epd = {
4002 .bio = NULL,
4003 .tree = tree,
4004 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05004005 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04004006 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04004007 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05004008 };
4009
Chris Mason4bef0842008-09-08 11:18:08 -04004010 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05004011 __extent_writepage, &epd,
4012 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04004013 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05004014 return ret;
4015}
Chris Masond1310b22008-01-24 16:13:08 -05004016
4017int extent_readpages(struct extent_io_tree *tree,
4018 struct address_space *mapping,
4019 struct list_head *pages, unsigned nr_pages,
4020 get_extent_t get_extent)
4021{
4022 struct bio *bio = NULL;
4023 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04004024 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06004025 struct page *pagepool[16];
4026 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08004027 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06004028 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004029
Chris Masond1310b22008-01-24 16:13:08 -05004030 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06004031 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05004032
4033 prefetchw(&page->flags);
4034 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06004035 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04004036 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06004037 page_cache_release(page);
4038 continue;
Chris Masond1310b22008-01-24 16:13:08 -05004039 }
Liu Bo67c96842012-07-20 21:43:09 -06004040
4041 pagepool[nr++] = page;
4042 if (nr < ARRAY_SIZE(pagepool))
4043 continue;
Miao Xie125bac012013-07-25 19:22:37 +08004044 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004045 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004046 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004047 }
Miao Xie99740902013-07-25 19:22:36 +08004048 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08004049 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08004050 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06004051
Miao Xie125bac012013-07-25 19:22:37 +08004052 if (em_cached)
4053 free_extent_map(em_cached);
4054
Chris Masond1310b22008-01-24 16:13:08 -05004055 BUG_ON(!list_empty(pages));
4056 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004057 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05004058 return 0;
4059}
Chris Masond1310b22008-01-24 16:13:08 -05004060
4061/*
4062 * basic invalidatepage code, this waits on any locked or writeback
4063 * ranges corresponding to the page, and then deletes any extent state
4064 * records from the tree
4065 */
4066int extent_invalidatepage(struct extent_io_tree *tree,
4067 struct page *page, unsigned long offset)
4068{
Josef Bacik2ac55d42010-02-03 19:33:23 +00004069 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004070 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004071 u64 end = start + PAGE_CACHE_SIZE - 1;
4072 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
4073
Qu Wenruofda28322013-02-26 08:10:22 +00004074 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05004075 if (start > end)
4076 return 0;
4077
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004078 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04004079 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05004080 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04004081 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4082 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004083 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004084 return 0;
4085}
Chris Masond1310b22008-01-24 16:13:08 -05004086
4087/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04004088 * a helper for releasepage, this tests for areas of the page that
4089 * are locked or under IO and drops the related state bits if it is safe
4090 * to drop the page.
4091 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004092static int try_release_extent_state(struct extent_map_tree *map,
4093 struct extent_io_tree *tree,
4094 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04004095{
Miao Xie4eee4fa2012-12-21 09:17:45 +00004096 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04004097 u64 end = start + PAGE_CACHE_SIZE - 1;
4098 int ret = 1;
4099
Chris Mason211f90e2008-07-18 11:56:15 -04004100 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04004101 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04004102 ret = 0;
4103 else {
4104 if ((mask & GFP_NOFS) == GFP_NOFS)
4105 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04004106 /*
4107 * at this point we can safely clear everything except the
4108 * locked bit and the nodatasum bit
4109 */
Chris Masone3f24cc2011-02-14 12:52:08 -05004110 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04004111 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
4112 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05004113
4114 /* if clear_extent_bit failed for enomem reasons,
4115 * we can't allow the release to continue.
4116 */
4117 if (ret < 0)
4118 ret = 0;
4119 else
4120 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004121 }
4122 return ret;
4123}
Chris Mason7b13b7b2008-04-18 10:29:50 -04004124
4125/*
Chris Masond1310b22008-01-24 16:13:08 -05004126 * a helper for releasepage. As long as there are no locked extents
4127 * in the range corresponding to the page, both state records and extent
4128 * map records are removed
4129 */
4130int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05004131 struct extent_io_tree *tree, struct page *page,
4132 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05004133{
4134 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00004135 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05004136 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04004137
Chris Mason70dec802008-01-29 09:59:12 -05004138 if ((mask & __GFP_WAIT) &&
4139 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05004140 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05004141 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05004142 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04004143 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05004144 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09004145 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04004146 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004147 break;
4148 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004149 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4150 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004151 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004152 free_extent_map(em);
4153 break;
4154 }
4155 if (!test_range_bit(tree, em->start,
4156 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004157 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004158 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004159 remove_extent_mapping(map, em);
4160 /* once for the rb tree */
4161 free_extent_map(em);
4162 }
4163 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004164 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004165
4166 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004167 free_extent_map(em);
4168 }
Chris Masond1310b22008-01-24 16:13:08 -05004169 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004170 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004171}
Chris Masond1310b22008-01-24 16:13:08 -05004172
Chris Masonec29ed52011-02-23 16:23:20 -05004173/*
4174 * helper function for fiemap, which doesn't want to see any holes.
4175 * This maps until we find something past 'last'
4176 */
4177static struct extent_map *get_extent_skip_holes(struct inode *inode,
4178 u64 offset,
4179 u64 last,
4180 get_extent_t *get_extent)
4181{
4182 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4183 struct extent_map *em;
4184 u64 len;
4185
4186 if (offset >= last)
4187 return NULL;
4188
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304189 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004190 len = last - offset;
4191 if (len == 0)
4192 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004193 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004194 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004195 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004196 return em;
4197
4198 /* if this isn't a hole return it */
4199 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4200 em->block_start != EXTENT_MAP_HOLE) {
4201 return em;
4202 }
4203
4204 /* this is a hole, advance to the next extent */
4205 offset = extent_map_end(em);
4206 free_extent_map(em);
4207 if (offset >= last)
4208 break;
4209 }
4210 return NULL;
4211}
4212
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004213int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4214 __u64 start, __u64 len, get_extent_t *get_extent)
4215{
Josef Bacik975f84f2010-11-23 19:36:57 +00004216 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004217 u64 off = start;
4218 u64 max = start + len;
4219 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004220 u32 found_type;
4221 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004222 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004223 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004224 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004225 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004226 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004227 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004228 struct btrfs_path *path;
Josef Bacikdc046b12014-09-10 16:20:45 -04004229 struct btrfs_root *root = BTRFS_I(inode)->root;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004230 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004231 u64 em_start = 0;
4232 u64 em_len = 0;
4233 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004234
4235 if (len == 0)
4236 return -EINVAL;
4237
Josef Bacik975f84f2010-11-23 19:36:57 +00004238 path = btrfs_alloc_path();
4239 if (!path)
4240 return -ENOMEM;
4241 path->leave_spinning = 1;
4242
Qu Wenruo2c919432014-07-18 09:55:43 +08004243 start = round_down(start, BTRFS_I(inode)->root->sectorsize);
4244 len = round_up(max, BTRFS_I(inode)->root->sectorsize) - start;
Josef Bacik4d479cf2011-11-17 11:34:31 -05004245
Chris Masonec29ed52011-02-23 16:23:20 -05004246 /*
4247 * lookup the last file extent. We're not using i_size here
4248 * because there might be preallocation past i_size
4249 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004250 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode), -1,
4251 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004252 if (ret < 0) {
4253 btrfs_free_path(path);
4254 return ret;
4255 }
4256 WARN_ON(!ret);
4257 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004258 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
David Sterba962a2982014-06-04 18:41:45 +02004259 found_type = found_key.type;
Josef Bacik975f84f2010-11-23 19:36:57 +00004260
Chris Masonec29ed52011-02-23 16:23:20 -05004261 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004262 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004263 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004264 /* have to trust i_size as the end */
4265 last = (u64)-1;
4266 last_for_get_extent = isize;
4267 } else {
4268 /*
4269 * remember the start of the last extent. There are a
4270 * bunch of different factors that go into the length of the
4271 * extent, so its much less complex to remember where it started
4272 */
4273 last = found_key.offset;
4274 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004275 }
Liu Bofe09e162013-09-22 12:54:23 +08004276 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004277
Chris Masonec29ed52011-02-23 16:23:20 -05004278 /*
4279 * we might have some extents allocated but more delalloc past those
4280 * extents. so, we trust isize unless the start of the last extent is
4281 * beyond isize
4282 */
4283 if (last < isize) {
4284 last = (u64)-1;
4285 last_for_get_extent = isize;
4286 }
4287
Liu Boa52f4cd2013-05-01 16:23:41 +00004288 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004289 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004290
Josef Bacik4d479cf2011-11-17 11:34:31 -05004291 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004292 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004293 if (!em)
4294 goto out;
4295 if (IS_ERR(em)) {
4296 ret = PTR_ERR(em);
4297 goto out;
4298 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004299
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004300 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004301 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004302
Chris Masonea8efc72011-03-08 11:54:40 -05004303 /* break if the extent we found is outside the range */
4304 if (em->start >= max || extent_map_end(em) < off)
4305 break;
4306
4307 /*
4308 * get_extent may return an extent that starts before our
4309 * requested range. We have to make sure the ranges
4310 * we return to fiemap always move forward and don't
4311 * overlap, so adjust the offsets here
4312 */
4313 em_start = max(em->start, off);
4314
4315 /*
4316 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004317 * for adjusting the disk offset below. Only do this if the
4318 * extent isn't compressed since our in ram offset may be past
4319 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004320 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004321 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4322 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004323 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004324 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004325 disko = 0;
4326 flags = 0;
4327
Chris Masonea8efc72011-03-08 11:54:40 -05004328 /*
4329 * bump off for our next call to get_extent
4330 */
4331 off = extent_map_end(em);
4332 if (off >= max)
4333 end = 1;
4334
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004335 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004336 end = 1;
4337 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004338 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004339 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4340 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004341 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004342 flags |= (FIEMAP_EXTENT_DELALLOC |
4343 FIEMAP_EXTENT_UNKNOWN);
Josef Bacikdc046b12014-09-10 16:20:45 -04004344 } else if (fieinfo->fi_extents_max) {
4345 u64 bytenr = em->block_start -
4346 (em->start - em->orig_start);
Liu Bofe09e162013-09-22 12:54:23 +08004347
Chris Masonea8efc72011-03-08 11:54:40 -05004348 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004349
4350 /*
4351 * As btrfs supports shared space, this information
4352 * can be exported to userspace tools via
Josef Bacikdc046b12014-09-10 16:20:45 -04004353 * flag FIEMAP_EXTENT_SHARED. If fi_extents_max == 0
4354 * then we're just getting a count and we can skip the
4355 * lookup stuff.
Liu Bofe09e162013-09-22 12:54:23 +08004356 */
Josef Bacikdc046b12014-09-10 16:20:45 -04004357 ret = btrfs_check_shared(NULL, root->fs_info,
4358 root->objectid,
4359 btrfs_ino(inode), bytenr);
4360 if (ret < 0)
Liu Bofe09e162013-09-22 12:54:23 +08004361 goto out_free;
Josef Bacikdc046b12014-09-10 16:20:45 -04004362 if (ret)
Liu Bofe09e162013-09-22 12:54:23 +08004363 flags |= FIEMAP_EXTENT_SHARED;
Josef Bacikdc046b12014-09-10 16:20:45 -04004364 ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004365 }
4366 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4367 flags |= FIEMAP_EXTENT_ENCODED;
4368
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004369 free_extent_map(em);
4370 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004371 if ((em_start >= last) || em_len == (u64)-1 ||
4372 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004373 flags |= FIEMAP_EXTENT_LAST;
4374 end = 1;
4375 }
4376
Chris Masonec29ed52011-02-23 16:23:20 -05004377 /* now scan forward to see if this is really the last extent. */
4378 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4379 get_extent);
4380 if (IS_ERR(em)) {
4381 ret = PTR_ERR(em);
4382 goto out;
4383 }
4384 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004385 flags |= FIEMAP_EXTENT_LAST;
4386 end = 1;
4387 }
Chris Masonec29ed52011-02-23 16:23:20 -05004388 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4389 em_len, flags);
4390 if (ret)
4391 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004392 }
4393out_free:
4394 free_extent_map(em);
4395out:
Liu Bofe09e162013-09-22 12:54:23 +08004396 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004397 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004398 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004399 return ret;
4400}
4401
Chris Mason727011e2010-08-06 13:21:20 -04004402static void __free_extent_buffer(struct extent_buffer *eb)
4403{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004404 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004405 kmem_cache_free(extent_buffer_cache, eb);
4406}
4407
Josef Bacika26e8c92014-03-28 17:07:27 -04004408int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004409{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004410 return (atomic_read(&eb->io_pages) ||
4411 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4412 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004413}
4414
Miao Xie897ca6e2010-10-26 20:57:29 -04004415/*
4416 * Helper for releasing extent buffer page.
4417 */
4418static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4419 unsigned long start_idx)
4420{
4421 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004422 unsigned long num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004423 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004424 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004425
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004426 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004427
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004428 num_pages = num_extent_pages(eb->start, eb->len);
4429 index = start_idx + num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004430 if (start_idx >= index)
4431 return;
4432
4433 do {
4434 index--;
4435 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004436 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004437 spin_lock(&page->mapping->private_lock);
4438 /*
4439 * We do this since we'll remove the pages after we've
4440 * removed the eb from the radix tree, so we could race
4441 * and have this page now attached to the new eb. So
4442 * only clear page_private if it's still connected to
4443 * this eb.
4444 */
4445 if (PagePrivate(page) &&
4446 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004447 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004448 BUG_ON(PageDirty(page));
4449 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004450 /*
4451 * We need to make sure we haven't be attached
4452 * to a new eb.
4453 */
4454 ClearPagePrivate(page);
4455 set_page_private(page, 0);
4456 /* One for the page private */
4457 page_cache_release(page);
4458 }
4459 spin_unlock(&page->mapping->private_lock);
4460
Jan Schmidt815a51c2012-05-16 17:00:02 +02004461 }
4462 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004463 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004464 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004465 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004466 } while (index != start_idx);
4467}
4468
4469/*
4470 * Helper for releasing the extent buffer.
4471 */
4472static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4473{
4474 btrfs_release_extent_buffer_page(eb, 0);
4475 __free_extent_buffer(eb);
4476}
4477
Josef Bacikf28491e2013-12-16 13:24:27 -05004478static struct extent_buffer *
4479__alloc_extent_buffer(struct btrfs_fs_info *fs_info, u64 start,
4480 unsigned long len, gfp_t mask)
Josef Bacikdb7f3432013-08-07 14:54:37 -04004481{
4482 struct extent_buffer *eb = NULL;
4483
4484 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4485 if (eb == NULL)
4486 return NULL;
4487 eb->start = start;
4488 eb->len = len;
Josef Bacikf28491e2013-12-16 13:24:27 -05004489 eb->fs_info = fs_info;
Josef Bacikdb7f3432013-08-07 14:54:37 -04004490 eb->bflags = 0;
4491 rwlock_init(&eb->lock);
4492 atomic_set(&eb->write_locks, 0);
4493 atomic_set(&eb->read_locks, 0);
4494 atomic_set(&eb->blocking_readers, 0);
4495 atomic_set(&eb->blocking_writers, 0);
4496 atomic_set(&eb->spinning_readers, 0);
4497 atomic_set(&eb->spinning_writers, 0);
4498 eb->lock_nested = 0;
4499 init_waitqueue_head(&eb->write_lock_wq);
4500 init_waitqueue_head(&eb->read_lock_wq);
4501
4502 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4503
4504 spin_lock_init(&eb->refs_lock);
4505 atomic_set(&eb->refs, 1);
4506 atomic_set(&eb->io_pages, 0);
4507
4508 /*
4509 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4510 */
4511 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4512 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4513 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4514
4515 return eb;
4516}
4517
4518struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4519{
4520 unsigned long i;
4521 struct page *p;
4522 struct extent_buffer *new;
4523 unsigned long num_pages = num_extent_pages(src->start, src->len);
4524
Josef Bacik9ec72672013-08-07 16:57:23 -04004525 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004526 if (new == NULL)
4527 return NULL;
4528
4529 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004530 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004531 if (!p) {
4532 btrfs_release_extent_buffer(new);
4533 return NULL;
4534 }
4535 attach_extent_buffer_page(new, p);
4536 WARN_ON(PageDirty(p));
4537 SetPageUptodate(p);
4538 new->pages[i] = p;
4539 }
4540
4541 copy_extent_buffer(new, src, 0, 0, src->len);
4542 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4543 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4544
4545 return new;
4546}
4547
4548struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4549{
4550 struct extent_buffer *eb;
4551 unsigned long num_pages = num_extent_pages(0, len);
4552 unsigned long i;
4553
Josef Bacik9ec72672013-08-07 16:57:23 -04004554 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004555 if (!eb)
4556 return NULL;
4557
4558 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004559 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004560 if (!eb->pages[i])
4561 goto err;
4562 }
4563 set_extent_buffer_uptodate(eb);
4564 btrfs_set_header_nritems(eb, 0);
4565 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4566
4567 return eb;
4568err:
4569 for (; i > 0; i--)
4570 __free_page(eb->pages[i - 1]);
4571 __free_extent_buffer(eb);
4572 return NULL;
4573}
4574
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004575static void check_buffer_tree_ref(struct extent_buffer *eb)
4576{
Chris Mason242e18c2013-01-29 17:49:37 -05004577 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004578 /* the ref bit is tricky. We have to make sure it is set
4579 * if we have the buffer dirty. Otherwise the
4580 * code to free a buffer can end up dropping a dirty
4581 * page
4582 *
4583 * Once the ref bit is set, it won't go away while the
4584 * buffer is dirty or in writeback, and it also won't
4585 * go away while we have the reference count on the
4586 * eb bumped.
4587 *
4588 * We can't just set the ref bit without bumping the
4589 * ref on the eb because free_extent_buffer might
4590 * see the ref bit and try to clear it. If this happens
4591 * free_extent_buffer might end up dropping our original
4592 * ref by mistake and freeing the page before we are able
4593 * to add one more ref.
4594 *
4595 * So bump the ref count first, then set the bit. If someone
4596 * beat us to it, drop the ref we added.
4597 */
Chris Mason242e18c2013-01-29 17:49:37 -05004598 refs = atomic_read(&eb->refs);
4599 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4600 return;
4601
Josef Bacik594831c2012-07-20 16:11:08 -04004602 spin_lock(&eb->refs_lock);
4603 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004604 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004605 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004606}
4607
Mel Gorman2457aec2014-06-04 16:10:31 -07004608static void mark_extent_buffer_accessed(struct extent_buffer *eb,
4609 struct page *accessed)
Josef Bacik5df42352012-03-15 18:24:42 -04004610{
4611 unsigned long num_pages, i;
4612
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004613 check_buffer_tree_ref(eb);
4614
Josef Bacik5df42352012-03-15 18:24:42 -04004615 num_pages = num_extent_pages(eb->start, eb->len);
4616 for (i = 0; i < num_pages; i++) {
4617 struct page *p = extent_buffer_page(eb, i);
Mel Gorman2457aec2014-06-04 16:10:31 -07004618 if (p != accessed)
4619 mark_page_accessed(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004620 }
4621}
4622
Josef Bacikf28491e2013-12-16 13:24:27 -05004623struct extent_buffer *find_extent_buffer(struct btrfs_fs_info *fs_info,
4624 u64 start)
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004625{
4626 struct extent_buffer *eb;
4627
4628 rcu_read_lock();
Josef Bacikf28491e2013-12-16 13:24:27 -05004629 eb = radix_tree_lookup(&fs_info->buffer_radix,
4630 start >> PAGE_CACHE_SHIFT);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004631 if (eb && atomic_inc_not_zero(&eb->refs)) {
4632 rcu_read_unlock();
Mel Gorman2457aec2014-06-04 16:10:31 -07004633 mark_extent_buffer_accessed(eb, NULL);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004634 return eb;
4635 }
4636 rcu_read_unlock();
4637
4638 return NULL;
4639}
4640
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04004641#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
4642struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
4643 u64 start, unsigned long len)
4644{
4645 struct extent_buffer *eb, *exists = NULL;
4646 int ret;
4647
4648 eb = find_extent_buffer(fs_info, start);
4649 if (eb)
4650 return eb;
4651 eb = alloc_dummy_extent_buffer(start, len);
4652 if (!eb)
4653 return NULL;
4654 eb->fs_info = fs_info;
4655again:
4656 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4657 if (ret)
4658 goto free_eb;
4659 spin_lock(&fs_info->buffer_lock);
4660 ret = radix_tree_insert(&fs_info->buffer_radix,
4661 start >> PAGE_CACHE_SHIFT, eb);
4662 spin_unlock(&fs_info->buffer_lock);
4663 radix_tree_preload_end();
4664 if (ret == -EEXIST) {
4665 exists = find_extent_buffer(fs_info, start);
4666 if (exists)
4667 goto free_eb;
4668 else
4669 goto again;
4670 }
4671 check_buffer_tree_ref(eb);
4672 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
4673
4674 /*
4675 * We will free dummy extent buffer's if they come into
4676 * free_extent_buffer with a ref count of 2, but if we are using this we
4677 * want the buffers to stay in memory until we're done with them, so
4678 * bump the ref count again.
4679 */
4680 atomic_inc(&eb->refs);
4681 return eb;
4682free_eb:
4683 btrfs_release_extent_buffer(eb);
4684 return exists;
4685}
4686#endif
4687
Josef Bacikf28491e2013-12-16 13:24:27 -05004688struct extent_buffer *alloc_extent_buffer(struct btrfs_fs_info *fs_info,
Chris Mason727011e2010-08-06 13:21:20 -04004689 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004690{
4691 unsigned long num_pages = num_extent_pages(start, len);
4692 unsigned long i;
4693 unsigned long index = start >> PAGE_CACHE_SHIFT;
4694 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004695 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004696 struct page *p;
Josef Bacikf28491e2013-12-16 13:24:27 -05004697 struct address_space *mapping = fs_info->btree_inode->i_mapping;
Chris Masond1310b22008-01-24 16:13:08 -05004698 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004699 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004700
Josef Bacikf28491e2013-12-16 13:24:27 -05004701 eb = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004702 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004703 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004704
Josef Bacikf28491e2013-12-16 13:24:27 -05004705 eb = __alloc_extent_buffer(fs_info, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004706 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004707 return NULL;
4708
Chris Mason727011e2010-08-06 13:21:20 -04004709 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004710 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004711 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004712 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004713
4714 spin_lock(&mapping->private_lock);
4715 if (PagePrivate(p)) {
4716 /*
4717 * We could have already allocated an eb for this page
4718 * and attached one so lets see if we can get a ref on
4719 * the existing eb, and if we can we know it's good and
4720 * we can just return that one, else we know we can just
4721 * overwrite page->private.
4722 */
4723 exists = (struct extent_buffer *)p->private;
4724 if (atomic_inc_not_zero(&exists->refs)) {
4725 spin_unlock(&mapping->private_lock);
4726 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004727 page_cache_release(p);
Mel Gorman2457aec2014-06-04 16:10:31 -07004728 mark_extent_buffer_accessed(exists, p);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004729 goto free_eb;
4730 }
4731
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004732 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004733 * Do this so attach doesn't complain and we need to
4734 * drop the ref the old guy had.
4735 */
4736 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004737 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004738 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004739 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004740 attach_extent_buffer_page(eb, p);
4741 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004742 WARN_ON(PageDirty(p));
Chris Mason727011e2010-08-06 13:21:20 -04004743 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004744 if (!PageUptodate(p))
4745 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004746
4747 /*
4748 * see below about how we avoid a nasty race with release page
4749 * and why we unlock later
4750 */
Chris Masond1310b22008-01-24 16:13:08 -05004751 }
4752 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004753 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004754again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004755 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4756 if (ret)
4757 goto free_eb;
4758
Josef Bacikf28491e2013-12-16 13:24:27 -05004759 spin_lock(&fs_info->buffer_lock);
4760 ret = radix_tree_insert(&fs_info->buffer_radix,
4761 start >> PAGE_CACHE_SHIFT, eb);
4762 spin_unlock(&fs_info->buffer_lock);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004763 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004764 if (ret == -EEXIST) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004765 exists = find_extent_buffer(fs_info, start);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004766 if (exists)
4767 goto free_eb;
4768 else
Josef Bacik115391d2012-03-09 09:51:43 -05004769 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004770 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004771 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004772 check_buffer_tree_ref(eb);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004773 set_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags);
Chris Masoneb14ab82011-02-10 12:35:00 -05004774
4775 /*
4776 * there is a race where release page may have
4777 * tried to find this extent buffer in the radix
4778 * but failed. It will tell the VM it is safe to
4779 * reclaim the, and it will clear the page private bit.
4780 * We must make sure to set the page private bit properly
4781 * after the extent buffer is in the radix tree so
4782 * it doesn't get lost
4783 */
Chris Mason727011e2010-08-06 13:21:20 -04004784 SetPageChecked(eb->pages[0]);
4785 for (i = 1; i < num_pages; i++) {
4786 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004787 ClearPageChecked(p);
4788 unlock_page(p);
4789 }
4790 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004791 return eb;
4792
Chris Mason6af118ce2008-07-22 11:18:07 -04004793free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004794 for (i = 0; i < num_pages; i++) {
4795 if (eb->pages[i])
4796 unlock_page(eb->pages[i]);
4797 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004798
Josef Bacik17de39a2012-05-04 15:16:06 -04004799 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004800 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004801 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004802}
Chris Masond1310b22008-01-24 16:13:08 -05004803
Josef Bacik3083ee22012-03-09 16:01:49 -05004804static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4805{
4806 struct extent_buffer *eb =
4807 container_of(head, struct extent_buffer, rcu_head);
4808
4809 __free_extent_buffer(eb);
4810}
4811
Josef Bacik3083ee22012-03-09 16:01:49 -05004812/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004813static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004814{
4815 WARN_ON(atomic_read(&eb->refs) == 0);
4816 if (atomic_dec_and_test(&eb->refs)) {
Josef Bacik34b41ac2013-12-13 10:41:51 -05004817 if (test_and_clear_bit(EXTENT_BUFFER_IN_TREE, &eb->bflags)) {
Josef Bacikf28491e2013-12-16 13:24:27 -05004818 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik3083ee22012-03-09 16:01:49 -05004819
Jan Schmidt815a51c2012-05-16 17:00:02 +02004820 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004821
Josef Bacikf28491e2013-12-16 13:24:27 -05004822 spin_lock(&fs_info->buffer_lock);
4823 radix_tree_delete(&fs_info->buffer_radix,
Jan Schmidt815a51c2012-05-16 17:00:02 +02004824 eb->start >> PAGE_CACHE_SHIFT);
Josef Bacikf28491e2013-12-16 13:24:27 -05004825 spin_unlock(&fs_info->buffer_lock);
Josef Bacik34b41ac2013-12-13 10:41:51 -05004826 } else {
4827 spin_unlock(&eb->refs_lock);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004828 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004829
4830 /* Should be safe to release our pages at this point */
4831 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004832 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004833 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004834 }
4835 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004836
4837 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004838}
4839
Chris Masond1310b22008-01-24 16:13:08 -05004840void free_extent_buffer(struct extent_buffer *eb)
4841{
Chris Mason242e18c2013-01-29 17:49:37 -05004842 int refs;
4843 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004844 if (!eb)
4845 return;
4846
Chris Mason242e18c2013-01-29 17:49:37 -05004847 while (1) {
4848 refs = atomic_read(&eb->refs);
4849 if (refs <= 3)
4850 break;
4851 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4852 if (old == refs)
4853 return;
4854 }
4855
Josef Bacik3083ee22012-03-09 16:01:49 -05004856 spin_lock(&eb->refs_lock);
4857 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004858 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4859 atomic_dec(&eb->refs);
4860
4861 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004862 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004863 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004864 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4865 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004866
Josef Bacik3083ee22012-03-09 16:01:49 -05004867 /*
4868 * I know this is terrible, but it's temporary until we stop tracking
4869 * the uptodate bits and such for the extent buffers.
4870 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004871 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004872}
Chris Masond1310b22008-01-24 16:13:08 -05004873
Josef Bacik3083ee22012-03-09 16:01:49 -05004874void free_extent_buffer_stale(struct extent_buffer *eb)
4875{
4876 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004877 return;
4878
Josef Bacik3083ee22012-03-09 16:01:49 -05004879 spin_lock(&eb->refs_lock);
4880 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4881
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004882 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004883 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4884 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004885 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004886}
4887
Chris Mason1d4284b2012-03-28 20:31:37 -04004888void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004889{
Chris Masond1310b22008-01-24 16:13:08 -05004890 unsigned long i;
4891 unsigned long num_pages;
4892 struct page *page;
4893
Chris Masond1310b22008-01-24 16:13:08 -05004894 num_pages = num_extent_pages(eb->start, eb->len);
4895
4896 for (i = 0; i < num_pages; i++) {
4897 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004898 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004899 continue;
4900
Chris Masona61e6f22008-07-22 11:18:08 -04004901 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004902 WARN_ON(!PagePrivate(page));
4903
Chris Masond1310b22008-01-24 16:13:08 -05004904 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004905 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004906 if (!PageDirty(page)) {
4907 radix_tree_tag_clear(&page->mapping->page_tree,
4908 page_index(page),
4909 PAGECACHE_TAG_DIRTY);
4910 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004911 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004912 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004913 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004914 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004915 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004916}
Chris Masond1310b22008-01-24 16:13:08 -05004917
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004918int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004919{
4920 unsigned long i;
4921 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004922 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004923
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004924 check_buffer_tree_ref(eb);
4925
Chris Masonb9473432009-03-13 11:00:37 -04004926 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004927
Chris Masond1310b22008-01-24 16:13:08 -05004928 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004929 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004930 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4931
Chris Masonb9473432009-03-13 11:00:37 -04004932 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004933 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004934 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004935}
Chris Masond1310b22008-01-24 16:13:08 -05004936
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004937int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004938{
4939 unsigned long i;
4940 struct page *page;
4941 unsigned long num_pages;
4942
Chris Masonb4ce94d2009-02-04 09:25:08 -05004943 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004944 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004945 for (i = 0; i < num_pages; i++) {
4946 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004947 if (page)
4948 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004949 }
4950 return 0;
4951}
4952
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004953int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004954{
4955 unsigned long i;
4956 struct page *page;
4957 unsigned long num_pages;
4958
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004959 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004960 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004961 for (i = 0; i < num_pages; i++) {
4962 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004963 SetPageUptodate(page);
4964 }
4965 return 0;
4966}
Chris Masond1310b22008-01-24 16:13:08 -05004967
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004968int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004969{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004970 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004971}
Chris Masond1310b22008-01-24 16:13:08 -05004972
4973int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004974 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004975 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004976{
4977 unsigned long i;
4978 unsigned long start_i;
4979 struct page *page;
4980 int err;
4981 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004982 int locked_pages = 0;
4983 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004984 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004985 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004986 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004987 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004988
Chris Masonb4ce94d2009-02-04 09:25:08 -05004989 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004990 return 0;
4991
Chris Masond1310b22008-01-24 16:13:08 -05004992 if (start) {
4993 WARN_ON(start < eb->start);
4994 start_i = (start >> PAGE_CACHE_SHIFT) -
4995 (eb->start >> PAGE_CACHE_SHIFT);
4996 } else {
4997 start_i = 0;
4998 }
4999
5000 num_pages = num_extent_pages(eb->start, eb->len);
5001 for (i = start_i; i < num_pages; i++) {
5002 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02005003 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04005004 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04005005 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05005006 } else {
5007 lock_page(page);
5008 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005009 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04005010 if (!PageUptodate(page)) {
5011 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04005012 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04005013 }
Chris Masonce9adaa2008-04-09 16:28:12 -04005014 }
5015 if (all_uptodate) {
5016 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05005017 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04005018 goto unlock_exit;
5019 }
5020
Josef Bacikea466792012-03-26 21:57:36 -04005021 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04005022 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005023 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04005024 for (i = start_i; i < num_pages; i++) {
5025 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04005026 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04005027 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05005028 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04005029 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005030 mirror_num, &bio_flags,
5031 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05005032 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05005033 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05005034 } else {
5035 unlock_page(page);
5036 }
5037 }
5038
Jeff Mahoney355808c2011-10-03 23:23:14 -04005039 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04005040 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
5041 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005042 if (err)
5043 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04005044 }
Chris Masona86c12c2008-02-07 10:50:54 -05005045
Arne Jansenbb82ab82011-06-10 14:06:53 +02005046 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05005047 return ret;
Chris Masond3977122009-01-05 21:25:51 -05005048
Chris Masond1310b22008-01-24 16:13:08 -05005049 for (i = start_i; i < num_pages; i++) {
5050 page = extent_buffer_page(eb, i);
5051 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05005052 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05005053 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05005054 }
Chris Masond3977122009-01-05 21:25:51 -05005055
Chris Masond1310b22008-01-24 16:13:08 -05005056 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04005057
5058unlock_exit:
5059 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05005060 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04005061 page = extent_buffer_page(eb, i);
5062 i++;
5063 unlock_page(page);
5064 locked_pages--;
5065 }
5066 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05005067}
Chris Masond1310b22008-01-24 16:13:08 -05005068
5069void read_extent_buffer(struct extent_buffer *eb, void *dstv,
5070 unsigned long start,
5071 unsigned long len)
5072{
5073 size_t cur;
5074 size_t offset;
5075 struct page *page;
5076 char *kaddr;
5077 char *dst = (char *)dstv;
5078 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5079 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05005080
5081 WARN_ON(start > eb->len);
5082 WARN_ON(start + len > eb->start + eb->len);
5083
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005084 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005085
Chris Masond3977122009-01-05 21:25:51 -05005086 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005087 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05005088
5089 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04005090 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005091 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005092
5093 dst += cur;
5094 len -= cur;
5095 offset = 0;
5096 i++;
5097 }
5098}
Chris Masond1310b22008-01-24 16:13:08 -05005099
Gerhard Heift550ac1d2014-01-30 16:24:01 +01005100int read_extent_buffer_to_user(struct extent_buffer *eb, void __user *dstv,
5101 unsigned long start,
5102 unsigned long len)
5103{
5104 size_t cur;
5105 size_t offset;
5106 struct page *page;
5107 char *kaddr;
5108 char __user *dst = (char __user *)dstv;
5109 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5110 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5111 int ret = 0;
5112
5113 WARN_ON(start > eb->len);
5114 WARN_ON(start + len > eb->start + eb->len);
5115
5116 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
5117
5118 while (len > 0) {
5119 page = extent_buffer_page(eb, i);
5120
5121 cur = min(len, (PAGE_CACHE_SIZE - offset));
5122 kaddr = page_address(page);
5123 if (copy_to_user(dst, kaddr + offset, cur)) {
5124 ret = -EFAULT;
5125 break;
5126 }
5127
5128 dst += cur;
5129 len -= cur;
5130 offset = 0;
5131 i++;
5132 }
5133
5134 return ret;
5135}
5136
Chris Masond1310b22008-01-24 16:13:08 -05005137int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04005138 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05005139 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04005140 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05005141{
5142 size_t offset = start & (PAGE_CACHE_SIZE - 1);
5143 char *kaddr;
5144 struct page *p;
5145 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5146 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5147 unsigned long end_i = (start_offset + start + min_len - 1) >>
5148 PAGE_CACHE_SHIFT;
5149
5150 if (i != end_i)
5151 return -EINVAL;
5152
5153 if (i == 0) {
5154 offset = start_offset;
5155 *map_start = 0;
5156 } else {
5157 offset = 0;
5158 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
5159 }
Chris Masond3977122009-01-05 21:25:51 -05005160
Chris Masond1310b22008-01-24 16:13:08 -05005161 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00005162 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005163 "wanted %lu %lu\n",
5164 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04005165 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05005166 }
5167
5168 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04005169 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05005170 *map = kaddr + offset;
5171 *map_len = PAGE_CACHE_SIZE - offset;
5172 return 0;
5173}
Chris Masond1310b22008-01-24 16:13:08 -05005174
Chris Masond1310b22008-01-24 16:13:08 -05005175int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
5176 unsigned long start,
5177 unsigned long len)
5178{
5179 size_t cur;
5180 size_t offset;
5181 struct page *page;
5182 char *kaddr;
5183 char *ptr = (char *)ptrv;
5184 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5185 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5186 int ret = 0;
5187
5188 WARN_ON(start > eb->len);
5189 WARN_ON(start + len > eb->start + eb->len);
5190
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005191 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005192
Chris Masond3977122009-01-05 21:25:51 -05005193 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005194 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05005195
5196 cur = min(len, (PAGE_CACHE_SIZE - offset));
5197
Chris Masona6591712011-07-19 12:04:14 -04005198 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005199 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005200 if (ret)
5201 break;
5202
5203 ptr += cur;
5204 len -= cur;
5205 offset = 0;
5206 i++;
5207 }
5208 return ret;
5209}
Chris Masond1310b22008-01-24 16:13:08 -05005210
5211void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5212 unsigned long start, unsigned long len)
5213{
5214 size_t cur;
5215 size_t offset;
5216 struct page *page;
5217 char *kaddr;
5218 char *src = (char *)srcv;
5219 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5220 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5221
5222 WARN_ON(start > eb->len);
5223 WARN_ON(start + len > eb->start + eb->len);
5224
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005225 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005226
Chris Masond3977122009-01-05 21:25:51 -05005227 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005228 page = extent_buffer_page(eb, i);
5229 WARN_ON(!PageUptodate(page));
5230
5231 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005232 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005233 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005234
5235 src += cur;
5236 len -= cur;
5237 offset = 0;
5238 i++;
5239 }
5240}
Chris Masond1310b22008-01-24 16:13:08 -05005241
5242void memset_extent_buffer(struct extent_buffer *eb, char c,
5243 unsigned long start, unsigned long len)
5244{
5245 size_t cur;
5246 size_t offset;
5247 struct page *page;
5248 char *kaddr;
5249 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5250 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5251
5252 WARN_ON(start > eb->len);
5253 WARN_ON(start + len > eb->start + eb->len);
5254
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005255 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005256
Chris Masond3977122009-01-05 21:25:51 -05005257 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005258 page = extent_buffer_page(eb, i);
5259 WARN_ON(!PageUptodate(page));
5260
5261 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005262 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005263 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005264
5265 len -= cur;
5266 offset = 0;
5267 i++;
5268 }
5269}
Chris Masond1310b22008-01-24 16:13:08 -05005270
5271void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5272 unsigned long dst_offset, unsigned long src_offset,
5273 unsigned long len)
5274{
5275 u64 dst_len = dst->len;
5276 size_t cur;
5277 size_t offset;
5278 struct page *page;
5279 char *kaddr;
5280 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5281 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5282
5283 WARN_ON(src->len != dst_len);
5284
5285 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005286 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005287
Chris Masond3977122009-01-05 21:25:51 -05005288 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005289 page = extent_buffer_page(dst, i);
5290 WARN_ON(!PageUptodate(page));
5291
5292 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5293
Chris Masona6591712011-07-19 12:04:14 -04005294 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005295 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005296
5297 src_offset += cur;
5298 len -= cur;
5299 offset = 0;
5300 i++;
5301 }
5302}
Chris Masond1310b22008-01-24 16:13:08 -05005303
Sergei Trofimovich33872062011-04-11 21:52:52 +00005304static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5305{
5306 unsigned long distance = (src > dst) ? src - dst : dst - src;
5307 return distance < len;
5308}
5309
Chris Masond1310b22008-01-24 16:13:08 -05005310static void copy_pages(struct page *dst_page, struct page *src_page,
5311 unsigned long dst_off, unsigned long src_off,
5312 unsigned long len)
5313{
Chris Masona6591712011-07-19 12:04:14 -04005314 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005315 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005316 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005317
Sergei Trofimovich33872062011-04-11 21:52:52 +00005318 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005319 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005320 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005321 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005322 if (areas_overlap(src_off, dst_off, len))
5323 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005324 }
Chris Masond1310b22008-01-24 16:13:08 -05005325
Chris Mason727011e2010-08-06 13:21:20 -04005326 if (must_memmove)
5327 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5328 else
5329 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005330}
5331
5332void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5333 unsigned long src_offset, unsigned long len)
5334{
5335 size_t cur;
5336 size_t dst_off_in_page;
5337 size_t src_off_in_page;
5338 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5339 unsigned long dst_i;
5340 unsigned long src_i;
5341
5342 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005343 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005344 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005345 BUG_ON(1);
5346 }
5347 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005348 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005349 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005350 BUG_ON(1);
5351 }
5352
Chris Masond3977122009-01-05 21:25:51 -05005353 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005354 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005355 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005356 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005357 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005358
5359 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5360 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5361
5362 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5363 src_off_in_page));
5364 cur = min_t(unsigned long, cur,
5365 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5366
5367 copy_pages(extent_buffer_page(dst, dst_i),
5368 extent_buffer_page(dst, src_i),
5369 dst_off_in_page, src_off_in_page, cur);
5370
5371 src_offset += cur;
5372 dst_offset += cur;
5373 len -= cur;
5374 }
5375}
Chris Masond1310b22008-01-24 16:13:08 -05005376
5377void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5378 unsigned long src_offset, unsigned long len)
5379{
5380 size_t cur;
5381 size_t dst_off_in_page;
5382 size_t src_off_in_page;
5383 unsigned long dst_end = dst_offset + len - 1;
5384 unsigned long src_end = src_offset + len - 1;
5385 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5386 unsigned long dst_i;
5387 unsigned long src_i;
5388
5389 if (src_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005390 printk(KERN_ERR "BTRFS: memmove bogus src_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005391 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005392 BUG_ON(1);
5393 }
5394 if (dst_offset + len > dst->len) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005395 printk(KERN_ERR "BTRFS: memmove bogus dst_offset %lu move "
Chris Masond3977122009-01-05 21:25:51 -05005396 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005397 BUG_ON(1);
5398 }
Chris Mason727011e2010-08-06 13:21:20 -04005399 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005400 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5401 return;
5402 }
Chris Masond3977122009-01-05 21:25:51 -05005403 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005404 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5405 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5406
5407 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005408 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005409 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005410 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005411
5412 cur = min_t(unsigned long, len, src_off_in_page + 1);
5413 cur = min(cur, dst_off_in_page + 1);
Zach Brown1877e1a2013-10-16 12:10:33 -07005414 copy_pages(extent_buffer_page(dst, dst_i),
Chris Masond1310b22008-01-24 16:13:08 -05005415 extent_buffer_page(dst, src_i),
5416 dst_off_in_page - cur + 1,
5417 src_off_in_page - cur + 1, cur);
5418
5419 dst_end -= cur;
5420 src_end -= cur;
5421 len -= cur;
5422 }
5423}
Chris Mason6af118ce2008-07-22 11:18:07 -04005424
David Sterbaf7a52a42013-04-26 14:56:29 +00005425int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005426{
Chris Mason6af118ce2008-07-22 11:18:07 -04005427 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005428
Miao Xie19fe0a82010-10-26 20:57:29 -04005429 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005430 * We need to make sure noboody is attaching this page to an eb right
5431 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005432 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005433 spin_lock(&page->mapping->private_lock);
5434 if (!PagePrivate(page)) {
5435 spin_unlock(&page->mapping->private_lock);
5436 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005437 }
5438
Josef Bacik3083ee22012-03-09 16:01:49 -05005439 eb = (struct extent_buffer *)page->private;
5440 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005441
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005442 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005443 * This is a little awful but should be ok, we need to make sure that
5444 * the eb doesn't disappear out from under us while we're looking at
5445 * this page.
5446 */
5447 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005448 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005449 spin_unlock(&eb->refs_lock);
5450 spin_unlock(&page->mapping->private_lock);
5451 return 0;
5452 }
5453 spin_unlock(&page->mapping->private_lock);
5454
Josef Bacik3083ee22012-03-09 16:01:49 -05005455 /*
5456 * If tree ref isn't set then we know the ref on this eb is a real ref,
5457 * so just return, this page will likely be freed soon anyway.
5458 */
5459 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5460 spin_unlock(&eb->refs_lock);
5461 return 0;
5462 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005463
David Sterbaf7a52a42013-04-26 14:56:29 +00005464 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005465}