blob: e7e7afb4a87268211e8b0ef881a6eeac0068eefd [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 Woodhouse2db04962008-08-07 11:19:43 -040016#include "compat.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040017#include "ctree.h"
18#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020019#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010020#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040021#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040022#include "rcu-string.h"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040026static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050027
Eric Sandeen6d49ba12013-04-22 16:12:31 +000028#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050029static LIST_HEAD(buffers);
30static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040031
Chris Masond3977122009-01-05 21:25:51 -050032static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033
34static inline
35void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
36{
37 unsigned long flags;
38
39 spin_lock_irqsave(&leak_lock, flags);
40 list_add(new, head);
41 spin_unlock_irqrestore(&leak_lock, flags);
42}
43
44static inline
45void btrfs_leak_debug_del(struct list_head *entry)
46{
47 unsigned long flags;
48
49 spin_lock_irqsave(&leak_lock, flags);
50 list_del(entry);
51 spin_unlock_irqrestore(&leak_lock, flags);
52}
53
54static inline
55void btrfs_leak_debug_check(void)
56{
57 struct extent_state *state;
58 struct extent_buffer *eb;
59
60 while (!list_empty(&states)) {
61 state = list_entry(states.next, struct extent_state, leak_list);
62 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
63 "state %lu in tree %p refs %d\n",
64 (unsigned long long)state->start,
65 (unsigned long long)state->end,
66 state->state, state->tree, atomic_read(&state->refs));
67 list_del(&state->leak_list);
68 kmem_cache_free(extent_state_cache, state);
69 }
70
71 while (!list_empty(&buffers)) {
72 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
73 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
74 "refs %d\n", (unsigned long long)eb->start,
75 eb->len, atomic_read(&eb->refs));
76 list_del(&eb->leak_list);
77 kmem_cache_free(extent_buffer_cache, eb);
78 }
79}
80#else
81#define btrfs_leak_debug_add(new, head) do {} while (0)
82#define btrfs_leak_debug_del(entry) do {} while (0)
83#define btrfs_leak_debug_check() do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -040084#endif
Chris Masond1310b22008-01-24 16:13:08 -050085
Chris Masond1310b22008-01-24 16:13:08 -050086#define BUFFER_LRU_MAX 64
87
88struct tree_entry {
89 u64 start;
90 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -050091 struct rb_node rb_node;
92};
93
94struct extent_page_data {
95 struct bio *bio;
96 struct extent_io_tree *tree;
97 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -040098 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -050099
100 /* tells writepage not to lock the state bits for this range
101 * it still does the unlocking
102 */
Chris Masonffbd5172009-04-20 15:50:09 -0400103 unsigned int extent_locked:1;
104
105 /* tells the submit_bio code to use a WRITE_SYNC */
106 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500107};
108
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400109static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400110static inline struct btrfs_fs_info *
111tree_fs_info(struct extent_io_tree *tree)
112{
113 return btrfs_sb(tree->mapping->host->i_sb);
114}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400115
Chris Masond1310b22008-01-24 16:13:08 -0500116int __init extent_io_init(void)
117{
David Sterba837e1972012-09-07 03:00:48 -0600118 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200119 sizeof(struct extent_state), 0,
120 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500121 if (!extent_state_cache)
122 return -ENOMEM;
123
David Sterba837e1972012-09-07 03:00:48 -0600124 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200125 sizeof(struct extent_buffer), 0,
126 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500127 if (!extent_buffer_cache)
128 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400129
130 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
131 offsetof(struct btrfs_io_bio, bio));
132 if (!btrfs_bioset)
133 goto free_buffer_cache;
Chris Masond1310b22008-01-24 16:13:08 -0500134 return 0;
135
Chris Mason9be33952013-05-17 18:30:14 -0400136free_buffer_cache:
137 kmem_cache_destroy(extent_buffer_cache);
138 extent_buffer_cache = NULL;
139
Chris Masond1310b22008-01-24 16:13:08 -0500140free_state_cache:
141 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400142 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500143 return -ENOMEM;
144}
145
146void extent_io_exit(void)
147{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000148 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000149
150 /*
151 * Make sure all delayed rcu free are flushed before we
152 * destroy caches.
153 */
154 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500155 if (extent_state_cache)
156 kmem_cache_destroy(extent_state_cache);
157 if (extent_buffer_cache)
158 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400159 if (btrfs_bioset)
160 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500161}
162
163void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200164 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500165{
Eric Paris6bef4d32010-02-23 19:43:04 +0000166 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400167 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500168 tree->ops = NULL;
169 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500170 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400171 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500172 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500173}
Chris Masond1310b22008-01-24 16:13:08 -0500174
Christoph Hellwigb2950862008-12-02 09:54:17 -0500175static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500176{
177 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500178
179 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400180 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500181 return state;
182 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500183 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500184 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000185 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500186 atomic_set(&state->refs, 1);
187 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100188 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500189 return state;
190}
Chris Masond1310b22008-01-24 16:13:08 -0500191
Chris Mason4845e442010-05-25 20:56:50 -0400192void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500193{
Chris Masond1310b22008-01-24 16:13:08 -0500194 if (!state)
195 return;
196 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500197 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000198 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100199 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500200 kmem_cache_free(extent_state_cache, state);
201 }
202}
Chris Masond1310b22008-01-24 16:13:08 -0500203
204static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
205 struct rb_node *node)
206{
Chris Masond3977122009-01-05 21:25:51 -0500207 struct rb_node **p = &root->rb_node;
208 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500209 struct tree_entry *entry;
210
Chris Masond3977122009-01-05 21:25:51 -0500211 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500212 parent = *p;
213 entry = rb_entry(parent, struct tree_entry, rb_node);
214
215 if (offset < entry->start)
216 p = &(*p)->rb_left;
217 else if (offset > entry->end)
218 p = &(*p)->rb_right;
219 else
220 return parent;
221 }
222
Chris Masond1310b22008-01-24 16:13:08 -0500223 rb_link_node(node, parent, p);
224 rb_insert_color(node, root);
225 return NULL;
226}
227
Chris Mason80ea96b2008-02-01 14:51:59 -0500228static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500229 struct rb_node **prev_ret,
230 struct rb_node **next_ret)
231{
Chris Mason80ea96b2008-02-01 14:51:59 -0500232 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500233 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500234 struct rb_node *prev = NULL;
235 struct rb_node *orig_prev = NULL;
236 struct tree_entry *entry;
237 struct tree_entry *prev_entry = NULL;
238
Chris Masond3977122009-01-05 21:25:51 -0500239 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500240 entry = rb_entry(n, struct tree_entry, rb_node);
241 prev = n;
242 prev_entry = entry;
243
244 if (offset < entry->start)
245 n = n->rb_left;
246 else if (offset > entry->end)
247 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500248 else
Chris Masond1310b22008-01-24 16:13:08 -0500249 return n;
250 }
251
252 if (prev_ret) {
253 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500254 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500255 prev = rb_next(prev);
256 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
257 }
258 *prev_ret = prev;
259 prev = orig_prev;
260 }
261
262 if (next_ret) {
263 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500264 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500265 prev = rb_prev(prev);
266 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
267 }
268 *next_ret = prev;
269 }
270 return NULL;
271}
272
Chris Mason80ea96b2008-02-01 14:51:59 -0500273static inline struct rb_node *tree_search(struct extent_io_tree *tree,
274 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500275{
Chris Mason70dec802008-01-29 09:59:12 -0500276 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500277 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500278
Chris Mason80ea96b2008-02-01 14:51:59 -0500279 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500280 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500281 return prev;
282 return ret;
283}
284
Josef Bacik9ed74f22009-09-11 16:12:44 -0400285static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
286 struct extent_state *other)
287{
288 if (tree->ops && tree->ops->merge_extent_hook)
289 tree->ops->merge_extent_hook(tree->mapping->host, new,
290 other);
291}
292
Chris Masond1310b22008-01-24 16:13:08 -0500293/*
294 * utility function to look for merge candidates inside a given range.
295 * Any extents with matching state are merged together into a single
296 * extent in the tree. Extents with EXTENT_IO in their state field
297 * are not merged because the end_io handlers need to be able to do
298 * operations on them without sleeping (or doing allocations/splits).
299 *
300 * This should be called with the tree lock held.
301 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000302static void merge_state(struct extent_io_tree *tree,
303 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500304{
305 struct extent_state *other;
306 struct rb_node *other_node;
307
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400308 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000309 return;
Chris Masond1310b22008-01-24 16:13:08 -0500310
311 other_node = rb_prev(&state->rb_node);
312 if (other_node) {
313 other = rb_entry(other_node, struct extent_state, rb_node);
314 if (other->end == state->start - 1 &&
315 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400316 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500317 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500318 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500319 rb_erase(&other->rb_node, &tree->state);
320 free_extent_state(other);
321 }
322 }
323 other_node = rb_next(&state->rb_node);
324 if (other_node) {
325 other = rb_entry(other_node, struct extent_state, rb_node);
326 if (other->start == state->end + 1 &&
327 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400328 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400329 state->end = other->end;
330 other->tree = NULL;
331 rb_erase(&other->rb_node, &tree->state);
332 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500333 }
334 }
Chris Masond1310b22008-01-24 16:13:08 -0500335}
336
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000337static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000338 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500339{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000340 if (tree->ops && tree->ops->set_bit_hook)
341 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500342}
343
344static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000345 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500346{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400347 if (tree->ops && tree->ops->clear_bit_hook)
348 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500349}
350
Xiao Guangrong3150b692011-07-14 03:19:08 +0000351static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000352 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000353
Chris Masond1310b22008-01-24 16:13:08 -0500354/*
355 * insert an extent_state struct into the tree. 'bits' are set on the
356 * struct before it is inserted.
357 *
358 * This may return -EEXIST if the extent is already there, in which case the
359 * state struct is freed.
360 *
361 * The tree lock is not taken internally. This is a utility function and
362 * probably isn't what you want to call (see set/clear_extent_bit).
363 */
364static int insert_state(struct extent_io_tree *tree,
365 struct extent_state *state, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000366 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500367{
368 struct rb_node *node;
369
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000370 if (end < start)
371 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Chris Masond3977122009-01-05 21:25:51 -0500372 (unsigned long long)end,
373 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500374 state->start = start;
375 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400376
Xiao Guangrong3150b692011-07-14 03:19:08 +0000377 set_state_bits(tree, state, bits);
378
Chris Masond1310b22008-01-24 16:13:08 -0500379 node = tree_insert(&tree->state, end, &state->rb_node);
380 if (node) {
381 struct extent_state *found;
382 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500383 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
384 "%llu %llu\n", (unsigned long long)found->start,
385 (unsigned long long)found->end,
386 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500387 return -EEXIST;
388 }
Chris Mason70dec802008-01-29 09:59:12 -0500389 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500390 merge_state(tree, state);
391 return 0;
392}
393
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000394static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400395 u64 split)
396{
397 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000398 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400399}
400
Chris Masond1310b22008-01-24 16:13:08 -0500401/*
402 * split a given extent state struct in two, inserting the preallocated
403 * struct 'prealloc' as the newly created second half. 'split' indicates an
404 * offset inside 'orig' where it should be split.
405 *
406 * Before calling,
407 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
408 * are two extent state structs in the tree:
409 * prealloc: [orig->start, split - 1]
410 * orig: [ split, orig->end ]
411 *
412 * The tree locks are not taken by this function. They need to be held
413 * by the caller.
414 */
415static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
416 struct extent_state *prealloc, u64 split)
417{
418 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400419
420 split_cb(tree, orig, split);
421
Chris Masond1310b22008-01-24 16:13:08 -0500422 prealloc->start = orig->start;
423 prealloc->end = split - 1;
424 prealloc->state = orig->state;
425 orig->start = split;
426
427 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
428 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500429 free_extent_state(prealloc);
430 return -EEXIST;
431 }
Chris Mason70dec802008-01-29 09:59:12 -0500432 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500433 return 0;
434}
435
Li Zefancdc6a392012-03-12 16:39:48 +0800436static struct extent_state *next_state(struct extent_state *state)
437{
438 struct rb_node *next = rb_next(&state->rb_node);
439 if (next)
440 return rb_entry(next, struct extent_state, rb_node);
441 else
442 return NULL;
443}
444
Chris Masond1310b22008-01-24 16:13:08 -0500445/*
446 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800447 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500448 *
449 * If no bits are set on the state struct after clearing things, the
450 * struct is freed and removed from the tree
451 */
Li Zefancdc6a392012-03-12 16:39:48 +0800452static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
453 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000454 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500455{
Li Zefancdc6a392012-03-12 16:39:48 +0800456 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000457 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500458
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400459 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500460 u64 range = state->end - state->start + 1;
461 WARN_ON(range > tree->dirty_bytes);
462 tree->dirty_bytes -= range;
463 }
Chris Mason291d6732008-01-29 15:55:23 -0500464 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400465 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500466 if (wake)
467 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400468 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800469 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500470 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500471 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500472 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500473 free_extent_state(state);
474 } else {
475 WARN_ON(1);
476 }
477 } else {
478 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800479 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500480 }
Li Zefancdc6a392012-03-12 16:39:48 +0800481 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500482}
483
Xiao Guangrong82337672011-04-20 06:44:57 +0000484static struct extent_state *
485alloc_extent_state_atomic(struct extent_state *prealloc)
486{
487 if (!prealloc)
488 prealloc = alloc_extent_state(GFP_ATOMIC);
489
490 return prealloc;
491}
492
Eric Sandeen48a3b632013-04-25 20:41:01 +0000493static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400494{
495 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
496 "Extent tree was modified by another "
497 "thread while locked.");
498}
499
Chris Masond1310b22008-01-24 16:13:08 -0500500/*
501 * clear some bits on a range in the tree. This may require splitting
502 * or inserting elements in the tree, so the gfp mask is used to
503 * indicate which allocations or sleeping are allowed.
504 *
505 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
506 * the given range from the tree regardless of state (ie for truncate).
507 *
508 * the range [start, end] is inclusive.
509 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100510 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500511 */
512int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000513 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400514 struct extent_state **cached_state,
515 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500516{
517 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400518 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500519 struct extent_state *prealloc = NULL;
520 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400521 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500522 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000523 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500524
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400525 if (delete)
526 bits |= ~EXTENT_CTLBITS;
527 bits |= EXTENT_FIRST_DELALLOC;
528
Josef Bacik2ac55d42010-02-03 19:33:23 +0000529 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
530 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500531again:
532 if (!prealloc && (mask & __GFP_WAIT)) {
533 prealloc = alloc_extent_state(mask);
534 if (!prealloc)
535 return -ENOMEM;
536 }
537
Chris Masoncad321a2008-12-17 14:51:42 -0500538 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400539 if (cached_state) {
540 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000541
542 if (clear) {
543 *cached_state = NULL;
544 cached_state = NULL;
545 }
546
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400547 if (cached && cached->tree && cached->start <= start &&
548 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000549 if (clear)
550 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400551 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400552 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400553 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000554 if (clear)
555 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400556 }
Chris Masond1310b22008-01-24 16:13:08 -0500557 /*
558 * this search will find the extents that end after
559 * our range starts
560 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500561 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500562 if (!node)
563 goto out;
564 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400565hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500566 if (state->start > end)
567 goto out;
568 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400569 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500570
Liu Bo04493142012-02-16 18:34:37 +0800571 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800572 if (!(state->state & bits)) {
573 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800574 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800575 }
Liu Bo04493142012-02-16 18:34:37 +0800576
Chris Masond1310b22008-01-24 16:13:08 -0500577 /*
578 * | ---- desired range ---- |
579 * | state | or
580 * | ------------- state -------------- |
581 *
582 * We need to split the extent we found, and may flip
583 * bits on second half.
584 *
585 * If the extent we found extends past our range, we
586 * just split and search again. It'll get split again
587 * the next time though.
588 *
589 * If the extent we found is inside our range, we clear
590 * the desired bit on it.
591 */
592
593 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000594 prealloc = alloc_extent_state_atomic(prealloc);
595 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500596 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400597 if (err)
598 extent_io_tree_panic(tree, err);
599
Chris Masond1310b22008-01-24 16:13:08 -0500600 prealloc = NULL;
601 if (err)
602 goto out;
603 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800604 state = clear_state_bit(tree, state, &bits, wake);
605 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500606 }
607 goto search_again;
608 }
609 /*
610 * | ---- desired range ---- |
611 * | state |
612 * We need to split the extent, and clear the bit
613 * on the first half
614 */
615 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000616 prealloc = alloc_extent_state_atomic(prealloc);
617 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500618 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400619 if (err)
620 extent_io_tree_panic(tree, err);
621
Chris Masond1310b22008-01-24 16:13:08 -0500622 if (wake)
623 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400624
Jeff Mahoney6763af82012-03-01 14:56:29 +0100625 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400626
Chris Masond1310b22008-01-24 16:13:08 -0500627 prealloc = NULL;
628 goto out;
629 }
Chris Mason42daec22009-09-23 19:51:09 -0400630
Li Zefancdc6a392012-03-12 16:39:48 +0800631 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800632next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400633 if (last_end == (u64)-1)
634 goto out;
635 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800636 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800637 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500638 goto search_again;
639
640out:
Chris Masoncad321a2008-12-17 14:51:42 -0500641 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500642 if (prealloc)
643 free_extent_state(prealloc);
644
Jeff Mahoney6763af82012-03-01 14:56:29 +0100645 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500646
647search_again:
648 if (start > end)
649 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500650 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500651 if (mask & __GFP_WAIT)
652 cond_resched();
653 goto again;
654}
Chris Masond1310b22008-01-24 16:13:08 -0500655
Jeff Mahoney143bede2012-03-01 14:56:26 +0100656static void wait_on_state(struct extent_io_tree *tree,
657 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500658 __releases(tree->lock)
659 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500660{
661 DEFINE_WAIT(wait);
662 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500663 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500664 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500665 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500666 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500667}
668
669/*
670 * waits for one or more bits to clear on a range in the state tree.
671 * The range [start, end] is inclusive.
672 * The tree lock is taken by this function
673 */
David Sterba41074882013-04-29 13:38:46 +0000674static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
675 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500676{
677 struct extent_state *state;
678 struct rb_node *node;
679
Chris Masoncad321a2008-12-17 14:51:42 -0500680 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500681again:
682 while (1) {
683 /*
684 * this search will find all the extents that end after
685 * our range starts
686 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500687 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500688 if (!node)
689 break;
690
691 state = rb_entry(node, struct extent_state, rb_node);
692
693 if (state->start > end)
694 goto out;
695
696 if (state->state & bits) {
697 start = state->start;
698 atomic_inc(&state->refs);
699 wait_on_state(tree, state);
700 free_extent_state(state);
701 goto again;
702 }
703 start = state->end + 1;
704
705 if (start > end)
706 break;
707
Xiao Guangrongded91f02011-07-14 03:19:27 +0000708 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500709 }
710out:
Chris Masoncad321a2008-12-17 14:51:42 -0500711 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500712}
Chris Masond1310b22008-01-24 16:13:08 -0500713
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000714static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500715 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000716 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500717{
David Sterba41074882013-04-29 13:38:46 +0000718 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400719
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000720 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400721 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500722 u64 range = state->end - state->start + 1;
723 tree->dirty_bytes += range;
724 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400725 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500726}
727
Chris Mason2c64c532009-09-02 15:04:12 -0400728static void cache_state(struct extent_state *state,
729 struct extent_state **cached_ptr)
730{
731 if (cached_ptr && !(*cached_ptr)) {
732 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
733 *cached_ptr = state;
734 atomic_inc(&state->refs);
735 }
736 }
737}
738
Arne Jansen507903b2011-04-06 10:02:20 +0000739static void uncache_state(struct extent_state **cached_ptr)
740{
741 if (cached_ptr && (*cached_ptr)) {
742 struct extent_state *state = *cached_ptr;
Chris Mason109b36a2011-04-12 13:57:39 -0400743 *cached_ptr = NULL;
744 free_extent_state(state);
Arne Jansen507903b2011-04-06 10:02:20 +0000745 }
746}
747
Chris Masond1310b22008-01-24 16:13:08 -0500748/*
Chris Mason1edbb732009-09-02 13:24:36 -0400749 * set some bits on a range in the tree. This may require allocations or
750 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500751 *
Chris Mason1edbb732009-09-02 13:24:36 -0400752 * If any of the exclusive bits are set, this will fail with -EEXIST if some
753 * part of the range already has the desired bits set. The start of the
754 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500755 *
Chris Mason1edbb732009-09-02 13:24:36 -0400756 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500757 */
Chris Mason1edbb732009-09-02 13:24:36 -0400758
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100759static int __must_check
760__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000761 unsigned long bits, unsigned long exclusive_bits,
762 u64 *failed_start, struct extent_state **cached_state,
763 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500764{
765 struct extent_state *state;
766 struct extent_state *prealloc = NULL;
767 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500768 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500769 u64 last_start;
770 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400771
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400772 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500773again:
774 if (!prealloc && (mask & __GFP_WAIT)) {
775 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000776 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500777 }
778
Chris Masoncad321a2008-12-17 14:51:42 -0500779 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400780 if (cached_state && *cached_state) {
781 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400782 if (state->start <= start && state->end > start &&
783 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400784 node = &state->rb_node;
785 goto hit_next;
786 }
787 }
Chris Masond1310b22008-01-24 16:13:08 -0500788 /*
789 * this search will find all the extents that end after
790 * our range starts.
791 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500792 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500793 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000794 prealloc = alloc_extent_state_atomic(prealloc);
795 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400796 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400797 if (err)
798 extent_io_tree_panic(tree, err);
799
Chris Masond1310b22008-01-24 16:13:08 -0500800 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500801 goto out;
802 }
Chris Masond1310b22008-01-24 16:13:08 -0500803 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400804hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500805 last_start = state->start;
806 last_end = state->end;
807
808 /*
809 * | ---- desired range ---- |
810 * | state |
811 *
812 * Just lock what we found and keep going
813 */
814 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400815 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500816 *failed_start = state->start;
817 err = -EEXIST;
818 goto out;
819 }
Chris Mason42daec22009-09-23 19:51:09 -0400820
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000821 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400822 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500823 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400824 if (last_end == (u64)-1)
825 goto out;
826 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800827 state = next_state(state);
828 if (start < end && state && state->start == start &&
829 !need_resched())
830 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500831 goto search_again;
832 }
833
834 /*
835 * | ---- desired range ---- |
836 * | state |
837 * or
838 * | ------------- state -------------- |
839 *
840 * We need to split the extent we found, and may flip bits on
841 * second half.
842 *
843 * If the extent we found extends past our
844 * range, we just split and search again. It'll get split
845 * again the next time though.
846 *
847 * If the extent we found is inside our range, we set the
848 * desired bit on it.
849 */
850 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400851 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500852 *failed_start = start;
853 err = -EEXIST;
854 goto out;
855 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000856
857 prealloc = alloc_extent_state_atomic(prealloc);
858 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500859 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400860 if (err)
861 extent_io_tree_panic(tree, err);
862
Chris Masond1310b22008-01-24 16:13:08 -0500863 prealloc = NULL;
864 if (err)
865 goto out;
866 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000867 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400868 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500869 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400870 if (last_end == (u64)-1)
871 goto out;
872 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800873 state = next_state(state);
874 if (start < end && state && state->start == start &&
875 !need_resched())
876 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500877 }
878 goto search_again;
879 }
880 /*
881 * | ---- desired range ---- |
882 * | state | or | state |
883 *
884 * There's a hole, we need to insert something in it and
885 * ignore the extent we found.
886 */
887 if (state->start > start) {
888 u64 this_end;
889 if (end < last_start)
890 this_end = end;
891 else
Chris Masond3977122009-01-05 21:25:51 -0500892 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000893
894 prealloc = alloc_extent_state_atomic(prealloc);
895 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000896
897 /*
898 * Avoid to free 'prealloc' if it can be merged with
899 * the later extent.
900 */
Chris Masond1310b22008-01-24 16:13:08 -0500901 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400902 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400903 if (err)
904 extent_io_tree_panic(tree, err);
905
Chris Mason2c64c532009-09-02 15:04:12 -0400906 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500907 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500908 start = this_end + 1;
909 goto search_again;
910 }
911 /*
912 * | ---- desired range ---- |
913 * | state |
914 * We need to split the extent, and set the bit
915 * on the first half
916 */
917 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400918 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500919 *failed_start = start;
920 err = -EEXIST;
921 goto out;
922 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000923
924 prealloc = alloc_extent_state_atomic(prealloc);
925 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500926 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400927 if (err)
928 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500929
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000930 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400931 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500932 merge_state(tree, prealloc);
933 prealloc = NULL;
934 goto out;
935 }
936
937 goto search_again;
938
939out:
Chris Masoncad321a2008-12-17 14:51:42 -0500940 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500941 if (prealloc)
942 free_extent_state(prealloc);
943
944 return err;
945
946search_again:
947 if (start > end)
948 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500949 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500950 if (mask & __GFP_WAIT)
951 cond_resched();
952 goto again;
953}
Chris Masond1310b22008-01-24 16:13:08 -0500954
David Sterba41074882013-04-29 13:38:46 +0000955int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
956 unsigned long bits, u64 * failed_start,
957 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100958{
959 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
960 cached_state, mask);
961}
962
963
Josef Bacik462d6fa2011-09-26 13:56:12 -0400964/**
Liu Bo10983f22012-07-11 15:26:19 +0800965 * convert_extent_bit - convert all bits in a given range from one bit to
966 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400967 * @tree: the io tree to search
968 * @start: the start offset in bytes
969 * @end: the end offset in bytes (inclusive)
970 * @bits: the bits to set in this range
971 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400972 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400973 * @mask: the allocation mask
974 *
975 * This will go through and set bits for the given range. If any states exist
976 * already in this range they are set with the given bit and cleared of the
977 * clear_bits. This is only meant to be used by things that are mergeable, ie
978 * converting from say DELALLOC to DIRTY. This is not meant to be used with
979 * boundary bits like LOCK.
980 */
981int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000982 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -0400983 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -0400984{
985 struct extent_state *state;
986 struct extent_state *prealloc = NULL;
987 struct rb_node *node;
988 int err = 0;
989 u64 last_start;
990 u64 last_end;
991
992again:
993 if (!prealloc && (mask & __GFP_WAIT)) {
994 prealloc = alloc_extent_state(mask);
995 if (!prealloc)
996 return -ENOMEM;
997 }
998
999 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001000 if (cached_state && *cached_state) {
1001 state = *cached_state;
1002 if (state->start <= start && state->end > start &&
1003 state->tree) {
1004 node = &state->rb_node;
1005 goto hit_next;
1006 }
1007 }
1008
Josef Bacik462d6fa2011-09-26 13:56:12 -04001009 /*
1010 * this search will find all the extents that end after
1011 * our range starts.
1012 */
1013 node = tree_search(tree, start);
1014 if (!node) {
1015 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001016 if (!prealloc) {
1017 err = -ENOMEM;
1018 goto out;
1019 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001020 err = insert_state(tree, prealloc, start, end, &bits);
1021 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001022 if (err)
1023 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001024 goto out;
1025 }
1026 state = rb_entry(node, struct extent_state, rb_node);
1027hit_next:
1028 last_start = state->start;
1029 last_end = state->end;
1030
1031 /*
1032 * | ---- desired range ---- |
1033 * | state |
1034 *
1035 * Just lock what we found and keep going
1036 */
1037 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001038 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001039 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001040 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001041 if (last_end == (u64)-1)
1042 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001043 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001044 if (start < end && state && state->start == start &&
1045 !need_resched())
1046 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001047 goto search_again;
1048 }
1049
1050 /*
1051 * | ---- desired range ---- |
1052 * | state |
1053 * or
1054 * | ------------- state -------------- |
1055 *
1056 * We need to split the extent we found, and may flip bits on
1057 * second half.
1058 *
1059 * If the extent we found extends past our
1060 * range, we just split and search again. It'll get split
1061 * again the next time though.
1062 *
1063 * If the extent we found is inside our range, we set the
1064 * desired bit on it.
1065 */
1066 if (state->start < start) {
1067 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001068 if (!prealloc) {
1069 err = -ENOMEM;
1070 goto out;
1071 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001072 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001073 if (err)
1074 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001075 prealloc = NULL;
1076 if (err)
1077 goto out;
1078 if (state->end <= end) {
1079 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001080 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001081 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001082 if (last_end == (u64)-1)
1083 goto out;
1084 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001085 if (start < end && state && state->start == start &&
1086 !need_resched())
1087 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001088 }
1089 goto search_again;
1090 }
1091 /*
1092 * | ---- desired range ---- |
1093 * | state | or | state |
1094 *
1095 * There's a hole, we need to insert something in it and
1096 * ignore the extent we found.
1097 */
1098 if (state->start > start) {
1099 u64 this_end;
1100 if (end < last_start)
1101 this_end = end;
1102 else
1103 this_end = last_start - 1;
1104
1105 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001106 if (!prealloc) {
1107 err = -ENOMEM;
1108 goto out;
1109 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001110
1111 /*
1112 * Avoid to free 'prealloc' if it can be merged with
1113 * the later extent.
1114 */
1115 err = insert_state(tree, prealloc, start, this_end,
1116 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001117 if (err)
1118 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001119 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001120 prealloc = NULL;
1121 start = this_end + 1;
1122 goto search_again;
1123 }
1124 /*
1125 * | ---- desired range ---- |
1126 * | state |
1127 * We need to split the extent, and set the bit
1128 * on the first half
1129 */
1130 if (state->start <= end && state->end > end) {
1131 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001132 if (!prealloc) {
1133 err = -ENOMEM;
1134 goto out;
1135 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001136
1137 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001138 if (err)
1139 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001140
1141 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001142 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001143 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001144 prealloc = NULL;
1145 goto out;
1146 }
1147
1148 goto search_again;
1149
1150out:
1151 spin_unlock(&tree->lock);
1152 if (prealloc)
1153 free_extent_state(prealloc);
1154
1155 return err;
1156
1157search_again:
1158 if (start > end)
1159 goto out;
1160 spin_unlock(&tree->lock);
1161 if (mask & __GFP_WAIT)
1162 cond_resched();
1163 goto again;
1164}
1165
Chris Masond1310b22008-01-24 16:13:08 -05001166/* wrappers around set/clear extent bit */
1167int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1168 gfp_t mask)
1169{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001170 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001171 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001172}
Chris Masond1310b22008-01-24 16:13:08 -05001173
1174int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001175 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001176{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001177 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001178 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001179}
Chris Masond1310b22008-01-24 16:13:08 -05001180
1181int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001182 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001183{
Chris Mason2c64c532009-09-02 15:04:12 -04001184 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001185}
Chris Masond1310b22008-01-24 16:13:08 -05001186
1187int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001188 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001189{
1190 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001191 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001192 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001193}
Chris Masond1310b22008-01-24 16:13:08 -05001194
Liu Bo9e8a4a82012-09-05 19:10:51 -06001195int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1196 struct extent_state **cached_state, gfp_t mask)
1197{
1198 return set_extent_bit(tree, start, end,
1199 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1200 NULL, cached_state, mask);
1201}
1202
Chris Masond1310b22008-01-24 16:13:08 -05001203int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1204 gfp_t mask)
1205{
1206 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001207 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001208 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001209}
Chris Masond1310b22008-01-24 16:13:08 -05001210
1211int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1212 gfp_t mask)
1213{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001214 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001215 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001216}
Chris Masond1310b22008-01-24 16:13:08 -05001217
Chris Masond1310b22008-01-24 16:13:08 -05001218int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001219 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001220{
Liu Bo6b67a322013-03-28 08:30:28 +00001221 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001222 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001223}
Chris Masond1310b22008-01-24 16:13:08 -05001224
Josef Bacik5fd02042012-05-02 14:00:54 -04001225int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1226 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001227{
Chris Mason2c64c532009-09-02 15:04:12 -04001228 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001229 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001230}
Chris Masond1310b22008-01-24 16:13:08 -05001231
Chris Masond352ac62008-09-29 15:18:18 -04001232/*
1233 * either insert or lock state struct between start and end use mask to tell
1234 * us if waiting is desired.
1235 */
Chris Mason1edbb732009-09-02 13:24:36 -04001236int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001237 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001238{
1239 int err;
1240 u64 failed_start;
1241 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001242 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1243 EXTENT_LOCKED, &failed_start,
1244 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001245 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001246 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1247 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001248 } else
Chris Masond1310b22008-01-24 16:13:08 -05001249 break;
Chris Masond1310b22008-01-24 16:13:08 -05001250 WARN_ON(start > end);
1251 }
1252 return err;
1253}
Chris Masond1310b22008-01-24 16:13:08 -05001254
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001255int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001256{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001257 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001258}
1259
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001260int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001261{
1262 int err;
1263 u64 failed_start;
1264
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001265 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1266 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001267 if (err == -EEXIST) {
1268 if (failed_start > start)
1269 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001270 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001271 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001272 }
Josef Bacik25179202008-10-29 14:49:05 -04001273 return 1;
1274}
Josef Bacik25179202008-10-29 14:49:05 -04001275
Chris Mason2c64c532009-09-02 15:04:12 -04001276int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1277 struct extent_state **cached, gfp_t mask)
1278{
1279 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1280 mask);
1281}
1282
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001283int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001284{
Chris Mason2c64c532009-09-02 15:04:12 -04001285 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001286 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001287}
Chris Masond1310b22008-01-24 16:13:08 -05001288
Chris Mason4adaa612013-03-26 13:07:00 -04001289int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1290{
1291 unsigned long index = start >> PAGE_CACHE_SHIFT;
1292 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1293 struct page *page;
1294
1295 while (index <= end_index) {
1296 page = find_get_page(inode->i_mapping, index);
1297 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1298 clear_page_dirty_for_io(page);
1299 page_cache_release(page);
1300 index++;
1301 }
1302 return 0;
1303}
1304
1305int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1306{
1307 unsigned long index = start >> PAGE_CACHE_SHIFT;
1308 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1309 struct page *page;
1310
1311 while (index <= end_index) {
1312 page = find_get_page(inode->i_mapping, index);
1313 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1314 account_page_redirty(page);
1315 __set_page_dirty_nobuffers(page);
1316 page_cache_release(page);
1317 index++;
1318 }
1319 return 0;
1320}
1321
Chris Masond1310b22008-01-24 16:13:08 -05001322/*
Chris Masond1310b22008-01-24 16:13:08 -05001323 * helper function to set both pages and extents in the tree writeback
1324 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001325static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001326{
1327 unsigned long index = start >> PAGE_CACHE_SHIFT;
1328 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1329 struct page *page;
1330
1331 while (index <= end_index) {
1332 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001333 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001334 set_page_writeback(page);
1335 page_cache_release(page);
1336 index++;
1337 }
Chris Masond1310b22008-01-24 16:13:08 -05001338 return 0;
1339}
Chris Masond1310b22008-01-24 16:13:08 -05001340
Chris Masond352ac62008-09-29 15:18:18 -04001341/* find the first state struct with 'bits' set after 'start', and
1342 * return it. tree->lock must be held. NULL will returned if
1343 * nothing was found after 'start'
1344 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001345static struct extent_state *
1346find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001347 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001348{
1349 struct rb_node *node;
1350 struct extent_state *state;
1351
1352 /*
1353 * this search will find all the extents that end after
1354 * our range starts.
1355 */
1356 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001357 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001358 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001359
Chris Masond3977122009-01-05 21:25:51 -05001360 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001361 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001362 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001363 return state;
Chris Masond3977122009-01-05 21:25:51 -05001364
Chris Masond7fc6402008-02-18 12:12:38 -05001365 node = rb_next(node);
1366 if (!node)
1367 break;
1368 }
1369out:
1370 return NULL;
1371}
Chris Masond7fc6402008-02-18 12:12:38 -05001372
Chris Masond352ac62008-09-29 15:18:18 -04001373/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001374 * find the first offset in the io tree with 'bits' set. zero is
1375 * returned if we find something, and *start_ret and *end_ret are
1376 * set to reflect the state struct that was found.
1377 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001378 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001379 */
1380int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001381 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001382 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001383{
1384 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001385 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001386 int ret = 1;
1387
1388 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001389 if (cached_state && *cached_state) {
1390 state = *cached_state;
1391 if (state->end == start - 1 && state->tree) {
1392 n = rb_next(&state->rb_node);
1393 while (n) {
1394 state = rb_entry(n, struct extent_state,
1395 rb_node);
1396 if (state->state & bits)
1397 goto got_it;
1398 n = rb_next(n);
1399 }
1400 free_extent_state(*cached_state);
1401 *cached_state = NULL;
1402 goto out;
1403 }
1404 free_extent_state(*cached_state);
1405 *cached_state = NULL;
1406 }
1407
Xiao Guangrong69261c42011-07-14 03:19:45 +00001408 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001409got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001410 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001411 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001412 *start_ret = state->start;
1413 *end_ret = state->end;
1414 ret = 0;
1415 }
Josef Bacike6138872012-09-27 17:07:30 -04001416out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001417 spin_unlock(&tree->lock);
1418 return ret;
1419}
1420
1421/*
Chris Masond352ac62008-09-29 15:18:18 -04001422 * find a contiguous range of bytes in the file marked as delalloc, not
1423 * more than 'max_bytes'. start and end are used to return the range,
1424 *
1425 * 1 is returned if we find something, 0 if nothing was in the tree
1426 */
Chris Masonc8b97812008-10-29 14:49:59 -04001427static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001428 u64 *start, u64 *end, u64 max_bytes,
1429 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001430{
1431 struct rb_node *node;
1432 struct extent_state *state;
1433 u64 cur_start = *start;
1434 u64 found = 0;
1435 u64 total_bytes = 0;
1436
Chris Masoncad321a2008-12-17 14:51:42 -05001437 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001438
Chris Masond1310b22008-01-24 16:13:08 -05001439 /*
1440 * this search will find all the extents that end after
1441 * our range starts.
1442 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001443 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001444 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001445 if (!found)
1446 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001447 goto out;
1448 }
1449
Chris Masond3977122009-01-05 21:25:51 -05001450 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001451 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001452 if (found && (state->start != cur_start ||
1453 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001454 goto out;
1455 }
1456 if (!(state->state & EXTENT_DELALLOC)) {
1457 if (!found)
1458 *end = state->end;
1459 goto out;
1460 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001461 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001462 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001463 *cached_state = state;
1464 atomic_inc(&state->refs);
1465 }
Chris Masond1310b22008-01-24 16:13:08 -05001466 found++;
1467 *end = state->end;
1468 cur_start = state->end + 1;
1469 node = rb_next(node);
1470 if (!node)
1471 break;
1472 total_bytes += state->end - state->start + 1;
1473 if (total_bytes >= max_bytes)
1474 break;
1475 }
1476out:
Chris Masoncad321a2008-12-17 14:51:42 -05001477 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001478 return found;
1479}
1480
Jeff Mahoney143bede2012-03-01 14:56:26 +01001481static noinline void __unlock_for_delalloc(struct inode *inode,
1482 struct page *locked_page,
1483 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001484{
1485 int ret;
1486 struct page *pages[16];
1487 unsigned long index = start >> PAGE_CACHE_SHIFT;
1488 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1489 unsigned long nr_pages = end_index - index + 1;
1490 int i;
1491
1492 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001493 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001494
Chris Masond3977122009-01-05 21:25:51 -05001495 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001496 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001497 min_t(unsigned long, nr_pages,
1498 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001499 for (i = 0; i < ret; i++) {
1500 if (pages[i] != locked_page)
1501 unlock_page(pages[i]);
1502 page_cache_release(pages[i]);
1503 }
1504 nr_pages -= ret;
1505 index += ret;
1506 cond_resched();
1507 }
Chris Masonc8b97812008-10-29 14:49:59 -04001508}
1509
1510static noinline int lock_delalloc_pages(struct inode *inode,
1511 struct page *locked_page,
1512 u64 delalloc_start,
1513 u64 delalloc_end)
1514{
1515 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1516 unsigned long start_index = index;
1517 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1518 unsigned long pages_locked = 0;
1519 struct page *pages[16];
1520 unsigned long nrpages;
1521 int ret;
1522 int i;
1523
1524 /* the caller is responsible for locking the start index */
1525 if (index == locked_page->index && index == end_index)
1526 return 0;
1527
1528 /* skip the page at the start index */
1529 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001530 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001531 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001532 min_t(unsigned long,
1533 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001534 if (ret == 0) {
1535 ret = -EAGAIN;
1536 goto done;
1537 }
1538 /* now we have an array of pages, lock them all */
1539 for (i = 0; i < ret; i++) {
1540 /*
1541 * the caller is taking responsibility for
1542 * locked_page
1543 */
Chris Mason771ed682008-11-06 22:02:51 -05001544 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001545 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001546 if (!PageDirty(pages[i]) ||
1547 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001548 ret = -EAGAIN;
1549 unlock_page(pages[i]);
1550 page_cache_release(pages[i]);
1551 goto done;
1552 }
1553 }
Chris Masonc8b97812008-10-29 14:49:59 -04001554 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001555 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001556 }
Chris Masonc8b97812008-10-29 14:49:59 -04001557 nrpages -= ret;
1558 index += ret;
1559 cond_resched();
1560 }
1561 ret = 0;
1562done:
1563 if (ret && pages_locked) {
1564 __unlock_for_delalloc(inode, locked_page,
1565 delalloc_start,
1566 ((u64)(start_index + pages_locked - 1)) <<
1567 PAGE_CACHE_SHIFT);
1568 }
1569 return ret;
1570}
1571
1572/*
1573 * find a contiguous range of bytes in the file marked as delalloc, not
1574 * more than 'max_bytes'. start and end are used to return the range,
1575 *
1576 * 1 is returned if we find something, 0 if nothing was in the tree
1577 */
1578static noinline u64 find_lock_delalloc_range(struct inode *inode,
1579 struct extent_io_tree *tree,
1580 struct page *locked_page,
1581 u64 *start, u64 *end,
1582 u64 max_bytes)
1583{
1584 u64 delalloc_start;
1585 u64 delalloc_end;
1586 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001587 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001588 int ret;
1589 int loops = 0;
1590
1591again:
1592 /* step one, find a bunch of delalloc bytes starting at start */
1593 delalloc_start = *start;
1594 delalloc_end = 0;
1595 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001596 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001597 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001598 *start = delalloc_start;
1599 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001600 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001601 return found;
1602 }
1603
1604 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001605 * start comes from the offset of locked_page. We have to lock
1606 * pages in order, so we can't process delalloc bytes before
1607 * locked_page
1608 */
Chris Masond3977122009-01-05 21:25:51 -05001609 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001610 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001611
1612 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001613 * make sure to limit the number of pages we try to lock down
1614 * if we're looping.
1615 */
Chris Masond3977122009-01-05 21:25:51 -05001616 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001617 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001618
Chris Masonc8b97812008-10-29 14:49:59 -04001619 /* step two, lock all the pages after the page that has start */
1620 ret = lock_delalloc_pages(inode, locked_page,
1621 delalloc_start, delalloc_end);
1622 if (ret == -EAGAIN) {
1623 /* some of the pages are gone, lets avoid looping by
1624 * shortening the size of the delalloc range we're searching
1625 */
Chris Mason9655d292009-09-02 15:22:30 -04001626 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001627 if (!loops) {
1628 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1629 max_bytes = PAGE_CACHE_SIZE - offset;
1630 loops = 1;
1631 goto again;
1632 } else {
1633 found = 0;
1634 goto out_failed;
1635 }
1636 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001637 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001638
1639 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001640 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001641
1642 /* then test to make sure it is all still delalloc */
1643 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001644 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001645 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001646 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1647 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001648 __unlock_for_delalloc(inode, locked_page,
1649 delalloc_start, delalloc_end);
1650 cond_resched();
1651 goto again;
1652 }
Chris Mason9655d292009-09-02 15:22:30 -04001653 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001654 *start = delalloc_start;
1655 *end = delalloc_end;
1656out_failed:
1657 return found;
1658}
1659
1660int extent_clear_unlock_delalloc(struct inode *inode,
1661 struct extent_io_tree *tree,
1662 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001663 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001664{
1665 int ret;
1666 struct page *pages[16];
1667 unsigned long index = start >> PAGE_CACHE_SHIFT;
1668 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1669 unsigned long nr_pages = end_index - index + 1;
1670 int i;
David Sterba41074882013-04-29 13:38:46 +00001671 unsigned long clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001672
Chris Masona791e352009-10-08 11:27:10 -04001673 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001674 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001675 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001676 clear_bits |= EXTENT_DIRTY;
1677
Chris Masona791e352009-10-08 11:27:10 -04001678 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001679 clear_bits |= EXTENT_DELALLOC;
1680
Chris Mason2c64c532009-09-02 15:04:12 -04001681 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001682 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1683 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1684 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001685 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001686
Chris Masond3977122009-01-05 21:25:51 -05001687 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001688 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001689 min_t(unsigned long,
1690 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001691 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001692
Chris Masona791e352009-10-08 11:27:10 -04001693 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001694 SetPagePrivate2(pages[i]);
1695
Chris Masonc8b97812008-10-29 14:49:59 -04001696 if (pages[i] == locked_page) {
1697 page_cache_release(pages[i]);
1698 continue;
1699 }
Chris Masona791e352009-10-08 11:27:10 -04001700 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001701 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001702 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001703 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001704 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001705 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001706 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001707 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001708 page_cache_release(pages[i]);
1709 }
1710 nr_pages -= ret;
1711 index += ret;
1712 cond_resched();
1713 }
1714 return 0;
1715}
Chris Masonc8b97812008-10-29 14:49:59 -04001716
Chris Masond352ac62008-09-29 15:18:18 -04001717/*
1718 * count the number of bytes in the tree that have a given bit(s)
1719 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1720 * cached. The total number found is returned.
1721 */
Chris Masond1310b22008-01-24 16:13:08 -05001722u64 count_range_bits(struct extent_io_tree *tree,
1723 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001724 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001725{
1726 struct rb_node *node;
1727 struct extent_state *state;
1728 u64 cur_start = *start;
1729 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001730 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001731 int found = 0;
1732
1733 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001734 WARN_ON(1);
1735 return 0;
1736 }
1737
Chris Masoncad321a2008-12-17 14:51:42 -05001738 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001739 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1740 total_bytes = tree->dirty_bytes;
1741 goto out;
1742 }
1743 /*
1744 * this search will find all the extents that end after
1745 * our range starts.
1746 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001747 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001748 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001749 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001750
Chris Masond3977122009-01-05 21:25:51 -05001751 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001752 state = rb_entry(node, struct extent_state, rb_node);
1753 if (state->start > search_end)
1754 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001755 if (contig && found && state->start > last + 1)
1756 break;
1757 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001758 total_bytes += min(search_end, state->end) + 1 -
1759 max(cur_start, state->start);
1760 if (total_bytes >= max_bytes)
1761 break;
1762 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001763 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001764 found = 1;
1765 }
Chris Masonec29ed52011-02-23 16:23:20 -05001766 last = state->end;
1767 } else if (contig && found) {
1768 break;
Chris Masond1310b22008-01-24 16:13:08 -05001769 }
1770 node = rb_next(node);
1771 if (!node)
1772 break;
1773 }
1774out:
Chris Masoncad321a2008-12-17 14:51:42 -05001775 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001776 return total_bytes;
1777}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001778
Chris Masond352ac62008-09-29 15:18:18 -04001779/*
1780 * set the private field for a given byte offset in the tree. If there isn't
1781 * an extent_state there already, this does nothing.
1782 */
Chris Masond1310b22008-01-24 16:13:08 -05001783int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1784{
1785 struct rb_node *node;
1786 struct extent_state *state;
1787 int ret = 0;
1788
Chris Masoncad321a2008-12-17 14:51:42 -05001789 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001790 /*
1791 * this search will find all the extents that end after
1792 * our range starts.
1793 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001794 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001795 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001796 ret = -ENOENT;
1797 goto out;
1798 }
1799 state = rb_entry(node, struct extent_state, rb_node);
1800 if (state->start != start) {
1801 ret = -ENOENT;
1802 goto out;
1803 }
1804 state->private = private;
1805out:
Chris Masoncad321a2008-12-17 14:51:42 -05001806 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001807 return ret;
1808}
1809
Miao Xiee4100d92013-04-05 07:20:56 +00001810void extent_cache_csums_dio(struct extent_io_tree *tree, u64 start, u32 csums[],
1811 int count)
1812{
1813 struct rb_node *node;
1814 struct extent_state *state;
1815
1816 spin_lock(&tree->lock);
1817 /*
1818 * this search will find all the extents that end after
1819 * our range starts.
1820 */
1821 node = tree_search(tree, start);
1822 BUG_ON(!node);
1823
1824 state = rb_entry(node, struct extent_state, rb_node);
1825 BUG_ON(state->start != start);
1826
1827 while (count) {
1828 state->private = *csums++;
1829 count--;
1830 state = next_state(state);
1831 }
1832 spin_unlock(&tree->lock);
1833}
1834
1835static inline u64 __btrfs_get_bio_offset(struct bio *bio, int bio_index)
1836{
1837 struct bio_vec *bvec = bio->bi_io_vec + bio_index;
1838
1839 return page_offset(bvec->bv_page) + bvec->bv_offset;
1840}
1841
1842void extent_cache_csums(struct extent_io_tree *tree, struct bio *bio, int bio_index,
1843 u32 csums[], int count)
1844{
1845 struct rb_node *node;
1846 struct extent_state *state = NULL;
1847 u64 start;
1848
1849 spin_lock(&tree->lock);
1850 do {
1851 start = __btrfs_get_bio_offset(bio, bio_index);
1852 if (state == NULL || state->start != start) {
1853 node = tree_search(tree, start);
1854 BUG_ON(!node);
1855
1856 state = rb_entry(node, struct extent_state, rb_node);
1857 BUG_ON(state->start != start);
1858 }
1859 state->private = *csums++;
1860 count--;
1861 bio_index++;
1862
1863 state = next_state(state);
1864 } while (count);
1865 spin_unlock(&tree->lock);
1866}
1867
Chris Masond1310b22008-01-24 16:13:08 -05001868int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1869{
1870 struct rb_node *node;
1871 struct extent_state *state;
1872 int ret = 0;
1873
Chris Masoncad321a2008-12-17 14:51:42 -05001874 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001875 /*
1876 * this search will find all the extents that end after
1877 * our range starts.
1878 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001879 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001880 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001881 ret = -ENOENT;
1882 goto out;
1883 }
1884 state = rb_entry(node, struct extent_state, rb_node);
1885 if (state->start != start) {
1886 ret = -ENOENT;
1887 goto out;
1888 }
1889 *private = state->private;
1890out:
Chris Masoncad321a2008-12-17 14:51:42 -05001891 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001892 return ret;
1893}
1894
1895/*
1896 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001897 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001898 * has the bits set. Otherwise, 1 is returned if any bit in the
1899 * range is found set.
1900 */
1901int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001902 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001903{
1904 struct extent_state *state = NULL;
1905 struct rb_node *node;
1906 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001907
Chris Masoncad321a2008-12-17 14:51:42 -05001908 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001909 if (cached && cached->tree && cached->start <= start &&
1910 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001911 node = &cached->rb_node;
1912 else
1913 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001914 while (node && start <= end) {
1915 state = rb_entry(node, struct extent_state, rb_node);
1916
1917 if (filled && state->start > start) {
1918 bitset = 0;
1919 break;
1920 }
1921
1922 if (state->start > end)
1923 break;
1924
1925 if (state->state & bits) {
1926 bitset = 1;
1927 if (!filled)
1928 break;
1929 } else if (filled) {
1930 bitset = 0;
1931 break;
1932 }
Chris Mason46562cec2009-09-23 20:23:16 -04001933
1934 if (state->end == (u64)-1)
1935 break;
1936
Chris Masond1310b22008-01-24 16:13:08 -05001937 start = state->end + 1;
1938 if (start > end)
1939 break;
1940 node = rb_next(node);
1941 if (!node) {
1942 if (filled)
1943 bitset = 0;
1944 break;
1945 }
1946 }
Chris Masoncad321a2008-12-17 14:51:42 -05001947 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001948 return bitset;
1949}
Chris Masond1310b22008-01-24 16:13:08 -05001950
1951/*
1952 * helper function to set a given page up to date if all the
1953 * extents in the tree for that page are up to date
1954 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001955static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001956{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001957 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001958 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001959 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001960 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001961}
1962
1963/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001964 * When IO fails, either with EIO or csum verification fails, we
1965 * try other mirrors that might have a good copy of the data. This
1966 * io_failure_record is used to record state as we go through all the
1967 * mirrors. If another mirror has good data, the page is set up to date
1968 * and things continue. If a good mirror can't be found, the original
1969 * bio end_io callback is called to indicate things have failed.
1970 */
1971struct io_failure_record {
1972 struct page *page;
1973 u64 start;
1974 u64 len;
1975 u64 logical;
1976 unsigned long bio_flags;
1977 int this_mirror;
1978 int failed_mirror;
1979 int in_validation;
1980};
1981
1982static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1983 int did_repair)
1984{
1985 int ret;
1986 int err = 0;
1987 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1988
1989 set_state_private(failure_tree, rec->start, 0);
1990 ret = clear_extent_bits(failure_tree, rec->start,
1991 rec->start + rec->len - 1,
1992 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1993 if (ret)
1994 err = ret;
1995
David Woodhouse53b381b2013-01-29 18:40:14 -05001996 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1997 rec->start + rec->len - 1,
1998 EXTENT_DAMAGED, GFP_NOFS);
1999 if (ret && !err)
2000 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002001
2002 kfree(rec);
2003 return err;
2004}
2005
2006static void repair_io_failure_callback(struct bio *bio, int err)
2007{
2008 complete(bio->bi_private);
2009}
2010
2011/*
2012 * this bypasses the standard btrfs submit functions deliberately, as
2013 * the standard behavior is to write all copies in a raid setup. here we only
2014 * want to write the one bad copy. so we do the mapping for ourselves and issue
2015 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002016 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002017 * actually prevents the read that triggered the error from finishing.
2018 * currently, there can be no more than two copies of every data bit. thus,
2019 * exactly one rewrite is required.
2020 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002021int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002022 u64 length, u64 logical, struct page *page,
2023 int mirror_num)
2024{
2025 struct bio *bio;
2026 struct btrfs_device *dev;
2027 DECLARE_COMPLETION_ONSTACK(compl);
2028 u64 map_length = 0;
2029 u64 sector;
2030 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002031 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002032 int ret;
2033
2034 BUG_ON(!mirror_num);
2035
David Woodhouse53b381b2013-01-29 18:40:14 -05002036 /* we can't repair anything in raid56 yet */
2037 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2038 return 0;
2039
Chris Mason9be33952013-05-17 18:30:14 -04002040 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002041 if (!bio)
2042 return -EIO;
2043 bio->bi_private = &compl;
2044 bio->bi_end_io = repair_io_failure_callback;
2045 bio->bi_size = 0;
2046 map_length = length;
2047
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002048 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002049 &map_length, &bbio, mirror_num);
2050 if (ret) {
2051 bio_put(bio);
2052 return -EIO;
2053 }
2054 BUG_ON(mirror_num != bbio->mirror_num);
2055 sector = bbio->stripes[mirror_num-1].physical >> 9;
2056 bio->bi_sector = sector;
2057 dev = bbio->stripes[mirror_num-1].dev;
2058 kfree(bbio);
2059 if (!dev || !dev->bdev || !dev->writeable) {
2060 bio_put(bio);
2061 return -EIO;
2062 }
2063 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002064 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01002065 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002066 wait_for_completion(&compl);
2067
2068 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2069 /* try to remap that extent elsewhere? */
2070 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002071 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002072 return -EIO;
2073 }
2074
Anand Jaind5b025d2012-07-02 22:05:21 -06002075 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002076 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2077 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002078
2079 bio_put(bio);
2080 return 0;
2081}
2082
Josef Bacikea466792012-03-26 21:57:36 -04002083int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2084 int mirror_num)
2085{
Josef Bacikea466792012-03-26 21:57:36 -04002086 u64 start = eb->start;
2087 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002088 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002089
2090 for (i = 0; i < num_pages; i++) {
2091 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002092 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002093 start, p, mirror_num);
2094 if (ret)
2095 break;
2096 start += PAGE_CACHE_SIZE;
2097 }
2098
2099 return ret;
2100}
2101
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002102/*
2103 * each time an IO finishes, we do a fast check in the IO failure tree
2104 * to see if we need to process or clean up an io_failure_record
2105 */
2106static int clean_io_failure(u64 start, struct page *page)
2107{
2108 u64 private;
2109 u64 private_failure;
2110 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002111 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002112 struct extent_state *state;
2113 int num_copies;
2114 int did_repair = 0;
2115 int ret;
2116 struct inode *inode = page->mapping->host;
2117
2118 private = 0;
2119 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2120 (u64)-1, 1, EXTENT_DIRTY, 0);
2121 if (!ret)
2122 return 0;
2123
2124 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2125 &private_failure);
2126 if (ret)
2127 return 0;
2128
2129 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2130 BUG_ON(!failrec->this_mirror);
2131
2132 if (failrec->in_validation) {
2133 /* there was no real error, just free the record */
2134 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2135 failrec->start);
2136 did_repair = 1;
2137 goto out;
2138 }
2139
2140 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2141 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2142 failrec->start,
2143 EXTENT_LOCKED);
2144 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2145
2146 if (state && state->start == failrec->start) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002147 fs_info = BTRFS_I(inode)->root->fs_info;
2148 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2149 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002150 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002151 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002152 failrec->logical, page,
2153 failrec->failed_mirror);
2154 did_repair = !ret;
2155 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002156 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002157 }
2158
2159out:
2160 if (!ret)
2161 ret = free_io_failure(inode, failrec, did_repair);
2162
2163 return ret;
2164}
2165
2166/*
2167 * this is a generic handler for readpage errors (default
2168 * readpage_io_failed_hook). if other copies exist, read those and write back
2169 * good data to the failed position. does not investigate in remapping the
2170 * failed extent elsewhere, hoping the device will be smart enough to do this as
2171 * needed
2172 */
2173
2174static int bio_readpage_error(struct bio *failed_bio, struct page *page,
2175 u64 start, u64 end, int failed_mirror,
2176 struct extent_state *state)
2177{
2178 struct io_failure_record *failrec = NULL;
2179 u64 private;
2180 struct extent_map *em;
2181 struct inode *inode = page->mapping->host;
2182 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2183 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2184 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2185 struct bio *bio;
2186 int num_copies;
2187 int ret;
2188 int read_mode;
2189 u64 logical;
2190
2191 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2192
2193 ret = get_state_private(failure_tree, start, &private);
2194 if (ret) {
2195 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2196 if (!failrec)
2197 return -ENOMEM;
2198 failrec->start = start;
2199 failrec->len = end - start + 1;
2200 failrec->this_mirror = 0;
2201 failrec->bio_flags = 0;
2202 failrec->in_validation = 0;
2203
2204 read_lock(&em_tree->lock);
2205 em = lookup_extent_mapping(em_tree, start, failrec->len);
2206 if (!em) {
2207 read_unlock(&em_tree->lock);
2208 kfree(failrec);
2209 return -EIO;
2210 }
2211
2212 if (em->start > start || em->start + em->len < start) {
2213 free_extent_map(em);
2214 em = NULL;
2215 }
2216 read_unlock(&em_tree->lock);
2217
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002218 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002219 kfree(failrec);
2220 return -EIO;
2221 }
2222 logical = start - em->start;
2223 logical = em->block_start + logical;
2224 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2225 logical = em->block_start;
2226 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2227 extent_set_compress_type(&failrec->bio_flags,
2228 em->compress_type);
2229 }
2230 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2231 "len=%llu\n", logical, start, failrec->len);
2232 failrec->logical = logical;
2233 free_extent_map(em);
2234
2235 /* set the bits in the private failure tree */
2236 ret = set_extent_bits(failure_tree, start, end,
2237 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2238 if (ret >= 0)
2239 ret = set_state_private(failure_tree, start,
2240 (u64)(unsigned long)failrec);
2241 /* set the bits in the inode's tree */
2242 if (ret >= 0)
2243 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2244 GFP_NOFS);
2245 if (ret < 0) {
2246 kfree(failrec);
2247 return ret;
2248 }
2249 } else {
2250 failrec = (struct io_failure_record *)(unsigned long)private;
2251 pr_debug("bio_readpage_error: (found) logical=%llu, "
2252 "start=%llu, len=%llu, validation=%d\n",
2253 failrec->logical, failrec->start, failrec->len,
2254 failrec->in_validation);
2255 /*
2256 * when data can be on disk more than twice, add to failrec here
2257 * (e.g. with a list for failed_mirror) to make
2258 * clean_io_failure() clean all those errors at once.
2259 */
2260 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002261 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2262 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002263 if (num_copies == 1) {
2264 /*
2265 * we only have a single copy of the data, so don't bother with
2266 * all the retry and error correction code that follows. no
2267 * matter what the error is, it is very likely to persist.
2268 */
2269 pr_debug("bio_readpage_error: cannot repair, num_copies == 1. "
2270 "state=%p, num_copies=%d, next_mirror %d, "
2271 "failed_mirror %d\n", state, num_copies,
2272 failrec->this_mirror, failed_mirror);
2273 free_io_failure(inode, failrec, 0);
2274 return -EIO;
2275 }
2276
2277 if (!state) {
2278 spin_lock(&tree->lock);
2279 state = find_first_extent_bit_state(tree, failrec->start,
2280 EXTENT_LOCKED);
2281 if (state && state->start != failrec->start)
2282 state = NULL;
2283 spin_unlock(&tree->lock);
2284 }
2285
2286 /*
2287 * there are two premises:
2288 * a) deliver good data to the caller
2289 * b) correct the bad sectors on disk
2290 */
2291 if (failed_bio->bi_vcnt > 1) {
2292 /*
2293 * to fulfill b), we need to know the exact failing sectors, as
2294 * we don't want to rewrite any more than the failed ones. thus,
2295 * we need separate read requests for the failed bio
2296 *
2297 * if the following BUG_ON triggers, our validation request got
2298 * merged. we need separate requests for our algorithm to work.
2299 */
2300 BUG_ON(failrec->in_validation);
2301 failrec->in_validation = 1;
2302 failrec->this_mirror = failed_mirror;
2303 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2304 } else {
2305 /*
2306 * we're ready to fulfill a) and b) alongside. get a good copy
2307 * of the failed sector and if we succeed, we have setup
2308 * everything for repair_io_failure to do the rest for us.
2309 */
2310 if (failrec->in_validation) {
2311 BUG_ON(failrec->this_mirror != failed_mirror);
2312 failrec->in_validation = 0;
2313 failrec->this_mirror = 0;
2314 }
2315 failrec->failed_mirror = failed_mirror;
2316 failrec->this_mirror++;
2317 if (failrec->this_mirror == failed_mirror)
2318 failrec->this_mirror++;
2319 read_mode = READ_SYNC;
2320 }
2321
2322 if (!state || failrec->this_mirror > num_copies) {
2323 pr_debug("bio_readpage_error: (fail) state=%p, num_copies=%d, "
2324 "next_mirror %d, failed_mirror %d\n", state,
2325 num_copies, failrec->this_mirror, failed_mirror);
2326 free_io_failure(inode, failrec, 0);
2327 return -EIO;
2328 }
2329
Chris Mason9be33952013-05-17 18:30:14 -04002330 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002331 if (!bio) {
2332 free_io_failure(inode, failrec, 0);
2333 return -EIO;
2334 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002335 bio->bi_private = state;
2336 bio->bi_end_io = failed_bio->bi_end_io;
2337 bio->bi_sector = failrec->logical >> 9;
2338 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2339 bio->bi_size = 0;
2340
2341 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2342
2343 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2344 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2345 failrec->this_mirror, num_copies, failrec->in_validation);
2346
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002347 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2348 failrec->this_mirror,
2349 failrec->bio_flags, 0);
2350 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002351}
2352
Chris Masond1310b22008-01-24 16:13:08 -05002353/* lots and lots of room for performance fixes in the end_bio funcs */
2354
Jeff Mahoney87826df2012-02-15 16:23:57 +01002355int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2356{
2357 int uptodate = (err == 0);
2358 struct extent_io_tree *tree;
2359 int ret;
2360
2361 tree = &BTRFS_I(page->mapping->host)->io_tree;
2362
2363 if (tree->ops && tree->ops->writepage_end_io_hook) {
2364 ret = tree->ops->writepage_end_io_hook(page, start,
2365 end, NULL, uptodate);
2366 if (ret)
2367 uptodate = 0;
2368 }
2369
Jeff Mahoney87826df2012-02-15 16:23:57 +01002370 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002371 ClearPageUptodate(page);
2372 SetPageError(page);
2373 }
2374 return 0;
2375}
2376
Chris Masond1310b22008-01-24 16:13:08 -05002377/*
2378 * after a writepage IO is done, we need to:
2379 * clear the uptodate bits on error
2380 * clear the writeback bits in the extent tree for this IO
2381 * end_page_writeback if the page has no more pending IO
2382 *
2383 * Scheduling is not allowed, so the extent state tree is expected
2384 * to have one and only one object corresponding to this IO.
2385 */
Chris Masond1310b22008-01-24 16:13:08 -05002386static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002387{
Chris Masond1310b22008-01-24 16:13:08 -05002388 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002389 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002390 u64 start;
2391 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002392
Chris Masond1310b22008-01-24 16:13:08 -05002393 do {
2394 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002395 tree = &BTRFS_I(page->mapping->host)->io_tree;
2396
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002397 /* We always issue full-page reads, but if some block
2398 * in a page fails to read, blk_update_request() will
2399 * advance bv_offset and adjust bv_len to compensate.
2400 * Print a warning for nonzero offsets, and an error
2401 * if they don't add up to a full page. */
2402 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2403 printk("%s page write in btrfs with offset %u and length %u\n",
2404 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2405 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2406 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002407
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002408 start = page_offset(page);
2409 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002410
2411 if (--bvec >= bio->bi_io_vec)
2412 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002413
Jeff Mahoney87826df2012-02-15 16:23:57 +01002414 if (end_extent_writepage(page, err, start, end))
2415 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002416
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002417 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002418 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002419
Chris Masond1310b22008-01-24 16:13:08 -05002420 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002421}
2422
2423/*
2424 * after a readpage IO is done, we need to:
2425 * clear the uptodate bits on error
2426 * set the uptodate bits if things worked
2427 * set the page up to date if all extents in the tree are uptodate
2428 * clear the lock bit in the extent tree
2429 * unlock the page if there are no other extents locked for it
2430 *
2431 * Scheduling is not allowed, so the extent state tree is expected
2432 * to have one and only one object corresponding to this IO.
2433 */
Chris Masond1310b22008-01-24 16:13:08 -05002434static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002435{
2436 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002437 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2438 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04002439 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002440 u64 start;
2441 u64 end;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002442 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002443 int ret;
2444
Chris Masond20f7042008-12-08 16:58:54 -05002445 if (err)
2446 uptodate = 0;
2447
Chris Masond1310b22008-01-24 16:13:08 -05002448 do {
2449 struct page *page = bvec->bv_page;
Arne Jansen507903b2011-04-06 10:02:20 +00002450 struct extent_state *cached = NULL;
2451 struct extent_state *state;
Chris Mason9be33952013-05-17 18:30:14 -04002452 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Arne Jansen507903b2011-04-06 10:02:20 +00002453
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002454 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002455 "mirror=%lu\n", (u64)bio->bi_sector, err,
2456 io_bio->mirror_num);
David Woodhouse902b22f2008-08-20 08:51:49 -04002457 tree = &BTRFS_I(page->mapping->host)->io_tree;
2458
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002459 /* We always issue full-page reads, but if some block
2460 * in a page fails to read, blk_update_request() will
2461 * advance bv_offset and adjust bv_len to compensate.
2462 * Print a warning for nonzero offsets, and an error
2463 * if they don't add up to a full page. */
2464 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2465 printk("%s page read in btrfs with offset %u and length %u\n",
2466 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2467 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2468 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002469
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002470 start = page_offset(page);
2471 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002472
Chris Mason4125bf72010-02-03 18:18:45 +00002473 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002474 prefetchw(&bvec->bv_page->flags);
2475
Arne Jansen507903b2011-04-06 10:02:20 +00002476 spin_lock(&tree->lock);
Chris Mason0d399202011-04-16 06:55:39 -04002477 state = find_first_extent_bit_state(tree, start, EXTENT_LOCKED);
Chris Mason109b36a2011-04-12 13:57:39 -04002478 if (state && state->start == start) {
Arne Jansen507903b2011-04-06 10:02:20 +00002479 /*
2480 * take a reference on the state, unlock will drop
2481 * the ref
2482 */
2483 cache_state(state, &cached);
2484 }
2485 spin_unlock(&tree->lock);
2486
Chris Mason9be33952013-05-17 18:30:14 -04002487 mirror = io_bio->mirror_num;
Chris Masond1310b22008-01-24 16:13:08 -05002488 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05002489 ret = tree->ops->readpage_end_io_hook(page, start, end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002490 state, mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002491 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002492 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002493 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002494 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002495 }
Josef Bacikea466792012-03-26 21:57:36 -04002496
Josef Bacikea466792012-03-26 21:57:36 -04002497 if (!uptodate && tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002498 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002499 if (!ret && !err &&
2500 test_bit(BIO_UPTODATE, &bio->bi_flags))
2501 uptodate = 1;
2502 } else if (!uptodate) {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002503 /*
2504 * The generic bio_readpage_error handles errors the
2505 * following way: If possible, new read requests are
2506 * created and submitted and will end up in
2507 * end_bio_extent_readpage as well (if we're lucky, not
2508 * in the !uptodate case). In that case it returns 0 and
2509 * we just go on with the next page in our bio. If it
2510 * can't handle the error it will return -EIO and we
2511 * remain responsible for that page.
2512 */
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002513 ret = bio_readpage_error(bio, page, start, end, mirror, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04002514 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002515 uptodate =
2516 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002517 if (err)
2518 uptodate = 0;
Arne Jansen507903b2011-04-06 10:02:20 +00002519 uncache_state(&cached);
Chris Mason7e383262008-04-09 16:28:12 -04002520 continue;
2521 }
2522 }
Chris Mason70dec802008-01-29 09:59:12 -05002523
Josef Bacik0b32f4b2012-03-13 09:38:00 -04002524 if (uptodate && tree->track_uptodate) {
Arne Jansen507903b2011-04-06 10:02:20 +00002525 set_extent_uptodate(tree, start, end, &cached,
David Woodhouse902b22f2008-08-20 08:51:49 -04002526 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05002527 }
Arne Jansen507903b2011-04-06 10:02:20 +00002528 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05002529
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002530 if (uptodate) {
2531 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002532 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002533 ClearPageUptodate(page);
2534 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002535 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002536 unlock_page(page);
Chris Mason4125bf72010-02-03 18:18:45 +00002537 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002538
2539 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002540}
2541
Chris Mason9be33952013-05-17 18:30:14 -04002542/*
2543 * this allocates from the btrfs_bioset. We're returning a bio right now
2544 * but you can call btrfs_io_bio for the appropriate container_of magic
2545 */
Miao Xie88f794e2010-11-22 03:02:55 +00002546struct bio *
2547btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2548 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002549{
2550 struct bio *bio;
2551
Chris Mason9be33952013-05-17 18:30:14 -04002552 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002553
2554 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002555 while (!bio && (nr_vecs /= 2)) {
2556 bio = bio_alloc_bioset(gfp_flags,
2557 nr_vecs, btrfs_bioset);
2558 }
Chris Masond1310b22008-01-24 16:13:08 -05002559 }
2560
2561 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002562 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002563 bio->bi_bdev = bdev;
2564 bio->bi_sector = first_sector;
2565 }
2566 return bio;
2567}
2568
Chris Mason9be33952013-05-17 18:30:14 -04002569struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2570{
2571 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2572}
2573
2574
2575/* this also allocates from the btrfs_bioset */
2576struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2577{
2578 return bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2579}
2580
2581
Jeff Mahoney355808c2011-10-03 23:23:14 -04002582static int __must_check submit_one_bio(int rw, struct bio *bio,
2583 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002584{
Chris Masond1310b22008-01-24 16:13:08 -05002585 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002586 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2587 struct page *page = bvec->bv_page;
2588 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002589 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002590
Miao Xie4eee4fa2012-12-21 09:17:45 +00002591 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002592
David Woodhouse902b22f2008-08-20 08:51:49 -04002593 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002594
2595 bio_get(bio);
2596
Chris Mason065631f2008-02-20 12:07:25 -05002597 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002598 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002599 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002600 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002601 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002602
Chris Masond1310b22008-01-24 16:13:08 -05002603 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2604 ret = -EOPNOTSUPP;
2605 bio_put(bio);
2606 return ret;
2607}
2608
David Woodhouse64a16702009-07-15 23:29:37 +01002609static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002610 unsigned long offset, size_t size, struct bio *bio,
2611 unsigned long bio_flags)
2612{
2613 int ret = 0;
2614 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002615 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002616 bio_flags);
2617 BUG_ON(ret < 0);
2618 return ret;
2619
2620}
2621
Chris Masond1310b22008-01-24 16:13:08 -05002622static int submit_extent_page(int rw, struct extent_io_tree *tree,
2623 struct page *page, sector_t sector,
2624 size_t size, unsigned long offset,
2625 struct block_device *bdev,
2626 struct bio **bio_ret,
2627 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002628 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002629 int mirror_num,
2630 unsigned long prev_bio_flags,
2631 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002632{
2633 int ret = 0;
2634 struct bio *bio;
2635 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002636 int contig = 0;
2637 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2638 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002639 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002640
2641 if (bio_ret && *bio_ret) {
2642 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002643 if (old_compressed)
2644 contig = bio->bi_sector == sector;
2645 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002646 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002647
2648 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002649 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002650 bio_add_page(bio, page, page_size, offset) < page_size) {
2651 ret = submit_one_bio(rw, bio, mirror_num,
2652 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002653 if (ret < 0)
2654 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002655 bio = NULL;
2656 } else {
2657 return 0;
2658 }
2659 }
Chris Masonc8b97812008-10-29 14:49:59 -04002660 if (this_compressed)
2661 nr = BIO_MAX_PAGES;
2662 else
2663 nr = bio_get_nr_vecs(bdev);
2664
Miao Xie88f794e2010-11-22 03:02:55 +00002665 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002666 if (!bio)
2667 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002668
Chris Masonc8b97812008-10-29 14:49:59 -04002669 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002670 bio->bi_end_io = end_io_func;
2671 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002672
Chris Masond3977122009-01-05 21:25:51 -05002673 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002674 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002675 else
Chris Masonc8b97812008-10-29 14:49:59 -04002676 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002677
2678 return ret;
2679}
2680
Eric Sandeen48a3b632013-04-25 20:41:01 +00002681static void attach_extent_buffer_page(struct extent_buffer *eb,
2682 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002683{
2684 if (!PagePrivate(page)) {
2685 SetPagePrivate(page);
2686 page_cache_get(page);
2687 set_page_private(page, (unsigned long)eb);
2688 } else {
2689 WARN_ON(page->private != (unsigned long)eb);
2690 }
2691}
2692
Chris Masond1310b22008-01-24 16:13:08 -05002693void set_page_extent_mapped(struct page *page)
2694{
2695 if (!PagePrivate(page)) {
2696 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002697 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002698 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002699 }
2700}
2701
Chris Masond1310b22008-01-24 16:13:08 -05002702/*
2703 * basic readpage implementation. Locked extent state structs are inserted
2704 * into the tree that are removed when the IO is done (by the end_io
2705 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002706 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002707 */
2708static int __extent_read_full_page(struct extent_io_tree *tree,
2709 struct page *page,
2710 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002711 struct bio **bio, int mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002712 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002713{
2714 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002715 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002716 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2717 u64 end;
2718 u64 cur = start;
2719 u64 extent_offset;
2720 u64 last_byte = i_size_read(inode);
2721 u64 block_start;
2722 u64 cur_end;
2723 sector_t sector;
2724 struct extent_map *em;
2725 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002726 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05002727 int ret;
2728 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002729 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002730 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002731 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002732 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04002733 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002734
2735 set_page_extent_mapped(page);
2736
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002737 if (!PageUptodate(page)) {
2738 if (cleancache_get_page(page) == 0) {
2739 BUG_ON(blocksize != PAGE_SIZE);
2740 goto out;
2741 }
2742 }
2743
Chris Masond1310b22008-01-24 16:13:08 -05002744 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002745 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002746 lock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002747 ordered = btrfs_lookup_ordered_extent(inode, start);
2748 if (!ordered)
2749 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002750 unlock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002751 btrfs_start_ordered_extent(inode, ordered, 1);
2752 btrfs_put_ordered_extent(ordered);
2753 }
Chris Masond1310b22008-01-24 16:13:08 -05002754
Chris Masonc8b97812008-10-29 14:49:59 -04002755 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2756 char *userpage;
2757 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2758
2759 if (zero_offset) {
2760 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002761 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002762 memset(userpage + zero_offset, 0, iosize);
2763 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002764 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002765 }
2766 }
Chris Masond1310b22008-01-24 16:13:08 -05002767 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002768 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2769
Chris Masond1310b22008-01-24 16:13:08 -05002770 if (cur >= last_byte) {
2771 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002772 struct extent_state *cached = NULL;
2773
David Sterba306e16c2011-04-19 14:29:38 +02002774 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002775 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002776 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002777 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002778 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002779 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002780 &cached, GFP_NOFS);
2781 unlock_extent_cached(tree, cur, cur + iosize - 1,
2782 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002783 break;
2784 }
David Sterba306e16c2011-04-19 14:29:38 +02002785 em = get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002786 end - cur + 1, 0);
David Sterbac7040052011-04-19 18:00:01 +02002787 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002788 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002789 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002790 break;
2791 }
Chris Masond1310b22008-01-24 16:13:08 -05002792 extent_offset = cur - em->start;
2793 BUG_ON(extent_map_end(em) <= cur);
2794 BUG_ON(end < cur);
2795
Li Zefan261507a02010-12-17 14:21:50 +08002796 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002797 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002798 extent_set_compress_type(&this_bio_flag,
2799 em->compress_type);
2800 }
Chris Masonc8b97812008-10-29 14:49:59 -04002801
Chris Masond1310b22008-01-24 16:13:08 -05002802 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2803 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002804 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002805 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2806 disk_io_size = em->block_len;
2807 sector = em->block_start >> 9;
2808 } else {
2809 sector = (em->block_start + extent_offset) >> 9;
2810 disk_io_size = iosize;
2811 }
Chris Masond1310b22008-01-24 16:13:08 -05002812 bdev = em->bdev;
2813 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002814 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2815 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002816 free_extent_map(em);
2817 em = NULL;
2818
2819 /* we've found a hole, just zero and go on */
2820 if (block_start == EXTENT_MAP_HOLE) {
2821 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002822 struct extent_state *cached = NULL;
2823
Cong Wang7ac687d2011-11-25 23:14:28 +08002824 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002825 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002826 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002827 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002828
2829 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002830 &cached, GFP_NOFS);
2831 unlock_extent_cached(tree, cur, cur + iosize - 1,
2832 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002833 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002834 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002835 continue;
2836 }
2837 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002838 if (test_range_bit(tree, cur, cur_end,
2839 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002840 check_page_uptodate(tree, page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002841 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002842 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002843 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002844 continue;
2845 }
Chris Mason70dec802008-01-29 09:59:12 -05002846 /* we have an inline extent but it didn't get marked up
2847 * to date. Error out
2848 */
2849 if (block_start == EXTENT_MAP_INLINE) {
2850 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002851 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002852 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002853 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002854 continue;
2855 }
Chris Masond1310b22008-01-24 16:13:08 -05002856
Josef Bacikc8f2f242013-02-11 11:33:00 -05002857 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002858 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002859 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002860 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002861 end_bio_extent_readpage, mirror_num,
2862 *bio_flags,
2863 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002864 if (!ret) {
2865 nr++;
2866 *bio_flags = this_bio_flag;
2867 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002868 SetPageError(page);
Josef Bacikedd33c92012-10-05 16:40:32 -04002869 unlock_extent(tree, cur, cur + iosize - 1);
2870 }
Chris Masond1310b22008-01-24 16:13:08 -05002871 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002872 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002873 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002874out:
Chris Masond1310b22008-01-24 16:13:08 -05002875 if (!nr) {
2876 if (!PageError(page))
2877 SetPageUptodate(page);
2878 unlock_page(page);
2879 }
2880 return 0;
2881}
2882
2883int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002884 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05002885{
2886 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002887 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002888 int ret;
2889
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002890 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002891 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05002892 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002893 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002894 return ret;
2895}
Chris Masond1310b22008-01-24 16:13:08 -05002896
Chris Mason11c83492009-04-20 15:50:09 -04002897static noinline void update_nr_written(struct page *page,
2898 struct writeback_control *wbc,
2899 unsigned long nr_written)
2900{
2901 wbc->nr_to_write -= nr_written;
2902 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2903 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2904 page->mapping->writeback_index = page->index + nr_written;
2905}
2906
Chris Masond1310b22008-01-24 16:13:08 -05002907/*
2908 * the writepage semantics are similar to regular writepage. extent
2909 * records are inserted to lock ranges in the tree, and as dirty areas
2910 * are found, they are marked writeback. Then the lock bits are removed
2911 * and the end_io handler clears the writeback ranges
2912 */
2913static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2914 void *data)
2915{
2916 struct inode *inode = page->mapping->host;
2917 struct extent_page_data *epd = data;
2918 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002919 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002920 u64 delalloc_start;
2921 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2922 u64 end;
2923 u64 cur = start;
2924 u64 extent_offset;
2925 u64 last_byte = i_size_read(inode);
2926 u64 block_start;
2927 u64 iosize;
2928 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002929 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002930 struct extent_map *em;
2931 struct block_device *bdev;
2932 int ret;
2933 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002934 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002935 size_t blocksize;
2936 loff_t i_size = i_size_read(inode);
2937 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2938 u64 nr_delalloc;
2939 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002940 int page_started;
2941 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002942 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002943 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002944 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05002945
Chris Masonffbd5172009-04-20 15:50:09 -04002946 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01002947 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04002948 else
2949 write_flags = WRITE;
2950
liubo1abe9b82011-03-24 11:18:59 +00002951 trace___extent_writepage(page, inode, wbc);
2952
Chris Masond1310b22008-01-24 16:13:08 -05002953 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04002954
2955 ClearPageError(page);
2956
Chris Mason7f3c74f2008-07-18 12:01:11 -04002957 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002958 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002959 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002960 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002961 unlock_page(page);
2962 return 0;
2963 }
2964
2965 if (page->index == end_index) {
2966 char *userpage;
2967
Cong Wang7ac687d2011-11-25 23:14:28 +08002968 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002969 memset(userpage + pg_offset, 0,
2970 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08002971 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04002972 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002973 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002974 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002975
2976 set_page_extent_mapped(page);
2977
Josef Bacik9e487102011-08-01 12:08:18 -04002978 if (!tree->ops || !tree->ops->fill_delalloc)
2979 fill_delalloc = false;
2980
Chris Masond1310b22008-01-24 16:13:08 -05002981 delalloc_start = start;
2982 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002983 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002984 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002985 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002986 /*
2987 * make sure the wbc mapping index is at least updated
2988 * to this page.
2989 */
2990 update_nr_written(page, wbc, 0);
2991
Chris Masond3977122009-01-05 21:25:51 -05002992 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002993 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002994 page,
2995 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002996 &delalloc_end,
2997 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002998 if (nr_delalloc == 0) {
2999 delalloc_start = delalloc_end + 1;
3000 continue;
3001 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003002 ret = tree->ops->fill_delalloc(inode, page,
3003 delalloc_start,
3004 delalloc_end,
3005 &page_started,
3006 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003007 /* File system has been set read-only */
3008 if (ret) {
3009 SetPageError(page);
3010 goto done;
3011 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003012 /*
3013 * delalloc_end is already one less than the total
3014 * length, so we don't subtract one from
3015 * PAGE_CACHE_SIZE
3016 */
3017 delalloc_to_write += (delalloc_end - delalloc_start +
3018 PAGE_CACHE_SIZE) >>
3019 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003020 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003021 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003022 if (wbc->nr_to_write < delalloc_to_write) {
3023 int thresh = 8192;
3024
3025 if (delalloc_to_write < thresh * 2)
3026 thresh = delalloc_to_write;
3027 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3028 thresh);
3029 }
Chris Masonc8b97812008-10-29 14:49:59 -04003030
Chris Mason771ed682008-11-06 22:02:51 -05003031 /* did the fill delalloc function already unlock and start
3032 * the IO?
3033 */
3034 if (page_started) {
3035 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003036 /*
3037 * we've unlocked the page, so we can't update
3038 * the mapping's writeback index, just update
3039 * nr_to_write.
3040 */
3041 wbc->nr_to_write -= nr_written;
3042 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003043 }
Chris Masonc8b97812008-10-29 14:49:59 -04003044 }
Chris Mason247e7432008-07-17 12:53:51 -04003045 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003046 ret = tree->ops->writepage_start_hook(page, start,
3047 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003048 if (ret) {
3049 /* Fixup worker will requeue */
3050 if (ret == -EBUSY)
3051 wbc->pages_skipped++;
3052 else
3053 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003054 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003055 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003056 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003057 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003058 }
3059 }
3060
Chris Mason11c83492009-04-20 15:50:09 -04003061 /*
3062 * we don't want to touch the inode after unlocking the page,
3063 * so we update the mapping writeback index now
3064 */
3065 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003066
Chris Masond1310b22008-01-24 16:13:08 -05003067 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003068 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003069 if (tree->ops && tree->ops->writepage_end_io_hook)
3070 tree->ops->writepage_end_io_hook(page, start,
3071 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003072 goto done;
3073 }
3074
Chris Masond1310b22008-01-24 16:13:08 -05003075 blocksize = inode->i_sb->s_blocksize;
3076
3077 while (cur <= end) {
3078 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003079 if (tree->ops && tree->ops->writepage_end_io_hook)
3080 tree->ops->writepage_end_io_hook(page, cur,
3081 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003082 break;
3083 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003084 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003085 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003086 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003087 SetPageError(page);
3088 break;
3089 }
3090
3091 extent_offset = cur - em->start;
3092 BUG_ON(extent_map_end(em) <= cur);
3093 BUG_ON(end < cur);
3094 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003095 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003096 sector = (em->block_start + extent_offset) >> 9;
3097 bdev = em->bdev;
3098 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003099 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003100 free_extent_map(em);
3101 em = NULL;
3102
Chris Masonc8b97812008-10-29 14:49:59 -04003103 /*
3104 * compressed and inline extents are written through other
3105 * paths in the FS
3106 */
3107 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003108 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003109 /*
3110 * end_io notification does not happen here for
3111 * compressed extents
3112 */
3113 if (!compressed && tree->ops &&
3114 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003115 tree->ops->writepage_end_io_hook(page, cur,
3116 cur + iosize - 1,
3117 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003118 else if (compressed) {
3119 /* we don't want to end_page_writeback on
3120 * a compressed extent. this happens
3121 * elsewhere
3122 */
3123 nr++;
3124 }
3125
3126 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003127 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003128 continue;
3129 }
Chris Masond1310b22008-01-24 16:13:08 -05003130 /* leave this out until we have a page_mkwrite call */
3131 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003132 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003133 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003134 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003135 continue;
3136 }
Chris Masonc8b97812008-10-29 14:49:59 -04003137
Chris Masond1310b22008-01-24 16:13:08 -05003138 if (tree->ops && tree->ops->writepage_io_hook) {
3139 ret = tree->ops->writepage_io_hook(page, cur,
3140 cur + iosize - 1);
3141 } else {
3142 ret = 0;
3143 }
Chris Mason1259ab72008-05-12 13:39:03 -04003144 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003145 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003146 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003147 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003148
Chris Masond1310b22008-01-24 16:13:08 -05003149 set_range_writeback(tree, cur, cur + iosize - 1);
3150 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003151 printk(KERN_ERR "btrfs warning page %lu not "
3152 "writeback, cur %llu end %llu\n",
3153 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05003154 (unsigned long long)end);
3155 }
3156
Chris Masonffbd5172009-04-20 15:50:09 -04003157 ret = submit_extent_page(write_flags, tree, page,
3158 sector, iosize, pg_offset,
3159 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003160 end_bio_extent_writepage,
3161 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003162 if (ret)
3163 SetPageError(page);
3164 }
3165 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003166 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003167 nr++;
3168 }
3169done:
3170 if (nr == 0) {
3171 /* make sure the mapping tag for page dirty gets cleared */
3172 set_page_writeback(page);
3173 end_page_writeback(page);
3174 }
Chris Masond1310b22008-01-24 16:13:08 -05003175 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003176
Chris Mason11c83492009-04-20 15:50:09 -04003177done_unlocked:
3178
Chris Mason2c64c532009-09-02 15:04:12 -04003179 /* drop our reference on any cached states */
3180 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003181 return 0;
3182}
3183
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003184static int eb_wait(void *word)
3185{
3186 io_schedule();
3187 return 0;
3188}
3189
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003190void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003191{
3192 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3193 TASK_UNINTERRUPTIBLE);
3194}
3195
3196static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3197 struct btrfs_fs_info *fs_info,
3198 struct extent_page_data *epd)
3199{
3200 unsigned long i, num_pages;
3201 int flush = 0;
3202 int ret = 0;
3203
3204 if (!btrfs_try_tree_write_lock(eb)) {
3205 flush = 1;
3206 flush_write_bio(epd);
3207 btrfs_tree_lock(eb);
3208 }
3209
3210 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3211 btrfs_tree_unlock(eb);
3212 if (!epd->sync_io)
3213 return 0;
3214 if (!flush) {
3215 flush_write_bio(epd);
3216 flush = 1;
3217 }
Chris Masona098d8e2012-03-21 12:09:56 -04003218 while (1) {
3219 wait_on_extent_buffer_writeback(eb);
3220 btrfs_tree_lock(eb);
3221 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3222 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003223 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003224 }
3225 }
3226
Josef Bacik51561ff2012-07-20 16:25:24 -04003227 /*
3228 * We need to do this to prevent races in people who check if the eb is
3229 * under IO since we can end up having no IO bits set for a short period
3230 * of time.
3231 */
3232 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003233 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3234 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003235 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003236 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003237 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3238 -eb->len,
3239 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003240 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003241 } else {
3242 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003243 }
3244
3245 btrfs_tree_unlock(eb);
3246
3247 if (!ret)
3248 return ret;
3249
3250 num_pages = num_extent_pages(eb->start, eb->len);
3251 for (i = 0; i < num_pages; i++) {
3252 struct page *p = extent_buffer_page(eb, i);
3253
3254 if (!trylock_page(p)) {
3255 if (!flush) {
3256 flush_write_bio(epd);
3257 flush = 1;
3258 }
3259 lock_page(p);
3260 }
3261 }
3262
3263 return ret;
3264}
3265
3266static void end_extent_buffer_writeback(struct extent_buffer *eb)
3267{
3268 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3269 smp_mb__after_clear_bit();
3270 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3271}
3272
3273static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3274{
3275 int uptodate = err == 0;
3276 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3277 struct extent_buffer *eb;
3278 int done;
3279
3280 do {
3281 struct page *page = bvec->bv_page;
3282
3283 bvec--;
3284 eb = (struct extent_buffer *)page->private;
3285 BUG_ON(!eb);
3286 done = atomic_dec_and_test(&eb->io_pages);
3287
3288 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3289 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3290 ClearPageUptodate(page);
3291 SetPageError(page);
3292 }
3293
3294 end_page_writeback(page);
3295
3296 if (!done)
3297 continue;
3298
3299 end_extent_buffer_writeback(eb);
3300 } while (bvec >= bio->bi_io_vec);
3301
3302 bio_put(bio);
3303
3304}
3305
3306static int write_one_eb(struct extent_buffer *eb,
3307 struct btrfs_fs_info *fs_info,
3308 struct writeback_control *wbc,
3309 struct extent_page_data *epd)
3310{
3311 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3312 u64 offset = eb->start;
3313 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003314 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003315 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003316 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003317
3318 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3319 num_pages = num_extent_pages(eb->start, eb->len);
3320 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003321 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3322 bio_flags = EXTENT_BIO_TREE_LOG;
3323
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003324 for (i = 0; i < num_pages; i++) {
3325 struct page *p = extent_buffer_page(eb, i);
3326
3327 clear_page_dirty_for_io(p);
3328 set_page_writeback(p);
3329 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3330 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3331 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003332 0, epd->bio_flags, bio_flags);
3333 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003334 if (ret) {
3335 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3336 SetPageError(p);
3337 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3338 end_extent_buffer_writeback(eb);
3339 ret = -EIO;
3340 break;
3341 }
3342 offset += PAGE_CACHE_SIZE;
3343 update_nr_written(p, wbc, 1);
3344 unlock_page(p);
3345 }
3346
3347 if (unlikely(ret)) {
3348 for (; i < num_pages; i++) {
3349 struct page *p = extent_buffer_page(eb, i);
3350 unlock_page(p);
3351 }
3352 }
3353
3354 return ret;
3355}
3356
3357int btree_write_cache_pages(struct address_space *mapping,
3358 struct writeback_control *wbc)
3359{
3360 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3361 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3362 struct extent_buffer *eb, *prev_eb = NULL;
3363 struct extent_page_data epd = {
3364 .bio = NULL,
3365 .tree = tree,
3366 .extent_locked = 0,
3367 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003368 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003369 };
3370 int ret = 0;
3371 int done = 0;
3372 int nr_to_write_done = 0;
3373 struct pagevec pvec;
3374 int nr_pages;
3375 pgoff_t index;
3376 pgoff_t end; /* Inclusive */
3377 int scanned = 0;
3378 int tag;
3379
3380 pagevec_init(&pvec, 0);
3381 if (wbc->range_cyclic) {
3382 index = mapping->writeback_index; /* Start from prev offset */
3383 end = -1;
3384 } else {
3385 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3386 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3387 scanned = 1;
3388 }
3389 if (wbc->sync_mode == WB_SYNC_ALL)
3390 tag = PAGECACHE_TAG_TOWRITE;
3391 else
3392 tag = PAGECACHE_TAG_DIRTY;
3393retry:
3394 if (wbc->sync_mode == WB_SYNC_ALL)
3395 tag_pages_for_writeback(mapping, index, end);
3396 while (!done && !nr_to_write_done && (index <= end) &&
3397 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3398 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3399 unsigned i;
3400
3401 scanned = 1;
3402 for (i = 0; i < nr_pages; i++) {
3403 struct page *page = pvec.pages[i];
3404
3405 if (!PagePrivate(page))
3406 continue;
3407
3408 if (!wbc->range_cyclic && page->index > end) {
3409 done = 1;
3410 break;
3411 }
3412
Josef Bacikb5bae262012-09-14 13:43:01 -04003413 spin_lock(&mapping->private_lock);
3414 if (!PagePrivate(page)) {
3415 spin_unlock(&mapping->private_lock);
3416 continue;
3417 }
3418
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003419 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003420
3421 /*
3422 * Shouldn't happen and normally this would be a BUG_ON
3423 * but no sense in crashing the users box for something
3424 * we can survive anyway.
3425 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003426 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003427 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003428 WARN_ON(1);
3429 continue;
3430 }
3431
Josef Bacikb5bae262012-09-14 13:43:01 -04003432 if (eb == prev_eb) {
3433 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003434 continue;
3435 }
3436
Josef Bacikb5bae262012-09-14 13:43:01 -04003437 ret = atomic_inc_not_zero(&eb->refs);
3438 spin_unlock(&mapping->private_lock);
3439 if (!ret)
3440 continue;
3441
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003442 prev_eb = eb;
3443 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3444 if (!ret) {
3445 free_extent_buffer(eb);
3446 continue;
3447 }
3448
3449 ret = write_one_eb(eb, fs_info, wbc, &epd);
3450 if (ret) {
3451 done = 1;
3452 free_extent_buffer(eb);
3453 break;
3454 }
3455 free_extent_buffer(eb);
3456
3457 /*
3458 * the filesystem may choose to bump up nr_to_write.
3459 * We have to make sure to honor the new nr_to_write
3460 * at any time
3461 */
3462 nr_to_write_done = wbc->nr_to_write <= 0;
3463 }
3464 pagevec_release(&pvec);
3465 cond_resched();
3466 }
3467 if (!scanned && !done) {
3468 /*
3469 * We hit the last page and there is more work to be done: wrap
3470 * back to the start of the file
3471 */
3472 scanned = 1;
3473 index = 0;
3474 goto retry;
3475 }
3476 flush_write_bio(&epd);
3477 return ret;
3478}
3479
Chris Masond1310b22008-01-24 16:13:08 -05003480/**
Chris Mason4bef0842008-09-08 11:18:08 -04003481 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
Chris Masond1310b22008-01-24 16:13:08 -05003482 * @mapping: address space structure to write
3483 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3484 * @writepage: function called for each page
3485 * @data: data passed to writepage function
3486 *
3487 * If a page is already under I/O, write_cache_pages() skips it, even
3488 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3489 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3490 * and msync() need to guarantee that all the data which was dirty at the time
3491 * the call was made get new I/O started against them. If wbc->sync_mode is
3492 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3493 * existing IO to complete.
3494 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003495static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003496 struct address_space *mapping,
3497 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003498 writepage_t writepage, void *data,
3499 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003500{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003501 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003502 int ret = 0;
3503 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003504 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003505 struct pagevec pvec;
3506 int nr_pages;
3507 pgoff_t index;
3508 pgoff_t end; /* Inclusive */
3509 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003510 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003511
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003512 /*
3513 * We have to hold onto the inode so that ordered extents can do their
3514 * work when the IO finishes. The alternative to this is failing to add
3515 * an ordered extent if the igrab() fails there and that is a huge pain
3516 * to deal with, so instead just hold onto the inode throughout the
3517 * writepages operation. If it fails here we are freeing up the inode
3518 * anyway and we'd rather not waste our time writing out stuff that is
3519 * going to be truncated anyway.
3520 */
3521 if (!igrab(inode))
3522 return 0;
3523
Chris Masond1310b22008-01-24 16:13:08 -05003524 pagevec_init(&pvec, 0);
3525 if (wbc->range_cyclic) {
3526 index = mapping->writeback_index; /* Start from prev offset */
3527 end = -1;
3528 } else {
3529 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3530 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003531 scanned = 1;
3532 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003533 if (wbc->sync_mode == WB_SYNC_ALL)
3534 tag = PAGECACHE_TAG_TOWRITE;
3535 else
3536 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003537retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003538 if (wbc->sync_mode == WB_SYNC_ALL)
3539 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003540 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003541 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3542 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003543 unsigned i;
3544
3545 scanned = 1;
3546 for (i = 0; i < nr_pages; i++) {
3547 struct page *page = pvec.pages[i];
3548
3549 /*
3550 * At this point we hold neither mapping->tree_lock nor
3551 * lock on the page itself: the page may be truncated or
3552 * invalidated (changing page->mapping to NULL), or even
3553 * swizzled back from swapper_space to tmpfs file
3554 * mapping
3555 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003556 if (!trylock_page(page)) {
3557 flush_fn(data);
3558 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003559 }
Chris Masond1310b22008-01-24 16:13:08 -05003560
3561 if (unlikely(page->mapping != mapping)) {
3562 unlock_page(page);
3563 continue;
3564 }
3565
3566 if (!wbc->range_cyclic && page->index > end) {
3567 done = 1;
3568 unlock_page(page);
3569 continue;
3570 }
3571
Chris Masond2c3f4f2008-11-19 12:44:22 -05003572 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003573 if (PageWriteback(page))
3574 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003575 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003576 }
Chris Masond1310b22008-01-24 16:13:08 -05003577
3578 if (PageWriteback(page) ||
3579 !clear_page_dirty_for_io(page)) {
3580 unlock_page(page);
3581 continue;
3582 }
3583
3584 ret = (*writepage)(page, wbc, data);
3585
3586 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3587 unlock_page(page);
3588 ret = 0;
3589 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003590 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003591 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003592
3593 /*
3594 * the filesystem may choose to bump up nr_to_write.
3595 * We have to make sure to honor the new nr_to_write
3596 * at any time
3597 */
3598 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003599 }
3600 pagevec_release(&pvec);
3601 cond_resched();
3602 }
3603 if (!scanned && !done) {
3604 /*
3605 * We hit the last page and there is more work to be done: wrap
3606 * back to the start of the file
3607 */
3608 scanned = 1;
3609 index = 0;
3610 goto retry;
3611 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003612 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003613 return ret;
3614}
Chris Masond1310b22008-01-24 16:13:08 -05003615
Chris Masonffbd5172009-04-20 15:50:09 -04003616static void flush_epd_write_bio(struct extent_page_data *epd)
3617{
3618 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003619 int rw = WRITE;
3620 int ret;
3621
Chris Masonffbd5172009-04-20 15:50:09 -04003622 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003623 rw = WRITE_SYNC;
3624
Josef Bacikde0022b2012-09-25 14:25:58 -04003625 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003626 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003627 epd->bio = NULL;
3628 }
3629}
3630
Chris Masond2c3f4f2008-11-19 12:44:22 -05003631static noinline void flush_write_bio(void *data)
3632{
3633 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003634 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003635}
3636
Chris Masond1310b22008-01-24 16:13:08 -05003637int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3638 get_extent_t *get_extent,
3639 struct writeback_control *wbc)
3640{
3641 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003642 struct extent_page_data epd = {
3643 .bio = NULL,
3644 .tree = tree,
3645 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003646 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003647 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003648 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003649 };
Chris Masond1310b22008-01-24 16:13:08 -05003650
Chris Masond1310b22008-01-24 16:13:08 -05003651 ret = __extent_writepage(page, wbc, &epd);
3652
Chris Masonffbd5172009-04-20 15:50:09 -04003653 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003654 return ret;
3655}
Chris Masond1310b22008-01-24 16:13:08 -05003656
Chris Mason771ed682008-11-06 22:02:51 -05003657int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3658 u64 start, u64 end, get_extent_t *get_extent,
3659 int mode)
3660{
3661 int ret = 0;
3662 struct address_space *mapping = inode->i_mapping;
3663 struct page *page;
3664 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3665 PAGE_CACHE_SHIFT;
3666
3667 struct extent_page_data epd = {
3668 .bio = NULL,
3669 .tree = tree,
3670 .get_extent = get_extent,
3671 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003672 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003673 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003674 };
3675 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003676 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003677 .nr_to_write = nr_pages * 2,
3678 .range_start = start,
3679 .range_end = end + 1,
3680 };
3681
Chris Masond3977122009-01-05 21:25:51 -05003682 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003683 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3684 if (clear_page_dirty_for_io(page))
3685 ret = __extent_writepage(page, &wbc_writepages, &epd);
3686 else {
3687 if (tree->ops && tree->ops->writepage_end_io_hook)
3688 tree->ops->writepage_end_io_hook(page, start,
3689 start + PAGE_CACHE_SIZE - 1,
3690 NULL, 1);
3691 unlock_page(page);
3692 }
3693 page_cache_release(page);
3694 start += PAGE_CACHE_SIZE;
3695 }
3696
Chris Masonffbd5172009-04-20 15:50:09 -04003697 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003698 return ret;
3699}
Chris Masond1310b22008-01-24 16:13:08 -05003700
3701int extent_writepages(struct extent_io_tree *tree,
3702 struct address_space *mapping,
3703 get_extent_t *get_extent,
3704 struct writeback_control *wbc)
3705{
3706 int ret = 0;
3707 struct extent_page_data epd = {
3708 .bio = NULL,
3709 .tree = tree,
3710 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003711 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003712 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003713 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003714 };
3715
Chris Mason4bef0842008-09-08 11:18:08 -04003716 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003717 __extent_writepage, &epd,
3718 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003719 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003720 return ret;
3721}
Chris Masond1310b22008-01-24 16:13:08 -05003722
3723int extent_readpages(struct extent_io_tree *tree,
3724 struct address_space *mapping,
3725 struct list_head *pages, unsigned nr_pages,
3726 get_extent_t get_extent)
3727{
3728 struct bio *bio = NULL;
3729 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003730 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003731 struct page *pagepool[16];
3732 struct page *page;
3733 int i = 0;
3734 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003735
Chris Masond1310b22008-01-24 16:13:08 -05003736 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003737 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003738
3739 prefetchw(&page->flags);
3740 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003741 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003742 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003743 page_cache_release(page);
3744 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003745 }
Liu Bo67c96842012-07-20 21:43:09 -06003746
3747 pagepool[nr++] = page;
3748 if (nr < ARRAY_SIZE(pagepool))
3749 continue;
3750 for (i = 0; i < nr; i++) {
3751 __extent_read_full_page(tree, pagepool[i], get_extent,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003752 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003753 page_cache_release(pagepool[i]);
3754 }
3755 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003756 }
Liu Bo67c96842012-07-20 21:43:09 -06003757 for (i = 0; i < nr; i++) {
3758 __extent_read_full_page(tree, pagepool[i], get_extent,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003759 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003760 page_cache_release(pagepool[i]);
3761 }
3762
Chris Masond1310b22008-01-24 16:13:08 -05003763 BUG_ON(!list_empty(pages));
3764 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003765 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003766 return 0;
3767}
Chris Masond1310b22008-01-24 16:13:08 -05003768
3769/*
3770 * basic invalidatepage code, this waits on any locked or writeback
3771 * ranges corresponding to the page, and then deletes any extent state
3772 * records from the tree
3773 */
3774int extent_invalidatepage(struct extent_io_tree *tree,
3775 struct page *page, unsigned long offset)
3776{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003777 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003778 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003779 u64 end = start + PAGE_CACHE_SIZE - 1;
3780 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3781
Qu Wenruofda28322013-02-26 08:10:22 +00003782 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003783 if (start > end)
3784 return 0;
3785
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003786 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003787 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003788 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003789 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3790 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003791 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003792 return 0;
3793}
Chris Masond1310b22008-01-24 16:13:08 -05003794
3795/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003796 * a helper for releasepage, this tests for areas of the page that
3797 * are locked or under IO and drops the related state bits if it is safe
3798 * to drop the page.
3799 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003800static int try_release_extent_state(struct extent_map_tree *map,
3801 struct extent_io_tree *tree,
3802 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003803{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003804 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003805 u64 end = start + PAGE_CACHE_SIZE - 1;
3806 int ret = 1;
3807
Chris Mason211f90e2008-07-18 11:56:15 -04003808 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003809 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003810 ret = 0;
3811 else {
3812 if ((mask & GFP_NOFS) == GFP_NOFS)
3813 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003814 /*
3815 * at this point we can safely clear everything except the
3816 * locked bit and the nodatasum bit
3817 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003818 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003819 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3820 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003821
3822 /* if clear_extent_bit failed for enomem reasons,
3823 * we can't allow the release to continue.
3824 */
3825 if (ret < 0)
3826 ret = 0;
3827 else
3828 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003829 }
3830 return ret;
3831}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003832
3833/*
Chris Masond1310b22008-01-24 16:13:08 -05003834 * a helper for releasepage. As long as there are no locked extents
3835 * in the range corresponding to the page, both state records and extent
3836 * map records are removed
3837 */
3838int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003839 struct extent_io_tree *tree, struct page *page,
3840 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003841{
3842 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003843 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003844 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003845
Chris Mason70dec802008-01-29 09:59:12 -05003846 if ((mask & __GFP_WAIT) &&
3847 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003848 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003849 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003850 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003851 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003852 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003853 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003854 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003855 break;
3856 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003857 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3858 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003859 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003860 free_extent_map(em);
3861 break;
3862 }
3863 if (!test_range_bit(tree, em->start,
3864 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04003865 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04003866 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05003867 remove_extent_mapping(map, em);
3868 /* once for the rb tree */
3869 free_extent_map(em);
3870 }
3871 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04003872 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003873
3874 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05003875 free_extent_map(em);
3876 }
Chris Masond1310b22008-01-24 16:13:08 -05003877 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04003878 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05003879}
Chris Masond1310b22008-01-24 16:13:08 -05003880
Chris Masonec29ed52011-02-23 16:23:20 -05003881/*
3882 * helper function for fiemap, which doesn't want to see any holes.
3883 * This maps until we find something past 'last'
3884 */
3885static struct extent_map *get_extent_skip_holes(struct inode *inode,
3886 u64 offset,
3887 u64 last,
3888 get_extent_t *get_extent)
3889{
3890 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
3891 struct extent_map *em;
3892 u64 len;
3893
3894 if (offset >= last)
3895 return NULL;
3896
3897 while(1) {
3898 len = last - offset;
3899 if (len == 0)
3900 break;
Qu Wenruofda28322013-02-26 08:10:22 +00003901 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05003902 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02003903 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05003904 return em;
3905
3906 /* if this isn't a hole return it */
3907 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
3908 em->block_start != EXTENT_MAP_HOLE) {
3909 return em;
3910 }
3911
3912 /* this is a hole, advance to the next extent */
3913 offset = extent_map_end(em);
3914 free_extent_map(em);
3915 if (offset >= last)
3916 break;
3917 }
3918 return NULL;
3919}
3920
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003921int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3922 __u64 start, __u64 len, get_extent_t *get_extent)
3923{
Josef Bacik975f84f2010-11-23 19:36:57 +00003924 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003925 u64 off = start;
3926 u64 max = start + len;
3927 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00003928 u32 found_type;
3929 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05003930 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003931 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003932 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00003933 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003934 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003935 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00003936 struct btrfs_path *path;
3937 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003938 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003939 u64 em_start = 0;
3940 u64 em_len = 0;
3941 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003942 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003943
3944 if (len == 0)
3945 return -EINVAL;
3946
Josef Bacik975f84f2010-11-23 19:36:57 +00003947 path = btrfs_alloc_path();
3948 if (!path)
3949 return -ENOMEM;
3950 path->leave_spinning = 1;
3951
Josef Bacik4d479cf2011-11-17 11:34:31 -05003952 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
3953 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
3954
Chris Masonec29ed52011-02-23 16:23:20 -05003955 /*
3956 * lookup the last file extent. We're not using i_size here
3957 * because there might be preallocation past i_size
3958 */
Josef Bacik975f84f2010-11-23 19:36:57 +00003959 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08003960 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00003961 if (ret < 0) {
3962 btrfs_free_path(path);
3963 return ret;
3964 }
3965 WARN_ON(!ret);
3966 path->slots[0]--;
3967 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3968 struct btrfs_file_extent_item);
3969 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
3970 found_type = btrfs_key_type(&found_key);
3971
Chris Masonec29ed52011-02-23 16:23:20 -05003972 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08003973 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00003974 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05003975 /* have to trust i_size as the end */
3976 last = (u64)-1;
3977 last_for_get_extent = isize;
3978 } else {
3979 /*
3980 * remember the start of the last extent. There are a
3981 * bunch of different factors that go into the length of the
3982 * extent, so its much less complex to remember where it started
3983 */
3984 last = found_key.offset;
3985 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00003986 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003987 btrfs_free_path(path);
3988
Chris Masonec29ed52011-02-23 16:23:20 -05003989 /*
3990 * we might have some extents allocated but more delalloc past those
3991 * extents. so, we trust isize unless the start of the last extent is
3992 * beyond isize
3993 */
3994 if (last < isize) {
3995 last = (u64)-1;
3996 last_for_get_extent = isize;
3997 }
3998
Liu Boa52f4cd2013-05-01 16:23:41 +00003999 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004000 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004001
Josef Bacik4d479cf2011-11-17 11:34:31 -05004002 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004003 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004004 if (!em)
4005 goto out;
4006 if (IS_ERR(em)) {
4007 ret = PTR_ERR(em);
4008 goto out;
4009 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004010
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004011 while (!end) {
Chris Masonea8efc72011-03-08 11:54:40 -05004012 u64 offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004013
Chris Masonea8efc72011-03-08 11:54:40 -05004014 /* break if the extent we found is outside the range */
4015 if (em->start >= max || extent_map_end(em) < off)
4016 break;
4017
4018 /*
4019 * get_extent may return an extent that starts before our
4020 * requested range. We have to make sure the ranges
4021 * we return to fiemap always move forward and don't
4022 * overlap, so adjust the offsets here
4023 */
4024 em_start = max(em->start, off);
4025
4026 /*
4027 * record the offset from the start of the extent
4028 * for adjusting the disk offset below
4029 */
4030 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004031 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004032 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05004033 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004034 disko = 0;
4035 flags = 0;
4036
Chris Masonea8efc72011-03-08 11:54:40 -05004037 /*
4038 * bump off for our next call to get_extent
4039 */
4040 off = extent_map_end(em);
4041 if (off >= max)
4042 end = 1;
4043
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004044 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004045 end = 1;
4046 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004047 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004048 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4049 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004050 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004051 flags |= (FIEMAP_EXTENT_DELALLOC |
4052 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004053 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05004054 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004055 }
4056 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4057 flags |= FIEMAP_EXTENT_ENCODED;
4058
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004059 free_extent_map(em);
4060 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004061 if ((em_start >= last) || em_len == (u64)-1 ||
4062 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004063 flags |= FIEMAP_EXTENT_LAST;
4064 end = 1;
4065 }
4066
Chris Masonec29ed52011-02-23 16:23:20 -05004067 /* now scan forward to see if this is really the last extent. */
4068 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4069 get_extent);
4070 if (IS_ERR(em)) {
4071 ret = PTR_ERR(em);
4072 goto out;
4073 }
4074 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004075 flags |= FIEMAP_EXTENT_LAST;
4076 end = 1;
4077 }
Chris Masonec29ed52011-02-23 16:23:20 -05004078 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4079 em_len, flags);
4080 if (ret)
4081 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004082 }
4083out_free:
4084 free_extent_map(em);
4085out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004086 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004087 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004088 return ret;
4089}
4090
Chris Mason727011e2010-08-06 13:21:20 -04004091static void __free_extent_buffer(struct extent_buffer *eb)
4092{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004093 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004094 kmem_cache_free(extent_buffer_cache, eb);
4095}
4096
Chris Masond1310b22008-01-24 16:13:08 -05004097static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4098 u64 start,
4099 unsigned long len,
4100 gfp_t mask)
4101{
4102 struct extent_buffer *eb = NULL;
4103
Chris Masond1310b22008-01-24 16:13:08 -05004104 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004105 if (eb == NULL)
4106 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004107 eb->start = start;
4108 eb->len = len;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004109 eb->tree = tree;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004110 eb->bflags = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004111 rwlock_init(&eb->lock);
4112 atomic_set(&eb->write_locks, 0);
4113 atomic_set(&eb->read_locks, 0);
4114 atomic_set(&eb->blocking_readers, 0);
4115 atomic_set(&eb->blocking_writers, 0);
4116 atomic_set(&eb->spinning_readers, 0);
4117 atomic_set(&eb->spinning_writers, 0);
Arne Jansen5b25f702011-09-13 10:55:48 +02004118 eb->lock_nested = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004119 init_waitqueue_head(&eb->write_lock_wq);
4120 init_waitqueue_head(&eb->read_lock_wq);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004121
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004122 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4123
Josef Bacik3083ee22012-03-09 16:01:49 -05004124 spin_lock_init(&eb->refs_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004125 atomic_set(&eb->refs, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004126 atomic_set(&eb->io_pages, 0);
Chris Mason727011e2010-08-06 13:21:20 -04004127
David Sterbab8dae312013-02-28 14:54:18 +00004128 /*
4129 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4130 */
4131 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4132 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4133 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05004134
4135 return eb;
4136}
4137
Jan Schmidt815a51c2012-05-16 17:00:02 +02004138struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4139{
4140 unsigned long i;
4141 struct page *p;
4142 struct extent_buffer *new;
4143 unsigned long num_pages = num_extent_pages(src->start, src->len);
4144
4145 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_ATOMIC);
4146 if (new == NULL)
4147 return NULL;
4148
4149 for (i = 0; i < num_pages; i++) {
4150 p = alloc_page(GFP_ATOMIC);
4151 BUG_ON(!p);
4152 attach_extent_buffer_page(new, p);
4153 WARN_ON(PageDirty(p));
4154 SetPageUptodate(p);
4155 new->pages[i] = p;
4156 }
4157
4158 copy_extent_buffer(new, src, 0, 0, src->len);
4159 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4160 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4161
4162 return new;
4163}
4164
4165struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4166{
4167 struct extent_buffer *eb;
4168 unsigned long num_pages = num_extent_pages(0, len);
4169 unsigned long i;
4170
4171 eb = __alloc_extent_buffer(NULL, start, len, GFP_ATOMIC);
4172 if (!eb)
4173 return NULL;
4174
4175 for (i = 0; i < num_pages; i++) {
4176 eb->pages[i] = alloc_page(GFP_ATOMIC);
4177 if (!eb->pages[i])
4178 goto err;
4179 }
4180 set_extent_buffer_uptodate(eb);
4181 btrfs_set_header_nritems(eb, 0);
4182 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4183
4184 return eb;
4185err:
Stefan Behrens84167d12012-10-11 07:25:16 -06004186 for (; i > 0; i--)
4187 __free_page(eb->pages[i - 1]);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004188 __free_extent_buffer(eb);
4189 return NULL;
4190}
4191
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004192static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004193{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004194 return (atomic_read(&eb->io_pages) ||
4195 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4196 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004197}
4198
Miao Xie897ca6e2010-10-26 20:57:29 -04004199/*
4200 * Helper for releasing extent buffer page.
4201 */
4202static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4203 unsigned long start_idx)
4204{
4205 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004206 unsigned long num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004207 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004208 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004209
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004210 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004211
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004212 num_pages = num_extent_pages(eb->start, eb->len);
4213 index = start_idx + num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004214 if (start_idx >= index)
4215 return;
4216
4217 do {
4218 index--;
4219 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004220 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004221 spin_lock(&page->mapping->private_lock);
4222 /*
4223 * We do this since we'll remove the pages after we've
4224 * removed the eb from the radix tree, so we could race
4225 * and have this page now attached to the new eb. So
4226 * only clear page_private if it's still connected to
4227 * this eb.
4228 */
4229 if (PagePrivate(page) &&
4230 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004231 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004232 BUG_ON(PageDirty(page));
4233 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004234 /*
4235 * We need to make sure we haven't be attached
4236 * to a new eb.
4237 */
4238 ClearPagePrivate(page);
4239 set_page_private(page, 0);
4240 /* One for the page private */
4241 page_cache_release(page);
4242 }
4243 spin_unlock(&page->mapping->private_lock);
4244
Jan Schmidt815a51c2012-05-16 17:00:02 +02004245 }
4246 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004247 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004248 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004249 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004250 } while (index != start_idx);
4251}
4252
4253/*
4254 * Helper for releasing the extent buffer.
4255 */
4256static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4257{
4258 btrfs_release_extent_buffer_page(eb, 0);
4259 __free_extent_buffer(eb);
4260}
4261
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004262static void check_buffer_tree_ref(struct extent_buffer *eb)
4263{
Chris Mason242e18c2013-01-29 17:49:37 -05004264 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004265 /* the ref bit is tricky. We have to make sure it is set
4266 * if we have the buffer dirty. Otherwise the
4267 * code to free a buffer can end up dropping a dirty
4268 * page
4269 *
4270 * Once the ref bit is set, it won't go away while the
4271 * buffer is dirty or in writeback, and it also won't
4272 * go away while we have the reference count on the
4273 * eb bumped.
4274 *
4275 * We can't just set the ref bit without bumping the
4276 * ref on the eb because free_extent_buffer might
4277 * see the ref bit and try to clear it. If this happens
4278 * free_extent_buffer might end up dropping our original
4279 * ref by mistake and freeing the page before we are able
4280 * to add one more ref.
4281 *
4282 * So bump the ref count first, then set the bit. If someone
4283 * beat us to it, drop the ref we added.
4284 */
Chris Mason242e18c2013-01-29 17:49:37 -05004285 refs = atomic_read(&eb->refs);
4286 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4287 return;
4288
Josef Bacik594831c2012-07-20 16:11:08 -04004289 spin_lock(&eb->refs_lock);
4290 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004291 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004292 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004293}
4294
Josef Bacik5df42352012-03-15 18:24:42 -04004295static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4296{
4297 unsigned long num_pages, i;
4298
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004299 check_buffer_tree_ref(eb);
4300
Josef Bacik5df42352012-03-15 18:24:42 -04004301 num_pages = num_extent_pages(eb->start, eb->len);
4302 for (i = 0; i < num_pages; i++) {
4303 struct page *p = extent_buffer_page(eb, i);
4304 mark_page_accessed(p);
4305 }
4306}
4307
Chris Masond1310b22008-01-24 16:13:08 -05004308struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004309 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004310{
4311 unsigned long num_pages = num_extent_pages(start, len);
4312 unsigned long i;
4313 unsigned long index = start >> PAGE_CACHE_SHIFT;
4314 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004315 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004316 struct page *p;
4317 struct address_space *mapping = tree->mapping;
4318 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004319 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004320
Miao Xie19fe0a82010-10-26 20:57:29 -04004321 rcu_read_lock();
4322 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4323 if (eb && atomic_inc_not_zero(&eb->refs)) {
4324 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004325 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004326 return eb;
4327 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004328 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004329
David Sterbaba144192011-04-21 01:12:06 +02004330 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004331 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004332 return NULL;
4333
Chris Mason727011e2010-08-06 13:21:20 -04004334 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004335 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004336 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004337 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004338
4339 spin_lock(&mapping->private_lock);
4340 if (PagePrivate(p)) {
4341 /*
4342 * We could have already allocated an eb for this page
4343 * and attached one so lets see if we can get a ref on
4344 * the existing eb, and if we can we know it's good and
4345 * we can just return that one, else we know we can just
4346 * overwrite page->private.
4347 */
4348 exists = (struct extent_buffer *)p->private;
4349 if (atomic_inc_not_zero(&exists->refs)) {
4350 spin_unlock(&mapping->private_lock);
4351 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004352 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004353 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004354 goto free_eb;
4355 }
4356
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004357 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004358 * Do this so attach doesn't complain and we need to
4359 * drop the ref the old guy had.
4360 */
4361 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004362 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004363 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004364 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004365 attach_extent_buffer_page(eb, p);
4366 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004367 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004368 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004369 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004370 if (!PageUptodate(p))
4371 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004372
4373 /*
4374 * see below about how we avoid a nasty race with release page
4375 * and why we unlock later
4376 */
Chris Masond1310b22008-01-24 16:13:08 -05004377 }
4378 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004379 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004380again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004381 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4382 if (ret)
4383 goto free_eb;
4384
Chris Mason6af118ce2008-07-22 11:18:07 -04004385 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004386 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4387 if (ret == -EEXIST) {
4388 exists = radix_tree_lookup(&tree->buffer,
4389 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004390 if (!atomic_inc_not_zero(&exists->refs)) {
4391 spin_unlock(&tree->buffer_lock);
4392 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004393 exists = NULL;
4394 goto again;
4395 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004396 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004397 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004398 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004399 goto free_eb;
4400 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004401 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004402 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004403 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004404 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004405
4406 /*
4407 * there is a race where release page may have
4408 * tried to find this extent buffer in the radix
4409 * but failed. It will tell the VM it is safe to
4410 * reclaim the, and it will clear the page private bit.
4411 * We must make sure to set the page private bit properly
4412 * after the extent buffer is in the radix tree so
4413 * it doesn't get lost
4414 */
Chris Mason727011e2010-08-06 13:21:20 -04004415 SetPageChecked(eb->pages[0]);
4416 for (i = 1; i < num_pages; i++) {
4417 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004418 ClearPageChecked(p);
4419 unlock_page(p);
4420 }
4421 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004422 return eb;
4423
Chris Mason6af118ce2008-07-22 11:18:07 -04004424free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004425 for (i = 0; i < num_pages; i++) {
4426 if (eb->pages[i])
4427 unlock_page(eb->pages[i]);
4428 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004429
Josef Bacik17de39a2012-05-04 15:16:06 -04004430 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004431 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004432 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004433}
Chris Masond1310b22008-01-24 16:13:08 -05004434
4435struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004436 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004437{
Chris Masond1310b22008-01-24 16:13:08 -05004438 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004439
Miao Xie19fe0a82010-10-26 20:57:29 -04004440 rcu_read_lock();
4441 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4442 if (eb && atomic_inc_not_zero(&eb->refs)) {
4443 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004444 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004445 return eb;
4446 }
4447 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004448
Miao Xie19fe0a82010-10-26 20:57:29 -04004449 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004450}
Chris Masond1310b22008-01-24 16:13:08 -05004451
Josef Bacik3083ee22012-03-09 16:01:49 -05004452static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4453{
4454 struct extent_buffer *eb =
4455 container_of(head, struct extent_buffer, rcu_head);
4456
4457 __free_extent_buffer(eb);
4458}
4459
Josef Bacik3083ee22012-03-09 16:01:49 -05004460/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004461static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004462{
4463 WARN_ON(atomic_read(&eb->refs) == 0);
4464 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004465 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4466 spin_unlock(&eb->refs_lock);
4467 } else {
4468 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004469
Jan Schmidt815a51c2012-05-16 17:00:02 +02004470 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004471
Jan Schmidt815a51c2012-05-16 17:00:02 +02004472 spin_lock(&tree->buffer_lock);
4473 radix_tree_delete(&tree->buffer,
4474 eb->start >> PAGE_CACHE_SHIFT);
4475 spin_unlock(&tree->buffer_lock);
4476 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004477
4478 /* Should be safe to release our pages at this point */
4479 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004480 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004481 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004482 }
4483 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004484
4485 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004486}
4487
Chris Masond1310b22008-01-24 16:13:08 -05004488void free_extent_buffer(struct extent_buffer *eb)
4489{
Chris Mason242e18c2013-01-29 17:49:37 -05004490 int refs;
4491 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004492 if (!eb)
4493 return;
4494
Chris Mason242e18c2013-01-29 17:49:37 -05004495 while (1) {
4496 refs = atomic_read(&eb->refs);
4497 if (refs <= 3)
4498 break;
4499 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4500 if (old == refs)
4501 return;
4502 }
4503
Josef Bacik3083ee22012-03-09 16:01:49 -05004504 spin_lock(&eb->refs_lock);
4505 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004506 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4507 atomic_dec(&eb->refs);
4508
4509 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004510 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004511 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004512 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4513 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004514
Josef Bacik3083ee22012-03-09 16:01:49 -05004515 /*
4516 * I know this is terrible, but it's temporary until we stop tracking
4517 * the uptodate bits and such for the extent buffers.
4518 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004519 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004520}
Chris Masond1310b22008-01-24 16:13:08 -05004521
Josef Bacik3083ee22012-03-09 16:01:49 -05004522void free_extent_buffer_stale(struct extent_buffer *eb)
4523{
4524 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004525 return;
4526
Josef Bacik3083ee22012-03-09 16:01:49 -05004527 spin_lock(&eb->refs_lock);
4528 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4529
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004530 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004531 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4532 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004533 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004534}
4535
Chris Mason1d4284b2012-03-28 20:31:37 -04004536void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004537{
Chris Masond1310b22008-01-24 16:13:08 -05004538 unsigned long i;
4539 unsigned long num_pages;
4540 struct page *page;
4541
Chris Masond1310b22008-01-24 16:13:08 -05004542 num_pages = num_extent_pages(eb->start, eb->len);
4543
4544 for (i = 0; i < num_pages; i++) {
4545 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004546 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004547 continue;
4548
Chris Masona61e6f22008-07-22 11:18:08 -04004549 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004550 WARN_ON(!PagePrivate(page));
4551
Chris Masond1310b22008-01-24 16:13:08 -05004552 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004553 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004554 if (!PageDirty(page)) {
4555 radix_tree_tag_clear(&page->mapping->page_tree,
4556 page_index(page),
4557 PAGECACHE_TAG_DIRTY);
4558 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004559 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004560 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004561 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004562 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004563 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004564}
Chris Masond1310b22008-01-24 16:13:08 -05004565
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004566int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004567{
4568 unsigned long i;
4569 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004570 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004571
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004572 check_buffer_tree_ref(eb);
4573
Chris Masonb9473432009-03-13 11:00:37 -04004574 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004575
Chris Masond1310b22008-01-24 16:13:08 -05004576 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004577 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004578 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4579
Chris Masonb9473432009-03-13 11:00:37 -04004580 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004581 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004582 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004583}
Chris Masond1310b22008-01-24 16:13:08 -05004584
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004585int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004586{
4587 unsigned long i;
4588 struct page *page;
4589 unsigned long num_pages;
4590
Chris Masonb4ce94d2009-02-04 09:25:08 -05004591 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004592 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004593 for (i = 0; i < num_pages; i++) {
4594 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004595 if (page)
4596 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004597 }
4598 return 0;
4599}
4600
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004601int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004602{
4603 unsigned long i;
4604 struct page *page;
4605 unsigned long num_pages;
4606
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004607 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004608 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004609 for (i = 0; i < num_pages; i++) {
4610 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004611 SetPageUptodate(page);
4612 }
4613 return 0;
4614}
Chris Masond1310b22008-01-24 16:13:08 -05004615
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004616int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004617{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004618 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004619}
Chris Masond1310b22008-01-24 16:13:08 -05004620
4621int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004622 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004623 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004624{
4625 unsigned long i;
4626 unsigned long start_i;
4627 struct page *page;
4628 int err;
4629 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004630 int locked_pages = 0;
4631 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004632 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004633 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004634 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004635 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004636
Chris Masonb4ce94d2009-02-04 09:25:08 -05004637 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004638 return 0;
4639
Chris Masond1310b22008-01-24 16:13:08 -05004640 if (start) {
4641 WARN_ON(start < eb->start);
4642 start_i = (start >> PAGE_CACHE_SHIFT) -
4643 (eb->start >> PAGE_CACHE_SHIFT);
4644 } else {
4645 start_i = 0;
4646 }
4647
4648 num_pages = num_extent_pages(eb->start, eb->len);
4649 for (i = start_i; i < num_pages; i++) {
4650 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004651 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004652 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004653 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004654 } else {
4655 lock_page(page);
4656 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004657 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004658 if (!PageUptodate(page)) {
4659 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004660 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004661 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004662 }
4663 if (all_uptodate) {
4664 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004665 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004666 goto unlock_exit;
4667 }
4668
Josef Bacikea466792012-03-26 21:57:36 -04004669 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004670 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004671 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004672 for (i = start_i; i < num_pages; i++) {
4673 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004674 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004675 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004676 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004677 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004678 mirror_num, &bio_flags,
4679 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004680 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004681 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004682 } else {
4683 unlock_page(page);
4684 }
4685 }
4686
Jeff Mahoney355808c2011-10-03 23:23:14 -04004687 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004688 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4689 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004690 if (err)
4691 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004692 }
Chris Masona86c12c2008-02-07 10:50:54 -05004693
Arne Jansenbb82ab82011-06-10 14:06:53 +02004694 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004695 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004696
Chris Masond1310b22008-01-24 16:13:08 -05004697 for (i = start_i; i < num_pages; i++) {
4698 page = extent_buffer_page(eb, i);
4699 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004700 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004701 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004702 }
Chris Masond3977122009-01-05 21:25:51 -05004703
Chris Masond1310b22008-01-24 16:13:08 -05004704 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004705
4706unlock_exit:
4707 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004708 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004709 page = extent_buffer_page(eb, i);
4710 i++;
4711 unlock_page(page);
4712 locked_pages--;
4713 }
4714 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004715}
Chris Masond1310b22008-01-24 16:13:08 -05004716
4717void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4718 unsigned long start,
4719 unsigned long len)
4720{
4721 size_t cur;
4722 size_t offset;
4723 struct page *page;
4724 char *kaddr;
4725 char *dst = (char *)dstv;
4726 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4727 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004728
4729 WARN_ON(start > eb->len);
4730 WARN_ON(start + len > eb->start + eb->len);
4731
4732 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4733
Chris Masond3977122009-01-05 21:25:51 -05004734 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004735 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004736
4737 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004738 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004739 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004740
4741 dst += cur;
4742 len -= cur;
4743 offset = 0;
4744 i++;
4745 }
4746}
Chris Masond1310b22008-01-24 16:13:08 -05004747
4748int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004749 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004750 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004751 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004752{
4753 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4754 char *kaddr;
4755 struct page *p;
4756 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4757 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4758 unsigned long end_i = (start_offset + start + min_len - 1) >>
4759 PAGE_CACHE_SHIFT;
4760
4761 if (i != end_i)
4762 return -EINVAL;
4763
4764 if (i == 0) {
4765 offset = start_offset;
4766 *map_start = 0;
4767 } else {
4768 offset = 0;
4769 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4770 }
Chris Masond3977122009-01-05 21:25:51 -05004771
Chris Masond1310b22008-01-24 16:13:08 -05004772 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004773 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Chris Masond3977122009-01-05 21:25:51 -05004774 "wanted %lu %lu\n", (unsigned long long)eb->start,
4775 eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004776 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004777 }
4778
4779 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004780 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004781 *map = kaddr + offset;
4782 *map_len = PAGE_CACHE_SIZE - offset;
4783 return 0;
4784}
Chris Masond1310b22008-01-24 16:13:08 -05004785
Chris Masond1310b22008-01-24 16:13:08 -05004786int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4787 unsigned long start,
4788 unsigned long len)
4789{
4790 size_t cur;
4791 size_t offset;
4792 struct page *page;
4793 char *kaddr;
4794 char *ptr = (char *)ptrv;
4795 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4796 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4797 int ret = 0;
4798
4799 WARN_ON(start > eb->len);
4800 WARN_ON(start + len > eb->start + eb->len);
4801
4802 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4803
Chris Masond3977122009-01-05 21:25:51 -05004804 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004805 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004806
4807 cur = min(len, (PAGE_CACHE_SIZE - offset));
4808
Chris Masona6591712011-07-19 12:04:14 -04004809 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004810 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004811 if (ret)
4812 break;
4813
4814 ptr += cur;
4815 len -= cur;
4816 offset = 0;
4817 i++;
4818 }
4819 return ret;
4820}
Chris Masond1310b22008-01-24 16:13:08 -05004821
4822void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4823 unsigned long start, unsigned long len)
4824{
4825 size_t cur;
4826 size_t offset;
4827 struct page *page;
4828 char *kaddr;
4829 char *src = (char *)srcv;
4830 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4831 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4832
4833 WARN_ON(start > eb->len);
4834 WARN_ON(start + len > eb->start + eb->len);
4835
4836 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4837
Chris Masond3977122009-01-05 21:25:51 -05004838 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004839 page = extent_buffer_page(eb, i);
4840 WARN_ON(!PageUptodate(page));
4841
4842 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004843 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004844 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004845
4846 src += cur;
4847 len -= cur;
4848 offset = 0;
4849 i++;
4850 }
4851}
Chris Masond1310b22008-01-24 16:13:08 -05004852
4853void memset_extent_buffer(struct extent_buffer *eb, char c,
4854 unsigned long start, unsigned long len)
4855{
4856 size_t cur;
4857 size_t offset;
4858 struct page *page;
4859 char *kaddr;
4860 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4861 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4862
4863 WARN_ON(start > eb->len);
4864 WARN_ON(start + len > eb->start + eb->len);
4865
4866 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4867
Chris Masond3977122009-01-05 21:25:51 -05004868 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004869 page = extent_buffer_page(eb, i);
4870 WARN_ON(!PageUptodate(page));
4871
4872 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004873 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004874 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004875
4876 len -= cur;
4877 offset = 0;
4878 i++;
4879 }
4880}
Chris Masond1310b22008-01-24 16:13:08 -05004881
4882void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
4883 unsigned long dst_offset, unsigned long src_offset,
4884 unsigned long len)
4885{
4886 u64 dst_len = dst->len;
4887 size_t cur;
4888 size_t offset;
4889 struct page *page;
4890 char *kaddr;
4891 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4892 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4893
4894 WARN_ON(src->len != dst_len);
4895
4896 offset = (start_offset + dst_offset) &
4897 ((unsigned long)PAGE_CACHE_SIZE - 1);
4898
Chris Masond3977122009-01-05 21:25:51 -05004899 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004900 page = extent_buffer_page(dst, i);
4901 WARN_ON(!PageUptodate(page));
4902
4903 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
4904
Chris Masona6591712011-07-19 12:04:14 -04004905 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004906 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004907
4908 src_offset += cur;
4909 len -= cur;
4910 offset = 0;
4911 i++;
4912 }
4913}
Chris Masond1310b22008-01-24 16:13:08 -05004914
4915static void move_pages(struct page *dst_page, struct page *src_page,
4916 unsigned long dst_off, unsigned long src_off,
4917 unsigned long len)
4918{
Chris Masona6591712011-07-19 12:04:14 -04004919 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004920 if (dst_page == src_page) {
4921 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
4922 } else {
Chris Masona6591712011-07-19 12:04:14 -04004923 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05004924 char *p = dst_kaddr + dst_off + len;
4925 char *s = src_kaddr + src_off + len;
4926
4927 while (len--)
4928 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05004929 }
Chris Masond1310b22008-01-24 16:13:08 -05004930}
4931
Sergei Trofimovich33872062011-04-11 21:52:52 +00004932static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
4933{
4934 unsigned long distance = (src > dst) ? src - dst : dst - src;
4935 return distance < len;
4936}
4937
Chris Masond1310b22008-01-24 16:13:08 -05004938static void copy_pages(struct page *dst_page, struct page *src_page,
4939 unsigned long dst_off, unsigned long src_off,
4940 unsigned long len)
4941{
Chris Masona6591712011-07-19 12:04:14 -04004942 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004943 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004944 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004945
Sergei Trofimovich33872062011-04-11 21:52:52 +00004946 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04004947 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00004948 } else {
Chris Masond1310b22008-01-24 16:13:08 -05004949 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004950 if (areas_overlap(src_off, dst_off, len))
4951 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00004952 }
Chris Masond1310b22008-01-24 16:13:08 -05004953
Chris Mason727011e2010-08-06 13:21:20 -04004954 if (must_memmove)
4955 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
4956 else
4957 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05004958}
4959
4960void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4961 unsigned long src_offset, unsigned long len)
4962{
4963 size_t cur;
4964 size_t dst_off_in_page;
4965 size_t src_off_in_page;
4966 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4967 unsigned long dst_i;
4968 unsigned long src_i;
4969
4970 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004971 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4972 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004973 BUG_ON(1);
4974 }
4975 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004976 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4977 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004978 BUG_ON(1);
4979 }
4980
Chris Masond3977122009-01-05 21:25:51 -05004981 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004982 dst_off_in_page = (start_offset + dst_offset) &
4983 ((unsigned long)PAGE_CACHE_SIZE - 1);
4984 src_off_in_page = (start_offset + src_offset) &
4985 ((unsigned long)PAGE_CACHE_SIZE - 1);
4986
4987 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4988 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
4989
4990 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
4991 src_off_in_page));
4992 cur = min_t(unsigned long, cur,
4993 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
4994
4995 copy_pages(extent_buffer_page(dst, dst_i),
4996 extent_buffer_page(dst, src_i),
4997 dst_off_in_page, src_off_in_page, cur);
4998
4999 src_offset += cur;
5000 dst_offset += cur;
5001 len -= cur;
5002 }
5003}
Chris Masond1310b22008-01-24 16:13:08 -05005004
5005void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5006 unsigned long src_offset, unsigned long len)
5007{
5008 size_t cur;
5009 size_t dst_off_in_page;
5010 size_t src_off_in_page;
5011 unsigned long dst_end = dst_offset + len - 1;
5012 unsigned long src_end = src_offset + len - 1;
5013 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5014 unsigned long dst_i;
5015 unsigned long src_i;
5016
5017 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005018 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5019 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005020 BUG_ON(1);
5021 }
5022 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005023 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5024 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005025 BUG_ON(1);
5026 }
Chris Mason727011e2010-08-06 13:21:20 -04005027 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005028 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5029 return;
5030 }
Chris Masond3977122009-01-05 21:25:51 -05005031 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005032 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5033 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5034
5035 dst_off_in_page = (start_offset + dst_end) &
5036 ((unsigned long)PAGE_CACHE_SIZE - 1);
5037 src_off_in_page = (start_offset + src_end) &
5038 ((unsigned long)PAGE_CACHE_SIZE - 1);
5039
5040 cur = min_t(unsigned long, len, src_off_in_page + 1);
5041 cur = min(cur, dst_off_in_page + 1);
5042 move_pages(extent_buffer_page(dst, dst_i),
5043 extent_buffer_page(dst, src_i),
5044 dst_off_in_page - cur + 1,
5045 src_off_in_page - cur + 1, cur);
5046
5047 dst_end -= cur;
5048 src_end -= cur;
5049 len -= cur;
5050 }
5051}
Chris Mason6af118ce2008-07-22 11:18:07 -04005052
David Sterbaf7a52a42013-04-26 14:56:29 +00005053int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005054{
Chris Mason6af118ce2008-07-22 11:18:07 -04005055 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005056
Miao Xie19fe0a82010-10-26 20:57:29 -04005057 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005058 * We need to make sure noboody is attaching this page to an eb right
5059 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005060 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005061 spin_lock(&page->mapping->private_lock);
5062 if (!PagePrivate(page)) {
5063 spin_unlock(&page->mapping->private_lock);
5064 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005065 }
5066
Josef Bacik3083ee22012-03-09 16:01:49 -05005067 eb = (struct extent_buffer *)page->private;
5068 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005069
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005070 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005071 * This is a little awful but should be ok, we need to make sure that
5072 * the eb doesn't disappear out from under us while we're looking at
5073 * this page.
5074 */
5075 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005076 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005077 spin_unlock(&eb->refs_lock);
5078 spin_unlock(&page->mapping->private_lock);
5079 return 0;
5080 }
5081 spin_unlock(&page->mapping->private_lock);
5082
Josef Bacik3083ee22012-03-09 16:01:49 -05005083 /*
5084 * If tree ref isn't set then we know the ref on this eb is a real ref,
5085 * so just return, this page will likely be freed soon anyway.
5086 */
5087 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5088 spin_unlock(&eb->refs_lock);
5089 return 0;
5090 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005091
David Sterbaf7a52a42013-04-26 14:56:29 +00005092 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005093}