blob: daf180dafe399796bb9f794bee4c80242fddb2a5 [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}
David Sterba8d599ae2013-04-30 15:22:23 +000080
81#define btrfs_debug_check_extent_io_range(inode, start, end) \
82 __btrfs_debug_check_extent_io_range(__func__, (inode), (start), (end))
83static inline void __btrfs_debug_check_extent_io_range(const char *caller,
84 struct inode *inode, u64 start, u64 end)
85{
86 u64 isize = i_size_read(inode);
87
88 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
89 printk_ratelimited(KERN_DEBUG
90 "btrfs: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
91 caller,
92 (unsigned long long)btrfs_ino(inode),
93 (unsigned long long)isize,
94 (unsigned long long)start,
95 (unsigned long long)end);
96 }
97}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000098#else
99#define btrfs_leak_debug_add(new, head) do {} while (0)
100#define btrfs_leak_debug_del(entry) do {} while (0)
101#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +0000102#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -0400103#endif
Chris Masond1310b22008-01-24 16:13:08 -0500104
Chris Masond1310b22008-01-24 16:13:08 -0500105#define BUFFER_LRU_MAX 64
106
107struct tree_entry {
108 u64 start;
109 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500110 struct rb_node rb_node;
111};
112
113struct extent_page_data {
114 struct bio *bio;
115 struct extent_io_tree *tree;
116 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400117 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500118
119 /* tells writepage not to lock the state bits for this range
120 * it still does the unlocking
121 */
Chris Masonffbd5172009-04-20 15:50:09 -0400122 unsigned int extent_locked:1;
123
124 /* tells the submit_bio code to use a WRITE_SYNC */
125 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500126};
127
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400128static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400129static inline struct btrfs_fs_info *
130tree_fs_info(struct extent_io_tree *tree)
131{
132 return btrfs_sb(tree->mapping->host->i_sb);
133}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400134
Chris Masond1310b22008-01-24 16:13:08 -0500135int __init extent_io_init(void)
136{
David Sterba837e1972012-09-07 03:00:48 -0600137 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200138 sizeof(struct extent_state), 0,
139 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500140 if (!extent_state_cache)
141 return -ENOMEM;
142
David Sterba837e1972012-09-07 03:00:48 -0600143 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200144 sizeof(struct extent_buffer), 0,
145 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500146 if (!extent_buffer_cache)
147 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400148
149 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
150 offsetof(struct btrfs_io_bio, bio));
151 if (!btrfs_bioset)
152 goto free_buffer_cache;
Chris Masond1310b22008-01-24 16:13:08 -0500153 return 0;
154
Chris Mason9be33952013-05-17 18:30:14 -0400155free_buffer_cache:
156 kmem_cache_destroy(extent_buffer_cache);
157 extent_buffer_cache = NULL;
158
Chris Masond1310b22008-01-24 16:13:08 -0500159free_state_cache:
160 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400161 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500162 return -ENOMEM;
163}
164
165void extent_io_exit(void)
166{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000167 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000168
169 /*
170 * Make sure all delayed rcu free are flushed before we
171 * destroy caches.
172 */
173 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500174 if (extent_state_cache)
175 kmem_cache_destroy(extent_state_cache);
176 if (extent_buffer_cache)
177 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400178 if (btrfs_bioset)
179 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500180}
181
182void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200183 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500184{
Eric Paris6bef4d32010-02-23 19:43:04 +0000185 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400186 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500187 tree->ops = NULL;
188 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500189 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400190 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500191 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500192}
Chris Masond1310b22008-01-24 16:13:08 -0500193
Christoph Hellwigb2950862008-12-02 09:54:17 -0500194static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500195{
196 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500197
198 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400199 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500200 return state;
201 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500202 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500203 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000204 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500205 atomic_set(&state->refs, 1);
206 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100207 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500208 return state;
209}
Chris Masond1310b22008-01-24 16:13:08 -0500210
Chris Mason4845e442010-05-25 20:56:50 -0400211void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500212{
Chris Masond1310b22008-01-24 16:13:08 -0500213 if (!state)
214 return;
215 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500216 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000217 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100218 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500219 kmem_cache_free(extent_state_cache, state);
220 }
221}
Chris Masond1310b22008-01-24 16:13:08 -0500222
223static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
224 struct rb_node *node)
225{
Chris Masond3977122009-01-05 21:25:51 -0500226 struct rb_node **p = &root->rb_node;
227 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500228 struct tree_entry *entry;
229
Chris Masond3977122009-01-05 21:25:51 -0500230 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500231 parent = *p;
232 entry = rb_entry(parent, struct tree_entry, rb_node);
233
234 if (offset < entry->start)
235 p = &(*p)->rb_left;
236 else if (offset > entry->end)
237 p = &(*p)->rb_right;
238 else
239 return parent;
240 }
241
Chris Masond1310b22008-01-24 16:13:08 -0500242 rb_link_node(node, parent, p);
243 rb_insert_color(node, root);
244 return NULL;
245}
246
Chris Mason80ea96b2008-02-01 14:51:59 -0500247static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500248 struct rb_node **prev_ret,
249 struct rb_node **next_ret)
250{
Chris Mason80ea96b2008-02-01 14:51:59 -0500251 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500252 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500253 struct rb_node *prev = NULL;
254 struct rb_node *orig_prev = NULL;
255 struct tree_entry *entry;
256 struct tree_entry *prev_entry = NULL;
257
Chris Masond3977122009-01-05 21:25:51 -0500258 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500259 entry = rb_entry(n, struct tree_entry, rb_node);
260 prev = n;
261 prev_entry = entry;
262
263 if (offset < entry->start)
264 n = n->rb_left;
265 else if (offset > entry->end)
266 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500267 else
Chris Masond1310b22008-01-24 16:13:08 -0500268 return n;
269 }
270
271 if (prev_ret) {
272 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500273 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500274 prev = rb_next(prev);
275 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
276 }
277 *prev_ret = prev;
278 prev = orig_prev;
279 }
280
281 if (next_ret) {
282 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500283 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500284 prev = rb_prev(prev);
285 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
286 }
287 *next_ret = prev;
288 }
289 return NULL;
290}
291
Chris Mason80ea96b2008-02-01 14:51:59 -0500292static inline struct rb_node *tree_search(struct extent_io_tree *tree,
293 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500294{
Chris Mason70dec802008-01-29 09:59:12 -0500295 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500296 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500297
Chris Mason80ea96b2008-02-01 14:51:59 -0500298 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500299 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500300 return prev;
301 return ret;
302}
303
Josef Bacik9ed74f22009-09-11 16:12:44 -0400304static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
305 struct extent_state *other)
306{
307 if (tree->ops && tree->ops->merge_extent_hook)
308 tree->ops->merge_extent_hook(tree->mapping->host, new,
309 other);
310}
311
Chris Masond1310b22008-01-24 16:13:08 -0500312/*
313 * utility function to look for merge candidates inside a given range.
314 * Any extents with matching state are merged together into a single
315 * extent in the tree. Extents with EXTENT_IO in their state field
316 * are not merged because the end_io handlers need to be able to do
317 * operations on them without sleeping (or doing allocations/splits).
318 *
319 * This should be called with the tree lock held.
320 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000321static void merge_state(struct extent_io_tree *tree,
322 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500323{
324 struct extent_state *other;
325 struct rb_node *other_node;
326
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400327 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000328 return;
Chris Masond1310b22008-01-24 16:13:08 -0500329
330 other_node = rb_prev(&state->rb_node);
331 if (other_node) {
332 other = rb_entry(other_node, struct extent_state, rb_node);
333 if (other->end == state->start - 1 &&
334 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400335 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500336 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500337 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500338 rb_erase(&other->rb_node, &tree->state);
339 free_extent_state(other);
340 }
341 }
342 other_node = rb_next(&state->rb_node);
343 if (other_node) {
344 other = rb_entry(other_node, struct extent_state, rb_node);
345 if (other->start == state->end + 1 &&
346 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400347 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400348 state->end = other->end;
349 other->tree = NULL;
350 rb_erase(&other->rb_node, &tree->state);
351 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500352 }
353 }
Chris Masond1310b22008-01-24 16:13:08 -0500354}
355
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000356static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000357 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500358{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000359 if (tree->ops && tree->ops->set_bit_hook)
360 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500361}
362
363static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000364 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500365{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400366 if (tree->ops && tree->ops->clear_bit_hook)
367 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500368}
369
Xiao Guangrong3150b692011-07-14 03:19:08 +0000370static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000371 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000372
Chris Masond1310b22008-01-24 16:13:08 -0500373/*
374 * insert an extent_state struct into the tree. 'bits' are set on the
375 * struct before it is inserted.
376 *
377 * This may return -EEXIST if the extent is already there, in which case the
378 * state struct is freed.
379 *
380 * The tree lock is not taken internally. This is a utility function and
381 * probably isn't what you want to call (see set/clear_extent_bit).
382 */
383static int insert_state(struct extent_io_tree *tree,
384 struct extent_state *state, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000385 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500386{
387 struct rb_node *node;
388
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000389 if (end < start)
390 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Chris Masond3977122009-01-05 21:25:51 -0500391 (unsigned long long)end,
392 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500393 state->start = start;
394 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400395
Xiao Guangrong3150b692011-07-14 03:19:08 +0000396 set_state_bits(tree, state, bits);
397
Chris Masond1310b22008-01-24 16:13:08 -0500398 node = tree_insert(&tree->state, end, &state->rb_node);
399 if (node) {
400 struct extent_state *found;
401 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500402 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
403 "%llu %llu\n", (unsigned long long)found->start,
404 (unsigned long long)found->end,
405 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500406 return -EEXIST;
407 }
Chris Mason70dec802008-01-29 09:59:12 -0500408 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500409 merge_state(tree, state);
410 return 0;
411}
412
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000413static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400414 u64 split)
415{
416 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000417 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400418}
419
Chris Masond1310b22008-01-24 16:13:08 -0500420/*
421 * split a given extent state struct in two, inserting the preallocated
422 * struct 'prealloc' as the newly created second half. 'split' indicates an
423 * offset inside 'orig' where it should be split.
424 *
425 * Before calling,
426 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
427 * are two extent state structs in the tree:
428 * prealloc: [orig->start, split - 1]
429 * orig: [ split, orig->end ]
430 *
431 * The tree locks are not taken by this function. They need to be held
432 * by the caller.
433 */
434static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
435 struct extent_state *prealloc, u64 split)
436{
437 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400438
439 split_cb(tree, orig, split);
440
Chris Masond1310b22008-01-24 16:13:08 -0500441 prealloc->start = orig->start;
442 prealloc->end = split - 1;
443 prealloc->state = orig->state;
444 orig->start = split;
445
446 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
447 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500448 free_extent_state(prealloc);
449 return -EEXIST;
450 }
Chris Mason70dec802008-01-29 09:59:12 -0500451 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500452 return 0;
453}
454
Li Zefancdc6a392012-03-12 16:39:48 +0800455static struct extent_state *next_state(struct extent_state *state)
456{
457 struct rb_node *next = rb_next(&state->rb_node);
458 if (next)
459 return rb_entry(next, struct extent_state, rb_node);
460 else
461 return NULL;
462}
463
Chris Masond1310b22008-01-24 16:13:08 -0500464/*
465 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800466 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500467 *
468 * If no bits are set on the state struct after clearing things, the
469 * struct is freed and removed from the tree
470 */
Li Zefancdc6a392012-03-12 16:39:48 +0800471static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
472 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000473 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500474{
Li Zefancdc6a392012-03-12 16:39:48 +0800475 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000476 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500477
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400478 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500479 u64 range = state->end - state->start + 1;
480 WARN_ON(range > tree->dirty_bytes);
481 tree->dirty_bytes -= range;
482 }
Chris Mason291d6732008-01-29 15:55:23 -0500483 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400484 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500485 if (wake)
486 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400487 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800488 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500489 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500490 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500491 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500492 free_extent_state(state);
493 } else {
494 WARN_ON(1);
495 }
496 } else {
497 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800498 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500499 }
Li Zefancdc6a392012-03-12 16:39:48 +0800500 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500501}
502
Xiao Guangrong82337672011-04-20 06:44:57 +0000503static struct extent_state *
504alloc_extent_state_atomic(struct extent_state *prealloc)
505{
506 if (!prealloc)
507 prealloc = alloc_extent_state(GFP_ATOMIC);
508
509 return prealloc;
510}
511
Eric Sandeen48a3b632013-04-25 20:41:01 +0000512static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400513{
514 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
515 "Extent tree was modified by another "
516 "thread while locked.");
517}
518
Chris Masond1310b22008-01-24 16:13:08 -0500519/*
520 * clear some bits on a range in the tree. This may require splitting
521 * or inserting elements in the tree, so the gfp mask is used to
522 * indicate which allocations or sleeping are allowed.
523 *
524 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
525 * the given range from the tree regardless of state (ie for truncate).
526 *
527 * the range [start, end] is inclusive.
528 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100529 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500530 */
531int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000532 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400533 struct extent_state **cached_state,
534 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500535{
536 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400537 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500538 struct extent_state *prealloc = NULL;
539 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400540 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500541 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000542 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500543
David Sterba8d599ae2013-04-30 15:22:23 +0000544 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
545
Josef Bacik7ee9e442013-06-21 16:37:03 -0400546 if (bits & EXTENT_DELALLOC)
547 bits |= EXTENT_NORESERVE;
548
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400549 if (delete)
550 bits |= ~EXTENT_CTLBITS;
551 bits |= EXTENT_FIRST_DELALLOC;
552
Josef Bacik2ac55d42010-02-03 19:33:23 +0000553 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
554 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500555again:
556 if (!prealloc && (mask & __GFP_WAIT)) {
557 prealloc = alloc_extent_state(mask);
558 if (!prealloc)
559 return -ENOMEM;
560 }
561
Chris Masoncad321a2008-12-17 14:51:42 -0500562 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400563 if (cached_state) {
564 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000565
566 if (clear) {
567 *cached_state = NULL;
568 cached_state = NULL;
569 }
570
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400571 if (cached && cached->tree && cached->start <= start &&
572 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000573 if (clear)
574 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400575 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400576 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400577 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000578 if (clear)
579 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400580 }
Chris Masond1310b22008-01-24 16:13:08 -0500581 /*
582 * this search will find the extents that end after
583 * our range starts
584 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500585 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500586 if (!node)
587 goto out;
588 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400589hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500590 if (state->start > end)
591 goto out;
592 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400593 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500594
Liu Bo04493142012-02-16 18:34:37 +0800595 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800596 if (!(state->state & bits)) {
597 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800598 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800599 }
Liu Bo04493142012-02-16 18:34:37 +0800600
Chris Masond1310b22008-01-24 16:13:08 -0500601 /*
602 * | ---- desired range ---- |
603 * | state | or
604 * | ------------- state -------------- |
605 *
606 * We need to split the extent we found, and may flip
607 * bits on second half.
608 *
609 * If the extent we found extends past our range, we
610 * just split and search again. It'll get split again
611 * the next time though.
612 *
613 * If the extent we found is inside our range, we clear
614 * the desired bit on it.
615 */
616
617 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000618 prealloc = alloc_extent_state_atomic(prealloc);
619 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500620 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400621 if (err)
622 extent_io_tree_panic(tree, err);
623
Chris Masond1310b22008-01-24 16:13:08 -0500624 prealloc = NULL;
625 if (err)
626 goto out;
627 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800628 state = clear_state_bit(tree, state, &bits, wake);
629 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500630 }
631 goto search_again;
632 }
633 /*
634 * | ---- desired range ---- |
635 * | state |
636 * We need to split the extent, and clear the bit
637 * on the first half
638 */
639 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000640 prealloc = alloc_extent_state_atomic(prealloc);
641 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500642 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400643 if (err)
644 extent_io_tree_panic(tree, err);
645
Chris Masond1310b22008-01-24 16:13:08 -0500646 if (wake)
647 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400648
Jeff Mahoney6763af82012-03-01 14:56:29 +0100649 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400650
Chris Masond1310b22008-01-24 16:13:08 -0500651 prealloc = NULL;
652 goto out;
653 }
Chris Mason42daec22009-09-23 19:51:09 -0400654
Li Zefancdc6a392012-03-12 16:39:48 +0800655 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800656next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400657 if (last_end == (u64)-1)
658 goto out;
659 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800660 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800661 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500662 goto search_again;
663
664out:
Chris Masoncad321a2008-12-17 14:51:42 -0500665 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500666 if (prealloc)
667 free_extent_state(prealloc);
668
Jeff Mahoney6763af82012-03-01 14:56:29 +0100669 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500670
671search_again:
672 if (start > end)
673 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500674 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500675 if (mask & __GFP_WAIT)
676 cond_resched();
677 goto again;
678}
Chris Masond1310b22008-01-24 16:13:08 -0500679
Jeff Mahoney143bede2012-03-01 14:56:26 +0100680static void wait_on_state(struct extent_io_tree *tree,
681 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500682 __releases(tree->lock)
683 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500684{
685 DEFINE_WAIT(wait);
686 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500687 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500688 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500689 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500690 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500691}
692
693/*
694 * waits for one or more bits to clear on a range in the state tree.
695 * The range [start, end] is inclusive.
696 * The tree lock is taken by this function
697 */
David Sterba41074882013-04-29 13:38:46 +0000698static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
699 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500700{
701 struct extent_state *state;
702 struct rb_node *node;
703
David Sterba8d599ae2013-04-30 15:22:23 +0000704 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
705
Chris Masoncad321a2008-12-17 14:51:42 -0500706 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500707again:
708 while (1) {
709 /*
710 * this search will find all the extents that end after
711 * our range starts
712 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500713 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500714 if (!node)
715 break;
716
717 state = rb_entry(node, struct extent_state, rb_node);
718
719 if (state->start > end)
720 goto out;
721
722 if (state->state & bits) {
723 start = state->start;
724 atomic_inc(&state->refs);
725 wait_on_state(tree, state);
726 free_extent_state(state);
727 goto again;
728 }
729 start = state->end + 1;
730
731 if (start > end)
732 break;
733
Xiao Guangrongded91f02011-07-14 03:19:27 +0000734 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500735 }
736out:
Chris Masoncad321a2008-12-17 14:51:42 -0500737 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500738}
Chris Masond1310b22008-01-24 16:13:08 -0500739
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000740static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500741 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000742 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500743{
David Sterba41074882013-04-29 13:38:46 +0000744 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400745
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000746 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400747 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500748 u64 range = state->end - state->start + 1;
749 tree->dirty_bytes += range;
750 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400751 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500752}
753
Chris Mason2c64c532009-09-02 15:04:12 -0400754static void cache_state(struct extent_state *state,
755 struct extent_state **cached_ptr)
756{
757 if (cached_ptr && !(*cached_ptr)) {
758 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
759 *cached_ptr = state;
760 atomic_inc(&state->refs);
761 }
762 }
763}
764
Chris Masond1310b22008-01-24 16:13:08 -0500765/*
Chris Mason1edbb732009-09-02 13:24:36 -0400766 * set some bits on a range in the tree. This may require allocations or
767 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500768 *
Chris Mason1edbb732009-09-02 13:24:36 -0400769 * If any of the exclusive bits are set, this will fail with -EEXIST if some
770 * part of the range already has the desired bits set. The start of the
771 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500772 *
Chris Mason1edbb732009-09-02 13:24:36 -0400773 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500774 */
Chris Mason1edbb732009-09-02 13:24:36 -0400775
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100776static int __must_check
777__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000778 unsigned long bits, unsigned long exclusive_bits,
779 u64 *failed_start, struct extent_state **cached_state,
780 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500781{
782 struct extent_state *state;
783 struct extent_state *prealloc = NULL;
784 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500785 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500786 u64 last_start;
787 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400788
David Sterba8d599ae2013-04-30 15:22:23 +0000789 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
790
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400791 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500792again:
793 if (!prealloc && (mask & __GFP_WAIT)) {
794 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000795 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500796 }
797
Chris Masoncad321a2008-12-17 14:51:42 -0500798 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400799 if (cached_state && *cached_state) {
800 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400801 if (state->start <= start && state->end > start &&
802 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400803 node = &state->rb_node;
804 goto hit_next;
805 }
806 }
Chris Masond1310b22008-01-24 16:13:08 -0500807 /*
808 * this search will find all the extents that end after
809 * our range starts.
810 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500811 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500812 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000813 prealloc = alloc_extent_state_atomic(prealloc);
814 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400815 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400816 if (err)
817 extent_io_tree_panic(tree, err);
818
Chris Masond1310b22008-01-24 16:13:08 -0500819 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500820 goto out;
821 }
Chris Masond1310b22008-01-24 16:13:08 -0500822 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400823hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500824 last_start = state->start;
825 last_end = state->end;
826
827 /*
828 * | ---- desired range ---- |
829 * | state |
830 *
831 * Just lock what we found and keep going
832 */
833 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400834 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500835 *failed_start = state->start;
836 err = -EEXIST;
837 goto out;
838 }
Chris Mason42daec22009-09-23 19:51:09 -0400839
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000840 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400841 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500842 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400843 if (last_end == (u64)-1)
844 goto out;
845 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800846 state = next_state(state);
847 if (start < end && state && state->start == start &&
848 !need_resched())
849 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500850 goto search_again;
851 }
852
853 /*
854 * | ---- desired range ---- |
855 * | state |
856 * or
857 * | ------------- state -------------- |
858 *
859 * We need to split the extent we found, and may flip bits on
860 * second half.
861 *
862 * If the extent we found extends past our
863 * range, we just split and search again. It'll get split
864 * again the next time though.
865 *
866 * If the extent we found is inside our range, we set the
867 * desired bit on it.
868 */
869 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400870 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500871 *failed_start = start;
872 err = -EEXIST;
873 goto out;
874 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000875
876 prealloc = alloc_extent_state_atomic(prealloc);
877 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500878 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400879 if (err)
880 extent_io_tree_panic(tree, err);
881
Chris Masond1310b22008-01-24 16:13:08 -0500882 prealloc = NULL;
883 if (err)
884 goto out;
885 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000886 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400887 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500888 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400889 if (last_end == (u64)-1)
890 goto out;
891 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800892 state = next_state(state);
893 if (start < end && state && state->start == start &&
894 !need_resched())
895 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500896 }
897 goto search_again;
898 }
899 /*
900 * | ---- desired range ---- |
901 * | state | or | state |
902 *
903 * There's a hole, we need to insert something in it and
904 * ignore the extent we found.
905 */
906 if (state->start > start) {
907 u64 this_end;
908 if (end < last_start)
909 this_end = end;
910 else
Chris Masond3977122009-01-05 21:25:51 -0500911 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000912
913 prealloc = alloc_extent_state_atomic(prealloc);
914 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000915
916 /*
917 * Avoid to free 'prealloc' if it can be merged with
918 * the later extent.
919 */
Chris Masond1310b22008-01-24 16:13:08 -0500920 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400921 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400922 if (err)
923 extent_io_tree_panic(tree, err);
924
Chris Mason2c64c532009-09-02 15:04:12 -0400925 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500926 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500927 start = this_end + 1;
928 goto search_again;
929 }
930 /*
931 * | ---- desired range ---- |
932 * | state |
933 * We need to split the extent, and set the bit
934 * on the first half
935 */
936 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400937 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500938 *failed_start = start;
939 err = -EEXIST;
940 goto out;
941 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000942
943 prealloc = alloc_extent_state_atomic(prealloc);
944 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500945 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400946 if (err)
947 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500948
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000949 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400950 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500951 merge_state(tree, prealloc);
952 prealloc = NULL;
953 goto out;
954 }
955
956 goto search_again;
957
958out:
Chris Masoncad321a2008-12-17 14:51:42 -0500959 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500960 if (prealloc)
961 free_extent_state(prealloc);
962
963 return err;
964
965search_again:
966 if (start > end)
967 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500968 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500969 if (mask & __GFP_WAIT)
970 cond_resched();
971 goto again;
972}
Chris Masond1310b22008-01-24 16:13:08 -0500973
David Sterba41074882013-04-29 13:38:46 +0000974int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
975 unsigned long bits, u64 * failed_start,
976 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100977{
978 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
979 cached_state, mask);
980}
981
982
Josef Bacik462d6fa2011-09-26 13:56:12 -0400983/**
Liu Bo10983f22012-07-11 15:26:19 +0800984 * convert_extent_bit - convert all bits in a given range from one bit to
985 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400986 * @tree: the io tree to search
987 * @start: the start offset in bytes
988 * @end: the end offset in bytes (inclusive)
989 * @bits: the bits to set in this range
990 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400991 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400992 * @mask: the allocation mask
993 *
994 * This will go through and set bits for the given range. If any states exist
995 * already in this range they are set with the given bit and cleared of the
996 * clear_bits. This is only meant to be used by things that are mergeable, ie
997 * converting from say DELALLOC to DIRTY. This is not meant to be used with
998 * boundary bits like LOCK.
999 */
1000int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001001 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001002 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001003{
1004 struct extent_state *state;
1005 struct extent_state *prealloc = NULL;
1006 struct rb_node *node;
1007 int err = 0;
1008 u64 last_start;
1009 u64 last_end;
1010
David Sterba8d599ae2013-04-30 15:22:23 +00001011 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
1012
Josef Bacik462d6fa2011-09-26 13:56:12 -04001013again:
1014 if (!prealloc && (mask & __GFP_WAIT)) {
1015 prealloc = alloc_extent_state(mask);
1016 if (!prealloc)
1017 return -ENOMEM;
1018 }
1019
1020 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001021 if (cached_state && *cached_state) {
1022 state = *cached_state;
1023 if (state->start <= start && state->end > start &&
1024 state->tree) {
1025 node = &state->rb_node;
1026 goto hit_next;
1027 }
1028 }
1029
Josef Bacik462d6fa2011-09-26 13:56:12 -04001030 /*
1031 * this search will find all the extents that end after
1032 * our range starts.
1033 */
1034 node = tree_search(tree, start);
1035 if (!node) {
1036 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001037 if (!prealloc) {
1038 err = -ENOMEM;
1039 goto out;
1040 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001041 err = insert_state(tree, prealloc, start, end, &bits);
1042 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001043 if (err)
1044 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001045 goto out;
1046 }
1047 state = rb_entry(node, struct extent_state, rb_node);
1048hit_next:
1049 last_start = state->start;
1050 last_end = state->end;
1051
1052 /*
1053 * | ---- desired range ---- |
1054 * | state |
1055 *
1056 * Just lock what we found and keep going
1057 */
1058 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001059 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001060 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001061 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001062 if (last_end == (u64)-1)
1063 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001064 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001065 if (start < end && state && state->start == start &&
1066 !need_resched())
1067 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001068 goto search_again;
1069 }
1070
1071 /*
1072 * | ---- desired range ---- |
1073 * | state |
1074 * or
1075 * | ------------- state -------------- |
1076 *
1077 * We need to split the extent we found, and may flip bits on
1078 * second half.
1079 *
1080 * If the extent we found extends past our
1081 * range, we just split and search again. It'll get split
1082 * again the next time though.
1083 *
1084 * If the extent we found is inside our range, we set the
1085 * desired bit on it.
1086 */
1087 if (state->start < start) {
1088 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001089 if (!prealloc) {
1090 err = -ENOMEM;
1091 goto out;
1092 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001093 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001094 if (err)
1095 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001096 prealloc = NULL;
1097 if (err)
1098 goto out;
1099 if (state->end <= end) {
1100 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001101 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001102 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001103 if (last_end == (u64)-1)
1104 goto out;
1105 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001106 if (start < end && state && state->start == start &&
1107 !need_resched())
1108 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001109 }
1110 goto search_again;
1111 }
1112 /*
1113 * | ---- desired range ---- |
1114 * | state | or | state |
1115 *
1116 * There's a hole, we need to insert something in it and
1117 * ignore the extent we found.
1118 */
1119 if (state->start > start) {
1120 u64 this_end;
1121 if (end < last_start)
1122 this_end = end;
1123 else
1124 this_end = last_start - 1;
1125
1126 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001127 if (!prealloc) {
1128 err = -ENOMEM;
1129 goto out;
1130 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001131
1132 /*
1133 * Avoid to free 'prealloc' if it can be merged with
1134 * the later extent.
1135 */
1136 err = insert_state(tree, prealloc, start, this_end,
1137 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001138 if (err)
1139 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001140 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001141 prealloc = NULL;
1142 start = this_end + 1;
1143 goto search_again;
1144 }
1145 /*
1146 * | ---- desired range ---- |
1147 * | state |
1148 * We need to split the extent, and set the bit
1149 * on the first half
1150 */
1151 if (state->start <= end && state->end > end) {
1152 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001153 if (!prealloc) {
1154 err = -ENOMEM;
1155 goto out;
1156 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001157
1158 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001159 if (err)
1160 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001161
1162 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001163 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001164 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001165 prealloc = NULL;
1166 goto out;
1167 }
1168
1169 goto search_again;
1170
1171out:
1172 spin_unlock(&tree->lock);
1173 if (prealloc)
1174 free_extent_state(prealloc);
1175
1176 return err;
1177
1178search_again:
1179 if (start > end)
1180 goto out;
1181 spin_unlock(&tree->lock);
1182 if (mask & __GFP_WAIT)
1183 cond_resched();
1184 goto again;
1185}
1186
Chris Masond1310b22008-01-24 16:13:08 -05001187/* wrappers around set/clear extent bit */
1188int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1189 gfp_t mask)
1190{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001191 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001192 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001193}
Chris Masond1310b22008-01-24 16:13:08 -05001194
1195int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001196 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001197{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001198 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001199 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001200}
Chris Masond1310b22008-01-24 16:13:08 -05001201
1202int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001203 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001204{
Chris Mason2c64c532009-09-02 15:04:12 -04001205 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001206}
Chris Masond1310b22008-01-24 16:13:08 -05001207
1208int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001209 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001210{
1211 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001212 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001213 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001214}
Chris Masond1310b22008-01-24 16:13:08 -05001215
Liu Bo9e8a4a82012-09-05 19:10:51 -06001216int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1217 struct extent_state **cached_state, gfp_t mask)
1218{
1219 return set_extent_bit(tree, start, end,
1220 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1221 NULL, cached_state, mask);
1222}
1223
Chris Masond1310b22008-01-24 16:13:08 -05001224int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1225 gfp_t mask)
1226{
1227 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001228 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001229 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001230}
Chris Masond1310b22008-01-24 16:13:08 -05001231
1232int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1233 gfp_t mask)
1234{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001235 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001236 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001237}
Chris Masond1310b22008-01-24 16:13:08 -05001238
Chris Masond1310b22008-01-24 16:13:08 -05001239int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001240 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001241{
Liu Bo6b67a322013-03-28 08:30:28 +00001242 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001243 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001244}
Chris Masond1310b22008-01-24 16:13:08 -05001245
Josef Bacik5fd02042012-05-02 14:00:54 -04001246int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1247 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001248{
Chris Mason2c64c532009-09-02 15:04:12 -04001249 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001250 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001251}
Chris Masond1310b22008-01-24 16:13:08 -05001252
Chris Masond352ac62008-09-29 15:18:18 -04001253/*
1254 * either insert or lock state struct between start and end use mask to tell
1255 * us if waiting is desired.
1256 */
Chris Mason1edbb732009-09-02 13:24:36 -04001257int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001258 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001259{
1260 int err;
1261 u64 failed_start;
1262 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001263 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1264 EXTENT_LOCKED, &failed_start,
1265 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001266 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001267 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1268 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001269 } else
Chris Masond1310b22008-01-24 16:13:08 -05001270 break;
Chris Masond1310b22008-01-24 16:13:08 -05001271 WARN_ON(start > end);
1272 }
1273 return err;
1274}
Chris Masond1310b22008-01-24 16:13:08 -05001275
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001276int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001277{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001278 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001279}
1280
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001281int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001282{
1283 int err;
1284 u64 failed_start;
1285
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001286 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1287 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001288 if (err == -EEXIST) {
1289 if (failed_start > start)
1290 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001291 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001292 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001293 }
Josef Bacik25179202008-10-29 14:49:05 -04001294 return 1;
1295}
Josef Bacik25179202008-10-29 14:49:05 -04001296
Chris Mason2c64c532009-09-02 15:04:12 -04001297int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1298 struct extent_state **cached, gfp_t mask)
1299{
1300 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1301 mask);
1302}
1303
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001304int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001305{
Chris Mason2c64c532009-09-02 15:04:12 -04001306 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001307 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001308}
Chris Masond1310b22008-01-24 16:13:08 -05001309
Chris Mason4adaa612013-03-26 13:07:00 -04001310int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1311{
1312 unsigned long index = start >> PAGE_CACHE_SHIFT;
1313 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1314 struct page *page;
1315
1316 while (index <= end_index) {
1317 page = find_get_page(inode->i_mapping, index);
1318 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1319 clear_page_dirty_for_io(page);
1320 page_cache_release(page);
1321 index++;
1322 }
1323 return 0;
1324}
1325
1326int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1327{
1328 unsigned long index = start >> PAGE_CACHE_SHIFT;
1329 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1330 struct page *page;
1331
1332 while (index <= end_index) {
1333 page = find_get_page(inode->i_mapping, index);
1334 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1335 account_page_redirty(page);
1336 __set_page_dirty_nobuffers(page);
1337 page_cache_release(page);
1338 index++;
1339 }
1340 return 0;
1341}
1342
Chris Masond1310b22008-01-24 16:13:08 -05001343/*
Chris Masond1310b22008-01-24 16:13:08 -05001344 * helper function to set both pages and extents in the tree writeback
1345 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001346static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001347{
1348 unsigned long index = start >> PAGE_CACHE_SHIFT;
1349 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1350 struct page *page;
1351
1352 while (index <= end_index) {
1353 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001354 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001355 set_page_writeback(page);
1356 page_cache_release(page);
1357 index++;
1358 }
Chris Masond1310b22008-01-24 16:13:08 -05001359 return 0;
1360}
Chris Masond1310b22008-01-24 16:13:08 -05001361
Chris Masond352ac62008-09-29 15:18:18 -04001362/* find the first state struct with 'bits' set after 'start', and
1363 * return it. tree->lock must be held. NULL will returned if
1364 * nothing was found after 'start'
1365 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001366static struct extent_state *
1367find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001368 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001369{
1370 struct rb_node *node;
1371 struct extent_state *state;
1372
1373 /*
1374 * this search will find all the extents that end after
1375 * our range starts.
1376 */
1377 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001378 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001379 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001380
Chris Masond3977122009-01-05 21:25:51 -05001381 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001382 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001383 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001384 return state;
Chris Masond3977122009-01-05 21:25:51 -05001385
Chris Masond7fc6402008-02-18 12:12:38 -05001386 node = rb_next(node);
1387 if (!node)
1388 break;
1389 }
1390out:
1391 return NULL;
1392}
Chris Masond7fc6402008-02-18 12:12:38 -05001393
Chris Masond352ac62008-09-29 15:18:18 -04001394/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001395 * find the first offset in the io tree with 'bits' set. zero is
1396 * returned if we find something, and *start_ret and *end_ret are
1397 * set to reflect the state struct that was found.
1398 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001399 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001400 */
1401int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001402 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001403 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001404{
1405 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001406 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001407 int ret = 1;
1408
1409 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001410 if (cached_state && *cached_state) {
1411 state = *cached_state;
1412 if (state->end == start - 1 && state->tree) {
1413 n = rb_next(&state->rb_node);
1414 while (n) {
1415 state = rb_entry(n, struct extent_state,
1416 rb_node);
1417 if (state->state & bits)
1418 goto got_it;
1419 n = rb_next(n);
1420 }
1421 free_extent_state(*cached_state);
1422 *cached_state = NULL;
1423 goto out;
1424 }
1425 free_extent_state(*cached_state);
1426 *cached_state = NULL;
1427 }
1428
Xiao Guangrong69261c42011-07-14 03:19:45 +00001429 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001430got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001431 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001432 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001433 *start_ret = state->start;
1434 *end_ret = state->end;
1435 ret = 0;
1436 }
Josef Bacike6138872012-09-27 17:07:30 -04001437out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001438 spin_unlock(&tree->lock);
1439 return ret;
1440}
1441
1442/*
Chris Masond352ac62008-09-29 15:18:18 -04001443 * find a contiguous range of bytes in the file marked as delalloc, not
1444 * more than 'max_bytes'. start and end are used to return the range,
1445 *
1446 * 1 is returned if we find something, 0 if nothing was in the tree
1447 */
Chris Masonc8b97812008-10-29 14:49:59 -04001448static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001449 u64 *start, u64 *end, u64 max_bytes,
1450 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001451{
1452 struct rb_node *node;
1453 struct extent_state *state;
1454 u64 cur_start = *start;
1455 u64 found = 0;
1456 u64 total_bytes = 0;
1457
Chris Masoncad321a2008-12-17 14:51:42 -05001458 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001459
Chris Masond1310b22008-01-24 16:13:08 -05001460 /*
1461 * this search will find all the extents that end after
1462 * our range starts.
1463 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001464 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001465 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001466 if (!found)
1467 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001468 goto out;
1469 }
1470
Chris Masond3977122009-01-05 21:25:51 -05001471 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001472 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001473 if (found && (state->start != cur_start ||
1474 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001475 goto out;
1476 }
1477 if (!(state->state & EXTENT_DELALLOC)) {
1478 if (!found)
1479 *end = state->end;
1480 goto out;
1481 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001482 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001483 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001484 *cached_state = state;
1485 atomic_inc(&state->refs);
1486 }
Chris Masond1310b22008-01-24 16:13:08 -05001487 found++;
1488 *end = state->end;
1489 cur_start = state->end + 1;
1490 node = rb_next(node);
1491 if (!node)
1492 break;
1493 total_bytes += state->end - state->start + 1;
1494 if (total_bytes >= max_bytes)
1495 break;
1496 }
1497out:
Chris Masoncad321a2008-12-17 14:51:42 -05001498 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001499 return found;
1500}
1501
Jeff Mahoney143bede2012-03-01 14:56:26 +01001502static noinline void __unlock_for_delalloc(struct inode *inode,
1503 struct page *locked_page,
1504 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001505{
1506 int ret;
1507 struct page *pages[16];
1508 unsigned long index = start >> PAGE_CACHE_SHIFT;
1509 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1510 unsigned long nr_pages = end_index - index + 1;
1511 int i;
1512
1513 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001514 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001515
Chris Masond3977122009-01-05 21:25:51 -05001516 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001517 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001518 min_t(unsigned long, nr_pages,
1519 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001520 for (i = 0; i < ret; i++) {
1521 if (pages[i] != locked_page)
1522 unlock_page(pages[i]);
1523 page_cache_release(pages[i]);
1524 }
1525 nr_pages -= ret;
1526 index += ret;
1527 cond_resched();
1528 }
Chris Masonc8b97812008-10-29 14:49:59 -04001529}
1530
1531static noinline int lock_delalloc_pages(struct inode *inode,
1532 struct page *locked_page,
1533 u64 delalloc_start,
1534 u64 delalloc_end)
1535{
1536 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1537 unsigned long start_index = index;
1538 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1539 unsigned long pages_locked = 0;
1540 struct page *pages[16];
1541 unsigned long nrpages;
1542 int ret;
1543 int i;
1544
1545 /* the caller is responsible for locking the start index */
1546 if (index == locked_page->index && index == end_index)
1547 return 0;
1548
1549 /* skip the page at the start index */
1550 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001551 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001552 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001553 min_t(unsigned long,
1554 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001555 if (ret == 0) {
1556 ret = -EAGAIN;
1557 goto done;
1558 }
1559 /* now we have an array of pages, lock them all */
1560 for (i = 0; i < ret; i++) {
1561 /*
1562 * the caller is taking responsibility for
1563 * locked_page
1564 */
Chris Mason771ed682008-11-06 22:02:51 -05001565 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001566 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001567 if (!PageDirty(pages[i]) ||
1568 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001569 ret = -EAGAIN;
1570 unlock_page(pages[i]);
1571 page_cache_release(pages[i]);
1572 goto done;
1573 }
1574 }
Chris Masonc8b97812008-10-29 14:49:59 -04001575 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001576 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001577 }
Chris Masonc8b97812008-10-29 14:49:59 -04001578 nrpages -= ret;
1579 index += ret;
1580 cond_resched();
1581 }
1582 ret = 0;
1583done:
1584 if (ret && pages_locked) {
1585 __unlock_for_delalloc(inode, locked_page,
1586 delalloc_start,
1587 ((u64)(start_index + pages_locked - 1)) <<
1588 PAGE_CACHE_SHIFT);
1589 }
1590 return ret;
1591}
1592
1593/*
1594 * find a contiguous range of bytes in the file marked as delalloc, not
1595 * more than 'max_bytes'. start and end are used to return the range,
1596 *
1597 * 1 is returned if we find something, 0 if nothing was in the tree
1598 */
1599static noinline u64 find_lock_delalloc_range(struct inode *inode,
1600 struct extent_io_tree *tree,
1601 struct page *locked_page,
1602 u64 *start, u64 *end,
1603 u64 max_bytes)
1604{
1605 u64 delalloc_start;
1606 u64 delalloc_end;
1607 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001608 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001609 int ret;
1610 int loops = 0;
1611
1612again:
1613 /* step one, find a bunch of delalloc bytes starting at start */
1614 delalloc_start = *start;
1615 delalloc_end = 0;
1616 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001617 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001618 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001619 *start = delalloc_start;
1620 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001621 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001622 return found;
1623 }
1624
1625 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001626 * start comes from the offset of locked_page. We have to lock
1627 * pages in order, so we can't process delalloc bytes before
1628 * locked_page
1629 */
Chris Masond3977122009-01-05 21:25:51 -05001630 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001631 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001632
1633 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001634 * make sure to limit the number of pages we try to lock down
1635 * if we're looping.
1636 */
Chris Masond3977122009-01-05 21:25:51 -05001637 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001638 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001639
Chris Masonc8b97812008-10-29 14:49:59 -04001640 /* step two, lock all the pages after the page that has start */
1641 ret = lock_delalloc_pages(inode, locked_page,
1642 delalloc_start, delalloc_end);
1643 if (ret == -EAGAIN) {
1644 /* some of the pages are gone, lets avoid looping by
1645 * shortening the size of the delalloc range we're searching
1646 */
Chris Mason9655d292009-09-02 15:22:30 -04001647 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001648 if (!loops) {
1649 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1650 max_bytes = PAGE_CACHE_SIZE - offset;
1651 loops = 1;
1652 goto again;
1653 } else {
1654 found = 0;
1655 goto out_failed;
1656 }
1657 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001658 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001659
1660 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001661 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001662
1663 /* then test to make sure it is all still delalloc */
1664 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001665 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001666 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001667 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1668 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001669 __unlock_for_delalloc(inode, locked_page,
1670 delalloc_start, delalloc_end);
1671 cond_resched();
1672 goto again;
1673 }
Chris Mason9655d292009-09-02 15:22:30 -04001674 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001675 *start = delalloc_start;
1676 *end = delalloc_end;
1677out_failed:
1678 return found;
1679}
1680
1681int extent_clear_unlock_delalloc(struct inode *inode,
1682 struct extent_io_tree *tree,
1683 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001684 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001685{
1686 int ret;
1687 struct page *pages[16];
1688 unsigned long index = start >> PAGE_CACHE_SHIFT;
1689 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1690 unsigned long nr_pages = end_index - index + 1;
1691 int i;
David Sterba41074882013-04-29 13:38:46 +00001692 unsigned long clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001693
Chris Masona791e352009-10-08 11:27:10 -04001694 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001695 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001696 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001697 clear_bits |= EXTENT_DIRTY;
1698
Chris Masona791e352009-10-08 11:27:10 -04001699 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001700 clear_bits |= EXTENT_DELALLOC;
1701
Chris Mason2c64c532009-09-02 15:04:12 -04001702 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001703 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1704 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1705 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001706 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001707
Chris Masond3977122009-01-05 21:25:51 -05001708 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001709 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001710 min_t(unsigned long,
1711 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001712 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001713
Chris Masona791e352009-10-08 11:27:10 -04001714 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001715 SetPagePrivate2(pages[i]);
1716
Chris Masonc8b97812008-10-29 14:49:59 -04001717 if (pages[i] == locked_page) {
1718 page_cache_release(pages[i]);
1719 continue;
1720 }
Chris Masona791e352009-10-08 11:27:10 -04001721 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001722 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001723 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001724 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001725 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001726 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001727 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001728 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001729 page_cache_release(pages[i]);
1730 }
1731 nr_pages -= ret;
1732 index += ret;
1733 cond_resched();
1734 }
1735 return 0;
1736}
Chris Masonc8b97812008-10-29 14:49:59 -04001737
Chris Masond352ac62008-09-29 15:18:18 -04001738/*
1739 * count the number of bytes in the tree that have a given bit(s)
1740 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1741 * cached. The total number found is returned.
1742 */
Chris Masond1310b22008-01-24 16:13:08 -05001743u64 count_range_bits(struct extent_io_tree *tree,
1744 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001745 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001746{
1747 struct rb_node *node;
1748 struct extent_state *state;
1749 u64 cur_start = *start;
1750 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001751 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001752 int found = 0;
1753
1754 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001755 WARN_ON(1);
1756 return 0;
1757 }
1758
Chris Masoncad321a2008-12-17 14:51:42 -05001759 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001760 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1761 total_bytes = tree->dirty_bytes;
1762 goto out;
1763 }
1764 /*
1765 * this search will find all the extents that end after
1766 * our range starts.
1767 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001768 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001769 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001770 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001771
Chris Masond3977122009-01-05 21:25:51 -05001772 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001773 state = rb_entry(node, struct extent_state, rb_node);
1774 if (state->start > search_end)
1775 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001776 if (contig && found && state->start > last + 1)
1777 break;
1778 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001779 total_bytes += min(search_end, state->end) + 1 -
1780 max(cur_start, state->start);
1781 if (total_bytes >= max_bytes)
1782 break;
1783 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001784 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001785 found = 1;
1786 }
Chris Masonec29ed52011-02-23 16:23:20 -05001787 last = state->end;
1788 } else if (contig && found) {
1789 break;
Chris Masond1310b22008-01-24 16:13:08 -05001790 }
1791 node = rb_next(node);
1792 if (!node)
1793 break;
1794 }
1795out:
Chris Masoncad321a2008-12-17 14:51:42 -05001796 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001797 return total_bytes;
1798}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001799
Chris Masond352ac62008-09-29 15:18:18 -04001800/*
1801 * set the private field for a given byte offset in the tree. If there isn't
1802 * an extent_state there already, this does nothing.
1803 */
Chris Masond1310b22008-01-24 16:13:08 -05001804int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1805{
1806 struct rb_node *node;
1807 struct extent_state *state;
1808 int ret = 0;
1809
Chris Masoncad321a2008-12-17 14:51:42 -05001810 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001811 /*
1812 * this search will find all the extents that end after
1813 * our range starts.
1814 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001815 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001816 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001817 ret = -ENOENT;
1818 goto out;
1819 }
1820 state = rb_entry(node, struct extent_state, rb_node);
1821 if (state->start != start) {
1822 ret = -ENOENT;
1823 goto out;
1824 }
1825 state->private = private;
1826out:
Chris Masoncad321a2008-12-17 14:51:42 -05001827 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001828 return ret;
1829}
1830
1831int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1832{
1833 struct rb_node *node;
1834 struct extent_state *state;
1835 int ret = 0;
1836
Chris Masoncad321a2008-12-17 14:51:42 -05001837 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001838 /*
1839 * this search will find all the extents that end after
1840 * our range starts.
1841 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001842 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001843 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001844 ret = -ENOENT;
1845 goto out;
1846 }
1847 state = rb_entry(node, struct extent_state, rb_node);
1848 if (state->start != start) {
1849 ret = -ENOENT;
1850 goto out;
1851 }
1852 *private = state->private;
1853out:
Chris Masoncad321a2008-12-17 14:51:42 -05001854 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001855 return ret;
1856}
1857
1858/*
1859 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001860 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001861 * has the bits set. Otherwise, 1 is returned if any bit in the
1862 * range is found set.
1863 */
1864int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001865 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001866{
1867 struct extent_state *state = NULL;
1868 struct rb_node *node;
1869 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001870
Chris Masoncad321a2008-12-17 14:51:42 -05001871 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001872 if (cached && cached->tree && cached->start <= start &&
1873 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001874 node = &cached->rb_node;
1875 else
1876 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001877 while (node && start <= end) {
1878 state = rb_entry(node, struct extent_state, rb_node);
1879
1880 if (filled && state->start > start) {
1881 bitset = 0;
1882 break;
1883 }
1884
1885 if (state->start > end)
1886 break;
1887
1888 if (state->state & bits) {
1889 bitset = 1;
1890 if (!filled)
1891 break;
1892 } else if (filled) {
1893 bitset = 0;
1894 break;
1895 }
Chris Mason46562ce2009-09-23 20:23:16 -04001896
1897 if (state->end == (u64)-1)
1898 break;
1899
Chris Masond1310b22008-01-24 16:13:08 -05001900 start = state->end + 1;
1901 if (start > end)
1902 break;
1903 node = rb_next(node);
1904 if (!node) {
1905 if (filled)
1906 bitset = 0;
1907 break;
1908 }
1909 }
Chris Masoncad321a2008-12-17 14:51:42 -05001910 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001911 return bitset;
1912}
Chris Masond1310b22008-01-24 16:13:08 -05001913
1914/*
1915 * helper function to set a given page up to date if all the
1916 * extents in the tree for that page are up to date
1917 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001918static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001919{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001920 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001921 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001922 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001923 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001924}
1925
1926/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001927 * When IO fails, either with EIO or csum verification fails, we
1928 * try other mirrors that might have a good copy of the data. This
1929 * io_failure_record is used to record state as we go through all the
1930 * mirrors. If another mirror has good data, the page is set up to date
1931 * and things continue. If a good mirror can't be found, the original
1932 * bio end_io callback is called to indicate things have failed.
1933 */
1934struct io_failure_record {
1935 struct page *page;
1936 u64 start;
1937 u64 len;
1938 u64 logical;
1939 unsigned long bio_flags;
1940 int this_mirror;
1941 int failed_mirror;
1942 int in_validation;
1943};
1944
1945static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1946 int did_repair)
1947{
1948 int ret;
1949 int err = 0;
1950 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1951
1952 set_state_private(failure_tree, rec->start, 0);
1953 ret = clear_extent_bits(failure_tree, rec->start,
1954 rec->start + rec->len - 1,
1955 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1956 if (ret)
1957 err = ret;
1958
David Woodhouse53b381b2013-01-29 18:40:14 -05001959 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1960 rec->start + rec->len - 1,
1961 EXTENT_DAMAGED, GFP_NOFS);
1962 if (ret && !err)
1963 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001964
1965 kfree(rec);
1966 return err;
1967}
1968
1969static void repair_io_failure_callback(struct bio *bio, int err)
1970{
1971 complete(bio->bi_private);
1972}
1973
1974/*
1975 * this bypasses the standard btrfs submit functions deliberately, as
1976 * the standard behavior is to write all copies in a raid setup. here we only
1977 * want to write the one bad copy. so we do the mapping for ourselves and issue
1978 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001979 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001980 * actually prevents the read that triggered the error from finishing.
1981 * currently, there can be no more than two copies of every data bit. thus,
1982 * exactly one rewrite is required.
1983 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001984int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001985 u64 length, u64 logical, struct page *page,
1986 int mirror_num)
1987{
1988 struct bio *bio;
1989 struct btrfs_device *dev;
1990 DECLARE_COMPLETION_ONSTACK(compl);
1991 u64 map_length = 0;
1992 u64 sector;
1993 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05001994 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001995 int ret;
1996
1997 BUG_ON(!mirror_num);
1998
David Woodhouse53b381b2013-01-29 18:40:14 -05001999 /* we can't repair anything in raid56 yet */
2000 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2001 return 0;
2002
Chris Mason9be33952013-05-17 18:30:14 -04002003 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002004 if (!bio)
2005 return -EIO;
2006 bio->bi_private = &compl;
2007 bio->bi_end_io = repair_io_failure_callback;
2008 bio->bi_size = 0;
2009 map_length = length;
2010
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002011 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002012 &map_length, &bbio, mirror_num);
2013 if (ret) {
2014 bio_put(bio);
2015 return -EIO;
2016 }
2017 BUG_ON(mirror_num != bbio->mirror_num);
2018 sector = bbio->stripes[mirror_num-1].physical >> 9;
2019 bio->bi_sector = sector;
2020 dev = bbio->stripes[mirror_num-1].dev;
2021 kfree(bbio);
2022 if (!dev || !dev->bdev || !dev->writeable) {
2023 bio_put(bio);
2024 return -EIO;
2025 }
2026 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002027 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01002028 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002029 wait_for_completion(&compl);
2030
2031 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2032 /* try to remap that extent elsewhere? */
2033 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002034 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002035 return -EIO;
2036 }
2037
Anand Jaind5b025d2012-07-02 22:05:21 -06002038 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002039 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2040 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002041
2042 bio_put(bio);
2043 return 0;
2044}
2045
Josef Bacikea466792012-03-26 21:57:36 -04002046int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2047 int mirror_num)
2048{
Josef Bacikea466792012-03-26 21:57:36 -04002049 u64 start = eb->start;
2050 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002051 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002052
2053 for (i = 0; i < num_pages; i++) {
2054 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002055 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002056 start, p, mirror_num);
2057 if (ret)
2058 break;
2059 start += PAGE_CACHE_SIZE;
2060 }
2061
2062 return ret;
2063}
2064
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002065/*
2066 * each time an IO finishes, we do a fast check in the IO failure tree
2067 * to see if we need to process or clean up an io_failure_record
2068 */
2069static int clean_io_failure(u64 start, struct page *page)
2070{
2071 u64 private;
2072 u64 private_failure;
2073 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002074 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002075 struct extent_state *state;
2076 int num_copies;
2077 int did_repair = 0;
2078 int ret;
2079 struct inode *inode = page->mapping->host;
2080
2081 private = 0;
2082 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2083 (u64)-1, 1, EXTENT_DIRTY, 0);
2084 if (!ret)
2085 return 0;
2086
2087 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2088 &private_failure);
2089 if (ret)
2090 return 0;
2091
2092 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2093 BUG_ON(!failrec->this_mirror);
2094
2095 if (failrec->in_validation) {
2096 /* there was no real error, just free the record */
2097 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2098 failrec->start);
2099 did_repair = 1;
2100 goto out;
2101 }
2102
2103 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2104 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2105 failrec->start,
2106 EXTENT_LOCKED);
2107 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2108
Miao Xie883d0de2013-07-25 19:22:35 +08002109 if (state && state->start <= failrec->start &&
2110 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002111 fs_info = BTRFS_I(inode)->root->fs_info;
2112 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2113 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002114 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002115 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002116 failrec->logical, page,
2117 failrec->failed_mirror);
2118 did_repair = !ret;
2119 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002120 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002121 }
2122
2123out:
2124 if (!ret)
2125 ret = free_io_failure(inode, failrec, did_repair);
2126
2127 return ret;
2128}
2129
2130/*
2131 * this is a generic handler for readpage errors (default
2132 * readpage_io_failed_hook). if other copies exist, read those and write back
2133 * good data to the failed position. does not investigate in remapping the
2134 * failed extent elsewhere, hoping the device will be smart enough to do this as
2135 * needed
2136 */
2137
Miao Xiefacc8a222013-07-25 19:22:34 +08002138static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2139 struct page *page, u64 start, u64 end,
2140 int failed_mirror)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002141{
2142 struct io_failure_record *failrec = NULL;
2143 u64 private;
2144 struct extent_map *em;
2145 struct inode *inode = page->mapping->host;
2146 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2147 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2148 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2149 struct bio *bio;
Miao Xiefacc8a222013-07-25 19:22:34 +08002150 struct btrfs_io_bio *btrfs_failed_bio;
2151 struct btrfs_io_bio *btrfs_bio;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002152 int num_copies;
2153 int ret;
2154 int read_mode;
2155 u64 logical;
2156
2157 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2158
2159 ret = get_state_private(failure_tree, start, &private);
2160 if (ret) {
2161 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2162 if (!failrec)
2163 return -ENOMEM;
2164 failrec->start = start;
2165 failrec->len = end - start + 1;
2166 failrec->this_mirror = 0;
2167 failrec->bio_flags = 0;
2168 failrec->in_validation = 0;
2169
2170 read_lock(&em_tree->lock);
2171 em = lookup_extent_mapping(em_tree, start, failrec->len);
2172 if (!em) {
2173 read_unlock(&em_tree->lock);
2174 kfree(failrec);
2175 return -EIO;
2176 }
2177
2178 if (em->start > start || em->start + em->len < start) {
2179 free_extent_map(em);
2180 em = NULL;
2181 }
2182 read_unlock(&em_tree->lock);
2183
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002184 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002185 kfree(failrec);
2186 return -EIO;
2187 }
2188 logical = start - em->start;
2189 logical = em->block_start + logical;
2190 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2191 logical = em->block_start;
2192 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2193 extent_set_compress_type(&failrec->bio_flags,
2194 em->compress_type);
2195 }
2196 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2197 "len=%llu\n", logical, start, failrec->len);
2198 failrec->logical = logical;
2199 free_extent_map(em);
2200
2201 /* set the bits in the private failure tree */
2202 ret = set_extent_bits(failure_tree, start, end,
2203 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2204 if (ret >= 0)
2205 ret = set_state_private(failure_tree, start,
2206 (u64)(unsigned long)failrec);
2207 /* set the bits in the inode's tree */
2208 if (ret >= 0)
2209 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2210 GFP_NOFS);
2211 if (ret < 0) {
2212 kfree(failrec);
2213 return ret;
2214 }
2215 } else {
2216 failrec = (struct io_failure_record *)(unsigned long)private;
2217 pr_debug("bio_readpage_error: (found) logical=%llu, "
2218 "start=%llu, len=%llu, validation=%d\n",
2219 failrec->logical, failrec->start, failrec->len,
2220 failrec->in_validation);
2221 /*
2222 * when data can be on disk more than twice, add to failrec here
2223 * (e.g. with a list for failed_mirror) to make
2224 * clean_io_failure() clean all those errors at once.
2225 */
2226 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002227 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2228 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002229 if (num_copies == 1) {
2230 /*
2231 * we only have a single copy of the data, so don't bother with
2232 * all the retry and error correction code that follows. no
2233 * matter what the error is, it is very likely to persist.
2234 */
Miao Xie09a7f7a2013-07-25 19:22:32 +08002235 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2236 num_copies, failrec->this_mirror, failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002237 free_io_failure(inode, failrec, 0);
2238 return -EIO;
2239 }
2240
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002241 /*
2242 * there are two premises:
2243 * a) deliver good data to the caller
2244 * b) correct the bad sectors on disk
2245 */
2246 if (failed_bio->bi_vcnt > 1) {
2247 /*
2248 * to fulfill b), we need to know the exact failing sectors, as
2249 * we don't want to rewrite any more than the failed ones. thus,
2250 * we need separate read requests for the failed bio
2251 *
2252 * if the following BUG_ON triggers, our validation request got
2253 * merged. we need separate requests for our algorithm to work.
2254 */
2255 BUG_ON(failrec->in_validation);
2256 failrec->in_validation = 1;
2257 failrec->this_mirror = failed_mirror;
2258 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2259 } else {
2260 /*
2261 * we're ready to fulfill a) and b) alongside. get a good copy
2262 * of the failed sector and if we succeed, we have setup
2263 * everything for repair_io_failure to do the rest for us.
2264 */
2265 if (failrec->in_validation) {
2266 BUG_ON(failrec->this_mirror != failed_mirror);
2267 failrec->in_validation = 0;
2268 failrec->this_mirror = 0;
2269 }
2270 failrec->failed_mirror = failed_mirror;
2271 failrec->this_mirror++;
2272 if (failrec->this_mirror == failed_mirror)
2273 failrec->this_mirror++;
2274 read_mode = READ_SYNC;
2275 }
2276
Miao Xiefacc8a222013-07-25 19:22:34 +08002277 if (failrec->this_mirror > num_copies) {
2278 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002279 num_copies, failrec->this_mirror, failed_mirror);
2280 free_io_failure(inode, failrec, 0);
2281 return -EIO;
2282 }
2283
Chris Mason9be33952013-05-17 18:30:14 -04002284 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002285 if (!bio) {
2286 free_io_failure(inode, failrec, 0);
2287 return -EIO;
2288 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002289 bio->bi_end_io = failed_bio->bi_end_io;
2290 bio->bi_sector = failrec->logical >> 9;
2291 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2292 bio->bi_size = 0;
2293
Miao Xiefacc8a222013-07-25 19:22:34 +08002294 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2295 if (btrfs_failed_bio->csum) {
2296 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2297 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2298
2299 btrfs_bio = btrfs_io_bio(bio);
2300 btrfs_bio->csum = btrfs_bio->csum_inline;
2301 phy_offset >>= inode->i_sb->s_blocksize_bits;
2302 phy_offset *= csum_size;
2303 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2304 csum_size);
2305 }
2306
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002307 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2308
2309 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2310 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2311 failrec->this_mirror, num_copies, failrec->in_validation);
2312
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002313 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2314 failrec->this_mirror,
2315 failrec->bio_flags, 0);
2316 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002317}
2318
Chris Masond1310b22008-01-24 16:13:08 -05002319/* lots and lots of room for performance fixes in the end_bio funcs */
2320
Jeff Mahoney87826df2012-02-15 16:23:57 +01002321int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2322{
2323 int uptodate = (err == 0);
2324 struct extent_io_tree *tree;
2325 int ret;
2326
2327 tree = &BTRFS_I(page->mapping->host)->io_tree;
2328
2329 if (tree->ops && tree->ops->writepage_end_io_hook) {
2330 ret = tree->ops->writepage_end_io_hook(page, start,
2331 end, NULL, uptodate);
2332 if (ret)
2333 uptodate = 0;
2334 }
2335
Jeff Mahoney87826df2012-02-15 16:23:57 +01002336 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002337 ClearPageUptodate(page);
2338 SetPageError(page);
2339 }
2340 return 0;
2341}
2342
Chris Masond1310b22008-01-24 16:13:08 -05002343/*
2344 * after a writepage IO is done, we need to:
2345 * clear the uptodate bits on error
2346 * clear the writeback bits in the extent tree for this IO
2347 * end_page_writeback if the page has no more pending IO
2348 *
2349 * Scheduling is not allowed, so the extent state tree is expected
2350 * to have one and only one object corresponding to this IO.
2351 */
Chris Masond1310b22008-01-24 16:13:08 -05002352static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002353{
Chris Masond1310b22008-01-24 16:13:08 -05002354 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002355 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002356 u64 start;
2357 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002358
Chris Masond1310b22008-01-24 16:13:08 -05002359 do {
2360 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002361 tree = &BTRFS_I(page->mapping->host)->io_tree;
2362
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002363 /* We always issue full-page reads, but if some block
2364 * in a page fails to read, blk_update_request() will
2365 * advance bv_offset and adjust bv_len to compensate.
2366 * Print a warning for nonzero offsets, and an error
2367 * if they don't add up to a full page. */
2368 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2369 printk("%s page write in btrfs with offset %u and length %u\n",
2370 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2371 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2372 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002373
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002374 start = page_offset(page);
2375 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002376
2377 if (--bvec >= bio->bi_io_vec)
2378 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002379
Jeff Mahoney87826df2012-02-15 16:23:57 +01002380 if (end_extent_writepage(page, err, start, end))
2381 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002382
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002383 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002384 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002385
Chris Masond1310b22008-01-24 16:13:08 -05002386 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002387}
2388
Miao Xie883d0de2013-07-25 19:22:35 +08002389static void
2390endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2391 int uptodate)
2392{
2393 struct extent_state *cached = NULL;
2394 u64 end = start + len - 1;
2395
2396 if (uptodate && tree->track_uptodate)
2397 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2398 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2399}
2400
Chris Masond1310b22008-01-24 16:13:08 -05002401/*
2402 * after a readpage IO is done, we need to:
2403 * clear the uptodate bits on error
2404 * set the uptodate bits if things worked
2405 * set the page up to date if all extents in the tree are uptodate
2406 * clear the lock bit in the extent tree
2407 * unlock the page if there are no other extents locked for it
2408 *
2409 * Scheduling is not allowed, so the extent state tree is expected
2410 * to have one and only one object corresponding to this IO.
2411 */
Chris Masond1310b22008-01-24 16:13:08 -05002412static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002413{
2414 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002415 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2416 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a222013-07-25 19:22:34 +08002417 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002418 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002419 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002420 u64 start;
2421 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002422 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002423 u64 extent_start = 0;
2424 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002425 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002426 int ret;
2427
Chris Masond20f7042008-12-08 16:58:54 -05002428 if (err)
2429 uptodate = 0;
2430
Chris Masond1310b22008-01-24 16:13:08 -05002431 do {
2432 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002433 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002434
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002435 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002436 "mirror=%lu\n", (u64)bio->bi_sector, err,
2437 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002438 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002439
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002440 /* We always issue full-page reads, but if some block
2441 * in a page fails to read, blk_update_request() will
2442 * advance bv_offset and adjust bv_len to compensate.
2443 * Print a warning for nonzero offsets, and an error
2444 * if they don't add up to a full page. */
2445 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2446 printk("%s page read in btrfs with offset %u and length %u\n",
2447 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2448 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2449 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002450
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002451 start = page_offset(page);
2452 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002453 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002454
Chris Mason4125bf72010-02-03 18:18:45 +00002455 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002456 prefetchw(&bvec->bv_page->flags);
2457
Chris Mason9be33952013-05-17 18:30:14 -04002458 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002459 if (likely(uptodate && tree->ops &&
2460 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002461 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2462 page, start, end,
2463 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002464 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002465 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002466 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002467 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002468 }
Josef Bacikea466792012-03-26 21:57:36 -04002469
Miao Xief2a09da2013-07-25 19:22:33 +08002470 if (likely(uptodate))
2471 goto readpage_ok;
2472
2473 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002474 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002475 if (!ret && !err &&
2476 test_bit(BIO_UPTODATE, &bio->bi_flags))
2477 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002478 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002479 /*
2480 * The generic bio_readpage_error handles errors the
2481 * following way: If possible, new read requests are
2482 * created and submitted and will end up in
2483 * end_bio_extent_readpage as well (if we're lucky, not
2484 * in the !uptodate case). In that case it returns 0 and
2485 * we just go on with the next page in our bio. If it
2486 * can't handle the error it will return -EIO and we
2487 * remain responsible for that page.
2488 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002489 ret = bio_readpage_error(bio, offset, page, start, end,
2490 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002491 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002492 uptodate =
2493 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002494 if (err)
2495 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04002496 continue;
2497 }
2498 }
Miao Xief2a09da2013-07-25 19:22:33 +08002499readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002500 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002501 loff_t i_size = i_size_read(inode);
2502 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2503 unsigned offset;
2504
2505 /* Zero out the end if this page straddles i_size */
2506 offset = i_size & (PAGE_CACHE_SIZE-1);
2507 if (page->index == end_index && offset)
2508 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002509 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002510 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002511 ClearPageUptodate(page);
2512 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002513 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002514 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002515 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002516
2517 if (unlikely(!uptodate)) {
2518 if (extent_len) {
2519 endio_readpage_release_extent(tree,
2520 extent_start,
2521 extent_len, 1);
2522 extent_start = 0;
2523 extent_len = 0;
2524 }
2525 endio_readpage_release_extent(tree, start,
2526 end - start + 1, 0);
2527 } else if (!extent_len) {
2528 extent_start = start;
2529 extent_len = end + 1 - start;
2530 } else if (extent_start + extent_len == start) {
2531 extent_len += end + 1 - start;
2532 } else {
2533 endio_readpage_release_extent(tree, extent_start,
2534 extent_len, uptodate);
2535 extent_start = start;
2536 extent_len = end + 1 - start;
2537 }
Chris Mason4125bf72010-02-03 18:18:45 +00002538 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002539
Miao Xie883d0de2013-07-25 19:22:35 +08002540 if (extent_len)
2541 endio_readpage_release_extent(tree, extent_start, extent_len,
2542 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002543 if (io_bio->end_io)
2544 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002545 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002546}
2547
Chris Mason9be33952013-05-17 18:30:14 -04002548/*
2549 * this allocates from the btrfs_bioset. We're returning a bio right now
2550 * but you can call btrfs_io_bio for the appropriate container_of magic
2551 */
Miao Xie88f794e2010-11-22 03:02:55 +00002552struct bio *
2553btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2554 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002555{
Miao Xiefacc8a222013-07-25 19:22:34 +08002556 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002557 struct bio *bio;
2558
Chris Mason9be33952013-05-17 18:30:14 -04002559 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002560
2561 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002562 while (!bio && (nr_vecs /= 2)) {
2563 bio = bio_alloc_bioset(gfp_flags,
2564 nr_vecs, btrfs_bioset);
2565 }
Chris Masond1310b22008-01-24 16:13:08 -05002566 }
2567
2568 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002569 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002570 bio->bi_bdev = bdev;
2571 bio->bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002572 btrfs_bio = btrfs_io_bio(bio);
2573 btrfs_bio->csum = NULL;
2574 btrfs_bio->csum_allocated = NULL;
2575 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002576 }
2577 return bio;
2578}
2579
Chris Mason9be33952013-05-17 18:30:14 -04002580struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2581{
2582 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2583}
2584
2585
2586/* this also allocates from the btrfs_bioset */
2587struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2588{
Miao Xiefacc8a222013-07-25 19:22:34 +08002589 struct btrfs_io_bio *btrfs_bio;
2590 struct bio *bio;
2591
2592 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2593 if (bio) {
2594 btrfs_bio = btrfs_io_bio(bio);
2595 btrfs_bio->csum = NULL;
2596 btrfs_bio->csum_allocated = NULL;
2597 btrfs_bio->end_io = NULL;
2598 }
2599 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002600}
2601
2602
Jeff Mahoney355808c2011-10-03 23:23:14 -04002603static int __must_check submit_one_bio(int rw, struct bio *bio,
2604 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002605{
Chris Masond1310b22008-01-24 16:13:08 -05002606 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002607 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2608 struct page *page = bvec->bv_page;
2609 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002610 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002611
Miao Xie4eee4fa2012-12-21 09:17:45 +00002612 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002613
David Woodhouse902b22f2008-08-20 08:51:49 -04002614 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002615
2616 bio_get(bio);
2617
Chris Mason065631f2008-02-20 12:07:25 -05002618 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002619 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002620 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002621 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002622 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002623
Chris Masond1310b22008-01-24 16:13:08 -05002624 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2625 ret = -EOPNOTSUPP;
2626 bio_put(bio);
2627 return ret;
2628}
2629
David Woodhouse64a16702009-07-15 23:29:37 +01002630static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002631 unsigned long offset, size_t size, struct bio *bio,
2632 unsigned long bio_flags)
2633{
2634 int ret = 0;
2635 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002636 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002637 bio_flags);
2638 BUG_ON(ret < 0);
2639 return ret;
2640
2641}
2642
Chris Masond1310b22008-01-24 16:13:08 -05002643static int submit_extent_page(int rw, struct extent_io_tree *tree,
2644 struct page *page, sector_t sector,
2645 size_t size, unsigned long offset,
2646 struct block_device *bdev,
2647 struct bio **bio_ret,
2648 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002649 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002650 int mirror_num,
2651 unsigned long prev_bio_flags,
2652 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002653{
2654 int ret = 0;
2655 struct bio *bio;
2656 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002657 int contig = 0;
2658 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2659 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002660 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002661
2662 if (bio_ret && *bio_ret) {
2663 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002664 if (old_compressed)
2665 contig = bio->bi_sector == sector;
2666 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002667 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002668
2669 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002670 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002671 bio_add_page(bio, page, page_size, offset) < page_size) {
2672 ret = submit_one_bio(rw, bio, mirror_num,
2673 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002674 if (ret < 0)
2675 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002676 bio = NULL;
2677 } else {
2678 return 0;
2679 }
2680 }
Chris Masonc8b97812008-10-29 14:49:59 -04002681 if (this_compressed)
2682 nr = BIO_MAX_PAGES;
2683 else
2684 nr = bio_get_nr_vecs(bdev);
2685
Miao Xie88f794e2010-11-22 03:02:55 +00002686 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002687 if (!bio)
2688 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002689
Chris Masonc8b97812008-10-29 14:49:59 -04002690 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002691 bio->bi_end_io = end_io_func;
2692 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002693
Chris Masond3977122009-01-05 21:25:51 -05002694 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002695 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002696 else
Chris Masonc8b97812008-10-29 14:49:59 -04002697 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002698
2699 return ret;
2700}
2701
Eric Sandeen48a3b632013-04-25 20:41:01 +00002702static void attach_extent_buffer_page(struct extent_buffer *eb,
2703 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002704{
2705 if (!PagePrivate(page)) {
2706 SetPagePrivate(page);
2707 page_cache_get(page);
2708 set_page_private(page, (unsigned long)eb);
2709 } else {
2710 WARN_ON(page->private != (unsigned long)eb);
2711 }
2712}
2713
Chris Masond1310b22008-01-24 16:13:08 -05002714void set_page_extent_mapped(struct page *page)
2715{
2716 if (!PagePrivate(page)) {
2717 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002718 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002719 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002720 }
2721}
2722
Miao Xie125bac012013-07-25 19:22:37 +08002723static struct extent_map *
2724__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2725 u64 start, u64 len, get_extent_t *get_extent,
2726 struct extent_map **em_cached)
2727{
2728 struct extent_map *em;
2729
2730 if (em_cached && *em_cached) {
2731 em = *em_cached;
2732 if (em->in_tree && start >= em->start &&
2733 start < extent_map_end(em)) {
2734 atomic_inc(&em->refs);
2735 return em;
2736 }
2737
2738 free_extent_map(em);
2739 *em_cached = NULL;
2740 }
2741
2742 em = get_extent(inode, page, pg_offset, start, len, 0);
2743 if (em_cached && !IS_ERR_OR_NULL(em)) {
2744 BUG_ON(*em_cached);
2745 atomic_inc(&em->refs);
2746 *em_cached = em;
2747 }
2748 return em;
2749}
Chris Masond1310b22008-01-24 16:13:08 -05002750/*
2751 * basic readpage implementation. Locked extent state structs are inserted
2752 * into the tree that are removed when the IO is done (by the end_io
2753 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002754 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002755 */
Miao Xie99740902013-07-25 19:22:36 +08002756static int __do_readpage(struct extent_io_tree *tree,
2757 struct page *page,
2758 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002759 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002760 struct bio **bio, int mirror_num,
2761 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002762{
2763 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002764 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002765 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2766 u64 end;
2767 u64 cur = start;
2768 u64 extent_offset;
2769 u64 last_byte = i_size_read(inode);
2770 u64 block_start;
2771 u64 cur_end;
2772 sector_t sector;
2773 struct extent_map *em;
2774 struct block_device *bdev;
2775 int ret;
2776 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002777 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002778 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002779 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002780 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04002781 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002782
2783 set_page_extent_mapped(page);
2784
Miao Xie99740902013-07-25 19:22:36 +08002785 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002786 if (!PageUptodate(page)) {
2787 if (cleancache_get_page(page) == 0) {
2788 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002789 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002790 goto out;
2791 }
2792 }
2793
Chris Masonc8b97812008-10-29 14:49:59 -04002794 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2795 char *userpage;
2796 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2797
2798 if (zero_offset) {
2799 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002800 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002801 memset(userpage + zero_offset, 0, iosize);
2802 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002803 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002804 }
2805 }
Chris Masond1310b22008-01-24 16:13:08 -05002806 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002807 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2808
Chris Masond1310b22008-01-24 16:13:08 -05002809 if (cur >= last_byte) {
2810 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002811 struct extent_state *cached = NULL;
2812
David Sterba306e16c2011-04-19 14:29:38 +02002813 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002814 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002815 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002816 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002817 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002818 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002819 &cached, GFP_NOFS);
2820 unlock_extent_cached(tree, cur, cur + iosize - 1,
2821 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002822 break;
2823 }
Miao Xie125bac012013-07-25 19:22:37 +08002824 em = __get_extent_map(inode, page, pg_offset, cur,
2825 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002826 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002827 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002828 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002829 break;
2830 }
Chris Masond1310b22008-01-24 16:13:08 -05002831 extent_offset = cur - em->start;
2832 BUG_ON(extent_map_end(em) <= cur);
2833 BUG_ON(end < cur);
2834
Li Zefan261507a02010-12-17 14:21:50 +08002835 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002836 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002837 extent_set_compress_type(&this_bio_flag,
2838 em->compress_type);
2839 }
Chris Masonc8b97812008-10-29 14:49:59 -04002840
Chris Masond1310b22008-01-24 16:13:08 -05002841 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2842 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002843 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002844 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2845 disk_io_size = em->block_len;
2846 sector = em->block_start >> 9;
2847 } else {
2848 sector = (em->block_start + extent_offset) >> 9;
2849 disk_io_size = iosize;
2850 }
Chris Masond1310b22008-01-24 16:13:08 -05002851 bdev = em->bdev;
2852 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002853 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2854 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002855 free_extent_map(em);
2856 em = NULL;
2857
2858 /* we've found a hole, just zero and go on */
2859 if (block_start == EXTENT_MAP_HOLE) {
2860 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002861 struct extent_state *cached = NULL;
2862
Cong Wang7ac687d2011-11-25 23:14:28 +08002863 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002864 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002865 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002866 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002867
2868 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002869 &cached, GFP_NOFS);
2870 unlock_extent_cached(tree, cur, cur + iosize - 1,
2871 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002872 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002873 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002874 continue;
2875 }
2876 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002877 if (test_range_bit(tree, cur, cur_end,
2878 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002879 check_page_uptodate(tree, page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002880 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002881 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002882 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002883 continue;
2884 }
Chris Mason70dec802008-01-29 09:59:12 -05002885 /* we have an inline extent but it didn't get marked up
2886 * to date. Error out
2887 */
2888 if (block_start == EXTENT_MAP_INLINE) {
2889 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002890 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002891 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002892 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002893 continue;
2894 }
Chris Masond1310b22008-01-24 16:13:08 -05002895
Josef Bacikc8f2f242013-02-11 11:33:00 -05002896 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002897 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002898 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002899 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002900 end_bio_extent_readpage, mirror_num,
2901 *bio_flags,
2902 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002903 if (!ret) {
2904 nr++;
2905 *bio_flags = this_bio_flag;
2906 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002907 SetPageError(page);
Josef Bacikedd33c92012-10-05 16:40:32 -04002908 unlock_extent(tree, cur, cur + iosize - 1);
2909 }
Chris Masond1310b22008-01-24 16:13:08 -05002910 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002911 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002912 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002913out:
Chris Masond1310b22008-01-24 16:13:08 -05002914 if (!nr) {
2915 if (!PageError(page))
2916 SetPageUptodate(page);
2917 unlock_page(page);
2918 }
2919 return 0;
2920}
2921
Miao Xie99740902013-07-25 19:22:36 +08002922static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2923 struct page *pages[], int nr_pages,
2924 u64 start, u64 end,
2925 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002926 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002927 struct bio **bio, int mirror_num,
2928 unsigned long *bio_flags, int rw)
2929{
2930 struct inode *inode;
2931 struct btrfs_ordered_extent *ordered;
2932 int index;
2933
2934 inode = pages[0]->mapping->host;
2935 while (1) {
2936 lock_extent(tree, start, end);
2937 ordered = btrfs_lookup_ordered_range(inode, start,
2938 end - start + 1);
2939 if (!ordered)
2940 break;
2941 unlock_extent(tree, start, end);
2942 btrfs_start_ordered_extent(inode, ordered, 1);
2943 btrfs_put_ordered_extent(ordered);
2944 }
2945
2946 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08002947 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
2948 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08002949 page_cache_release(pages[index]);
2950 }
2951}
2952
2953static void __extent_readpages(struct extent_io_tree *tree,
2954 struct page *pages[],
2955 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002956 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002957 struct bio **bio, int mirror_num,
2958 unsigned long *bio_flags, int rw)
2959{
2960 u64 start;
2961 u64 end = 0;
2962 u64 page_start;
2963 int index;
2964 int first_index;
2965
2966 for (index = 0; index < nr_pages; index++) {
2967 page_start = page_offset(pages[index]);
2968 if (!end) {
2969 start = page_start;
2970 end = start + PAGE_CACHE_SIZE - 1;
2971 first_index = index;
2972 } else if (end + 1 == page_start) {
2973 end += PAGE_CACHE_SIZE;
2974 } else {
2975 __do_contiguous_readpages(tree, &pages[first_index],
2976 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002977 end, get_extent, em_cached,
2978 bio, mirror_num, bio_flags,
2979 rw);
Miao Xie99740902013-07-25 19:22:36 +08002980 start = page_start;
2981 end = start + PAGE_CACHE_SIZE - 1;
2982 first_index = index;
2983 }
2984 }
2985
2986 if (end)
2987 __do_contiguous_readpages(tree, &pages[first_index],
2988 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002989 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08002990 mirror_num, bio_flags, rw);
2991}
2992
2993static int __extent_read_full_page(struct extent_io_tree *tree,
2994 struct page *page,
2995 get_extent_t *get_extent,
2996 struct bio **bio, int mirror_num,
2997 unsigned long *bio_flags, int rw)
2998{
2999 struct inode *inode = page->mapping->host;
3000 struct btrfs_ordered_extent *ordered;
3001 u64 start = page_offset(page);
3002 u64 end = start + PAGE_CACHE_SIZE - 1;
3003 int ret;
3004
3005 while (1) {
3006 lock_extent(tree, start, end);
3007 ordered = btrfs_lookup_ordered_extent(inode, start);
3008 if (!ordered)
3009 break;
3010 unlock_extent(tree, start, end);
3011 btrfs_start_ordered_extent(inode, ordered, 1);
3012 btrfs_put_ordered_extent(ordered);
3013 }
3014
Miao Xie125bac012013-07-25 19:22:37 +08003015 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3016 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003017 return ret;
3018}
3019
Chris Masond1310b22008-01-24 16:13:08 -05003020int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003021 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003022{
3023 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003024 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003025 int ret;
3026
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003027 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003028 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003029 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003030 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003031 return ret;
3032}
Chris Masond1310b22008-01-24 16:13:08 -05003033
Chris Mason11c83492009-04-20 15:50:09 -04003034static noinline void update_nr_written(struct page *page,
3035 struct writeback_control *wbc,
3036 unsigned long nr_written)
3037{
3038 wbc->nr_to_write -= nr_written;
3039 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3040 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3041 page->mapping->writeback_index = page->index + nr_written;
3042}
3043
Chris Masond1310b22008-01-24 16:13:08 -05003044/*
3045 * the writepage semantics are similar to regular writepage. extent
3046 * records are inserted to lock ranges in the tree, and as dirty areas
3047 * are found, they are marked writeback. Then the lock bits are removed
3048 * and the end_io handler clears the writeback ranges
3049 */
3050static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3051 void *data)
3052{
3053 struct inode *inode = page->mapping->host;
3054 struct extent_page_data *epd = data;
3055 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003056 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003057 u64 delalloc_start;
3058 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3059 u64 end;
3060 u64 cur = start;
3061 u64 extent_offset;
3062 u64 last_byte = i_size_read(inode);
3063 u64 block_start;
3064 u64 iosize;
3065 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003066 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003067 struct extent_map *em;
3068 struct block_device *bdev;
3069 int ret;
3070 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003071 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003072 size_t blocksize;
3073 loff_t i_size = i_size_read(inode);
3074 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3075 u64 nr_delalloc;
3076 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04003077 int page_started;
3078 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04003079 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05003080 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003081 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05003082
Chris Masonffbd5172009-04-20 15:50:09 -04003083 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01003084 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04003085 else
3086 write_flags = WRITE;
3087
liubo1abe9b82011-03-24 11:18:59 +00003088 trace___extent_writepage(page, inode, wbc);
3089
Chris Masond1310b22008-01-24 16:13:08 -05003090 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04003091
3092 ClearPageError(page);
3093
Chris Mason7f3c74f2008-07-18 12:01:11 -04003094 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04003095 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04003096 (page->index == end_index && !pg_offset)) {
Lukas Czernerd47992f2013-05-21 23:17:23 -04003097 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05003098 unlock_page(page);
3099 return 0;
3100 }
3101
3102 if (page->index == end_index) {
3103 char *userpage;
3104
Cong Wang7ac687d2011-11-25 23:14:28 +08003105 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003106 memset(userpage + pg_offset, 0,
3107 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003108 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003109 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003110 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003111 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003112
3113 set_page_extent_mapped(page);
3114
Josef Bacik9e487102011-08-01 12:08:18 -04003115 if (!tree->ops || !tree->ops->fill_delalloc)
3116 fill_delalloc = false;
3117
Chris Masond1310b22008-01-24 16:13:08 -05003118 delalloc_start = start;
3119 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003120 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003121 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003122 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003123 /*
3124 * make sure the wbc mapping index is at least updated
3125 * to this page.
3126 */
3127 update_nr_written(page, wbc, 0);
3128
Chris Masond3977122009-01-05 21:25:51 -05003129 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003130 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003131 page,
3132 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003133 &delalloc_end,
3134 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003135 if (nr_delalloc == 0) {
3136 delalloc_start = delalloc_end + 1;
3137 continue;
3138 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003139 ret = tree->ops->fill_delalloc(inode, page,
3140 delalloc_start,
3141 delalloc_end,
3142 &page_started,
3143 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003144 /* File system has been set read-only */
3145 if (ret) {
3146 SetPageError(page);
3147 goto done;
3148 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003149 /*
3150 * delalloc_end is already one less than the total
3151 * length, so we don't subtract one from
3152 * PAGE_CACHE_SIZE
3153 */
3154 delalloc_to_write += (delalloc_end - delalloc_start +
3155 PAGE_CACHE_SIZE) >>
3156 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003157 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003158 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003159 if (wbc->nr_to_write < delalloc_to_write) {
3160 int thresh = 8192;
3161
3162 if (delalloc_to_write < thresh * 2)
3163 thresh = delalloc_to_write;
3164 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3165 thresh);
3166 }
Chris Masonc8b97812008-10-29 14:49:59 -04003167
Chris Mason771ed682008-11-06 22:02:51 -05003168 /* did the fill delalloc function already unlock and start
3169 * the IO?
3170 */
3171 if (page_started) {
3172 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003173 /*
3174 * we've unlocked the page, so we can't update
3175 * the mapping's writeback index, just update
3176 * nr_to_write.
3177 */
3178 wbc->nr_to_write -= nr_written;
3179 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003180 }
Chris Masonc8b97812008-10-29 14:49:59 -04003181 }
Chris Mason247e7432008-07-17 12:53:51 -04003182 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003183 ret = tree->ops->writepage_start_hook(page, start,
3184 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003185 if (ret) {
3186 /* Fixup worker will requeue */
3187 if (ret == -EBUSY)
3188 wbc->pages_skipped++;
3189 else
3190 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003191 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003192 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003193 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003194 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003195 }
3196 }
3197
Chris Mason11c83492009-04-20 15:50:09 -04003198 /*
3199 * we don't want to touch the inode after unlocking the page,
3200 * so we update the mapping writeback index now
3201 */
3202 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003203
Chris Masond1310b22008-01-24 16:13:08 -05003204 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003205 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003206 if (tree->ops && tree->ops->writepage_end_io_hook)
3207 tree->ops->writepage_end_io_hook(page, start,
3208 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003209 goto done;
3210 }
3211
Chris Masond1310b22008-01-24 16:13:08 -05003212 blocksize = inode->i_sb->s_blocksize;
3213
3214 while (cur <= end) {
3215 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003216 if (tree->ops && tree->ops->writepage_end_io_hook)
3217 tree->ops->writepage_end_io_hook(page, cur,
3218 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003219 break;
3220 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003221 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003222 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003223 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003224 SetPageError(page);
3225 break;
3226 }
3227
3228 extent_offset = cur - em->start;
3229 BUG_ON(extent_map_end(em) <= cur);
3230 BUG_ON(end < cur);
3231 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003232 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003233 sector = (em->block_start + extent_offset) >> 9;
3234 bdev = em->bdev;
3235 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003236 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003237 free_extent_map(em);
3238 em = NULL;
3239
Chris Masonc8b97812008-10-29 14:49:59 -04003240 /*
3241 * compressed and inline extents are written through other
3242 * paths in the FS
3243 */
3244 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003245 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003246 /*
3247 * end_io notification does not happen here for
3248 * compressed extents
3249 */
3250 if (!compressed && tree->ops &&
3251 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003252 tree->ops->writepage_end_io_hook(page, cur,
3253 cur + iosize - 1,
3254 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003255 else if (compressed) {
3256 /* we don't want to end_page_writeback on
3257 * a compressed extent. this happens
3258 * elsewhere
3259 */
3260 nr++;
3261 }
3262
3263 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003264 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003265 continue;
3266 }
Chris Masond1310b22008-01-24 16:13:08 -05003267 /* leave this out until we have a page_mkwrite call */
3268 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003269 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003270 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003271 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003272 continue;
3273 }
Chris Masonc8b97812008-10-29 14:49:59 -04003274
Chris Masond1310b22008-01-24 16:13:08 -05003275 if (tree->ops && tree->ops->writepage_io_hook) {
3276 ret = tree->ops->writepage_io_hook(page, cur,
3277 cur + iosize - 1);
3278 } else {
3279 ret = 0;
3280 }
Chris Mason1259ab72008-05-12 13:39:03 -04003281 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003282 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003283 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003284 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003285
Chris Masond1310b22008-01-24 16:13:08 -05003286 set_range_writeback(tree, cur, cur + iosize - 1);
3287 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003288 printk(KERN_ERR "btrfs warning page %lu not "
3289 "writeback, cur %llu end %llu\n",
3290 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05003291 (unsigned long long)end);
3292 }
3293
Chris Masonffbd5172009-04-20 15:50:09 -04003294 ret = submit_extent_page(write_flags, tree, page,
3295 sector, iosize, pg_offset,
3296 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003297 end_bio_extent_writepage,
3298 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003299 if (ret)
3300 SetPageError(page);
3301 }
3302 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003303 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003304 nr++;
3305 }
3306done:
3307 if (nr == 0) {
3308 /* make sure the mapping tag for page dirty gets cleared */
3309 set_page_writeback(page);
3310 end_page_writeback(page);
3311 }
Chris Masond1310b22008-01-24 16:13:08 -05003312 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003313
Chris Mason11c83492009-04-20 15:50:09 -04003314done_unlocked:
3315
Chris Mason2c64c532009-09-02 15:04:12 -04003316 /* drop our reference on any cached states */
3317 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003318 return 0;
3319}
3320
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003321static int eb_wait(void *word)
3322{
3323 io_schedule();
3324 return 0;
3325}
3326
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003327void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003328{
3329 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3330 TASK_UNINTERRUPTIBLE);
3331}
3332
3333static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3334 struct btrfs_fs_info *fs_info,
3335 struct extent_page_data *epd)
3336{
3337 unsigned long i, num_pages;
3338 int flush = 0;
3339 int ret = 0;
3340
3341 if (!btrfs_try_tree_write_lock(eb)) {
3342 flush = 1;
3343 flush_write_bio(epd);
3344 btrfs_tree_lock(eb);
3345 }
3346
3347 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3348 btrfs_tree_unlock(eb);
3349 if (!epd->sync_io)
3350 return 0;
3351 if (!flush) {
3352 flush_write_bio(epd);
3353 flush = 1;
3354 }
Chris Masona098d8e82012-03-21 12:09:56 -04003355 while (1) {
3356 wait_on_extent_buffer_writeback(eb);
3357 btrfs_tree_lock(eb);
3358 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3359 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003360 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003361 }
3362 }
3363
Josef Bacik51561ff2012-07-20 16:25:24 -04003364 /*
3365 * We need to do this to prevent races in people who check if the eb is
3366 * under IO since we can end up having no IO bits set for a short period
3367 * of time.
3368 */
3369 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003370 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3371 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003372 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003373 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003374 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3375 -eb->len,
3376 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003377 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003378 } else {
3379 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003380 }
3381
3382 btrfs_tree_unlock(eb);
3383
3384 if (!ret)
3385 return ret;
3386
3387 num_pages = num_extent_pages(eb->start, eb->len);
3388 for (i = 0; i < num_pages; i++) {
3389 struct page *p = extent_buffer_page(eb, i);
3390
3391 if (!trylock_page(p)) {
3392 if (!flush) {
3393 flush_write_bio(epd);
3394 flush = 1;
3395 }
3396 lock_page(p);
3397 }
3398 }
3399
3400 return ret;
3401}
3402
3403static void end_extent_buffer_writeback(struct extent_buffer *eb)
3404{
3405 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3406 smp_mb__after_clear_bit();
3407 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3408}
3409
3410static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3411{
3412 int uptodate = err == 0;
3413 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3414 struct extent_buffer *eb;
3415 int done;
3416
3417 do {
3418 struct page *page = bvec->bv_page;
3419
3420 bvec--;
3421 eb = (struct extent_buffer *)page->private;
3422 BUG_ON(!eb);
3423 done = atomic_dec_and_test(&eb->io_pages);
3424
3425 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3426 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3427 ClearPageUptodate(page);
3428 SetPageError(page);
3429 }
3430
3431 end_page_writeback(page);
3432
3433 if (!done)
3434 continue;
3435
3436 end_extent_buffer_writeback(eb);
3437 } while (bvec >= bio->bi_io_vec);
3438
3439 bio_put(bio);
3440
3441}
3442
3443static int write_one_eb(struct extent_buffer *eb,
3444 struct btrfs_fs_info *fs_info,
3445 struct writeback_control *wbc,
3446 struct extent_page_data *epd)
3447{
3448 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3449 u64 offset = eb->start;
3450 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003451 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003452 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003453 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003454
3455 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3456 num_pages = num_extent_pages(eb->start, eb->len);
3457 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003458 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3459 bio_flags = EXTENT_BIO_TREE_LOG;
3460
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003461 for (i = 0; i < num_pages; i++) {
3462 struct page *p = extent_buffer_page(eb, i);
3463
3464 clear_page_dirty_for_io(p);
3465 set_page_writeback(p);
3466 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3467 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3468 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003469 0, epd->bio_flags, bio_flags);
3470 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003471 if (ret) {
3472 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3473 SetPageError(p);
3474 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3475 end_extent_buffer_writeback(eb);
3476 ret = -EIO;
3477 break;
3478 }
3479 offset += PAGE_CACHE_SIZE;
3480 update_nr_written(p, wbc, 1);
3481 unlock_page(p);
3482 }
3483
3484 if (unlikely(ret)) {
3485 for (; i < num_pages; i++) {
3486 struct page *p = extent_buffer_page(eb, i);
3487 unlock_page(p);
3488 }
3489 }
3490
3491 return ret;
3492}
3493
3494int btree_write_cache_pages(struct address_space *mapping,
3495 struct writeback_control *wbc)
3496{
3497 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3498 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3499 struct extent_buffer *eb, *prev_eb = NULL;
3500 struct extent_page_data epd = {
3501 .bio = NULL,
3502 .tree = tree,
3503 .extent_locked = 0,
3504 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003505 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003506 };
3507 int ret = 0;
3508 int done = 0;
3509 int nr_to_write_done = 0;
3510 struct pagevec pvec;
3511 int nr_pages;
3512 pgoff_t index;
3513 pgoff_t end; /* Inclusive */
3514 int scanned = 0;
3515 int tag;
3516
3517 pagevec_init(&pvec, 0);
3518 if (wbc->range_cyclic) {
3519 index = mapping->writeback_index; /* Start from prev offset */
3520 end = -1;
3521 } else {
3522 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3523 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3524 scanned = 1;
3525 }
3526 if (wbc->sync_mode == WB_SYNC_ALL)
3527 tag = PAGECACHE_TAG_TOWRITE;
3528 else
3529 tag = PAGECACHE_TAG_DIRTY;
3530retry:
3531 if (wbc->sync_mode == WB_SYNC_ALL)
3532 tag_pages_for_writeback(mapping, index, end);
3533 while (!done && !nr_to_write_done && (index <= end) &&
3534 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3535 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3536 unsigned i;
3537
3538 scanned = 1;
3539 for (i = 0; i < nr_pages; i++) {
3540 struct page *page = pvec.pages[i];
3541
3542 if (!PagePrivate(page))
3543 continue;
3544
3545 if (!wbc->range_cyclic && page->index > end) {
3546 done = 1;
3547 break;
3548 }
3549
Josef Bacikb5bae262012-09-14 13:43:01 -04003550 spin_lock(&mapping->private_lock);
3551 if (!PagePrivate(page)) {
3552 spin_unlock(&mapping->private_lock);
3553 continue;
3554 }
3555
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003556 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003557
3558 /*
3559 * Shouldn't happen and normally this would be a BUG_ON
3560 * but no sense in crashing the users box for something
3561 * we can survive anyway.
3562 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003563 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003564 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003565 WARN_ON(1);
3566 continue;
3567 }
3568
Josef Bacikb5bae262012-09-14 13:43:01 -04003569 if (eb == prev_eb) {
3570 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003571 continue;
3572 }
3573
Josef Bacikb5bae262012-09-14 13:43:01 -04003574 ret = atomic_inc_not_zero(&eb->refs);
3575 spin_unlock(&mapping->private_lock);
3576 if (!ret)
3577 continue;
3578
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003579 prev_eb = eb;
3580 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3581 if (!ret) {
3582 free_extent_buffer(eb);
3583 continue;
3584 }
3585
3586 ret = write_one_eb(eb, fs_info, wbc, &epd);
3587 if (ret) {
3588 done = 1;
3589 free_extent_buffer(eb);
3590 break;
3591 }
3592 free_extent_buffer(eb);
3593
3594 /*
3595 * the filesystem may choose to bump up nr_to_write.
3596 * We have to make sure to honor the new nr_to_write
3597 * at any time
3598 */
3599 nr_to_write_done = wbc->nr_to_write <= 0;
3600 }
3601 pagevec_release(&pvec);
3602 cond_resched();
3603 }
3604 if (!scanned && !done) {
3605 /*
3606 * We hit the last page and there is more work to be done: wrap
3607 * back to the start of the file
3608 */
3609 scanned = 1;
3610 index = 0;
3611 goto retry;
3612 }
3613 flush_write_bio(&epd);
3614 return ret;
3615}
3616
Chris Masond1310b22008-01-24 16:13:08 -05003617/**
Chris Mason4bef0842008-09-08 11:18:08 -04003618 * 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 -05003619 * @mapping: address space structure to write
3620 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3621 * @writepage: function called for each page
3622 * @data: data passed to writepage function
3623 *
3624 * If a page is already under I/O, write_cache_pages() skips it, even
3625 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3626 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3627 * and msync() need to guarantee that all the data which was dirty at the time
3628 * the call was made get new I/O started against them. If wbc->sync_mode is
3629 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3630 * existing IO to complete.
3631 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003632static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003633 struct address_space *mapping,
3634 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003635 writepage_t writepage, void *data,
3636 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003637{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003638 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003639 int ret = 0;
3640 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003641 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003642 struct pagevec pvec;
3643 int nr_pages;
3644 pgoff_t index;
3645 pgoff_t end; /* Inclusive */
3646 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003647 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003648
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003649 /*
3650 * We have to hold onto the inode so that ordered extents can do their
3651 * work when the IO finishes. The alternative to this is failing to add
3652 * an ordered extent if the igrab() fails there and that is a huge pain
3653 * to deal with, so instead just hold onto the inode throughout the
3654 * writepages operation. If it fails here we are freeing up the inode
3655 * anyway and we'd rather not waste our time writing out stuff that is
3656 * going to be truncated anyway.
3657 */
3658 if (!igrab(inode))
3659 return 0;
3660
Chris Masond1310b22008-01-24 16:13:08 -05003661 pagevec_init(&pvec, 0);
3662 if (wbc->range_cyclic) {
3663 index = mapping->writeback_index; /* Start from prev offset */
3664 end = -1;
3665 } else {
3666 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3667 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003668 scanned = 1;
3669 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003670 if (wbc->sync_mode == WB_SYNC_ALL)
3671 tag = PAGECACHE_TAG_TOWRITE;
3672 else
3673 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003674retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003675 if (wbc->sync_mode == WB_SYNC_ALL)
3676 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003677 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003678 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3679 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003680 unsigned i;
3681
3682 scanned = 1;
3683 for (i = 0; i < nr_pages; i++) {
3684 struct page *page = pvec.pages[i];
3685
3686 /*
3687 * At this point we hold neither mapping->tree_lock nor
3688 * lock on the page itself: the page may be truncated or
3689 * invalidated (changing page->mapping to NULL), or even
3690 * swizzled back from swapper_space to tmpfs file
3691 * mapping
3692 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003693 if (!trylock_page(page)) {
3694 flush_fn(data);
3695 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003696 }
Chris Masond1310b22008-01-24 16:13:08 -05003697
3698 if (unlikely(page->mapping != mapping)) {
3699 unlock_page(page);
3700 continue;
3701 }
3702
3703 if (!wbc->range_cyclic && page->index > end) {
3704 done = 1;
3705 unlock_page(page);
3706 continue;
3707 }
3708
Chris Masond2c3f4f2008-11-19 12:44:22 -05003709 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003710 if (PageWriteback(page))
3711 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003712 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003713 }
Chris Masond1310b22008-01-24 16:13:08 -05003714
3715 if (PageWriteback(page) ||
3716 !clear_page_dirty_for_io(page)) {
3717 unlock_page(page);
3718 continue;
3719 }
3720
3721 ret = (*writepage)(page, wbc, data);
3722
3723 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3724 unlock_page(page);
3725 ret = 0;
3726 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003727 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003728 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003729
3730 /*
3731 * the filesystem may choose to bump up nr_to_write.
3732 * We have to make sure to honor the new nr_to_write
3733 * at any time
3734 */
3735 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003736 }
3737 pagevec_release(&pvec);
3738 cond_resched();
3739 }
3740 if (!scanned && !done) {
3741 /*
3742 * We hit the last page and there is more work to be done: wrap
3743 * back to the start of the file
3744 */
3745 scanned = 1;
3746 index = 0;
3747 goto retry;
3748 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003749 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003750 return ret;
3751}
Chris Masond1310b22008-01-24 16:13:08 -05003752
Chris Masonffbd5172009-04-20 15:50:09 -04003753static void flush_epd_write_bio(struct extent_page_data *epd)
3754{
3755 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003756 int rw = WRITE;
3757 int ret;
3758
Chris Masonffbd5172009-04-20 15:50:09 -04003759 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003760 rw = WRITE_SYNC;
3761
Josef Bacikde0022b2012-09-25 14:25:58 -04003762 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003763 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003764 epd->bio = NULL;
3765 }
3766}
3767
Chris Masond2c3f4f2008-11-19 12:44:22 -05003768static noinline void flush_write_bio(void *data)
3769{
3770 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003771 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003772}
3773
Chris Masond1310b22008-01-24 16:13:08 -05003774int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3775 get_extent_t *get_extent,
3776 struct writeback_control *wbc)
3777{
3778 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003779 struct extent_page_data epd = {
3780 .bio = NULL,
3781 .tree = tree,
3782 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003783 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003784 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003785 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003786 };
Chris Masond1310b22008-01-24 16:13:08 -05003787
Chris Masond1310b22008-01-24 16:13:08 -05003788 ret = __extent_writepage(page, wbc, &epd);
3789
Chris Masonffbd5172009-04-20 15:50:09 -04003790 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003791 return ret;
3792}
Chris Masond1310b22008-01-24 16:13:08 -05003793
Chris Mason771ed682008-11-06 22:02:51 -05003794int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3795 u64 start, u64 end, get_extent_t *get_extent,
3796 int mode)
3797{
3798 int ret = 0;
3799 struct address_space *mapping = inode->i_mapping;
3800 struct page *page;
3801 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3802 PAGE_CACHE_SHIFT;
3803
3804 struct extent_page_data epd = {
3805 .bio = NULL,
3806 .tree = tree,
3807 .get_extent = get_extent,
3808 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003809 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003810 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003811 };
3812 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003813 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003814 .nr_to_write = nr_pages * 2,
3815 .range_start = start,
3816 .range_end = end + 1,
3817 };
3818
Chris Masond3977122009-01-05 21:25:51 -05003819 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003820 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3821 if (clear_page_dirty_for_io(page))
3822 ret = __extent_writepage(page, &wbc_writepages, &epd);
3823 else {
3824 if (tree->ops && tree->ops->writepage_end_io_hook)
3825 tree->ops->writepage_end_io_hook(page, start,
3826 start + PAGE_CACHE_SIZE - 1,
3827 NULL, 1);
3828 unlock_page(page);
3829 }
3830 page_cache_release(page);
3831 start += PAGE_CACHE_SIZE;
3832 }
3833
Chris Masonffbd5172009-04-20 15:50:09 -04003834 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003835 return ret;
3836}
Chris Masond1310b22008-01-24 16:13:08 -05003837
3838int extent_writepages(struct extent_io_tree *tree,
3839 struct address_space *mapping,
3840 get_extent_t *get_extent,
3841 struct writeback_control *wbc)
3842{
3843 int ret = 0;
3844 struct extent_page_data epd = {
3845 .bio = NULL,
3846 .tree = tree,
3847 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003848 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003849 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003850 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003851 };
3852
Chris Mason4bef0842008-09-08 11:18:08 -04003853 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003854 __extent_writepage, &epd,
3855 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003856 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003857 return ret;
3858}
Chris Masond1310b22008-01-24 16:13:08 -05003859
3860int extent_readpages(struct extent_io_tree *tree,
3861 struct address_space *mapping,
3862 struct list_head *pages, unsigned nr_pages,
3863 get_extent_t get_extent)
3864{
3865 struct bio *bio = NULL;
3866 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003867 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003868 struct page *pagepool[16];
3869 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08003870 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06003871 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003872
Chris Masond1310b22008-01-24 16:13:08 -05003873 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003874 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003875
3876 prefetchw(&page->flags);
3877 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003878 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003879 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003880 page_cache_release(page);
3881 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003882 }
Liu Bo67c96842012-07-20 21:43:09 -06003883
3884 pagepool[nr++] = page;
3885 if (nr < ARRAY_SIZE(pagepool))
3886 continue;
Miao Xie125bac012013-07-25 19:22:37 +08003887 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003888 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003889 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003890 }
Miao Xie99740902013-07-25 19:22:36 +08003891 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08003892 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003893 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003894
Miao Xie125bac012013-07-25 19:22:37 +08003895 if (em_cached)
3896 free_extent_map(em_cached);
3897
Chris Masond1310b22008-01-24 16:13:08 -05003898 BUG_ON(!list_empty(pages));
3899 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003900 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003901 return 0;
3902}
Chris Masond1310b22008-01-24 16:13:08 -05003903
3904/*
3905 * basic invalidatepage code, this waits on any locked or writeback
3906 * ranges corresponding to the page, and then deletes any extent state
3907 * records from the tree
3908 */
3909int extent_invalidatepage(struct extent_io_tree *tree,
3910 struct page *page, unsigned long offset)
3911{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003912 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003913 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003914 u64 end = start + PAGE_CACHE_SIZE - 1;
3915 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3916
Qu Wenruofda28322013-02-26 08:10:22 +00003917 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003918 if (start > end)
3919 return 0;
3920
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003921 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003922 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003923 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003924 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3925 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003926 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003927 return 0;
3928}
Chris Masond1310b22008-01-24 16:13:08 -05003929
3930/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003931 * a helper for releasepage, this tests for areas of the page that
3932 * are locked or under IO and drops the related state bits if it is safe
3933 * to drop the page.
3934 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003935static int try_release_extent_state(struct extent_map_tree *map,
3936 struct extent_io_tree *tree,
3937 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003938{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003939 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003940 u64 end = start + PAGE_CACHE_SIZE - 1;
3941 int ret = 1;
3942
Chris Mason211f90e2008-07-18 11:56:15 -04003943 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003944 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003945 ret = 0;
3946 else {
3947 if ((mask & GFP_NOFS) == GFP_NOFS)
3948 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003949 /*
3950 * at this point we can safely clear everything except the
3951 * locked bit and the nodatasum bit
3952 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003953 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003954 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3955 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003956
3957 /* if clear_extent_bit failed for enomem reasons,
3958 * we can't allow the release to continue.
3959 */
3960 if (ret < 0)
3961 ret = 0;
3962 else
3963 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003964 }
3965 return ret;
3966}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003967
3968/*
Chris Masond1310b22008-01-24 16:13:08 -05003969 * a helper for releasepage. As long as there are no locked extents
3970 * in the range corresponding to the page, both state records and extent
3971 * map records are removed
3972 */
3973int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003974 struct extent_io_tree *tree, struct page *page,
3975 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003976{
3977 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003978 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003979 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003980
Chris Mason70dec802008-01-29 09:59:12 -05003981 if ((mask & __GFP_WAIT) &&
3982 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003983 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003984 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003985 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003986 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003987 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003988 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003989 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003990 break;
3991 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003992 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3993 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003994 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003995 free_extent_map(em);
3996 break;
3997 }
3998 if (!test_range_bit(tree, em->start,
3999 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004000 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004001 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004002 remove_extent_mapping(map, em);
4003 /* once for the rb tree */
4004 free_extent_map(em);
4005 }
4006 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004007 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004008
4009 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004010 free_extent_map(em);
4011 }
Chris Masond1310b22008-01-24 16:13:08 -05004012 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004013 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004014}
Chris Masond1310b22008-01-24 16:13:08 -05004015
Chris Masonec29ed52011-02-23 16:23:20 -05004016/*
4017 * helper function for fiemap, which doesn't want to see any holes.
4018 * This maps until we find something past 'last'
4019 */
4020static struct extent_map *get_extent_skip_holes(struct inode *inode,
4021 u64 offset,
4022 u64 last,
4023 get_extent_t *get_extent)
4024{
4025 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4026 struct extent_map *em;
4027 u64 len;
4028
4029 if (offset >= last)
4030 return NULL;
4031
4032 while(1) {
4033 len = last - offset;
4034 if (len == 0)
4035 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004036 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004037 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004038 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004039 return em;
4040
4041 /* if this isn't a hole return it */
4042 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4043 em->block_start != EXTENT_MAP_HOLE) {
4044 return em;
4045 }
4046
4047 /* this is a hole, advance to the next extent */
4048 offset = extent_map_end(em);
4049 free_extent_map(em);
4050 if (offset >= last)
4051 break;
4052 }
4053 return NULL;
4054}
4055
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004056int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4057 __u64 start, __u64 len, get_extent_t *get_extent)
4058{
Josef Bacik975f84f2010-11-23 19:36:57 +00004059 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004060 u64 off = start;
4061 u64 max = start + len;
4062 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004063 u32 found_type;
4064 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004065 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004066 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004067 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004068 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004069 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004070 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004071 struct btrfs_path *path;
4072 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004073 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004074 u64 em_start = 0;
4075 u64 em_len = 0;
4076 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004077 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004078
4079 if (len == 0)
4080 return -EINVAL;
4081
Josef Bacik975f84f2010-11-23 19:36:57 +00004082 path = btrfs_alloc_path();
4083 if (!path)
4084 return -ENOMEM;
4085 path->leave_spinning = 1;
4086
Josef Bacik4d479cf2011-11-17 11:34:31 -05004087 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
4088 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
4089
Chris Masonec29ed52011-02-23 16:23:20 -05004090 /*
4091 * lookup the last file extent. We're not using i_size here
4092 * because there might be preallocation past i_size
4093 */
Josef Bacik975f84f2010-11-23 19:36:57 +00004094 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08004095 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004096 if (ret < 0) {
4097 btrfs_free_path(path);
4098 return ret;
4099 }
4100 WARN_ON(!ret);
4101 path->slots[0]--;
4102 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4103 struct btrfs_file_extent_item);
4104 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4105 found_type = btrfs_key_type(&found_key);
4106
Chris Masonec29ed52011-02-23 16:23:20 -05004107 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004108 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004109 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004110 /* have to trust i_size as the end */
4111 last = (u64)-1;
4112 last_for_get_extent = isize;
4113 } else {
4114 /*
4115 * remember the start of the last extent. There are a
4116 * bunch of different factors that go into the length of the
4117 * extent, so its much less complex to remember where it started
4118 */
4119 last = found_key.offset;
4120 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004121 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004122 btrfs_free_path(path);
4123
Chris Masonec29ed52011-02-23 16:23:20 -05004124 /*
4125 * we might have some extents allocated but more delalloc past those
4126 * extents. so, we trust isize unless the start of the last extent is
4127 * beyond isize
4128 */
4129 if (last < isize) {
4130 last = (u64)-1;
4131 last_for_get_extent = isize;
4132 }
4133
Liu Boa52f4cd2013-05-01 16:23:41 +00004134 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004135 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004136
Josef Bacik4d479cf2011-11-17 11:34:31 -05004137 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004138 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004139 if (!em)
4140 goto out;
4141 if (IS_ERR(em)) {
4142 ret = PTR_ERR(em);
4143 goto out;
4144 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004145
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004146 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004147 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004148
Chris Masonea8efc72011-03-08 11:54:40 -05004149 /* break if the extent we found is outside the range */
4150 if (em->start >= max || extent_map_end(em) < off)
4151 break;
4152
4153 /*
4154 * get_extent may return an extent that starts before our
4155 * requested range. We have to make sure the ranges
4156 * we return to fiemap always move forward and don't
4157 * overlap, so adjust the offsets here
4158 */
4159 em_start = max(em->start, off);
4160
4161 /*
4162 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004163 * for adjusting the disk offset below. Only do this if the
4164 * extent isn't compressed since our in ram offset may be past
4165 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004166 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004167 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4168 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004169 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004170 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05004171 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004172 disko = 0;
4173 flags = 0;
4174
Chris Masonea8efc72011-03-08 11:54:40 -05004175 /*
4176 * bump off for our next call to get_extent
4177 */
4178 off = extent_map_end(em);
4179 if (off >= max)
4180 end = 1;
4181
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004182 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004183 end = 1;
4184 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004185 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004186 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4187 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004188 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004189 flags |= (FIEMAP_EXTENT_DELALLOC |
4190 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004191 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05004192 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004193 }
4194 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4195 flags |= FIEMAP_EXTENT_ENCODED;
4196
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004197 free_extent_map(em);
4198 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004199 if ((em_start >= last) || em_len == (u64)-1 ||
4200 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004201 flags |= FIEMAP_EXTENT_LAST;
4202 end = 1;
4203 }
4204
Chris Masonec29ed52011-02-23 16:23:20 -05004205 /* now scan forward to see if this is really the last extent. */
4206 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4207 get_extent);
4208 if (IS_ERR(em)) {
4209 ret = PTR_ERR(em);
4210 goto out;
4211 }
4212 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004213 flags |= FIEMAP_EXTENT_LAST;
4214 end = 1;
4215 }
Chris Masonec29ed52011-02-23 16:23:20 -05004216 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4217 em_len, flags);
4218 if (ret)
4219 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004220 }
4221out_free:
4222 free_extent_map(em);
4223out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004224 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004225 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004226 return ret;
4227}
4228
Chris Mason727011e2010-08-06 13:21:20 -04004229static void __free_extent_buffer(struct extent_buffer *eb)
4230{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004231 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004232 kmem_cache_free(extent_buffer_cache, eb);
4233}
4234
Chris Masond1310b22008-01-24 16:13:08 -05004235static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4236 u64 start,
4237 unsigned long len,
4238 gfp_t mask)
4239{
4240 struct extent_buffer *eb = NULL;
4241
Chris Masond1310b22008-01-24 16:13:08 -05004242 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004243 if (eb == NULL)
4244 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004245 eb->start = start;
4246 eb->len = len;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004247 eb->tree = tree;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004248 eb->bflags = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004249 rwlock_init(&eb->lock);
4250 atomic_set(&eb->write_locks, 0);
4251 atomic_set(&eb->read_locks, 0);
4252 atomic_set(&eb->blocking_readers, 0);
4253 atomic_set(&eb->blocking_writers, 0);
4254 atomic_set(&eb->spinning_readers, 0);
4255 atomic_set(&eb->spinning_writers, 0);
Arne Jansen5b25f702011-09-13 10:55:48 +02004256 eb->lock_nested = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004257 init_waitqueue_head(&eb->write_lock_wq);
4258 init_waitqueue_head(&eb->read_lock_wq);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004259
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004260 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4261
Josef Bacik3083ee22012-03-09 16:01:49 -05004262 spin_lock_init(&eb->refs_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004263 atomic_set(&eb->refs, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004264 atomic_set(&eb->io_pages, 0);
Chris Mason727011e2010-08-06 13:21:20 -04004265
David Sterbab8dae312013-02-28 14:54:18 +00004266 /*
4267 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4268 */
4269 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4270 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4271 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05004272
4273 return eb;
4274}
4275
Jan Schmidt815a51c2012-05-16 17:00:02 +02004276struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4277{
4278 unsigned long i;
4279 struct page *p;
4280 struct extent_buffer *new;
4281 unsigned long num_pages = num_extent_pages(src->start, src->len);
4282
4283 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_ATOMIC);
4284 if (new == NULL)
4285 return NULL;
4286
4287 for (i = 0; i < num_pages; i++) {
4288 p = alloc_page(GFP_ATOMIC);
4289 BUG_ON(!p);
4290 attach_extent_buffer_page(new, p);
4291 WARN_ON(PageDirty(p));
4292 SetPageUptodate(p);
4293 new->pages[i] = p;
4294 }
4295
4296 copy_extent_buffer(new, src, 0, 0, src->len);
4297 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4298 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4299
4300 return new;
4301}
4302
4303struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4304{
4305 struct extent_buffer *eb;
4306 unsigned long num_pages = num_extent_pages(0, len);
4307 unsigned long i;
4308
4309 eb = __alloc_extent_buffer(NULL, start, len, GFP_ATOMIC);
4310 if (!eb)
4311 return NULL;
4312
4313 for (i = 0; i < num_pages; i++) {
4314 eb->pages[i] = alloc_page(GFP_ATOMIC);
4315 if (!eb->pages[i])
4316 goto err;
4317 }
4318 set_extent_buffer_uptodate(eb);
4319 btrfs_set_header_nritems(eb, 0);
4320 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4321
4322 return eb;
4323err:
Stefan Behrens84167d12012-10-11 07:25:16 -06004324 for (; i > 0; i--)
4325 __free_page(eb->pages[i - 1]);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004326 __free_extent_buffer(eb);
4327 return NULL;
4328}
4329
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004330static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004331{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004332 return (atomic_read(&eb->io_pages) ||
4333 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4334 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004335}
4336
Miao Xie897ca6e92010-10-26 20:57:29 -04004337/*
4338 * Helper for releasing extent buffer page.
4339 */
4340static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4341 unsigned long start_idx)
4342{
4343 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004344 unsigned long num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004345 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004346 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004347
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004348 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004349
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004350 num_pages = num_extent_pages(eb->start, eb->len);
4351 index = start_idx + num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004352 if (start_idx >= index)
4353 return;
4354
4355 do {
4356 index--;
4357 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004358 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004359 spin_lock(&page->mapping->private_lock);
4360 /*
4361 * We do this since we'll remove the pages after we've
4362 * removed the eb from the radix tree, so we could race
4363 * and have this page now attached to the new eb. So
4364 * only clear page_private if it's still connected to
4365 * this eb.
4366 */
4367 if (PagePrivate(page) &&
4368 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004369 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004370 BUG_ON(PageDirty(page));
4371 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004372 /*
4373 * We need to make sure we haven't be attached
4374 * to a new eb.
4375 */
4376 ClearPagePrivate(page);
4377 set_page_private(page, 0);
4378 /* One for the page private */
4379 page_cache_release(page);
4380 }
4381 spin_unlock(&page->mapping->private_lock);
4382
Jan Schmidt815a51c2012-05-16 17:00:02 +02004383 }
4384 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004385 /* One for when we alloced the page */
Miao Xie897ca6e92010-10-26 20:57:29 -04004386 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004387 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004388 } while (index != start_idx);
4389}
4390
4391/*
4392 * Helper for releasing the extent buffer.
4393 */
4394static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4395{
4396 btrfs_release_extent_buffer_page(eb, 0);
4397 __free_extent_buffer(eb);
4398}
4399
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004400static void check_buffer_tree_ref(struct extent_buffer *eb)
4401{
Chris Mason242e18c2013-01-29 17:49:37 -05004402 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004403 /* the ref bit is tricky. We have to make sure it is set
4404 * if we have the buffer dirty. Otherwise the
4405 * code to free a buffer can end up dropping a dirty
4406 * page
4407 *
4408 * Once the ref bit is set, it won't go away while the
4409 * buffer is dirty or in writeback, and it also won't
4410 * go away while we have the reference count on the
4411 * eb bumped.
4412 *
4413 * We can't just set the ref bit without bumping the
4414 * ref on the eb because free_extent_buffer might
4415 * see the ref bit and try to clear it. If this happens
4416 * free_extent_buffer might end up dropping our original
4417 * ref by mistake and freeing the page before we are able
4418 * to add one more ref.
4419 *
4420 * So bump the ref count first, then set the bit. If someone
4421 * beat us to it, drop the ref we added.
4422 */
Chris Mason242e18c2013-01-29 17:49:37 -05004423 refs = atomic_read(&eb->refs);
4424 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4425 return;
4426
Josef Bacik594831c2012-07-20 16:11:08 -04004427 spin_lock(&eb->refs_lock);
4428 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004429 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004430 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004431}
4432
Josef Bacik5df42352012-03-15 18:24:42 -04004433static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4434{
4435 unsigned long num_pages, i;
4436
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004437 check_buffer_tree_ref(eb);
4438
Josef Bacik5df42352012-03-15 18:24:42 -04004439 num_pages = num_extent_pages(eb->start, eb->len);
4440 for (i = 0; i < num_pages; i++) {
4441 struct page *p = extent_buffer_page(eb, i);
4442 mark_page_accessed(p);
4443 }
4444}
4445
Chris Masond1310b22008-01-24 16:13:08 -05004446struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004447 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004448{
4449 unsigned long num_pages = num_extent_pages(start, len);
4450 unsigned long i;
4451 unsigned long index = start >> PAGE_CACHE_SHIFT;
4452 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004453 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004454 struct page *p;
4455 struct address_space *mapping = tree->mapping;
4456 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004457 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004458
Miao Xie19fe0a82010-10-26 20:57:29 -04004459 rcu_read_lock();
4460 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4461 if (eb && atomic_inc_not_zero(&eb->refs)) {
4462 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004463 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004464 return eb;
4465 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004466 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004467
David Sterbaba144192011-04-21 01:12:06 +02004468 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004469 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004470 return NULL;
4471
Chris Mason727011e2010-08-06 13:21:20 -04004472 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004473 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004474 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004475 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004476
4477 spin_lock(&mapping->private_lock);
4478 if (PagePrivate(p)) {
4479 /*
4480 * We could have already allocated an eb for this page
4481 * and attached one so lets see if we can get a ref on
4482 * the existing eb, and if we can we know it's good and
4483 * we can just return that one, else we know we can just
4484 * overwrite page->private.
4485 */
4486 exists = (struct extent_buffer *)p->private;
4487 if (atomic_inc_not_zero(&exists->refs)) {
4488 spin_unlock(&mapping->private_lock);
4489 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004490 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004491 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004492 goto free_eb;
4493 }
4494
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004495 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004496 * Do this so attach doesn't complain and we need to
4497 * drop the ref the old guy had.
4498 */
4499 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004500 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004501 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004502 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004503 attach_extent_buffer_page(eb, p);
4504 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004505 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004506 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004507 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004508 if (!PageUptodate(p))
4509 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004510
4511 /*
4512 * see below about how we avoid a nasty race with release page
4513 * and why we unlock later
4514 */
Chris Masond1310b22008-01-24 16:13:08 -05004515 }
4516 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004517 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004518again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004519 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4520 if (ret)
4521 goto free_eb;
4522
Chris Mason6af118ce2008-07-22 11:18:07 -04004523 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004524 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4525 if (ret == -EEXIST) {
4526 exists = radix_tree_lookup(&tree->buffer,
4527 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004528 if (!atomic_inc_not_zero(&exists->refs)) {
4529 spin_unlock(&tree->buffer_lock);
4530 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004531 exists = NULL;
4532 goto again;
4533 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004534 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004535 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004536 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004537 goto free_eb;
4538 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004539 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004540 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004541 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004542 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004543
4544 /*
4545 * there is a race where release page may have
4546 * tried to find this extent buffer in the radix
4547 * but failed. It will tell the VM it is safe to
4548 * reclaim the, and it will clear the page private bit.
4549 * We must make sure to set the page private bit properly
4550 * after the extent buffer is in the radix tree so
4551 * it doesn't get lost
4552 */
Chris Mason727011e2010-08-06 13:21:20 -04004553 SetPageChecked(eb->pages[0]);
4554 for (i = 1; i < num_pages; i++) {
4555 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004556 ClearPageChecked(p);
4557 unlock_page(p);
4558 }
4559 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004560 return eb;
4561
Chris Mason6af118ce2008-07-22 11:18:07 -04004562free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004563 for (i = 0; i < num_pages; i++) {
4564 if (eb->pages[i])
4565 unlock_page(eb->pages[i]);
4566 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004567
Josef Bacik17de39a2012-05-04 15:16:06 -04004568 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e92010-10-26 20:57:29 -04004569 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004570 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004571}
Chris Masond1310b22008-01-24 16:13:08 -05004572
4573struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004574 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004575{
Chris Masond1310b22008-01-24 16:13:08 -05004576 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004577
Miao Xie19fe0a82010-10-26 20:57:29 -04004578 rcu_read_lock();
4579 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4580 if (eb && atomic_inc_not_zero(&eb->refs)) {
4581 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004582 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004583 return eb;
4584 }
4585 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004586
Miao Xie19fe0a82010-10-26 20:57:29 -04004587 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004588}
Chris Masond1310b22008-01-24 16:13:08 -05004589
Josef Bacik3083ee22012-03-09 16:01:49 -05004590static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4591{
4592 struct extent_buffer *eb =
4593 container_of(head, struct extent_buffer, rcu_head);
4594
4595 __free_extent_buffer(eb);
4596}
4597
Josef Bacik3083ee22012-03-09 16:01:49 -05004598/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004599static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004600{
4601 WARN_ON(atomic_read(&eb->refs) == 0);
4602 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004603 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4604 spin_unlock(&eb->refs_lock);
4605 } else {
4606 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004607
Jan Schmidt815a51c2012-05-16 17:00:02 +02004608 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004609
Jan Schmidt815a51c2012-05-16 17:00:02 +02004610 spin_lock(&tree->buffer_lock);
4611 radix_tree_delete(&tree->buffer,
4612 eb->start >> PAGE_CACHE_SHIFT);
4613 spin_unlock(&tree->buffer_lock);
4614 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004615
4616 /* Should be safe to release our pages at this point */
4617 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004618 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004619 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004620 }
4621 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004622
4623 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004624}
4625
Chris Masond1310b22008-01-24 16:13:08 -05004626void free_extent_buffer(struct extent_buffer *eb)
4627{
Chris Mason242e18c2013-01-29 17:49:37 -05004628 int refs;
4629 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004630 if (!eb)
4631 return;
4632
Chris Mason242e18c2013-01-29 17:49:37 -05004633 while (1) {
4634 refs = atomic_read(&eb->refs);
4635 if (refs <= 3)
4636 break;
4637 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4638 if (old == refs)
4639 return;
4640 }
4641
Josef Bacik3083ee22012-03-09 16:01:49 -05004642 spin_lock(&eb->refs_lock);
4643 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004644 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4645 atomic_dec(&eb->refs);
4646
4647 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004648 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004649 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004650 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4651 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004652
Josef Bacik3083ee22012-03-09 16:01:49 -05004653 /*
4654 * I know this is terrible, but it's temporary until we stop tracking
4655 * the uptodate bits and such for the extent buffers.
4656 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004657 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004658}
Chris Masond1310b22008-01-24 16:13:08 -05004659
Josef Bacik3083ee22012-03-09 16:01:49 -05004660void free_extent_buffer_stale(struct extent_buffer *eb)
4661{
4662 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004663 return;
4664
Josef Bacik3083ee22012-03-09 16:01:49 -05004665 spin_lock(&eb->refs_lock);
4666 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4667
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004668 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004669 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4670 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004671 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004672}
4673
Chris Mason1d4284b2012-03-28 20:31:37 -04004674void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004675{
Chris Masond1310b22008-01-24 16:13:08 -05004676 unsigned long i;
4677 unsigned long num_pages;
4678 struct page *page;
4679
Chris Masond1310b22008-01-24 16:13:08 -05004680 num_pages = num_extent_pages(eb->start, eb->len);
4681
4682 for (i = 0; i < num_pages; i++) {
4683 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004684 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004685 continue;
4686
Chris Masona61e6f22008-07-22 11:18:08 -04004687 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004688 WARN_ON(!PagePrivate(page));
4689
Chris Masond1310b22008-01-24 16:13:08 -05004690 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004691 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004692 if (!PageDirty(page)) {
4693 radix_tree_tag_clear(&page->mapping->page_tree,
4694 page_index(page),
4695 PAGECACHE_TAG_DIRTY);
4696 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004697 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004698 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004699 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004700 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004701 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004702}
Chris Masond1310b22008-01-24 16:13:08 -05004703
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004704int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004705{
4706 unsigned long i;
4707 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004708 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004709
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004710 check_buffer_tree_ref(eb);
4711
Chris Masonb9473432009-03-13 11:00:37 -04004712 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004713
Chris Masond1310b22008-01-24 16:13:08 -05004714 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004715 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004716 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4717
Chris Masonb9473432009-03-13 11:00:37 -04004718 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004719 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004720 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004721}
Chris Masond1310b22008-01-24 16:13:08 -05004722
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004723int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004724{
4725 unsigned long i;
4726 struct page *page;
4727 unsigned long num_pages;
4728
Chris Masonb4ce94d2009-02-04 09:25:08 -05004729 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004730 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004731 for (i = 0; i < num_pages; i++) {
4732 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004733 if (page)
4734 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004735 }
4736 return 0;
4737}
4738
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004739int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004740{
4741 unsigned long i;
4742 struct page *page;
4743 unsigned long num_pages;
4744
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004745 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004746 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004747 for (i = 0; i < num_pages; i++) {
4748 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004749 SetPageUptodate(page);
4750 }
4751 return 0;
4752}
Chris Masond1310b22008-01-24 16:13:08 -05004753
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004754int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004755{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004756 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004757}
Chris Masond1310b22008-01-24 16:13:08 -05004758
4759int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004760 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004761 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004762{
4763 unsigned long i;
4764 unsigned long start_i;
4765 struct page *page;
4766 int err;
4767 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004768 int locked_pages = 0;
4769 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004770 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004771 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004772 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004773 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004774
Chris Masonb4ce94d2009-02-04 09:25:08 -05004775 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004776 return 0;
4777
Chris Masond1310b22008-01-24 16:13:08 -05004778 if (start) {
4779 WARN_ON(start < eb->start);
4780 start_i = (start >> PAGE_CACHE_SHIFT) -
4781 (eb->start >> PAGE_CACHE_SHIFT);
4782 } else {
4783 start_i = 0;
4784 }
4785
4786 num_pages = num_extent_pages(eb->start, eb->len);
4787 for (i = start_i; i < num_pages; i++) {
4788 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004789 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004790 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004791 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004792 } else {
4793 lock_page(page);
4794 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004795 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004796 if (!PageUptodate(page)) {
4797 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004798 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004799 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004800 }
4801 if (all_uptodate) {
4802 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004803 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004804 goto unlock_exit;
4805 }
4806
Josef Bacikea466792012-03-26 21:57:36 -04004807 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004808 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004809 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004810 for (i = start_i; i < num_pages; i++) {
4811 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004812 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004813 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004814 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004815 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004816 mirror_num, &bio_flags,
4817 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004818 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004819 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004820 } else {
4821 unlock_page(page);
4822 }
4823 }
4824
Jeff Mahoney355808c2011-10-03 23:23:14 -04004825 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004826 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4827 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004828 if (err)
4829 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004830 }
Chris Masona86c12c2008-02-07 10:50:54 -05004831
Arne Jansenbb82ab82011-06-10 14:06:53 +02004832 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004833 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004834
Chris Masond1310b22008-01-24 16:13:08 -05004835 for (i = start_i; i < num_pages; i++) {
4836 page = extent_buffer_page(eb, i);
4837 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004838 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004839 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004840 }
Chris Masond3977122009-01-05 21:25:51 -05004841
Chris Masond1310b22008-01-24 16:13:08 -05004842 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004843
4844unlock_exit:
4845 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004846 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004847 page = extent_buffer_page(eb, i);
4848 i++;
4849 unlock_page(page);
4850 locked_pages--;
4851 }
4852 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004853}
Chris Masond1310b22008-01-24 16:13:08 -05004854
4855void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4856 unsigned long start,
4857 unsigned long len)
4858{
4859 size_t cur;
4860 size_t offset;
4861 struct page *page;
4862 char *kaddr;
4863 char *dst = (char *)dstv;
4864 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4865 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004866
4867 WARN_ON(start > eb->len);
4868 WARN_ON(start + len > eb->start + eb->len);
4869
4870 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4871
Chris Masond3977122009-01-05 21:25:51 -05004872 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004873 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004874
4875 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004876 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004877 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004878
4879 dst += cur;
4880 len -= cur;
4881 offset = 0;
4882 i++;
4883 }
4884}
Chris Masond1310b22008-01-24 16:13:08 -05004885
4886int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004887 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004888 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004889 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004890{
4891 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4892 char *kaddr;
4893 struct page *p;
4894 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4895 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4896 unsigned long end_i = (start_offset + start + min_len - 1) >>
4897 PAGE_CACHE_SHIFT;
4898
4899 if (i != end_i)
4900 return -EINVAL;
4901
4902 if (i == 0) {
4903 offset = start_offset;
4904 *map_start = 0;
4905 } else {
4906 offset = 0;
4907 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4908 }
Chris Masond3977122009-01-05 21:25:51 -05004909
Chris Masond1310b22008-01-24 16:13:08 -05004910 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004911 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Chris Masond3977122009-01-05 21:25:51 -05004912 "wanted %lu %lu\n", (unsigned long long)eb->start,
4913 eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004914 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004915 }
4916
4917 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004918 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004919 *map = kaddr + offset;
4920 *map_len = PAGE_CACHE_SIZE - offset;
4921 return 0;
4922}
Chris Masond1310b22008-01-24 16:13:08 -05004923
Chris Masond1310b22008-01-24 16:13:08 -05004924int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4925 unsigned long start,
4926 unsigned long len)
4927{
4928 size_t cur;
4929 size_t offset;
4930 struct page *page;
4931 char *kaddr;
4932 char *ptr = (char *)ptrv;
4933 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4934 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4935 int ret = 0;
4936
4937 WARN_ON(start > eb->len);
4938 WARN_ON(start + len > eb->start + eb->len);
4939
4940 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4941
Chris Masond3977122009-01-05 21:25:51 -05004942 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004943 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004944
4945 cur = min(len, (PAGE_CACHE_SIZE - offset));
4946
Chris Masona6591712011-07-19 12:04:14 -04004947 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004948 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004949 if (ret)
4950 break;
4951
4952 ptr += cur;
4953 len -= cur;
4954 offset = 0;
4955 i++;
4956 }
4957 return ret;
4958}
Chris Masond1310b22008-01-24 16:13:08 -05004959
4960void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4961 unsigned long start, unsigned long len)
4962{
4963 size_t cur;
4964 size_t offset;
4965 struct page *page;
4966 char *kaddr;
4967 char *src = (char *)srcv;
4968 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4969 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4970
4971 WARN_ON(start > eb->len);
4972 WARN_ON(start + len > eb->start + eb->len);
4973
4974 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4975
Chris Masond3977122009-01-05 21:25:51 -05004976 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004977 page = extent_buffer_page(eb, i);
4978 WARN_ON(!PageUptodate(page));
4979
4980 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004981 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004982 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004983
4984 src += cur;
4985 len -= cur;
4986 offset = 0;
4987 i++;
4988 }
4989}
Chris Masond1310b22008-01-24 16:13:08 -05004990
4991void memset_extent_buffer(struct extent_buffer *eb, char c,
4992 unsigned long start, unsigned long len)
4993{
4994 size_t cur;
4995 size_t offset;
4996 struct page *page;
4997 char *kaddr;
4998 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4999 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5000
5001 WARN_ON(start > eb->len);
5002 WARN_ON(start + len > eb->start + eb->len);
5003
5004 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
5005
Chris Masond3977122009-01-05 21:25:51 -05005006 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005007 page = extent_buffer_page(eb, i);
5008 WARN_ON(!PageUptodate(page));
5009
5010 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005011 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005012 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005013
5014 len -= cur;
5015 offset = 0;
5016 i++;
5017 }
5018}
Chris Masond1310b22008-01-24 16:13:08 -05005019
5020void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5021 unsigned long dst_offset, unsigned long src_offset,
5022 unsigned long len)
5023{
5024 u64 dst_len = dst->len;
5025 size_t cur;
5026 size_t offset;
5027 struct page *page;
5028 char *kaddr;
5029 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5030 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5031
5032 WARN_ON(src->len != dst_len);
5033
5034 offset = (start_offset + dst_offset) &
5035 ((unsigned long)PAGE_CACHE_SIZE - 1);
5036
Chris Masond3977122009-01-05 21:25:51 -05005037 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005038 page = extent_buffer_page(dst, i);
5039 WARN_ON(!PageUptodate(page));
5040
5041 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5042
Chris Masona6591712011-07-19 12:04:14 -04005043 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005044 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005045
5046 src_offset += cur;
5047 len -= cur;
5048 offset = 0;
5049 i++;
5050 }
5051}
Chris Masond1310b22008-01-24 16:13:08 -05005052
5053static void move_pages(struct page *dst_page, struct page *src_page,
5054 unsigned long dst_off, unsigned long src_off,
5055 unsigned long len)
5056{
Chris Masona6591712011-07-19 12:04:14 -04005057 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005058 if (dst_page == src_page) {
5059 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
5060 } else {
Chris Masona6591712011-07-19 12:04:14 -04005061 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05005062 char *p = dst_kaddr + dst_off + len;
5063 char *s = src_kaddr + src_off + len;
5064
5065 while (len--)
5066 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05005067 }
Chris Masond1310b22008-01-24 16:13:08 -05005068}
5069
Sergei Trofimovich33872062011-04-11 21:52:52 +00005070static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5071{
5072 unsigned long distance = (src > dst) ? src - dst : dst - src;
5073 return distance < len;
5074}
5075
Chris Masond1310b22008-01-24 16:13:08 -05005076static void copy_pages(struct page *dst_page, struct page *src_page,
5077 unsigned long dst_off, unsigned long src_off,
5078 unsigned long len)
5079{
Chris Masona6591712011-07-19 12:04:14 -04005080 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005081 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005082 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005083
Sergei Trofimovich33872062011-04-11 21:52:52 +00005084 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005085 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005086 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005087 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005088 if (areas_overlap(src_off, dst_off, len))
5089 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005090 }
Chris Masond1310b22008-01-24 16:13:08 -05005091
Chris Mason727011e2010-08-06 13:21:20 -04005092 if (must_memmove)
5093 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5094 else
5095 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005096}
5097
5098void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5099 unsigned long src_offset, unsigned long len)
5100{
5101 size_t cur;
5102 size_t dst_off_in_page;
5103 size_t src_off_in_page;
5104 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5105 unsigned long dst_i;
5106 unsigned long src_i;
5107
5108 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005109 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5110 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005111 BUG_ON(1);
5112 }
5113 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005114 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5115 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005116 BUG_ON(1);
5117 }
5118
Chris Masond3977122009-01-05 21:25:51 -05005119 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005120 dst_off_in_page = (start_offset + dst_offset) &
5121 ((unsigned long)PAGE_CACHE_SIZE - 1);
5122 src_off_in_page = (start_offset + src_offset) &
5123 ((unsigned long)PAGE_CACHE_SIZE - 1);
5124
5125 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5126 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5127
5128 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5129 src_off_in_page));
5130 cur = min_t(unsigned long, cur,
5131 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5132
5133 copy_pages(extent_buffer_page(dst, dst_i),
5134 extent_buffer_page(dst, src_i),
5135 dst_off_in_page, src_off_in_page, cur);
5136
5137 src_offset += cur;
5138 dst_offset += cur;
5139 len -= cur;
5140 }
5141}
Chris Masond1310b22008-01-24 16:13:08 -05005142
5143void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5144 unsigned long src_offset, unsigned long len)
5145{
5146 size_t cur;
5147 size_t dst_off_in_page;
5148 size_t src_off_in_page;
5149 unsigned long dst_end = dst_offset + len - 1;
5150 unsigned long src_end = src_offset + len - 1;
5151 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5152 unsigned long dst_i;
5153 unsigned long src_i;
5154
5155 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005156 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5157 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005158 BUG_ON(1);
5159 }
5160 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005161 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5162 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005163 BUG_ON(1);
5164 }
Chris Mason727011e2010-08-06 13:21:20 -04005165 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005166 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5167 return;
5168 }
Chris Masond3977122009-01-05 21:25:51 -05005169 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005170 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5171 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5172
5173 dst_off_in_page = (start_offset + dst_end) &
5174 ((unsigned long)PAGE_CACHE_SIZE - 1);
5175 src_off_in_page = (start_offset + src_end) &
5176 ((unsigned long)PAGE_CACHE_SIZE - 1);
5177
5178 cur = min_t(unsigned long, len, src_off_in_page + 1);
5179 cur = min(cur, dst_off_in_page + 1);
5180 move_pages(extent_buffer_page(dst, dst_i),
5181 extent_buffer_page(dst, src_i),
5182 dst_off_in_page - cur + 1,
5183 src_off_in_page - cur + 1, cur);
5184
5185 dst_end -= cur;
5186 src_end -= cur;
5187 len -= cur;
5188 }
5189}
Chris Mason6af118ce2008-07-22 11:18:07 -04005190
David Sterbaf7a52a42013-04-26 14:56:29 +00005191int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005192{
Chris Mason6af118ce2008-07-22 11:18:07 -04005193 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005194
Miao Xie19fe0a82010-10-26 20:57:29 -04005195 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005196 * We need to make sure noboody is attaching this page to an eb right
5197 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005198 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005199 spin_lock(&page->mapping->private_lock);
5200 if (!PagePrivate(page)) {
5201 spin_unlock(&page->mapping->private_lock);
5202 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005203 }
5204
Josef Bacik3083ee22012-03-09 16:01:49 -05005205 eb = (struct extent_buffer *)page->private;
5206 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005207
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005208 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005209 * This is a little awful but should be ok, we need to make sure that
5210 * the eb doesn't disappear out from under us while we're looking at
5211 * this page.
5212 */
5213 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005214 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005215 spin_unlock(&eb->refs_lock);
5216 spin_unlock(&page->mapping->private_lock);
5217 return 0;
5218 }
5219 spin_unlock(&page->mapping->private_lock);
5220
Josef Bacik3083ee22012-03-09 16:01:49 -05005221 /*
5222 * If tree ref isn't set then we know the ref on this eb is a real ref,
5223 * so just return, this page will likely be freed soon anyway.
5224 */
5225 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5226 spin_unlock(&eb->refs_lock);
5227 return 0;
5228 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005229
David Sterbaf7a52a42013-04-26 14:56:29 +00005230 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005231}