blob: a83d7019ede90c57b82402dee9dd8e0999babade [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
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400546 if (delete)
547 bits |= ~EXTENT_CTLBITS;
548 bits |= EXTENT_FIRST_DELALLOC;
549
Josef Bacik2ac55d42010-02-03 19:33:23 +0000550 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
551 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500552again:
553 if (!prealloc && (mask & __GFP_WAIT)) {
554 prealloc = alloc_extent_state(mask);
555 if (!prealloc)
556 return -ENOMEM;
557 }
558
Chris Masoncad321a2008-12-17 14:51:42 -0500559 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400560 if (cached_state) {
561 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000562
563 if (clear) {
564 *cached_state = NULL;
565 cached_state = NULL;
566 }
567
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400568 if (cached && cached->tree && cached->start <= start &&
569 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000570 if (clear)
571 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400572 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400573 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400574 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000575 if (clear)
576 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400577 }
Chris Masond1310b22008-01-24 16:13:08 -0500578 /*
579 * this search will find the extents that end after
580 * our range starts
581 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500582 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500583 if (!node)
584 goto out;
585 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400586hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500587 if (state->start > end)
588 goto out;
589 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400590 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500591
Liu Bo04493142012-02-16 18:34:37 +0800592 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800593 if (!(state->state & bits)) {
594 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800595 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800596 }
Liu Bo04493142012-02-16 18:34:37 +0800597
Chris Masond1310b22008-01-24 16:13:08 -0500598 /*
599 * | ---- desired range ---- |
600 * | state | or
601 * | ------------- state -------------- |
602 *
603 * We need to split the extent we found, and may flip
604 * bits on second half.
605 *
606 * If the extent we found extends past our range, we
607 * just split and search again. It'll get split again
608 * the next time though.
609 *
610 * If the extent we found is inside our range, we clear
611 * the desired bit on it.
612 */
613
614 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000615 prealloc = alloc_extent_state_atomic(prealloc);
616 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500617 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400618 if (err)
619 extent_io_tree_panic(tree, err);
620
Chris Masond1310b22008-01-24 16:13:08 -0500621 prealloc = NULL;
622 if (err)
623 goto out;
624 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800625 state = clear_state_bit(tree, state, &bits, wake);
626 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500627 }
628 goto search_again;
629 }
630 /*
631 * | ---- desired range ---- |
632 * | state |
633 * We need to split the extent, and clear the bit
634 * on the first half
635 */
636 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000637 prealloc = alloc_extent_state_atomic(prealloc);
638 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500639 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400640 if (err)
641 extent_io_tree_panic(tree, err);
642
Chris Masond1310b22008-01-24 16:13:08 -0500643 if (wake)
644 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400645
Jeff Mahoney6763af82012-03-01 14:56:29 +0100646 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400647
Chris Masond1310b22008-01-24 16:13:08 -0500648 prealloc = NULL;
649 goto out;
650 }
Chris Mason42daec22009-09-23 19:51:09 -0400651
Li Zefancdc6a392012-03-12 16:39:48 +0800652 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800653next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400654 if (last_end == (u64)-1)
655 goto out;
656 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800657 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800658 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500659 goto search_again;
660
661out:
Chris Masoncad321a2008-12-17 14:51:42 -0500662 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500663 if (prealloc)
664 free_extent_state(prealloc);
665
Jeff Mahoney6763af82012-03-01 14:56:29 +0100666 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500667
668search_again:
669 if (start > end)
670 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500671 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500672 if (mask & __GFP_WAIT)
673 cond_resched();
674 goto again;
675}
Chris Masond1310b22008-01-24 16:13:08 -0500676
Jeff Mahoney143bede2012-03-01 14:56:26 +0100677static void wait_on_state(struct extent_io_tree *tree,
678 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500679 __releases(tree->lock)
680 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500681{
682 DEFINE_WAIT(wait);
683 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500684 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500685 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500686 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500687 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500688}
689
690/*
691 * waits for one or more bits to clear on a range in the state tree.
692 * The range [start, end] is inclusive.
693 * The tree lock is taken by this function
694 */
David Sterba41074882013-04-29 13:38:46 +0000695static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
696 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500697{
698 struct extent_state *state;
699 struct rb_node *node;
700
David Sterba8d599ae2013-04-30 15:22:23 +0000701 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
702
Chris Masoncad321a2008-12-17 14:51:42 -0500703 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500704again:
705 while (1) {
706 /*
707 * this search will find all the extents that end after
708 * our range starts
709 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500710 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500711 if (!node)
712 break;
713
714 state = rb_entry(node, struct extent_state, rb_node);
715
716 if (state->start > end)
717 goto out;
718
719 if (state->state & bits) {
720 start = state->start;
721 atomic_inc(&state->refs);
722 wait_on_state(tree, state);
723 free_extent_state(state);
724 goto again;
725 }
726 start = state->end + 1;
727
728 if (start > end)
729 break;
730
Xiao Guangrongded91f02011-07-14 03:19:27 +0000731 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500732 }
733out:
Chris Masoncad321a2008-12-17 14:51:42 -0500734 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500735}
Chris Masond1310b22008-01-24 16:13:08 -0500736
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000737static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500738 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000739 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500740{
David Sterba41074882013-04-29 13:38:46 +0000741 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400742
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000743 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400744 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500745 u64 range = state->end - state->start + 1;
746 tree->dirty_bytes += range;
747 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400748 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500749}
750
Chris Mason2c64c532009-09-02 15:04:12 -0400751static void cache_state(struct extent_state *state,
752 struct extent_state **cached_ptr)
753{
754 if (cached_ptr && !(*cached_ptr)) {
755 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
756 *cached_ptr = state;
757 atomic_inc(&state->refs);
758 }
759 }
760}
761
Arne Jansen507903b2011-04-06 10:02:20 +0000762static void uncache_state(struct extent_state **cached_ptr)
763{
764 if (cached_ptr && (*cached_ptr)) {
765 struct extent_state *state = *cached_ptr;
Chris Mason109b36a2011-04-12 13:57:39 -0400766 *cached_ptr = NULL;
767 free_extent_state(state);
Arne Jansen507903b2011-04-06 10:02:20 +0000768 }
769}
770
Chris Masond1310b22008-01-24 16:13:08 -0500771/*
Chris Mason1edbb732009-09-02 13:24:36 -0400772 * set some bits on a range in the tree. This may require allocations or
773 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500774 *
Chris Mason1edbb732009-09-02 13:24:36 -0400775 * If any of the exclusive bits are set, this will fail with -EEXIST if some
776 * part of the range already has the desired bits set. The start of the
777 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500778 *
Chris Mason1edbb732009-09-02 13:24:36 -0400779 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500780 */
Chris Mason1edbb732009-09-02 13:24:36 -0400781
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100782static int __must_check
783__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000784 unsigned long bits, unsigned long exclusive_bits,
785 u64 *failed_start, struct extent_state **cached_state,
786 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500787{
788 struct extent_state *state;
789 struct extent_state *prealloc = NULL;
790 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500791 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500792 u64 last_start;
793 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400794
David Sterba8d599ae2013-04-30 15:22:23 +0000795 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
796
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400797 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500798again:
799 if (!prealloc && (mask & __GFP_WAIT)) {
800 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000801 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500802 }
803
Chris Masoncad321a2008-12-17 14:51:42 -0500804 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400805 if (cached_state && *cached_state) {
806 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400807 if (state->start <= start && state->end > start &&
808 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400809 node = &state->rb_node;
810 goto hit_next;
811 }
812 }
Chris Masond1310b22008-01-24 16:13:08 -0500813 /*
814 * this search will find all the extents that end after
815 * our range starts.
816 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500817 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500818 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000819 prealloc = alloc_extent_state_atomic(prealloc);
820 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400821 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400822 if (err)
823 extent_io_tree_panic(tree, err);
824
Chris Masond1310b22008-01-24 16:13:08 -0500825 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500826 goto out;
827 }
Chris Masond1310b22008-01-24 16:13:08 -0500828 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400829hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500830 last_start = state->start;
831 last_end = state->end;
832
833 /*
834 * | ---- desired range ---- |
835 * | state |
836 *
837 * Just lock what we found and keep going
838 */
839 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400840 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500841 *failed_start = state->start;
842 err = -EEXIST;
843 goto out;
844 }
Chris Mason42daec22009-09-23 19:51:09 -0400845
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000846 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400847 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500848 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400849 if (last_end == (u64)-1)
850 goto out;
851 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800852 state = next_state(state);
853 if (start < end && state && state->start == start &&
854 !need_resched())
855 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500856 goto search_again;
857 }
858
859 /*
860 * | ---- desired range ---- |
861 * | state |
862 * or
863 * | ------------- state -------------- |
864 *
865 * We need to split the extent we found, and may flip bits on
866 * second half.
867 *
868 * If the extent we found extends past our
869 * range, we just split and search again. It'll get split
870 * again the next time though.
871 *
872 * If the extent we found is inside our range, we set the
873 * desired bit on it.
874 */
875 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400876 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500877 *failed_start = start;
878 err = -EEXIST;
879 goto out;
880 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000881
882 prealloc = alloc_extent_state_atomic(prealloc);
883 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500884 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400885 if (err)
886 extent_io_tree_panic(tree, err);
887
Chris Masond1310b22008-01-24 16:13:08 -0500888 prealloc = NULL;
889 if (err)
890 goto out;
891 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000892 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400893 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500894 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400895 if (last_end == (u64)-1)
896 goto out;
897 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800898 state = next_state(state);
899 if (start < end && state && state->start == start &&
900 !need_resched())
901 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500902 }
903 goto search_again;
904 }
905 /*
906 * | ---- desired range ---- |
907 * | state | or | state |
908 *
909 * There's a hole, we need to insert something in it and
910 * ignore the extent we found.
911 */
912 if (state->start > start) {
913 u64 this_end;
914 if (end < last_start)
915 this_end = end;
916 else
Chris Masond3977122009-01-05 21:25:51 -0500917 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000918
919 prealloc = alloc_extent_state_atomic(prealloc);
920 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000921
922 /*
923 * Avoid to free 'prealloc' if it can be merged with
924 * the later extent.
925 */
Chris Masond1310b22008-01-24 16:13:08 -0500926 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400927 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400928 if (err)
929 extent_io_tree_panic(tree, err);
930
Chris Mason2c64c532009-09-02 15:04:12 -0400931 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500932 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500933 start = this_end + 1;
934 goto search_again;
935 }
936 /*
937 * | ---- desired range ---- |
938 * | state |
939 * We need to split the extent, and set the bit
940 * on the first half
941 */
942 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400943 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500944 *failed_start = start;
945 err = -EEXIST;
946 goto out;
947 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000948
949 prealloc = alloc_extent_state_atomic(prealloc);
950 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500951 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400952 if (err)
953 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500954
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000955 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400956 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500957 merge_state(tree, prealloc);
958 prealloc = NULL;
959 goto out;
960 }
961
962 goto search_again;
963
964out:
Chris Masoncad321a2008-12-17 14:51:42 -0500965 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500966 if (prealloc)
967 free_extent_state(prealloc);
968
969 return err;
970
971search_again:
972 if (start > end)
973 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500974 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500975 if (mask & __GFP_WAIT)
976 cond_resched();
977 goto again;
978}
Chris Masond1310b22008-01-24 16:13:08 -0500979
David Sterba41074882013-04-29 13:38:46 +0000980int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
981 unsigned long bits, u64 * failed_start,
982 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100983{
984 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
985 cached_state, mask);
986}
987
988
Josef Bacik462d6fa2011-09-26 13:56:12 -0400989/**
Liu Bo10983f22012-07-11 15:26:19 +0800990 * convert_extent_bit - convert all bits in a given range from one bit to
991 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400992 * @tree: the io tree to search
993 * @start: the start offset in bytes
994 * @end: the end offset in bytes (inclusive)
995 * @bits: the bits to set in this range
996 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400997 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400998 * @mask: the allocation mask
999 *
1000 * This will go through and set bits for the given range. If any states exist
1001 * already in this range they are set with the given bit and cleared of the
1002 * clear_bits. This is only meant to be used by things that are mergeable, ie
1003 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1004 * boundary bits like LOCK.
1005 */
1006int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001007 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001008 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001009{
1010 struct extent_state *state;
1011 struct extent_state *prealloc = NULL;
1012 struct rb_node *node;
1013 int err = 0;
1014 u64 last_start;
1015 u64 last_end;
1016
David Sterba8d599ae2013-04-30 15:22:23 +00001017 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
1018
Josef Bacik462d6fa2011-09-26 13:56:12 -04001019again:
1020 if (!prealloc && (mask & __GFP_WAIT)) {
1021 prealloc = alloc_extent_state(mask);
1022 if (!prealloc)
1023 return -ENOMEM;
1024 }
1025
1026 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001027 if (cached_state && *cached_state) {
1028 state = *cached_state;
1029 if (state->start <= start && state->end > start &&
1030 state->tree) {
1031 node = &state->rb_node;
1032 goto hit_next;
1033 }
1034 }
1035
Josef Bacik462d6fa2011-09-26 13:56:12 -04001036 /*
1037 * this search will find all the extents that end after
1038 * our range starts.
1039 */
1040 node = tree_search(tree, start);
1041 if (!node) {
1042 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001043 if (!prealloc) {
1044 err = -ENOMEM;
1045 goto out;
1046 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001047 err = insert_state(tree, prealloc, start, end, &bits);
1048 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001049 if (err)
1050 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001051 goto out;
1052 }
1053 state = rb_entry(node, struct extent_state, rb_node);
1054hit_next:
1055 last_start = state->start;
1056 last_end = state->end;
1057
1058 /*
1059 * | ---- desired range ---- |
1060 * | state |
1061 *
1062 * Just lock what we found and keep going
1063 */
1064 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001065 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001066 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001067 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001068 if (last_end == (u64)-1)
1069 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001070 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001071 if (start < end && state && state->start == start &&
1072 !need_resched())
1073 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001074 goto search_again;
1075 }
1076
1077 /*
1078 * | ---- desired range ---- |
1079 * | state |
1080 * or
1081 * | ------------- state -------------- |
1082 *
1083 * We need to split the extent we found, and may flip bits on
1084 * second half.
1085 *
1086 * If the extent we found extends past our
1087 * range, we just split and search again. It'll get split
1088 * again the next time though.
1089 *
1090 * If the extent we found is inside our range, we set the
1091 * desired bit on it.
1092 */
1093 if (state->start < start) {
1094 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001095 if (!prealloc) {
1096 err = -ENOMEM;
1097 goto out;
1098 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001100 if (err)
1101 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001102 prealloc = NULL;
1103 if (err)
1104 goto out;
1105 if (state->end <= end) {
1106 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001107 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001108 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001109 if (last_end == (u64)-1)
1110 goto out;
1111 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001112 if (start < end && state && state->start == start &&
1113 !need_resched())
1114 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001115 }
1116 goto search_again;
1117 }
1118 /*
1119 * | ---- desired range ---- |
1120 * | state | or | state |
1121 *
1122 * There's a hole, we need to insert something in it and
1123 * ignore the extent we found.
1124 */
1125 if (state->start > start) {
1126 u64 this_end;
1127 if (end < last_start)
1128 this_end = end;
1129 else
1130 this_end = last_start - 1;
1131
1132 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001133 if (!prealloc) {
1134 err = -ENOMEM;
1135 goto out;
1136 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001137
1138 /*
1139 * Avoid to free 'prealloc' if it can be merged with
1140 * the later extent.
1141 */
1142 err = insert_state(tree, prealloc, start, this_end,
1143 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001144 if (err)
1145 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001146 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001147 prealloc = NULL;
1148 start = this_end + 1;
1149 goto search_again;
1150 }
1151 /*
1152 * | ---- desired range ---- |
1153 * | state |
1154 * We need to split the extent, and set the bit
1155 * on the first half
1156 */
1157 if (state->start <= end && state->end > end) {
1158 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001159 if (!prealloc) {
1160 err = -ENOMEM;
1161 goto out;
1162 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001163
1164 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001165 if (err)
1166 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167
1168 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001169 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001170 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001171 prealloc = NULL;
1172 goto out;
1173 }
1174
1175 goto search_again;
1176
1177out:
1178 spin_unlock(&tree->lock);
1179 if (prealloc)
1180 free_extent_state(prealloc);
1181
1182 return err;
1183
1184search_again:
1185 if (start > end)
1186 goto out;
1187 spin_unlock(&tree->lock);
1188 if (mask & __GFP_WAIT)
1189 cond_resched();
1190 goto again;
1191}
1192
Chris Masond1310b22008-01-24 16:13:08 -05001193/* wrappers around set/clear extent bit */
1194int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1195 gfp_t mask)
1196{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001197 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001198 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001199}
Chris Masond1310b22008-01-24 16:13:08 -05001200
1201int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001202 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001203{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001204 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001205 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001206}
Chris Masond1310b22008-01-24 16:13:08 -05001207
1208int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001209 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001210{
Chris Mason2c64c532009-09-02 15:04:12 -04001211 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001212}
Chris Masond1310b22008-01-24 16:13:08 -05001213
1214int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001215 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001216{
1217 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001218 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001219 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001220}
Chris Masond1310b22008-01-24 16:13:08 -05001221
Liu Bo9e8a4a82012-09-05 19:10:51 -06001222int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1223 struct extent_state **cached_state, gfp_t mask)
1224{
1225 return set_extent_bit(tree, start, end,
1226 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1227 NULL, cached_state, mask);
1228}
1229
Chris Masond1310b22008-01-24 16:13:08 -05001230int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1231 gfp_t mask)
1232{
1233 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001234 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001235 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001236}
Chris Masond1310b22008-01-24 16:13:08 -05001237
1238int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1239 gfp_t mask)
1240{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001241 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001242 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001243}
Chris Masond1310b22008-01-24 16:13:08 -05001244
Chris Masond1310b22008-01-24 16:13:08 -05001245int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001246 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001247{
Liu Bo6b67a322013-03-28 08:30:28 +00001248 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001249 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001250}
Chris Masond1310b22008-01-24 16:13:08 -05001251
Josef Bacik5fd02042012-05-02 14:00:54 -04001252int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1253 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001254{
Chris Mason2c64c532009-09-02 15:04:12 -04001255 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001256 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001257}
Chris Masond1310b22008-01-24 16:13:08 -05001258
Chris Masond352ac62008-09-29 15:18:18 -04001259/*
1260 * either insert or lock state struct between start and end use mask to tell
1261 * us if waiting is desired.
1262 */
Chris Mason1edbb732009-09-02 13:24:36 -04001263int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001264 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001265{
1266 int err;
1267 u64 failed_start;
1268 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001269 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1270 EXTENT_LOCKED, &failed_start,
1271 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001272 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001273 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1274 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001275 } else
Chris Masond1310b22008-01-24 16:13:08 -05001276 break;
Chris Masond1310b22008-01-24 16:13:08 -05001277 WARN_ON(start > end);
1278 }
1279 return err;
1280}
Chris Masond1310b22008-01-24 16:13:08 -05001281
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001282int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001283{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001284 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001285}
1286
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001287int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001288{
1289 int err;
1290 u64 failed_start;
1291
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001292 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1293 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001294 if (err == -EEXIST) {
1295 if (failed_start > start)
1296 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001297 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001298 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001299 }
Josef Bacik25179202008-10-29 14:49:05 -04001300 return 1;
1301}
Josef Bacik25179202008-10-29 14:49:05 -04001302
Chris Mason2c64c532009-09-02 15:04:12 -04001303int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1304 struct extent_state **cached, gfp_t mask)
1305{
1306 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1307 mask);
1308}
1309
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001310int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001311{
Chris Mason2c64c532009-09-02 15:04:12 -04001312 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001313 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001314}
Chris Masond1310b22008-01-24 16:13:08 -05001315
Chris Mason4adaa612013-03-26 13:07:00 -04001316int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1317{
1318 unsigned long index = start >> PAGE_CACHE_SHIFT;
1319 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1320 struct page *page;
1321
1322 while (index <= end_index) {
1323 page = find_get_page(inode->i_mapping, index);
1324 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1325 clear_page_dirty_for_io(page);
1326 page_cache_release(page);
1327 index++;
1328 }
1329 return 0;
1330}
1331
1332int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1333{
1334 unsigned long index = start >> PAGE_CACHE_SHIFT;
1335 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1336 struct page *page;
1337
1338 while (index <= end_index) {
1339 page = find_get_page(inode->i_mapping, index);
1340 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1341 account_page_redirty(page);
1342 __set_page_dirty_nobuffers(page);
1343 page_cache_release(page);
1344 index++;
1345 }
1346 return 0;
1347}
1348
Chris Masond1310b22008-01-24 16:13:08 -05001349/*
Chris Masond1310b22008-01-24 16:13:08 -05001350 * helper function to set both pages and extents in the tree writeback
1351 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001352static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001353{
1354 unsigned long index = start >> PAGE_CACHE_SHIFT;
1355 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1356 struct page *page;
1357
1358 while (index <= end_index) {
1359 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001360 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001361 set_page_writeback(page);
1362 page_cache_release(page);
1363 index++;
1364 }
Chris Masond1310b22008-01-24 16:13:08 -05001365 return 0;
1366}
Chris Masond1310b22008-01-24 16:13:08 -05001367
Chris Masond352ac62008-09-29 15:18:18 -04001368/* find the first state struct with 'bits' set after 'start', and
1369 * return it. tree->lock must be held. NULL will returned if
1370 * nothing was found after 'start'
1371 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001372static struct extent_state *
1373find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001374 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001375{
1376 struct rb_node *node;
1377 struct extent_state *state;
1378
1379 /*
1380 * this search will find all the extents that end after
1381 * our range starts.
1382 */
1383 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001384 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001385 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001386
Chris Masond3977122009-01-05 21:25:51 -05001387 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001388 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001389 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001390 return state;
Chris Masond3977122009-01-05 21:25:51 -05001391
Chris Masond7fc6402008-02-18 12:12:38 -05001392 node = rb_next(node);
1393 if (!node)
1394 break;
1395 }
1396out:
1397 return NULL;
1398}
Chris Masond7fc6402008-02-18 12:12:38 -05001399
Chris Masond352ac62008-09-29 15:18:18 -04001400/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001401 * find the first offset in the io tree with 'bits' set. zero is
1402 * returned if we find something, and *start_ret and *end_ret are
1403 * set to reflect the state struct that was found.
1404 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001405 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001406 */
1407int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001408 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001409 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001410{
1411 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001412 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001413 int ret = 1;
1414
1415 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001416 if (cached_state && *cached_state) {
1417 state = *cached_state;
1418 if (state->end == start - 1 && state->tree) {
1419 n = rb_next(&state->rb_node);
1420 while (n) {
1421 state = rb_entry(n, struct extent_state,
1422 rb_node);
1423 if (state->state & bits)
1424 goto got_it;
1425 n = rb_next(n);
1426 }
1427 free_extent_state(*cached_state);
1428 *cached_state = NULL;
1429 goto out;
1430 }
1431 free_extent_state(*cached_state);
1432 *cached_state = NULL;
1433 }
1434
Xiao Guangrong69261c42011-07-14 03:19:45 +00001435 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001436got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001437 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001438 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001439 *start_ret = state->start;
1440 *end_ret = state->end;
1441 ret = 0;
1442 }
Josef Bacike6138872012-09-27 17:07:30 -04001443out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001444 spin_unlock(&tree->lock);
1445 return ret;
1446}
1447
1448/*
Chris Masond352ac62008-09-29 15:18:18 -04001449 * find a contiguous range of bytes in the file marked as delalloc, not
1450 * more than 'max_bytes'. start and end are used to return the range,
1451 *
1452 * 1 is returned if we find something, 0 if nothing was in the tree
1453 */
Chris Masonc8b97812008-10-29 14:49:59 -04001454static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001455 u64 *start, u64 *end, u64 max_bytes,
1456 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001457{
1458 struct rb_node *node;
1459 struct extent_state *state;
1460 u64 cur_start = *start;
1461 u64 found = 0;
1462 u64 total_bytes = 0;
1463
Chris Masoncad321a2008-12-17 14:51:42 -05001464 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001465
Chris Masond1310b22008-01-24 16:13:08 -05001466 /*
1467 * this search will find all the extents that end after
1468 * our range starts.
1469 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001470 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001471 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001472 if (!found)
1473 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001474 goto out;
1475 }
1476
Chris Masond3977122009-01-05 21:25:51 -05001477 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001478 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001479 if (found && (state->start != cur_start ||
1480 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001481 goto out;
1482 }
1483 if (!(state->state & EXTENT_DELALLOC)) {
1484 if (!found)
1485 *end = state->end;
1486 goto out;
1487 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001488 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001489 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001490 *cached_state = state;
1491 atomic_inc(&state->refs);
1492 }
Chris Masond1310b22008-01-24 16:13:08 -05001493 found++;
1494 *end = state->end;
1495 cur_start = state->end + 1;
1496 node = rb_next(node);
1497 if (!node)
1498 break;
1499 total_bytes += state->end - state->start + 1;
1500 if (total_bytes >= max_bytes)
1501 break;
1502 }
1503out:
Chris Masoncad321a2008-12-17 14:51:42 -05001504 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001505 return found;
1506}
1507
Jeff Mahoney143bede2012-03-01 14:56:26 +01001508static noinline void __unlock_for_delalloc(struct inode *inode,
1509 struct page *locked_page,
1510 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001511{
1512 int ret;
1513 struct page *pages[16];
1514 unsigned long index = start >> PAGE_CACHE_SHIFT;
1515 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1516 unsigned long nr_pages = end_index - index + 1;
1517 int i;
1518
1519 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001520 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001521
Chris Masond3977122009-01-05 21:25:51 -05001522 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001523 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001524 min_t(unsigned long, nr_pages,
1525 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001526 for (i = 0; i < ret; i++) {
1527 if (pages[i] != locked_page)
1528 unlock_page(pages[i]);
1529 page_cache_release(pages[i]);
1530 }
1531 nr_pages -= ret;
1532 index += ret;
1533 cond_resched();
1534 }
Chris Masonc8b97812008-10-29 14:49:59 -04001535}
1536
1537static noinline int lock_delalloc_pages(struct inode *inode,
1538 struct page *locked_page,
1539 u64 delalloc_start,
1540 u64 delalloc_end)
1541{
1542 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1543 unsigned long start_index = index;
1544 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1545 unsigned long pages_locked = 0;
1546 struct page *pages[16];
1547 unsigned long nrpages;
1548 int ret;
1549 int i;
1550
1551 /* the caller is responsible for locking the start index */
1552 if (index == locked_page->index && index == end_index)
1553 return 0;
1554
1555 /* skip the page at the start index */
1556 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001557 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001558 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001559 min_t(unsigned long,
1560 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001561 if (ret == 0) {
1562 ret = -EAGAIN;
1563 goto done;
1564 }
1565 /* now we have an array of pages, lock them all */
1566 for (i = 0; i < ret; i++) {
1567 /*
1568 * the caller is taking responsibility for
1569 * locked_page
1570 */
Chris Mason771ed682008-11-06 22:02:51 -05001571 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001572 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001573 if (!PageDirty(pages[i]) ||
1574 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001575 ret = -EAGAIN;
1576 unlock_page(pages[i]);
1577 page_cache_release(pages[i]);
1578 goto done;
1579 }
1580 }
Chris Masonc8b97812008-10-29 14:49:59 -04001581 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001582 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001583 }
Chris Masonc8b97812008-10-29 14:49:59 -04001584 nrpages -= ret;
1585 index += ret;
1586 cond_resched();
1587 }
1588 ret = 0;
1589done:
1590 if (ret && pages_locked) {
1591 __unlock_for_delalloc(inode, locked_page,
1592 delalloc_start,
1593 ((u64)(start_index + pages_locked - 1)) <<
1594 PAGE_CACHE_SHIFT);
1595 }
1596 return ret;
1597}
1598
1599/*
1600 * find a contiguous range of bytes in the file marked as delalloc, not
1601 * more than 'max_bytes'. start and end are used to return the range,
1602 *
1603 * 1 is returned if we find something, 0 if nothing was in the tree
1604 */
1605static noinline u64 find_lock_delalloc_range(struct inode *inode,
1606 struct extent_io_tree *tree,
1607 struct page *locked_page,
1608 u64 *start, u64 *end,
1609 u64 max_bytes)
1610{
1611 u64 delalloc_start;
1612 u64 delalloc_end;
1613 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001614 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001615 int ret;
1616 int loops = 0;
1617
1618again:
1619 /* step one, find a bunch of delalloc bytes starting at start */
1620 delalloc_start = *start;
1621 delalloc_end = 0;
1622 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001623 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001624 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001625 *start = delalloc_start;
1626 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001627 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001628 return found;
1629 }
1630
1631 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001632 * start comes from the offset of locked_page. We have to lock
1633 * pages in order, so we can't process delalloc bytes before
1634 * locked_page
1635 */
Chris Masond3977122009-01-05 21:25:51 -05001636 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001637 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001638
1639 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001640 * make sure to limit the number of pages we try to lock down
1641 * if we're looping.
1642 */
Chris Masond3977122009-01-05 21:25:51 -05001643 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001644 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001645
Chris Masonc8b97812008-10-29 14:49:59 -04001646 /* step two, lock all the pages after the page that has start */
1647 ret = lock_delalloc_pages(inode, locked_page,
1648 delalloc_start, delalloc_end);
1649 if (ret == -EAGAIN) {
1650 /* some of the pages are gone, lets avoid looping by
1651 * shortening the size of the delalloc range we're searching
1652 */
Chris Mason9655d292009-09-02 15:22:30 -04001653 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001654 if (!loops) {
1655 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1656 max_bytes = PAGE_CACHE_SIZE - offset;
1657 loops = 1;
1658 goto again;
1659 } else {
1660 found = 0;
1661 goto out_failed;
1662 }
1663 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001664 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001665
1666 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001667 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001668
1669 /* then test to make sure it is all still delalloc */
1670 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001671 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001672 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001673 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1674 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001675 __unlock_for_delalloc(inode, locked_page,
1676 delalloc_start, delalloc_end);
1677 cond_resched();
1678 goto again;
1679 }
Chris Mason9655d292009-09-02 15:22:30 -04001680 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001681 *start = delalloc_start;
1682 *end = delalloc_end;
1683out_failed:
1684 return found;
1685}
1686
1687int extent_clear_unlock_delalloc(struct inode *inode,
1688 struct extent_io_tree *tree,
1689 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001690 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001691{
1692 int ret;
1693 struct page *pages[16];
1694 unsigned long index = start >> PAGE_CACHE_SHIFT;
1695 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1696 unsigned long nr_pages = end_index - index + 1;
1697 int i;
David Sterba41074882013-04-29 13:38:46 +00001698 unsigned long clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001699
Chris Masona791e352009-10-08 11:27:10 -04001700 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001701 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001702 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001703 clear_bits |= EXTENT_DIRTY;
1704
Chris Masona791e352009-10-08 11:27:10 -04001705 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001706 clear_bits |= EXTENT_DELALLOC;
1707
Chris Mason2c64c532009-09-02 15:04:12 -04001708 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001709 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1710 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1711 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001712 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001713
Chris Masond3977122009-01-05 21:25:51 -05001714 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001715 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001716 min_t(unsigned long,
1717 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001718 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001719
Chris Masona791e352009-10-08 11:27:10 -04001720 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001721 SetPagePrivate2(pages[i]);
1722
Chris Masonc8b97812008-10-29 14:49:59 -04001723 if (pages[i] == locked_page) {
1724 page_cache_release(pages[i]);
1725 continue;
1726 }
Chris Masona791e352009-10-08 11:27:10 -04001727 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001728 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001729 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001730 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001731 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001732 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001733 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001734 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001735 page_cache_release(pages[i]);
1736 }
1737 nr_pages -= ret;
1738 index += ret;
1739 cond_resched();
1740 }
1741 return 0;
1742}
Chris Masonc8b97812008-10-29 14:49:59 -04001743
Chris Masond352ac62008-09-29 15:18:18 -04001744/*
1745 * count the number of bytes in the tree that have a given bit(s)
1746 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1747 * cached. The total number found is returned.
1748 */
Chris Masond1310b22008-01-24 16:13:08 -05001749u64 count_range_bits(struct extent_io_tree *tree,
1750 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001751 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001752{
1753 struct rb_node *node;
1754 struct extent_state *state;
1755 u64 cur_start = *start;
1756 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001757 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001758 int found = 0;
1759
1760 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001761 WARN_ON(1);
1762 return 0;
1763 }
1764
Chris Masoncad321a2008-12-17 14:51:42 -05001765 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001766 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1767 total_bytes = tree->dirty_bytes;
1768 goto out;
1769 }
1770 /*
1771 * this search will find all the extents that end after
1772 * our range starts.
1773 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001774 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001775 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001776 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001777
Chris Masond3977122009-01-05 21:25:51 -05001778 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001779 state = rb_entry(node, struct extent_state, rb_node);
1780 if (state->start > search_end)
1781 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001782 if (contig && found && state->start > last + 1)
1783 break;
1784 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001785 total_bytes += min(search_end, state->end) + 1 -
1786 max(cur_start, state->start);
1787 if (total_bytes >= max_bytes)
1788 break;
1789 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001790 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001791 found = 1;
1792 }
Chris Masonec29ed52011-02-23 16:23:20 -05001793 last = state->end;
1794 } else if (contig && found) {
1795 break;
Chris Masond1310b22008-01-24 16:13:08 -05001796 }
1797 node = rb_next(node);
1798 if (!node)
1799 break;
1800 }
1801out:
Chris Masoncad321a2008-12-17 14:51:42 -05001802 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001803 return total_bytes;
1804}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001805
Chris Masond352ac62008-09-29 15:18:18 -04001806/*
1807 * set the private field for a given byte offset in the tree. If there isn't
1808 * an extent_state there already, this does nothing.
1809 */
Chris Masond1310b22008-01-24 16:13:08 -05001810int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1811{
1812 struct rb_node *node;
1813 struct extent_state *state;
1814 int ret = 0;
1815
Chris Masoncad321a2008-12-17 14:51:42 -05001816 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001817 /*
1818 * this search will find all the extents that end after
1819 * our range starts.
1820 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001821 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001822 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001823 ret = -ENOENT;
1824 goto out;
1825 }
1826 state = rb_entry(node, struct extent_state, rb_node);
1827 if (state->start != start) {
1828 ret = -ENOENT;
1829 goto out;
1830 }
1831 state->private = private;
1832out:
Chris Masoncad321a2008-12-17 14:51:42 -05001833 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001834 return ret;
1835}
1836
Miao Xiee4100d92013-04-05 07:20:56 +00001837void extent_cache_csums_dio(struct extent_io_tree *tree, u64 start, u32 csums[],
1838 int count)
1839{
1840 struct rb_node *node;
1841 struct extent_state *state;
1842
1843 spin_lock(&tree->lock);
1844 /*
1845 * this search will find all the extents that end after
1846 * our range starts.
1847 */
1848 node = tree_search(tree, start);
1849 BUG_ON(!node);
1850
1851 state = rb_entry(node, struct extent_state, rb_node);
1852 BUG_ON(state->start != start);
1853
1854 while (count) {
1855 state->private = *csums++;
1856 count--;
1857 state = next_state(state);
1858 }
1859 spin_unlock(&tree->lock);
1860}
1861
1862static inline u64 __btrfs_get_bio_offset(struct bio *bio, int bio_index)
1863{
1864 struct bio_vec *bvec = bio->bi_io_vec + bio_index;
1865
1866 return page_offset(bvec->bv_page) + bvec->bv_offset;
1867}
1868
1869void extent_cache_csums(struct extent_io_tree *tree, struct bio *bio, int bio_index,
1870 u32 csums[], int count)
1871{
1872 struct rb_node *node;
1873 struct extent_state *state = NULL;
1874 u64 start;
1875
1876 spin_lock(&tree->lock);
1877 do {
1878 start = __btrfs_get_bio_offset(bio, bio_index);
1879 if (state == NULL || state->start != start) {
1880 node = tree_search(tree, start);
1881 BUG_ON(!node);
1882
1883 state = rb_entry(node, struct extent_state, rb_node);
1884 BUG_ON(state->start != start);
1885 }
1886 state->private = *csums++;
1887 count--;
1888 bio_index++;
1889
1890 state = next_state(state);
1891 } while (count);
1892 spin_unlock(&tree->lock);
1893}
1894
Chris Masond1310b22008-01-24 16:13:08 -05001895int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1896{
1897 struct rb_node *node;
1898 struct extent_state *state;
1899 int ret = 0;
1900
Chris Masoncad321a2008-12-17 14:51:42 -05001901 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001902 /*
1903 * this search will find all the extents that end after
1904 * our range starts.
1905 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001906 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001907 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001908 ret = -ENOENT;
1909 goto out;
1910 }
1911 state = rb_entry(node, struct extent_state, rb_node);
1912 if (state->start != start) {
1913 ret = -ENOENT;
1914 goto out;
1915 }
1916 *private = state->private;
1917out:
Chris Masoncad321a2008-12-17 14:51:42 -05001918 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001919 return ret;
1920}
1921
1922/*
1923 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001924 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001925 * has the bits set. Otherwise, 1 is returned if any bit in the
1926 * range is found set.
1927 */
1928int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001929 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001930{
1931 struct extent_state *state = NULL;
1932 struct rb_node *node;
1933 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001934
Chris Masoncad321a2008-12-17 14:51:42 -05001935 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001936 if (cached && cached->tree && cached->start <= start &&
1937 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001938 node = &cached->rb_node;
1939 else
1940 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001941 while (node && start <= end) {
1942 state = rb_entry(node, struct extent_state, rb_node);
1943
1944 if (filled && state->start > start) {
1945 bitset = 0;
1946 break;
1947 }
1948
1949 if (state->start > end)
1950 break;
1951
1952 if (state->state & bits) {
1953 bitset = 1;
1954 if (!filled)
1955 break;
1956 } else if (filled) {
1957 bitset = 0;
1958 break;
1959 }
Chris Mason46562ce2009-09-23 20:23:16 -04001960
1961 if (state->end == (u64)-1)
1962 break;
1963
Chris Masond1310b22008-01-24 16:13:08 -05001964 start = state->end + 1;
1965 if (start > end)
1966 break;
1967 node = rb_next(node);
1968 if (!node) {
1969 if (filled)
1970 bitset = 0;
1971 break;
1972 }
1973 }
Chris Masoncad321a2008-12-17 14:51:42 -05001974 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001975 return bitset;
1976}
Chris Masond1310b22008-01-24 16:13:08 -05001977
1978/*
1979 * helper function to set a given page up to date if all the
1980 * extents in the tree for that page are up to date
1981 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001982static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001983{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001984 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001985 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001986 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001987 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001988}
1989
1990/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001991 * When IO fails, either with EIO or csum verification fails, we
1992 * try other mirrors that might have a good copy of the data. This
1993 * io_failure_record is used to record state as we go through all the
1994 * mirrors. If another mirror has good data, the page is set up to date
1995 * and things continue. If a good mirror can't be found, the original
1996 * bio end_io callback is called to indicate things have failed.
1997 */
1998struct io_failure_record {
1999 struct page *page;
2000 u64 start;
2001 u64 len;
2002 u64 logical;
2003 unsigned long bio_flags;
2004 int this_mirror;
2005 int failed_mirror;
2006 int in_validation;
2007};
2008
2009static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
2010 int did_repair)
2011{
2012 int ret;
2013 int err = 0;
2014 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2015
2016 set_state_private(failure_tree, rec->start, 0);
2017 ret = clear_extent_bits(failure_tree, rec->start,
2018 rec->start + rec->len - 1,
2019 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2020 if (ret)
2021 err = ret;
2022
David Woodhouse53b381b2013-01-29 18:40:14 -05002023 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
2024 rec->start + rec->len - 1,
2025 EXTENT_DAMAGED, GFP_NOFS);
2026 if (ret && !err)
2027 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002028
2029 kfree(rec);
2030 return err;
2031}
2032
2033static void repair_io_failure_callback(struct bio *bio, int err)
2034{
2035 complete(bio->bi_private);
2036}
2037
2038/*
2039 * this bypasses the standard btrfs submit functions deliberately, as
2040 * the standard behavior is to write all copies in a raid setup. here we only
2041 * want to write the one bad copy. so we do the mapping for ourselves and issue
2042 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002043 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002044 * actually prevents the read that triggered the error from finishing.
2045 * currently, there can be no more than two copies of every data bit. thus,
2046 * exactly one rewrite is required.
2047 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002048int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002049 u64 length, u64 logical, struct page *page,
2050 int mirror_num)
2051{
2052 struct bio *bio;
2053 struct btrfs_device *dev;
2054 DECLARE_COMPLETION_ONSTACK(compl);
2055 u64 map_length = 0;
2056 u64 sector;
2057 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05002058 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002059 int ret;
2060
2061 BUG_ON(!mirror_num);
2062
David Woodhouse53b381b2013-01-29 18:40:14 -05002063 /* we can't repair anything in raid56 yet */
2064 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
2065 return 0;
2066
Chris Mason9be33952013-05-17 18:30:14 -04002067 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002068 if (!bio)
2069 return -EIO;
2070 bio->bi_private = &compl;
2071 bio->bi_end_io = repair_io_failure_callback;
2072 bio->bi_size = 0;
2073 map_length = length;
2074
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002075 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002076 &map_length, &bbio, mirror_num);
2077 if (ret) {
2078 bio_put(bio);
2079 return -EIO;
2080 }
2081 BUG_ON(mirror_num != bbio->mirror_num);
2082 sector = bbio->stripes[mirror_num-1].physical >> 9;
2083 bio->bi_sector = sector;
2084 dev = bbio->stripes[mirror_num-1].dev;
2085 kfree(bbio);
2086 if (!dev || !dev->bdev || !dev->writeable) {
2087 bio_put(bio);
2088 return -EIO;
2089 }
2090 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002091 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01002092 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002093 wait_for_completion(&compl);
2094
2095 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2096 /* try to remap that extent elsewhere? */
2097 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002098 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 return -EIO;
2100 }
2101
Anand Jaind5b025d2012-07-02 22:05:21 -06002102 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002103 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2104 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002105
2106 bio_put(bio);
2107 return 0;
2108}
2109
Josef Bacikea466792012-03-26 21:57:36 -04002110int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2111 int mirror_num)
2112{
Josef Bacikea466792012-03-26 21:57:36 -04002113 u64 start = eb->start;
2114 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002115 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002116
2117 for (i = 0; i < num_pages; i++) {
2118 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002119 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002120 start, p, mirror_num);
2121 if (ret)
2122 break;
2123 start += PAGE_CACHE_SIZE;
2124 }
2125
2126 return ret;
2127}
2128
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002129/*
2130 * each time an IO finishes, we do a fast check in the IO failure tree
2131 * to see if we need to process or clean up an io_failure_record
2132 */
2133static int clean_io_failure(u64 start, struct page *page)
2134{
2135 u64 private;
2136 u64 private_failure;
2137 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002138 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002139 struct extent_state *state;
2140 int num_copies;
2141 int did_repair = 0;
2142 int ret;
2143 struct inode *inode = page->mapping->host;
2144
2145 private = 0;
2146 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2147 (u64)-1, 1, EXTENT_DIRTY, 0);
2148 if (!ret)
2149 return 0;
2150
2151 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2152 &private_failure);
2153 if (ret)
2154 return 0;
2155
2156 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2157 BUG_ON(!failrec->this_mirror);
2158
2159 if (failrec->in_validation) {
2160 /* there was no real error, just free the record */
2161 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2162 failrec->start);
2163 did_repair = 1;
2164 goto out;
2165 }
2166
2167 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2168 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2169 failrec->start,
2170 EXTENT_LOCKED);
2171 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2172
2173 if (state && state->start == failrec->start) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002174 fs_info = BTRFS_I(inode)->root->fs_info;
2175 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2176 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002177 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002178 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002179 failrec->logical, page,
2180 failrec->failed_mirror);
2181 did_repair = !ret;
2182 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002183 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002184 }
2185
2186out:
2187 if (!ret)
2188 ret = free_io_failure(inode, failrec, did_repair);
2189
2190 return ret;
2191}
2192
2193/*
2194 * this is a generic handler for readpage errors (default
2195 * readpage_io_failed_hook). if other copies exist, read those and write back
2196 * good data to the failed position. does not investigate in remapping the
2197 * failed extent elsewhere, hoping the device will be smart enough to do this as
2198 * needed
2199 */
2200
2201static int bio_readpage_error(struct bio *failed_bio, struct page *page,
2202 u64 start, u64 end, int failed_mirror,
2203 struct extent_state *state)
2204{
2205 struct io_failure_record *failrec = NULL;
2206 u64 private;
2207 struct extent_map *em;
2208 struct inode *inode = page->mapping->host;
2209 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2210 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2211 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2212 struct bio *bio;
2213 int num_copies;
2214 int ret;
2215 int read_mode;
2216 u64 logical;
2217
2218 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2219
2220 ret = get_state_private(failure_tree, start, &private);
2221 if (ret) {
2222 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2223 if (!failrec)
2224 return -ENOMEM;
2225 failrec->start = start;
2226 failrec->len = end - start + 1;
2227 failrec->this_mirror = 0;
2228 failrec->bio_flags = 0;
2229 failrec->in_validation = 0;
2230
2231 read_lock(&em_tree->lock);
2232 em = lookup_extent_mapping(em_tree, start, failrec->len);
2233 if (!em) {
2234 read_unlock(&em_tree->lock);
2235 kfree(failrec);
2236 return -EIO;
2237 }
2238
2239 if (em->start > start || em->start + em->len < start) {
2240 free_extent_map(em);
2241 em = NULL;
2242 }
2243 read_unlock(&em_tree->lock);
2244
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002245 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002246 kfree(failrec);
2247 return -EIO;
2248 }
2249 logical = start - em->start;
2250 logical = em->block_start + logical;
2251 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2252 logical = em->block_start;
2253 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2254 extent_set_compress_type(&failrec->bio_flags,
2255 em->compress_type);
2256 }
2257 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2258 "len=%llu\n", logical, start, failrec->len);
2259 failrec->logical = logical;
2260 free_extent_map(em);
2261
2262 /* set the bits in the private failure tree */
2263 ret = set_extent_bits(failure_tree, start, end,
2264 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2265 if (ret >= 0)
2266 ret = set_state_private(failure_tree, start,
2267 (u64)(unsigned long)failrec);
2268 /* set the bits in the inode's tree */
2269 if (ret >= 0)
2270 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2271 GFP_NOFS);
2272 if (ret < 0) {
2273 kfree(failrec);
2274 return ret;
2275 }
2276 } else {
2277 failrec = (struct io_failure_record *)(unsigned long)private;
2278 pr_debug("bio_readpage_error: (found) logical=%llu, "
2279 "start=%llu, len=%llu, validation=%d\n",
2280 failrec->logical, failrec->start, failrec->len,
2281 failrec->in_validation);
2282 /*
2283 * when data can be on disk more than twice, add to failrec here
2284 * (e.g. with a list for failed_mirror) to make
2285 * clean_io_failure() clean all those errors at once.
2286 */
2287 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002288 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2289 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002290 if (num_copies == 1) {
2291 /*
2292 * we only have a single copy of the data, so don't bother with
2293 * all the retry and error correction code that follows. no
2294 * matter what the error is, it is very likely to persist.
2295 */
2296 pr_debug("bio_readpage_error: cannot repair, num_copies == 1. "
2297 "state=%p, num_copies=%d, next_mirror %d, "
2298 "failed_mirror %d\n", state, num_copies,
2299 failrec->this_mirror, failed_mirror);
2300 free_io_failure(inode, failrec, 0);
2301 return -EIO;
2302 }
2303
2304 if (!state) {
2305 spin_lock(&tree->lock);
2306 state = find_first_extent_bit_state(tree, failrec->start,
2307 EXTENT_LOCKED);
2308 if (state && state->start != failrec->start)
2309 state = NULL;
2310 spin_unlock(&tree->lock);
2311 }
2312
2313 /*
2314 * there are two premises:
2315 * a) deliver good data to the caller
2316 * b) correct the bad sectors on disk
2317 */
2318 if (failed_bio->bi_vcnt > 1) {
2319 /*
2320 * to fulfill b), we need to know the exact failing sectors, as
2321 * we don't want to rewrite any more than the failed ones. thus,
2322 * we need separate read requests for the failed bio
2323 *
2324 * if the following BUG_ON triggers, our validation request got
2325 * merged. we need separate requests for our algorithm to work.
2326 */
2327 BUG_ON(failrec->in_validation);
2328 failrec->in_validation = 1;
2329 failrec->this_mirror = failed_mirror;
2330 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2331 } else {
2332 /*
2333 * we're ready to fulfill a) and b) alongside. get a good copy
2334 * of the failed sector and if we succeed, we have setup
2335 * everything for repair_io_failure to do the rest for us.
2336 */
2337 if (failrec->in_validation) {
2338 BUG_ON(failrec->this_mirror != failed_mirror);
2339 failrec->in_validation = 0;
2340 failrec->this_mirror = 0;
2341 }
2342 failrec->failed_mirror = failed_mirror;
2343 failrec->this_mirror++;
2344 if (failrec->this_mirror == failed_mirror)
2345 failrec->this_mirror++;
2346 read_mode = READ_SYNC;
2347 }
2348
2349 if (!state || failrec->this_mirror > num_copies) {
2350 pr_debug("bio_readpage_error: (fail) state=%p, num_copies=%d, "
2351 "next_mirror %d, failed_mirror %d\n", state,
2352 num_copies, failrec->this_mirror, failed_mirror);
2353 free_io_failure(inode, failrec, 0);
2354 return -EIO;
2355 }
2356
Chris Mason9be33952013-05-17 18:30:14 -04002357 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002358 if (!bio) {
2359 free_io_failure(inode, failrec, 0);
2360 return -EIO;
2361 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002362 bio->bi_private = state;
2363 bio->bi_end_io = failed_bio->bi_end_io;
2364 bio->bi_sector = failrec->logical >> 9;
2365 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2366 bio->bi_size = 0;
2367
2368 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2369
2370 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2371 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2372 failrec->this_mirror, num_copies, failrec->in_validation);
2373
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002374 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2375 failrec->this_mirror,
2376 failrec->bio_flags, 0);
2377 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002378}
2379
Chris Masond1310b22008-01-24 16:13:08 -05002380/* lots and lots of room for performance fixes in the end_bio funcs */
2381
Jeff Mahoney87826df2012-02-15 16:23:57 +01002382int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2383{
2384 int uptodate = (err == 0);
2385 struct extent_io_tree *tree;
2386 int ret;
2387
2388 tree = &BTRFS_I(page->mapping->host)->io_tree;
2389
2390 if (tree->ops && tree->ops->writepage_end_io_hook) {
2391 ret = tree->ops->writepage_end_io_hook(page, start,
2392 end, NULL, uptodate);
2393 if (ret)
2394 uptodate = 0;
2395 }
2396
Jeff Mahoney87826df2012-02-15 16:23:57 +01002397 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002398 ClearPageUptodate(page);
2399 SetPageError(page);
2400 }
2401 return 0;
2402}
2403
Chris Masond1310b22008-01-24 16:13:08 -05002404/*
2405 * after a writepage IO is done, we need to:
2406 * clear the uptodate bits on error
2407 * clear the writeback bits in the extent tree for this IO
2408 * end_page_writeback if the page has no more pending IO
2409 *
2410 * Scheduling is not allowed, so the extent state tree is expected
2411 * to have one and only one object corresponding to this IO.
2412 */
Chris Masond1310b22008-01-24 16:13:08 -05002413static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002414{
Chris Masond1310b22008-01-24 16:13:08 -05002415 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002416 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002417 u64 start;
2418 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002419
Chris Masond1310b22008-01-24 16:13:08 -05002420 do {
2421 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002422 tree = &BTRFS_I(page->mapping->host)->io_tree;
2423
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002424 /* We always issue full-page reads, but if some block
2425 * in a page fails to read, blk_update_request() will
2426 * advance bv_offset and adjust bv_len to compensate.
2427 * Print a warning for nonzero offsets, and an error
2428 * if they don't add up to a full page. */
2429 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2430 printk("%s page write in btrfs with offset %u and length %u\n",
2431 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2432 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2433 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002434
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002435 start = page_offset(page);
2436 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002437
2438 if (--bvec >= bio->bi_io_vec)
2439 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002440
Jeff Mahoney87826df2012-02-15 16:23:57 +01002441 if (end_extent_writepage(page, err, start, end))
2442 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002443
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002444 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002445 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002446
Chris Masond1310b22008-01-24 16:13:08 -05002447 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002448}
2449
2450/*
2451 * after a readpage IO is done, we need to:
2452 * clear the uptodate bits on error
2453 * set the uptodate bits if things worked
2454 * set the page up to date if all extents in the tree are uptodate
2455 * clear the lock bit in the extent tree
2456 * unlock the page if there are no other extents locked for it
2457 *
2458 * Scheduling is not allowed, so the extent state tree is expected
2459 * to have one and only one object corresponding to this IO.
2460 */
Chris Masond1310b22008-01-24 16:13:08 -05002461static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002462{
2463 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002464 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2465 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04002466 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002467 u64 start;
2468 u64 end;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002469 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002470 int ret;
2471
Chris Masond20f7042008-12-08 16:58:54 -05002472 if (err)
2473 uptodate = 0;
2474
Chris Masond1310b22008-01-24 16:13:08 -05002475 do {
2476 struct page *page = bvec->bv_page;
Arne Jansen507903b2011-04-06 10:02:20 +00002477 struct extent_state *cached = NULL;
2478 struct extent_state *state;
Chris Mason9be33952013-05-17 18:30:14 -04002479 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
Josef Bacika71754f2013-06-17 17:14:39 -04002480 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002481
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002482 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002483 "mirror=%lu\n", (u64)bio->bi_sector, err,
2484 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002485 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002486
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002487 /* We always issue full-page reads, but if some block
2488 * in a page fails to read, blk_update_request() will
2489 * advance bv_offset and adjust bv_len to compensate.
2490 * Print a warning for nonzero offsets, and an error
2491 * if they don't add up to a full page. */
2492 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2493 printk("%s page read in btrfs with offset %u and length %u\n",
2494 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2495 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2496 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002497
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002498 start = page_offset(page);
2499 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002500
Chris Mason4125bf72010-02-03 18:18:45 +00002501 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002502 prefetchw(&bvec->bv_page->flags);
2503
Arne Jansen507903b2011-04-06 10:02:20 +00002504 spin_lock(&tree->lock);
Chris Mason0d399202011-04-16 06:55:39 -04002505 state = find_first_extent_bit_state(tree, start, EXTENT_LOCKED);
Chris Mason109b36a2011-04-12 13:57:39 -04002506 if (state && state->start == start) {
Arne Jansen507903b2011-04-06 10:02:20 +00002507 /*
2508 * take a reference on the state, unlock will drop
2509 * the ref
2510 */
2511 cache_state(state, &cached);
2512 }
2513 spin_unlock(&tree->lock);
2514
Chris Mason9be33952013-05-17 18:30:14 -04002515 mirror = io_bio->mirror_num;
Chris Masond1310b22008-01-24 16:13:08 -05002516 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05002517 ret = tree->ops->readpage_end_io_hook(page, start, end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002518 state, mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002519 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002520 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002521 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002522 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002523 }
Josef Bacikea466792012-03-26 21:57:36 -04002524
Josef Bacikea466792012-03-26 21:57:36 -04002525 if (!uptodate && tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002526 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002527 if (!ret && !err &&
2528 test_bit(BIO_UPTODATE, &bio->bi_flags))
2529 uptodate = 1;
2530 } else if (!uptodate) {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002531 /*
2532 * The generic bio_readpage_error handles errors the
2533 * following way: If possible, new read requests are
2534 * created and submitted and will end up in
2535 * end_bio_extent_readpage as well (if we're lucky, not
2536 * in the !uptodate case). In that case it returns 0 and
2537 * we just go on with the next page in our bio. If it
2538 * can't handle the error it will return -EIO and we
2539 * remain responsible for that page.
2540 */
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002541 ret = bio_readpage_error(bio, page, start, end, mirror, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04002542 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002543 uptodate =
2544 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002545 if (err)
2546 uptodate = 0;
Arne Jansen507903b2011-04-06 10:02:20 +00002547 uncache_state(&cached);
Chris Mason7e383262008-04-09 16:28:12 -04002548 continue;
2549 }
2550 }
Chris Mason70dec802008-01-29 09:59:12 -05002551
Josef Bacik0b32f4b2012-03-13 09:38:00 -04002552 if (uptodate && tree->track_uptodate) {
Arne Jansen507903b2011-04-06 10:02:20 +00002553 set_extent_uptodate(tree, start, end, &cached,
David Woodhouse902b22f2008-08-20 08:51:49 -04002554 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05002555 }
Arne Jansen507903b2011-04-06 10:02:20 +00002556 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05002557
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002558 if (uptodate) {
Josef Bacika71754f2013-06-17 17:14:39 -04002559 loff_t i_size = i_size_read(inode);
2560 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2561 unsigned offset;
2562
2563 /* Zero out the end if this page straddles i_size */
2564 offset = i_size & (PAGE_CACHE_SIZE-1);
2565 if (page->index == end_index && offset)
2566 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002567 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002568 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002569 ClearPageUptodate(page);
2570 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002571 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002572 unlock_page(page);
Chris Mason4125bf72010-02-03 18:18:45 +00002573 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002574
2575 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002576}
2577
Chris Mason9be33952013-05-17 18:30:14 -04002578/*
2579 * this allocates from the btrfs_bioset. We're returning a bio right now
2580 * but you can call btrfs_io_bio for the appropriate container_of magic
2581 */
Miao Xie88f794e2010-11-22 03:02:55 +00002582struct bio *
2583btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2584 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002585{
2586 struct bio *bio;
2587
Chris Mason9be33952013-05-17 18:30:14 -04002588 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002589
2590 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002591 while (!bio && (nr_vecs /= 2)) {
2592 bio = bio_alloc_bioset(gfp_flags,
2593 nr_vecs, btrfs_bioset);
2594 }
Chris Masond1310b22008-01-24 16:13:08 -05002595 }
2596
2597 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002598 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002599 bio->bi_bdev = bdev;
2600 bio->bi_sector = first_sector;
2601 }
2602 return bio;
2603}
2604
Chris Mason9be33952013-05-17 18:30:14 -04002605struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2606{
2607 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2608}
2609
2610
2611/* this also allocates from the btrfs_bioset */
2612struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2613{
2614 return bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2615}
2616
2617
Jeff Mahoney355808c2011-10-03 23:23:14 -04002618static int __must_check submit_one_bio(int rw, struct bio *bio,
2619 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002620{
Chris Masond1310b22008-01-24 16:13:08 -05002621 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002622 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2623 struct page *page = bvec->bv_page;
2624 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002625 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002626
Miao Xie4eee4fa2012-12-21 09:17:45 +00002627 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002628
David Woodhouse902b22f2008-08-20 08:51:49 -04002629 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002630
2631 bio_get(bio);
2632
Chris Mason065631f2008-02-20 12:07:25 -05002633 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002634 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002635 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002636 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002637 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002638
Chris Masond1310b22008-01-24 16:13:08 -05002639 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2640 ret = -EOPNOTSUPP;
2641 bio_put(bio);
2642 return ret;
2643}
2644
David Woodhouse64a16702009-07-15 23:29:37 +01002645static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002646 unsigned long offset, size_t size, struct bio *bio,
2647 unsigned long bio_flags)
2648{
2649 int ret = 0;
2650 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002651 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002652 bio_flags);
2653 BUG_ON(ret < 0);
2654 return ret;
2655
2656}
2657
Chris Masond1310b22008-01-24 16:13:08 -05002658static int submit_extent_page(int rw, struct extent_io_tree *tree,
2659 struct page *page, sector_t sector,
2660 size_t size, unsigned long offset,
2661 struct block_device *bdev,
2662 struct bio **bio_ret,
2663 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002664 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002665 int mirror_num,
2666 unsigned long prev_bio_flags,
2667 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002668{
2669 int ret = 0;
2670 struct bio *bio;
2671 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002672 int contig = 0;
2673 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2674 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002675 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002676
2677 if (bio_ret && *bio_ret) {
2678 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002679 if (old_compressed)
2680 contig = bio->bi_sector == sector;
2681 else
2682 contig = bio->bi_sector + (bio->bi_size >> 9) ==
2683 sector;
2684
2685 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002686 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002687 bio_add_page(bio, page, page_size, offset) < page_size) {
2688 ret = submit_one_bio(rw, bio, mirror_num,
2689 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002690 if (ret < 0)
2691 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002692 bio = NULL;
2693 } else {
2694 return 0;
2695 }
2696 }
Chris Masonc8b97812008-10-29 14:49:59 -04002697 if (this_compressed)
2698 nr = BIO_MAX_PAGES;
2699 else
2700 nr = bio_get_nr_vecs(bdev);
2701
Miao Xie88f794e2010-11-22 03:02:55 +00002702 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002703 if (!bio)
2704 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002705
Chris Masonc8b97812008-10-29 14:49:59 -04002706 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002707 bio->bi_end_io = end_io_func;
2708 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002709
Chris Masond3977122009-01-05 21:25:51 -05002710 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002711 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002712 else
Chris Masonc8b97812008-10-29 14:49:59 -04002713 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002714
2715 return ret;
2716}
2717
Eric Sandeen48a3b632013-04-25 20:41:01 +00002718static void attach_extent_buffer_page(struct extent_buffer *eb,
2719 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002720{
2721 if (!PagePrivate(page)) {
2722 SetPagePrivate(page);
2723 page_cache_get(page);
2724 set_page_private(page, (unsigned long)eb);
2725 } else {
2726 WARN_ON(page->private != (unsigned long)eb);
2727 }
2728}
2729
Chris Masond1310b22008-01-24 16:13:08 -05002730void set_page_extent_mapped(struct page *page)
2731{
2732 if (!PagePrivate(page)) {
2733 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002734 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002735 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002736 }
2737}
2738
Chris Masond1310b22008-01-24 16:13:08 -05002739/*
2740 * basic readpage implementation. Locked extent state structs are inserted
2741 * into the tree that are removed when the IO is done (by the end_io
2742 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002743 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002744 */
2745static int __extent_read_full_page(struct extent_io_tree *tree,
2746 struct page *page,
2747 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002748 struct bio **bio, int mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002749 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002750{
2751 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002752 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002753 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2754 u64 end;
2755 u64 cur = start;
2756 u64 extent_offset;
2757 u64 last_byte = i_size_read(inode);
2758 u64 block_start;
2759 u64 cur_end;
2760 sector_t sector;
2761 struct extent_map *em;
2762 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002763 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05002764 int ret;
2765 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002766 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002767 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002768 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002769 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04002770 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002771
2772 set_page_extent_mapped(page);
2773
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002774 if (!PageUptodate(page)) {
2775 if (cleancache_get_page(page) == 0) {
2776 BUG_ON(blocksize != PAGE_SIZE);
2777 goto out;
2778 }
2779 }
2780
Chris Masond1310b22008-01-24 16:13:08 -05002781 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002782 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002783 lock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002784 ordered = btrfs_lookup_ordered_extent(inode, start);
2785 if (!ordered)
2786 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002787 unlock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002788 btrfs_start_ordered_extent(inode, ordered, 1);
2789 btrfs_put_ordered_extent(ordered);
2790 }
Chris Masond1310b22008-01-24 16:13:08 -05002791
Chris Masonc8b97812008-10-29 14:49:59 -04002792 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2793 char *userpage;
2794 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2795
2796 if (zero_offset) {
2797 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002798 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002799 memset(userpage + zero_offset, 0, iosize);
2800 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002801 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002802 }
2803 }
Chris Masond1310b22008-01-24 16:13:08 -05002804 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002805 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2806
Chris Masond1310b22008-01-24 16:13:08 -05002807 if (cur >= last_byte) {
2808 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002809 struct extent_state *cached = NULL;
2810
David Sterba306e16c2011-04-19 14:29:38 +02002811 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002812 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002813 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002814 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002815 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002816 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002817 &cached, GFP_NOFS);
2818 unlock_extent_cached(tree, cur, cur + iosize - 1,
2819 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002820 break;
2821 }
David Sterba306e16c2011-04-19 14:29:38 +02002822 em = get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002823 end - cur + 1, 0);
David Sterbac7040052011-04-19 18:00:01 +02002824 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002825 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002826 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002827 break;
2828 }
Chris Masond1310b22008-01-24 16:13:08 -05002829 extent_offset = cur - em->start;
2830 BUG_ON(extent_map_end(em) <= cur);
2831 BUG_ON(end < cur);
2832
Li Zefan261507a02010-12-17 14:21:50 +08002833 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002834 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002835 extent_set_compress_type(&this_bio_flag,
2836 em->compress_type);
2837 }
Chris Masonc8b97812008-10-29 14:49:59 -04002838
Chris Masond1310b22008-01-24 16:13:08 -05002839 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2840 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002841 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002842 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2843 disk_io_size = em->block_len;
2844 sector = em->block_start >> 9;
2845 } else {
2846 sector = (em->block_start + extent_offset) >> 9;
2847 disk_io_size = iosize;
2848 }
Chris Masond1310b22008-01-24 16:13:08 -05002849 bdev = em->bdev;
2850 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002851 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2852 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002853 free_extent_map(em);
2854 em = NULL;
2855
2856 /* we've found a hole, just zero and go on */
2857 if (block_start == EXTENT_MAP_HOLE) {
2858 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002859 struct extent_state *cached = NULL;
2860
Cong Wang7ac687d2011-11-25 23:14:28 +08002861 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002862 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002863 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002864 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002865
2866 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002867 &cached, GFP_NOFS);
2868 unlock_extent_cached(tree, cur, cur + iosize - 1,
2869 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002870 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002871 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002872 continue;
2873 }
2874 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002875 if (test_range_bit(tree, cur, cur_end,
2876 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002877 check_page_uptodate(tree, page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002878 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002879 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002880 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002881 continue;
2882 }
Chris Mason70dec802008-01-29 09:59:12 -05002883 /* we have an inline extent but it didn't get marked up
2884 * to date. Error out
2885 */
2886 if (block_start == EXTENT_MAP_INLINE) {
2887 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002888 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002889 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002890 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002891 continue;
2892 }
Chris Masond1310b22008-01-24 16:13:08 -05002893
Josef Bacikc8f2f242013-02-11 11:33:00 -05002894 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002895 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002896 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002897 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002898 end_bio_extent_readpage, mirror_num,
2899 *bio_flags,
2900 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002901 if (!ret) {
2902 nr++;
2903 *bio_flags = this_bio_flag;
2904 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002905 SetPageError(page);
Josef Bacikedd33c92012-10-05 16:40:32 -04002906 unlock_extent(tree, cur, cur + iosize - 1);
2907 }
Chris Masond1310b22008-01-24 16:13:08 -05002908 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002909 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002910 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002911out:
Chris Masond1310b22008-01-24 16:13:08 -05002912 if (!nr) {
2913 if (!PageError(page))
2914 SetPageUptodate(page);
2915 unlock_page(page);
2916 }
2917 return 0;
2918}
2919
2920int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002921 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05002922{
2923 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002924 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002925 int ret;
2926
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002927 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002928 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05002929 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002930 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002931 return ret;
2932}
Chris Masond1310b22008-01-24 16:13:08 -05002933
Chris Mason11c83492009-04-20 15:50:09 -04002934static noinline void update_nr_written(struct page *page,
2935 struct writeback_control *wbc,
2936 unsigned long nr_written)
2937{
2938 wbc->nr_to_write -= nr_written;
2939 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2940 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2941 page->mapping->writeback_index = page->index + nr_written;
2942}
2943
Chris Masond1310b22008-01-24 16:13:08 -05002944/*
2945 * the writepage semantics are similar to regular writepage. extent
2946 * records are inserted to lock ranges in the tree, and as dirty areas
2947 * are found, they are marked writeback. Then the lock bits are removed
2948 * and the end_io handler clears the writeback ranges
2949 */
2950static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2951 void *data)
2952{
2953 struct inode *inode = page->mapping->host;
2954 struct extent_page_data *epd = data;
2955 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002956 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002957 u64 delalloc_start;
2958 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2959 u64 end;
2960 u64 cur = start;
2961 u64 extent_offset;
2962 u64 last_byte = i_size_read(inode);
2963 u64 block_start;
2964 u64 iosize;
2965 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002966 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002967 struct extent_map *em;
2968 struct block_device *bdev;
2969 int ret;
2970 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002971 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002972 size_t blocksize;
2973 loff_t i_size = i_size_read(inode);
2974 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2975 u64 nr_delalloc;
2976 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002977 int page_started;
2978 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002979 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002980 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002981 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05002982
Chris Masonffbd5172009-04-20 15:50:09 -04002983 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01002984 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04002985 else
2986 write_flags = WRITE;
2987
liubo1abe9b82011-03-24 11:18:59 +00002988 trace___extent_writepage(page, inode, wbc);
2989
Chris Masond1310b22008-01-24 16:13:08 -05002990 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04002991
2992 ClearPageError(page);
2993
Chris Mason7f3c74f2008-07-18 12:01:11 -04002994 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002995 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002996 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002997 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002998 unlock_page(page);
2999 return 0;
3000 }
3001
3002 if (page->index == end_index) {
3003 char *userpage;
3004
Cong Wang7ac687d2011-11-25 23:14:28 +08003005 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003006 memset(userpage + pg_offset, 0,
3007 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003008 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003009 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003010 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003011 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003012
3013 set_page_extent_mapped(page);
3014
Josef Bacik9e487102011-08-01 12:08:18 -04003015 if (!tree->ops || !tree->ops->fill_delalloc)
3016 fill_delalloc = false;
3017
Chris Masond1310b22008-01-24 16:13:08 -05003018 delalloc_start = start;
3019 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003020 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003021 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003022 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003023 /*
3024 * make sure the wbc mapping index is at least updated
3025 * to this page.
3026 */
3027 update_nr_written(page, wbc, 0);
3028
Chris Masond3977122009-01-05 21:25:51 -05003029 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003030 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003031 page,
3032 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003033 &delalloc_end,
3034 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003035 if (nr_delalloc == 0) {
3036 delalloc_start = delalloc_end + 1;
3037 continue;
3038 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003039 ret = tree->ops->fill_delalloc(inode, page,
3040 delalloc_start,
3041 delalloc_end,
3042 &page_started,
3043 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003044 /* File system has been set read-only */
3045 if (ret) {
3046 SetPageError(page);
3047 goto done;
3048 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003049 /*
3050 * delalloc_end is already one less than the total
3051 * length, so we don't subtract one from
3052 * PAGE_CACHE_SIZE
3053 */
3054 delalloc_to_write += (delalloc_end - delalloc_start +
3055 PAGE_CACHE_SIZE) >>
3056 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003057 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003058 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003059 if (wbc->nr_to_write < delalloc_to_write) {
3060 int thresh = 8192;
3061
3062 if (delalloc_to_write < thresh * 2)
3063 thresh = delalloc_to_write;
3064 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3065 thresh);
3066 }
Chris Masonc8b97812008-10-29 14:49:59 -04003067
Chris Mason771ed682008-11-06 22:02:51 -05003068 /* did the fill delalloc function already unlock and start
3069 * the IO?
3070 */
3071 if (page_started) {
3072 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003073 /*
3074 * we've unlocked the page, so we can't update
3075 * the mapping's writeback index, just update
3076 * nr_to_write.
3077 */
3078 wbc->nr_to_write -= nr_written;
3079 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003080 }
Chris Masonc8b97812008-10-29 14:49:59 -04003081 }
Chris Mason247e7432008-07-17 12:53:51 -04003082 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003083 ret = tree->ops->writepage_start_hook(page, start,
3084 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003085 if (ret) {
3086 /* Fixup worker will requeue */
3087 if (ret == -EBUSY)
3088 wbc->pages_skipped++;
3089 else
3090 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003091 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003092 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003093 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003094 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003095 }
3096 }
3097
Chris Mason11c83492009-04-20 15:50:09 -04003098 /*
3099 * we don't want to touch the inode after unlocking the page,
3100 * so we update the mapping writeback index now
3101 */
3102 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003103
Chris Masond1310b22008-01-24 16:13:08 -05003104 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003105 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003106 if (tree->ops && tree->ops->writepage_end_io_hook)
3107 tree->ops->writepage_end_io_hook(page, start,
3108 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003109 goto done;
3110 }
3111
Chris Masond1310b22008-01-24 16:13:08 -05003112 blocksize = inode->i_sb->s_blocksize;
3113
3114 while (cur <= end) {
3115 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003116 if (tree->ops && tree->ops->writepage_end_io_hook)
3117 tree->ops->writepage_end_io_hook(page, cur,
3118 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003119 break;
3120 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003121 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003122 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003123 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003124 SetPageError(page);
3125 break;
3126 }
3127
3128 extent_offset = cur - em->start;
3129 BUG_ON(extent_map_end(em) <= cur);
3130 BUG_ON(end < cur);
3131 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003132 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003133 sector = (em->block_start + extent_offset) >> 9;
3134 bdev = em->bdev;
3135 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003136 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003137 free_extent_map(em);
3138 em = NULL;
3139
Chris Masonc8b97812008-10-29 14:49:59 -04003140 /*
3141 * compressed and inline extents are written through other
3142 * paths in the FS
3143 */
3144 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003145 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003146 /*
3147 * end_io notification does not happen here for
3148 * compressed extents
3149 */
3150 if (!compressed && tree->ops &&
3151 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003152 tree->ops->writepage_end_io_hook(page, cur,
3153 cur + iosize - 1,
3154 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003155 else if (compressed) {
3156 /* we don't want to end_page_writeback on
3157 * a compressed extent. this happens
3158 * elsewhere
3159 */
3160 nr++;
3161 }
3162
3163 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003164 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003165 continue;
3166 }
Chris Masond1310b22008-01-24 16:13:08 -05003167 /* leave this out until we have a page_mkwrite call */
3168 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003169 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003170 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003171 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003172 continue;
3173 }
Chris Masonc8b97812008-10-29 14:49:59 -04003174
Chris Masond1310b22008-01-24 16:13:08 -05003175 if (tree->ops && tree->ops->writepage_io_hook) {
3176 ret = tree->ops->writepage_io_hook(page, cur,
3177 cur + iosize - 1);
3178 } else {
3179 ret = 0;
3180 }
Chris Mason1259ab72008-05-12 13:39:03 -04003181 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003182 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003183 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003184 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003185
Chris Masond1310b22008-01-24 16:13:08 -05003186 set_range_writeback(tree, cur, cur + iosize - 1);
3187 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003188 printk(KERN_ERR "btrfs warning page %lu not "
3189 "writeback, cur %llu end %llu\n",
3190 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05003191 (unsigned long long)end);
3192 }
3193
Chris Masonffbd5172009-04-20 15:50:09 -04003194 ret = submit_extent_page(write_flags, tree, page,
3195 sector, iosize, pg_offset,
3196 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003197 end_bio_extent_writepage,
3198 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003199 if (ret)
3200 SetPageError(page);
3201 }
3202 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003203 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003204 nr++;
3205 }
3206done:
3207 if (nr == 0) {
3208 /* make sure the mapping tag for page dirty gets cleared */
3209 set_page_writeback(page);
3210 end_page_writeback(page);
3211 }
Chris Masond1310b22008-01-24 16:13:08 -05003212 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003213
Chris Mason11c83492009-04-20 15:50:09 -04003214done_unlocked:
3215
Chris Mason2c64c532009-09-02 15:04:12 -04003216 /* drop our reference on any cached states */
3217 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003218 return 0;
3219}
3220
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003221static int eb_wait(void *word)
3222{
3223 io_schedule();
3224 return 0;
3225}
3226
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003227void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003228{
3229 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3230 TASK_UNINTERRUPTIBLE);
3231}
3232
3233static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3234 struct btrfs_fs_info *fs_info,
3235 struct extent_page_data *epd)
3236{
3237 unsigned long i, num_pages;
3238 int flush = 0;
3239 int ret = 0;
3240
3241 if (!btrfs_try_tree_write_lock(eb)) {
3242 flush = 1;
3243 flush_write_bio(epd);
3244 btrfs_tree_lock(eb);
3245 }
3246
3247 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3248 btrfs_tree_unlock(eb);
3249 if (!epd->sync_io)
3250 return 0;
3251 if (!flush) {
3252 flush_write_bio(epd);
3253 flush = 1;
3254 }
Chris Masona098d8e2012-03-21 12:09:56 -04003255 while (1) {
3256 wait_on_extent_buffer_writeback(eb);
3257 btrfs_tree_lock(eb);
3258 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3259 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003260 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003261 }
3262 }
3263
Josef Bacik51561ff2012-07-20 16:25:24 -04003264 /*
3265 * We need to do this to prevent races in people who check if the eb is
3266 * under IO since we can end up having no IO bits set for a short period
3267 * of time.
3268 */
3269 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003270 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3271 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003272 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003273 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003274 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3275 -eb->len,
3276 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003277 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003278 } else {
3279 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003280 }
3281
3282 btrfs_tree_unlock(eb);
3283
3284 if (!ret)
3285 return ret;
3286
3287 num_pages = num_extent_pages(eb->start, eb->len);
3288 for (i = 0; i < num_pages; i++) {
3289 struct page *p = extent_buffer_page(eb, i);
3290
3291 if (!trylock_page(p)) {
3292 if (!flush) {
3293 flush_write_bio(epd);
3294 flush = 1;
3295 }
3296 lock_page(p);
3297 }
3298 }
3299
3300 return ret;
3301}
3302
3303static void end_extent_buffer_writeback(struct extent_buffer *eb)
3304{
3305 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3306 smp_mb__after_clear_bit();
3307 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3308}
3309
3310static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3311{
3312 int uptodate = err == 0;
3313 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3314 struct extent_buffer *eb;
3315 int done;
3316
3317 do {
3318 struct page *page = bvec->bv_page;
3319
3320 bvec--;
3321 eb = (struct extent_buffer *)page->private;
3322 BUG_ON(!eb);
3323 done = atomic_dec_and_test(&eb->io_pages);
3324
3325 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3326 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3327 ClearPageUptodate(page);
3328 SetPageError(page);
3329 }
3330
3331 end_page_writeback(page);
3332
3333 if (!done)
3334 continue;
3335
3336 end_extent_buffer_writeback(eb);
3337 } while (bvec >= bio->bi_io_vec);
3338
3339 bio_put(bio);
3340
3341}
3342
3343static int write_one_eb(struct extent_buffer *eb,
3344 struct btrfs_fs_info *fs_info,
3345 struct writeback_control *wbc,
3346 struct extent_page_data *epd)
3347{
3348 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3349 u64 offset = eb->start;
3350 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003351 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003352 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003353 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003354
3355 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3356 num_pages = num_extent_pages(eb->start, eb->len);
3357 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003358 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3359 bio_flags = EXTENT_BIO_TREE_LOG;
3360
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003361 for (i = 0; i < num_pages; i++) {
3362 struct page *p = extent_buffer_page(eb, i);
3363
3364 clear_page_dirty_for_io(p);
3365 set_page_writeback(p);
3366 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3367 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3368 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003369 0, epd->bio_flags, bio_flags);
3370 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003371 if (ret) {
3372 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3373 SetPageError(p);
3374 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3375 end_extent_buffer_writeback(eb);
3376 ret = -EIO;
3377 break;
3378 }
3379 offset += PAGE_CACHE_SIZE;
3380 update_nr_written(p, wbc, 1);
3381 unlock_page(p);
3382 }
3383
3384 if (unlikely(ret)) {
3385 for (; i < num_pages; i++) {
3386 struct page *p = extent_buffer_page(eb, i);
3387 unlock_page(p);
3388 }
3389 }
3390
3391 return ret;
3392}
3393
3394int btree_write_cache_pages(struct address_space *mapping,
3395 struct writeback_control *wbc)
3396{
3397 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3398 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3399 struct extent_buffer *eb, *prev_eb = NULL;
3400 struct extent_page_data epd = {
3401 .bio = NULL,
3402 .tree = tree,
3403 .extent_locked = 0,
3404 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003405 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003406 };
3407 int ret = 0;
3408 int done = 0;
3409 int nr_to_write_done = 0;
3410 struct pagevec pvec;
3411 int nr_pages;
3412 pgoff_t index;
3413 pgoff_t end; /* Inclusive */
3414 int scanned = 0;
3415 int tag;
3416
3417 pagevec_init(&pvec, 0);
3418 if (wbc->range_cyclic) {
3419 index = mapping->writeback_index; /* Start from prev offset */
3420 end = -1;
3421 } else {
3422 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3423 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3424 scanned = 1;
3425 }
3426 if (wbc->sync_mode == WB_SYNC_ALL)
3427 tag = PAGECACHE_TAG_TOWRITE;
3428 else
3429 tag = PAGECACHE_TAG_DIRTY;
3430retry:
3431 if (wbc->sync_mode == WB_SYNC_ALL)
3432 tag_pages_for_writeback(mapping, index, end);
3433 while (!done && !nr_to_write_done && (index <= end) &&
3434 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3435 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3436 unsigned i;
3437
3438 scanned = 1;
3439 for (i = 0; i < nr_pages; i++) {
3440 struct page *page = pvec.pages[i];
3441
3442 if (!PagePrivate(page))
3443 continue;
3444
3445 if (!wbc->range_cyclic && page->index > end) {
3446 done = 1;
3447 break;
3448 }
3449
Josef Bacikb5bae262012-09-14 13:43:01 -04003450 spin_lock(&mapping->private_lock);
3451 if (!PagePrivate(page)) {
3452 spin_unlock(&mapping->private_lock);
3453 continue;
3454 }
3455
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003456 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003457
3458 /*
3459 * Shouldn't happen and normally this would be a BUG_ON
3460 * but no sense in crashing the users box for something
3461 * we can survive anyway.
3462 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003463 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003464 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003465 WARN_ON(1);
3466 continue;
3467 }
3468
Josef Bacikb5bae262012-09-14 13:43:01 -04003469 if (eb == prev_eb) {
3470 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003471 continue;
3472 }
3473
Josef Bacikb5bae262012-09-14 13:43:01 -04003474 ret = atomic_inc_not_zero(&eb->refs);
3475 spin_unlock(&mapping->private_lock);
3476 if (!ret)
3477 continue;
3478
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003479 prev_eb = eb;
3480 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3481 if (!ret) {
3482 free_extent_buffer(eb);
3483 continue;
3484 }
3485
3486 ret = write_one_eb(eb, fs_info, wbc, &epd);
3487 if (ret) {
3488 done = 1;
3489 free_extent_buffer(eb);
3490 break;
3491 }
3492 free_extent_buffer(eb);
3493
3494 /*
3495 * the filesystem may choose to bump up nr_to_write.
3496 * We have to make sure to honor the new nr_to_write
3497 * at any time
3498 */
3499 nr_to_write_done = wbc->nr_to_write <= 0;
3500 }
3501 pagevec_release(&pvec);
3502 cond_resched();
3503 }
3504 if (!scanned && !done) {
3505 /*
3506 * We hit the last page and there is more work to be done: wrap
3507 * back to the start of the file
3508 */
3509 scanned = 1;
3510 index = 0;
3511 goto retry;
3512 }
3513 flush_write_bio(&epd);
3514 return ret;
3515}
3516
Chris Masond1310b22008-01-24 16:13:08 -05003517/**
Chris Mason4bef0842008-09-08 11:18:08 -04003518 * 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 -05003519 * @mapping: address space structure to write
3520 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3521 * @writepage: function called for each page
3522 * @data: data passed to writepage function
3523 *
3524 * If a page is already under I/O, write_cache_pages() skips it, even
3525 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3526 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3527 * and msync() need to guarantee that all the data which was dirty at the time
3528 * the call was made get new I/O started against them. If wbc->sync_mode is
3529 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3530 * existing IO to complete.
3531 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003532static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003533 struct address_space *mapping,
3534 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003535 writepage_t writepage, void *data,
3536 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003537{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003538 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003539 int ret = 0;
3540 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003541 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003542 struct pagevec pvec;
3543 int nr_pages;
3544 pgoff_t index;
3545 pgoff_t end; /* Inclusive */
3546 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003547 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003548
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003549 /*
3550 * We have to hold onto the inode so that ordered extents can do their
3551 * work when the IO finishes. The alternative to this is failing to add
3552 * an ordered extent if the igrab() fails there and that is a huge pain
3553 * to deal with, so instead just hold onto the inode throughout the
3554 * writepages operation. If it fails here we are freeing up the inode
3555 * anyway and we'd rather not waste our time writing out stuff that is
3556 * going to be truncated anyway.
3557 */
3558 if (!igrab(inode))
3559 return 0;
3560
Chris Masond1310b22008-01-24 16:13:08 -05003561 pagevec_init(&pvec, 0);
3562 if (wbc->range_cyclic) {
3563 index = mapping->writeback_index; /* Start from prev offset */
3564 end = -1;
3565 } else {
3566 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3567 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003568 scanned = 1;
3569 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003570 if (wbc->sync_mode == WB_SYNC_ALL)
3571 tag = PAGECACHE_TAG_TOWRITE;
3572 else
3573 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003574retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003575 if (wbc->sync_mode == WB_SYNC_ALL)
3576 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003577 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003578 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3579 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003580 unsigned i;
3581
3582 scanned = 1;
3583 for (i = 0; i < nr_pages; i++) {
3584 struct page *page = pvec.pages[i];
3585
3586 /*
3587 * At this point we hold neither mapping->tree_lock nor
3588 * lock on the page itself: the page may be truncated or
3589 * invalidated (changing page->mapping to NULL), or even
3590 * swizzled back from swapper_space to tmpfs file
3591 * mapping
3592 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003593 if (!trylock_page(page)) {
3594 flush_fn(data);
3595 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003596 }
Chris Masond1310b22008-01-24 16:13:08 -05003597
3598 if (unlikely(page->mapping != mapping)) {
3599 unlock_page(page);
3600 continue;
3601 }
3602
3603 if (!wbc->range_cyclic && page->index > end) {
3604 done = 1;
3605 unlock_page(page);
3606 continue;
3607 }
3608
Chris Masond2c3f4f2008-11-19 12:44:22 -05003609 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003610 if (PageWriteback(page))
3611 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003612 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003613 }
Chris Masond1310b22008-01-24 16:13:08 -05003614
3615 if (PageWriteback(page) ||
3616 !clear_page_dirty_for_io(page)) {
3617 unlock_page(page);
3618 continue;
3619 }
3620
3621 ret = (*writepage)(page, wbc, data);
3622
3623 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3624 unlock_page(page);
3625 ret = 0;
3626 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003627 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003628 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003629
3630 /*
3631 * the filesystem may choose to bump up nr_to_write.
3632 * We have to make sure to honor the new nr_to_write
3633 * at any time
3634 */
3635 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003636 }
3637 pagevec_release(&pvec);
3638 cond_resched();
3639 }
3640 if (!scanned && !done) {
3641 /*
3642 * We hit the last page and there is more work to be done: wrap
3643 * back to the start of the file
3644 */
3645 scanned = 1;
3646 index = 0;
3647 goto retry;
3648 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003649 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003650 return ret;
3651}
Chris Masond1310b22008-01-24 16:13:08 -05003652
Chris Masonffbd5172009-04-20 15:50:09 -04003653static void flush_epd_write_bio(struct extent_page_data *epd)
3654{
3655 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003656 int rw = WRITE;
3657 int ret;
3658
Chris Masonffbd5172009-04-20 15:50:09 -04003659 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003660 rw = WRITE_SYNC;
3661
Josef Bacikde0022b2012-09-25 14:25:58 -04003662 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003663 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003664 epd->bio = NULL;
3665 }
3666}
3667
Chris Masond2c3f4f2008-11-19 12:44:22 -05003668static noinline void flush_write_bio(void *data)
3669{
3670 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003671 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003672}
3673
Chris Masond1310b22008-01-24 16:13:08 -05003674int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3675 get_extent_t *get_extent,
3676 struct writeback_control *wbc)
3677{
3678 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003679 struct extent_page_data epd = {
3680 .bio = NULL,
3681 .tree = tree,
3682 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003683 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003684 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003685 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003686 };
Chris Masond1310b22008-01-24 16:13:08 -05003687
Chris Masond1310b22008-01-24 16:13:08 -05003688 ret = __extent_writepage(page, wbc, &epd);
3689
Chris Masonffbd5172009-04-20 15:50:09 -04003690 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003691 return ret;
3692}
Chris Masond1310b22008-01-24 16:13:08 -05003693
Chris Mason771ed682008-11-06 22:02:51 -05003694int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3695 u64 start, u64 end, get_extent_t *get_extent,
3696 int mode)
3697{
3698 int ret = 0;
3699 struct address_space *mapping = inode->i_mapping;
3700 struct page *page;
3701 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3702 PAGE_CACHE_SHIFT;
3703
3704 struct extent_page_data epd = {
3705 .bio = NULL,
3706 .tree = tree,
3707 .get_extent = get_extent,
3708 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003709 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003710 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003711 };
3712 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003713 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003714 .nr_to_write = nr_pages * 2,
3715 .range_start = start,
3716 .range_end = end + 1,
3717 };
3718
Chris Masond3977122009-01-05 21:25:51 -05003719 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003720 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3721 if (clear_page_dirty_for_io(page))
3722 ret = __extent_writepage(page, &wbc_writepages, &epd);
3723 else {
3724 if (tree->ops && tree->ops->writepage_end_io_hook)
3725 tree->ops->writepage_end_io_hook(page, start,
3726 start + PAGE_CACHE_SIZE - 1,
3727 NULL, 1);
3728 unlock_page(page);
3729 }
3730 page_cache_release(page);
3731 start += PAGE_CACHE_SIZE;
3732 }
3733
Chris Masonffbd5172009-04-20 15:50:09 -04003734 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003735 return ret;
3736}
Chris Masond1310b22008-01-24 16:13:08 -05003737
3738int extent_writepages(struct extent_io_tree *tree,
3739 struct address_space *mapping,
3740 get_extent_t *get_extent,
3741 struct writeback_control *wbc)
3742{
3743 int ret = 0;
3744 struct extent_page_data epd = {
3745 .bio = NULL,
3746 .tree = tree,
3747 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003748 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003749 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003750 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003751 };
3752
Chris Mason4bef0842008-09-08 11:18:08 -04003753 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003754 __extent_writepage, &epd,
3755 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003756 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003757 return ret;
3758}
Chris Masond1310b22008-01-24 16:13:08 -05003759
3760int extent_readpages(struct extent_io_tree *tree,
3761 struct address_space *mapping,
3762 struct list_head *pages, unsigned nr_pages,
3763 get_extent_t get_extent)
3764{
3765 struct bio *bio = NULL;
3766 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003767 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003768 struct page *pagepool[16];
3769 struct page *page;
3770 int i = 0;
3771 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003772
Chris Masond1310b22008-01-24 16:13:08 -05003773 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003774 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003775
3776 prefetchw(&page->flags);
3777 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003778 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003779 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003780 page_cache_release(page);
3781 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003782 }
Liu Bo67c96842012-07-20 21:43:09 -06003783
3784 pagepool[nr++] = page;
3785 if (nr < ARRAY_SIZE(pagepool))
3786 continue;
3787 for (i = 0; i < nr; i++) {
3788 __extent_read_full_page(tree, pagepool[i], get_extent,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003789 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003790 page_cache_release(pagepool[i]);
3791 }
3792 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003793 }
Liu Bo67c96842012-07-20 21:43:09 -06003794 for (i = 0; i < nr; i++) {
3795 __extent_read_full_page(tree, pagepool[i], get_extent,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003796 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003797 page_cache_release(pagepool[i]);
3798 }
3799
Chris Masond1310b22008-01-24 16:13:08 -05003800 BUG_ON(!list_empty(pages));
3801 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003802 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003803 return 0;
3804}
Chris Masond1310b22008-01-24 16:13:08 -05003805
3806/*
3807 * basic invalidatepage code, this waits on any locked or writeback
3808 * ranges corresponding to the page, and then deletes any extent state
3809 * records from the tree
3810 */
3811int extent_invalidatepage(struct extent_io_tree *tree,
3812 struct page *page, unsigned long offset)
3813{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003814 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003815 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003816 u64 end = start + PAGE_CACHE_SIZE - 1;
3817 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3818
Qu Wenruofda28322013-02-26 08:10:22 +00003819 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003820 if (start > end)
3821 return 0;
3822
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003823 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003824 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003825 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003826 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3827 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003828 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003829 return 0;
3830}
Chris Masond1310b22008-01-24 16:13:08 -05003831
3832/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003833 * a helper for releasepage, this tests for areas of the page that
3834 * are locked or under IO and drops the related state bits if it is safe
3835 * to drop the page.
3836 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003837static int try_release_extent_state(struct extent_map_tree *map,
3838 struct extent_io_tree *tree,
3839 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003840{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003841 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003842 u64 end = start + PAGE_CACHE_SIZE - 1;
3843 int ret = 1;
3844
Chris Mason211f90e2008-07-18 11:56:15 -04003845 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003846 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003847 ret = 0;
3848 else {
3849 if ((mask & GFP_NOFS) == GFP_NOFS)
3850 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003851 /*
3852 * at this point we can safely clear everything except the
3853 * locked bit and the nodatasum bit
3854 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003855 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003856 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3857 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003858
3859 /* if clear_extent_bit failed for enomem reasons,
3860 * we can't allow the release to continue.
3861 */
3862 if (ret < 0)
3863 ret = 0;
3864 else
3865 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003866 }
3867 return ret;
3868}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003869
3870/*
Chris Masond1310b22008-01-24 16:13:08 -05003871 * a helper for releasepage. As long as there are no locked extents
3872 * in the range corresponding to the page, both state records and extent
3873 * map records are removed
3874 */
3875int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003876 struct extent_io_tree *tree, struct page *page,
3877 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003878{
3879 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003880 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003881 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003882
Chris Mason70dec802008-01-29 09:59:12 -05003883 if ((mask & __GFP_WAIT) &&
3884 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003885 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003886 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003887 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003888 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003889 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003890 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003891 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003892 break;
3893 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003894 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3895 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003896 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003897 free_extent_map(em);
3898 break;
3899 }
3900 if (!test_range_bit(tree, em->start,
3901 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04003902 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04003903 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05003904 remove_extent_mapping(map, em);
3905 /* once for the rb tree */
3906 free_extent_map(em);
3907 }
3908 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04003909 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003910
3911 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05003912 free_extent_map(em);
3913 }
Chris Masond1310b22008-01-24 16:13:08 -05003914 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04003915 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05003916}
Chris Masond1310b22008-01-24 16:13:08 -05003917
Chris Masonec29ed52011-02-23 16:23:20 -05003918/*
3919 * helper function for fiemap, which doesn't want to see any holes.
3920 * This maps until we find something past 'last'
3921 */
3922static struct extent_map *get_extent_skip_holes(struct inode *inode,
3923 u64 offset,
3924 u64 last,
3925 get_extent_t *get_extent)
3926{
3927 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
3928 struct extent_map *em;
3929 u64 len;
3930
3931 if (offset >= last)
3932 return NULL;
3933
3934 while(1) {
3935 len = last - offset;
3936 if (len == 0)
3937 break;
Qu Wenruofda28322013-02-26 08:10:22 +00003938 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05003939 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02003940 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05003941 return em;
3942
3943 /* if this isn't a hole return it */
3944 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
3945 em->block_start != EXTENT_MAP_HOLE) {
3946 return em;
3947 }
3948
3949 /* this is a hole, advance to the next extent */
3950 offset = extent_map_end(em);
3951 free_extent_map(em);
3952 if (offset >= last)
3953 break;
3954 }
3955 return NULL;
3956}
3957
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003958int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3959 __u64 start, __u64 len, get_extent_t *get_extent)
3960{
Josef Bacik975f84f2010-11-23 19:36:57 +00003961 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003962 u64 off = start;
3963 u64 max = start + len;
3964 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00003965 u32 found_type;
3966 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05003967 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003968 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003969 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00003970 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003971 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003972 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00003973 struct btrfs_path *path;
3974 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003975 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003976 u64 em_start = 0;
3977 u64 em_len = 0;
3978 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003979 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003980
3981 if (len == 0)
3982 return -EINVAL;
3983
Josef Bacik975f84f2010-11-23 19:36:57 +00003984 path = btrfs_alloc_path();
3985 if (!path)
3986 return -ENOMEM;
3987 path->leave_spinning = 1;
3988
Josef Bacik4d479cf2011-11-17 11:34:31 -05003989 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
3990 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
3991
Chris Masonec29ed52011-02-23 16:23:20 -05003992 /*
3993 * lookup the last file extent. We're not using i_size here
3994 * because there might be preallocation past i_size
3995 */
Josef Bacik975f84f2010-11-23 19:36:57 +00003996 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08003997 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00003998 if (ret < 0) {
3999 btrfs_free_path(path);
4000 return ret;
4001 }
4002 WARN_ON(!ret);
4003 path->slots[0]--;
4004 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4005 struct btrfs_file_extent_item);
4006 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4007 found_type = btrfs_key_type(&found_key);
4008
Chris Masonec29ed52011-02-23 16:23:20 -05004009 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004010 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004011 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004012 /* have to trust i_size as the end */
4013 last = (u64)-1;
4014 last_for_get_extent = isize;
4015 } else {
4016 /*
4017 * remember the start of the last extent. There are a
4018 * bunch of different factors that go into the length of the
4019 * extent, so its much less complex to remember where it started
4020 */
4021 last = found_key.offset;
4022 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004023 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004024 btrfs_free_path(path);
4025
Chris Masonec29ed52011-02-23 16:23:20 -05004026 /*
4027 * we might have some extents allocated but more delalloc past those
4028 * extents. so, we trust isize unless the start of the last extent is
4029 * beyond isize
4030 */
4031 if (last < isize) {
4032 last = (u64)-1;
4033 last_for_get_extent = isize;
4034 }
4035
Liu Boa52f4cd2013-05-01 16:23:41 +00004036 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004037 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004038
Josef Bacik4d479cf2011-11-17 11:34:31 -05004039 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004040 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004041 if (!em)
4042 goto out;
4043 if (IS_ERR(em)) {
4044 ret = PTR_ERR(em);
4045 goto out;
4046 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004047
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004048 while (!end) {
Chris Masonea8efc72011-03-08 11:54:40 -05004049 u64 offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004050
Chris Masonea8efc72011-03-08 11:54:40 -05004051 /* break if the extent we found is outside the range */
4052 if (em->start >= max || extent_map_end(em) < off)
4053 break;
4054
4055 /*
4056 * get_extent may return an extent that starts before our
4057 * requested range. We have to make sure the ranges
4058 * we return to fiemap always move forward and don't
4059 * overlap, so adjust the offsets here
4060 */
4061 em_start = max(em->start, off);
4062
4063 /*
4064 * record the offset from the start of the extent
4065 * for adjusting the disk offset below
4066 */
4067 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004068 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004069 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05004070 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004071 disko = 0;
4072 flags = 0;
4073
Chris Masonea8efc72011-03-08 11:54:40 -05004074 /*
4075 * bump off for our next call to get_extent
4076 */
4077 off = extent_map_end(em);
4078 if (off >= max)
4079 end = 1;
4080
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004081 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004082 end = 1;
4083 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004084 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004085 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4086 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004087 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004088 flags |= (FIEMAP_EXTENT_DELALLOC |
4089 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004090 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05004091 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004092 }
4093 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4094 flags |= FIEMAP_EXTENT_ENCODED;
4095
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004096 free_extent_map(em);
4097 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004098 if ((em_start >= last) || em_len == (u64)-1 ||
4099 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004100 flags |= FIEMAP_EXTENT_LAST;
4101 end = 1;
4102 }
4103
Chris Masonec29ed52011-02-23 16:23:20 -05004104 /* now scan forward to see if this is really the last extent. */
4105 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4106 get_extent);
4107 if (IS_ERR(em)) {
4108 ret = PTR_ERR(em);
4109 goto out;
4110 }
4111 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004112 flags |= FIEMAP_EXTENT_LAST;
4113 end = 1;
4114 }
Chris Masonec29ed52011-02-23 16:23:20 -05004115 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4116 em_len, flags);
4117 if (ret)
4118 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004119 }
4120out_free:
4121 free_extent_map(em);
4122out:
Liu Boa52f4cd2013-05-01 16:23:41 +00004123 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004124 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004125 return ret;
4126}
4127
Chris Mason727011e2010-08-06 13:21:20 -04004128static void __free_extent_buffer(struct extent_buffer *eb)
4129{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004130 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004131 kmem_cache_free(extent_buffer_cache, eb);
4132}
4133
Chris Masond1310b22008-01-24 16:13:08 -05004134static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4135 u64 start,
4136 unsigned long len,
4137 gfp_t mask)
4138{
4139 struct extent_buffer *eb = NULL;
4140
Chris Masond1310b22008-01-24 16:13:08 -05004141 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00004142 if (eb == NULL)
4143 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004144 eb->start = start;
4145 eb->len = len;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004146 eb->tree = tree;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004147 eb->bflags = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004148 rwlock_init(&eb->lock);
4149 atomic_set(&eb->write_locks, 0);
4150 atomic_set(&eb->read_locks, 0);
4151 atomic_set(&eb->blocking_readers, 0);
4152 atomic_set(&eb->blocking_writers, 0);
4153 atomic_set(&eb->spinning_readers, 0);
4154 atomic_set(&eb->spinning_writers, 0);
Arne Jansen5b25f702011-09-13 10:55:48 +02004155 eb->lock_nested = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004156 init_waitqueue_head(&eb->write_lock_wq);
4157 init_waitqueue_head(&eb->read_lock_wq);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004158
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004159 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4160
Josef Bacik3083ee22012-03-09 16:01:49 -05004161 spin_lock_init(&eb->refs_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004162 atomic_set(&eb->refs, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004163 atomic_set(&eb->io_pages, 0);
Chris Mason727011e2010-08-06 13:21:20 -04004164
David Sterbab8dae312013-02-28 14:54:18 +00004165 /*
4166 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4167 */
4168 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4169 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4170 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05004171
4172 return eb;
4173}
4174
Jan Schmidt815a51c2012-05-16 17:00:02 +02004175struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4176{
4177 unsigned long i;
4178 struct page *p;
4179 struct extent_buffer *new;
4180 unsigned long num_pages = num_extent_pages(src->start, src->len);
4181
4182 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_ATOMIC);
4183 if (new == NULL)
4184 return NULL;
4185
4186 for (i = 0; i < num_pages; i++) {
4187 p = alloc_page(GFP_ATOMIC);
4188 BUG_ON(!p);
4189 attach_extent_buffer_page(new, p);
4190 WARN_ON(PageDirty(p));
4191 SetPageUptodate(p);
4192 new->pages[i] = p;
4193 }
4194
4195 copy_extent_buffer(new, src, 0, 0, src->len);
4196 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4197 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4198
4199 return new;
4200}
4201
4202struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4203{
4204 struct extent_buffer *eb;
4205 unsigned long num_pages = num_extent_pages(0, len);
4206 unsigned long i;
4207
4208 eb = __alloc_extent_buffer(NULL, start, len, GFP_ATOMIC);
4209 if (!eb)
4210 return NULL;
4211
4212 for (i = 0; i < num_pages; i++) {
4213 eb->pages[i] = alloc_page(GFP_ATOMIC);
4214 if (!eb->pages[i])
4215 goto err;
4216 }
4217 set_extent_buffer_uptodate(eb);
4218 btrfs_set_header_nritems(eb, 0);
4219 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4220
4221 return eb;
4222err:
Stefan Behrens84167d12012-10-11 07:25:16 -06004223 for (; i > 0; i--)
4224 __free_page(eb->pages[i - 1]);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004225 __free_extent_buffer(eb);
4226 return NULL;
4227}
4228
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004229static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004230{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004231 return (atomic_read(&eb->io_pages) ||
4232 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4233 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004234}
4235
Miao Xie897ca6e92010-10-26 20:57:29 -04004236/*
4237 * Helper for releasing extent buffer page.
4238 */
4239static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4240 unsigned long start_idx)
4241{
4242 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004243 unsigned long num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004244 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004245 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004246
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004247 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004248
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004249 num_pages = num_extent_pages(eb->start, eb->len);
4250 index = start_idx + num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004251 if (start_idx >= index)
4252 return;
4253
4254 do {
4255 index--;
4256 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004257 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004258 spin_lock(&page->mapping->private_lock);
4259 /*
4260 * We do this since we'll remove the pages after we've
4261 * removed the eb from the radix tree, so we could race
4262 * and have this page now attached to the new eb. So
4263 * only clear page_private if it's still connected to
4264 * this eb.
4265 */
4266 if (PagePrivate(page) &&
4267 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004268 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004269 BUG_ON(PageDirty(page));
4270 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004271 /*
4272 * We need to make sure we haven't be attached
4273 * to a new eb.
4274 */
4275 ClearPagePrivate(page);
4276 set_page_private(page, 0);
4277 /* One for the page private */
4278 page_cache_release(page);
4279 }
4280 spin_unlock(&page->mapping->private_lock);
4281
Jan Schmidt815a51c2012-05-16 17:00:02 +02004282 }
4283 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004284 /* One for when we alloced the page */
Miao Xie897ca6e92010-10-26 20:57:29 -04004285 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004286 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004287 } while (index != start_idx);
4288}
4289
4290/*
4291 * Helper for releasing the extent buffer.
4292 */
4293static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4294{
4295 btrfs_release_extent_buffer_page(eb, 0);
4296 __free_extent_buffer(eb);
4297}
4298
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004299static void check_buffer_tree_ref(struct extent_buffer *eb)
4300{
Chris Mason242e18c2013-01-29 17:49:37 -05004301 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004302 /* the ref bit is tricky. We have to make sure it is set
4303 * if we have the buffer dirty. Otherwise the
4304 * code to free a buffer can end up dropping a dirty
4305 * page
4306 *
4307 * Once the ref bit is set, it won't go away while the
4308 * buffer is dirty or in writeback, and it also won't
4309 * go away while we have the reference count on the
4310 * eb bumped.
4311 *
4312 * We can't just set the ref bit without bumping the
4313 * ref on the eb because free_extent_buffer might
4314 * see the ref bit and try to clear it. If this happens
4315 * free_extent_buffer might end up dropping our original
4316 * ref by mistake and freeing the page before we are able
4317 * to add one more ref.
4318 *
4319 * So bump the ref count first, then set the bit. If someone
4320 * beat us to it, drop the ref we added.
4321 */
Chris Mason242e18c2013-01-29 17:49:37 -05004322 refs = atomic_read(&eb->refs);
4323 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4324 return;
4325
Josef Bacik594831c2012-07-20 16:11:08 -04004326 spin_lock(&eb->refs_lock);
4327 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004328 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004329 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004330}
4331
Josef Bacik5df42352012-03-15 18:24:42 -04004332static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4333{
4334 unsigned long num_pages, i;
4335
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004336 check_buffer_tree_ref(eb);
4337
Josef Bacik5df42352012-03-15 18:24:42 -04004338 num_pages = num_extent_pages(eb->start, eb->len);
4339 for (i = 0; i < num_pages; i++) {
4340 struct page *p = extent_buffer_page(eb, i);
4341 mark_page_accessed(p);
4342 }
4343}
4344
Chris Masond1310b22008-01-24 16:13:08 -05004345struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004346 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004347{
4348 unsigned long num_pages = num_extent_pages(start, len);
4349 unsigned long i;
4350 unsigned long index = start >> PAGE_CACHE_SHIFT;
4351 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004352 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004353 struct page *p;
4354 struct address_space *mapping = tree->mapping;
4355 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004356 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004357
Miao Xie19fe0a82010-10-26 20:57:29 -04004358 rcu_read_lock();
4359 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4360 if (eb && atomic_inc_not_zero(&eb->refs)) {
4361 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004362 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004363 return eb;
4364 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004365 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004366
David Sterbaba144192011-04-21 01:12:06 +02004367 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004368 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004369 return NULL;
4370
Chris Mason727011e2010-08-06 13:21:20 -04004371 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004372 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004373 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004374 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004375
4376 spin_lock(&mapping->private_lock);
4377 if (PagePrivate(p)) {
4378 /*
4379 * We could have already allocated an eb for this page
4380 * and attached one so lets see if we can get a ref on
4381 * the existing eb, and if we can we know it's good and
4382 * we can just return that one, else we know we can just
4383 * overwrite page->private.
4384 */
4385 exists = (struct extent_buffer *)p->private;
4386 if (atomic_inc_not_zero(&exists->refs)) {
4387 spin_unlock(&mapping->private_lock);
4388 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004389 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004390 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004391 goto free_eb;
4392 }
4393
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004394 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004395 * Do this so attach doesn't complain and we need to
4396 * drop the ref the old guy had.
4397 */
4398 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004399 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004400 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004401 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004402 attach_extent_buffer_page(eb, p);
4403 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004404 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004405 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004406 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004407 if (!PageUptodate(p))
4408 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004409
4410 /*
4411 * see below about how we avoid a nasty race with release page
4412 * and why we unlock later
4413 */
Chris Masond1310b22008-01-24 16:13:08 -05004414 }
4415 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004416 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004417again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004418 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4419 if (ret)
4420 goto free_eb;
4421
Chris Mason6af118ce2008-07-22 11:18:07 -04004422 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004423 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4424 if (ret == -EEXIST) {
4425 exists = radix_tree_lookup(&tree->buffer,
4426 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004427 if (!atomic_inc_not_zero(&exists->refs)) {
4428 spin_unlock(&tree->buffer_lock);
4429 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004430 exists = NULL;
4431 goto again;
4432 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004433 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004434 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004435 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004436 goto free_eb;
4437 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004438 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004439 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004440 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004441 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004442
4443 /*
4444 * there is a race where release page may have
4445 * tried to find this extent buffer in the radix
4446 * but failed. It will tell the VM it is safe to
4447 * reclaim the, and it will clear the page private bit.
4448 * We must make sure to set the page private bit properly
4449 * after the extent buffer is in the radix tree so
4450 * it doesn't get lost
4451 */
Chris Mason727011e2010-08-06 13:21:20 -04004452 SetPageChecked(eb->pages[0]);
4453 for (i = 1; i < num_pages; i++) {
4454 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004455 ClearPageChecked(p);
4456 unlock_page(p);
4457 }
4458 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004459 return eb;
4460
Chris Mason6af118ce2008-07-22 11:18:07 -04004461free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004462 for (i = 0; i < num_pages; i++) {
4463 if (eb->pages[i])
4464 unlock_page(eb->pages[i]);
4465 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004466
Josef Bacik17de39a2012-05-04 15:16:06 -04004467 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e92010-10-26 20:57:29 -04004468 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004469 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004470}
Chris Masond1310b22008-01-24 16:13:08 -05004471
4472struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004473 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004474{
Chris Masond1310b22008-01-24 16:13:08 -05004475 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004476
Miao Xie19fe0a82010-10-26 20:57:29 -04004477 rcu_read_lock();
4478 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4479 if (eb && atomic_inc_not_zero(&eb->refs)) {
4480 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004481 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004482 return eb;
4483 }
4484 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004485
Miao Xie19fe0a82010-10-26 20:57:29 -04004486 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004487}
Chris Masond1310b22008-01-24 16:13:08 -05004488
Josef Bacik3083ee22012-03-09 16:01:49 -05004489static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4490{
4491 struct extent_buffer *eb =
4492 container_of(head, struct extent_buffer, rcu_head);
4493
4494 __free_extent_buffer(eb);
4495}
4496
Josef Bacik3083ee22012-03-09 16:01:49 -05004497/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004498static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004499{
4500 WARN_ON(atomic_read(&eb->refs) == 0);
4501 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004502 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4503 spin_unlock(&eb->refs_lock);
4504 } else {
4505 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004506
Jan Schmidt815a51c2012-05-16 17:00:02 +02004507 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004508
Jan Schmidt815a51c2012-05-16 17:00:02 +02004509 spin_lock(&tree->buffer_lock);
4510 radix_tree_delete(&tree->buffer,
4511 eb->start >> PAGE_CACHE_SHIFT);
4512 spin_unlock(&tree->buffer_lock);
4513 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004514
4515 /* Should be safe to release our pages at this point */
4516 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004517 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004518 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004519 }
4520 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004521
4522 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004523}
4524
Chris Masond1310b22008-01-24 16:13:08 -05004525void free_extent_buffer(struct extent_buffer *eb)
4526{
Chris Mason242e18c2013-01-29 17:49:37 -05004527 int refs;
4528 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004529 if (!eb)
4530 return;
4531
Chris Mason242e18c2013-01-29 17:49:37 -05004532 while (1) {
4533 refs = atomic_read(&eb->refs);
4534 if (refs <= 3)
4535 break;
4536 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4537 if (old == refs)
4538 return;
4539 }
4540
Josef Bacik3083ee22012-03-09 16:01:49 -05004541 spin_lock(&eb->refs_lock);
4542 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004543 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4544 atomic_dec(&eb->refs);
4545
4546 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004547 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004548 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004549 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4550 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004551
Josef Bacik3083ee22012-03-09 16:01:49 -05004552 /*
4553 * I know this is terrible, but it's temporary until we stop tracking
4554 * the uptodate bits and such for the extent buffers.
4555 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004556 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004557}
Chris Masond1310b22008-01-24 16:13:08 -05004558
Josef Bacik3083ee22012-03-09 16:01:49 -05004559void free_extent_buffer_stale(struct extent_buffer *eb)
4560{
4561 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004562 return;
4563
Josef Bacik3083ee22012-03-09 16:01:49 -05004564 spin_lock(&eb->refs_lock);
4565 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4566
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004567 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004568 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4569 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004570 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004571}
4572
Chris Mason1d4284b2012-03-28 20:31:37 -04004573void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004574{
Chris Masond1310b22008-01-24 16:13:08 -05004575 unsigned long i;
4576 unsigned long num_pages;
4577 struct page *page;
4578
Chris Masond1310b22008-01-24 16:13:08 -05004579 num_pages = num_extent_pages(eb->start, eb->len);
4580
4581 for (i = 0; i < num_pages; i++) {
4582 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004583 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004584 continue;
4585
Chris Masona61e6f22008-07-22 11:18:08 -04004586 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004587 WARN_ON(!PagePrivate(page));
4588
Chris Masond1310b22008-01-24 16:13:08 -05004589 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004590 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004591 if (!PageDirty(page)) {
4592 radix_tree_tag_clear(&page->mapping->page_tree,
4593 page_index(page),
4594 PAGECACHE_TAG_DIRTY);
4595 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004596 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004597 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004598 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004599 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004600 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004601}
Chris Masond1310b22008-01-24 16:13:08 -05004602
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004603int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004604{
4605 unsigned long i;
4606 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004607 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004608
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004609 check_buffer_tree_ref(eb);
4610
Chris Masonb9473432009-03-13 11:00:37 -04004611 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004612
Chris Masond1310b22008-01-24 16:13:08 -05004613 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004614 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004615 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4616
Chris Masonb9473432009-03-13 11:00:37 -04004617 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004618 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004619 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004620}
Chris Masond1310b22008-01-24 16:13:08 -05004621
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004622int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004623{
4624 unsigned long i;
4625 struct page *page;
4626 unsigned long num_pages;
4627
Chris Masonb4ce94d2009-02-04 09:25:08 -05004628 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004629 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004630 for (i = 0; i < num_pages; i++) {
4631 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004632 if (page)
4633 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004634 }
4635 return 0;
4636}
4637
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004638int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004639{
4640 unsigned long i;
4641 struct page *page;
4642 unsigned long num_pages;
4643
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004644 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004645 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004646 for (i = 0; i < num_pages; i++) {
4647 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004648 SetPageUptodate(page);
4649 }
4650 return 0;
4651}
Chris Masond1310b22008-01-24 16:13:08 -05004652
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004653int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004654{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004655 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004656}
Chris Masond1310b22008-01-24 16:13:08 -05004657
4658int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004659 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004660 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004661{
4662 unsigned long i;
4663 unsigned long start_i;
4664 struct page *page;
4665 int err;
4666 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004667 int locked_pages = 0;
4668 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004669 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004670 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004671 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004672 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004673
Chris Masonb4ce94d2009-02-04 09:25:08 -05004674 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004675 return 0;
4676
Chris Masond1310b22008-01-24 16:13:08 -05004677 if (start) {
4678 WARN_ON(start < eb->start);
4679 start_i = (start >> PAGE_CACHE_SHIFT) -
4680 (eb->start >> PAGE_CACHE_SHIFT);
4681 } else {
4682 start_i = 0;
4683 }
4684
4685 num_pages = num_extent_pages(eb->start, eb->len);
4686 for (i = start_i; i < num_pages; i++) {
4687 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004688 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004689 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004690 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004691 } else {
4692 lock_page(page);
4693 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004694 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004695 if (!PageUptodate(page)) {
4696 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004697 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004698 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004699 }
4700 if (all_uptodate) {
4701 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004702 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004703 goto unlock_exit;
4704 }
4705
Josef Bacikea466792012-03-26 21:57:36 -04004706 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004707 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004708 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004709 for (i = start_i; i < num_pages; i++) {
4710 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004711 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004712 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004713 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004714 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004715 mirror_num, &bio_flags,
4716 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004717 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004718 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004719 } else {
4720 unlock_page(page);
4721 }
4722 }
4723
Jeff Mahoney355808c2011-10-03 23:23:14 -04004724 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004725 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4726 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004727 if (err)
4728 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004729 }
Chris Masona86c12c2008-02-07 10:50:54 -05004730
Arne Jansenbb82ab82011-06-10 14:06:53 +02004731 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004732 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004733
Chris Masond1310b22008-01-24 16:13:08 -05004734 for (i = start_i; i < num_pages; i++) {
4735 page = extent_buffer_page(eb, i);
4736 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004737 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004738 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004739 }
Chris Masond3977122009-01-05 21:25:51 -05004740
Chris Masond1310b22008-01-24 16:13:08 -05004741 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004742
4743unlock_exit:
4744 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004745 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004746 page = extent_buffer_page(eb, i);
4747 i++;
4748 unlock_page(page);
4749 locked_pages--;
4750 }
4751 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004752}
Chris Masond1310b22008-01-24 16:13:08 -05004753
4754void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4755 unsigned long start,
4756 unsigned long len)
4757{
4758 size_t cur;
4759 size_t offset;
4760 struct page *page;
4761 char *kaddr;
4762 char *dst = (char *)dstv;
4763 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4764 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004765
4766 WARN_ON(start > eb->len);
4767 WARN_ON(start + len > eb->start + eb->len);
4768
4769 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4770
Chris Masond3977122009-01-05 21:25:51 -05004771 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004772 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004773
4774 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004775 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004776 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004777
4778 dst += cur;
4779 len -= cur;
4780 offset = 0;
4781 i++;
4782 }
4783}
Chris Masond1310b22008-01-24 16:13:08 -05004784
4785int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004786 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004787 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004788 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004789{
4790 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4791 char *kaddr;
4792 struct page *p;
4793 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4794 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4795 unsigned long end_i = (start_offset + start + min_len - 1) >>
4796 PAGE_CACHE_SHIFT;
4797
4798 if (i != end_i)
4799 return -EINVAL;
4800
4801 if (i == 0) {
4802 offset = start_offset;
4803 *map_start = 0;
4804 } else {
4805 offset = 0;
4806 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4807 }
Chris Masond3977122009-01-05 21:25:51 -05004808
Chris Masond1310b22008-01-24 16:13:08 -05004809 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004810 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Chris Masond3977122009-01-05 21:25:51 -05004811 "wanted %lu %lu\n", (unsigned long long)eb->start,
4812 eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004813 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004814 }
4815
4816 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004817 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004818 *map = kaddr + offset;
4819 *map_len = PAGE_CACHE_SIZE - offset;
4820 return 0;
4821}
Chris Masond1310b22008-01-24 16:13:08 -05004822
Chris Masond1310b22008-01-24 16:13:08 -05004823int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4824 unsigned long start,
4825 unsigned long len)
4826{
4827 size_t cur;
4828 size_t offset;
4829 struct page *page;
4830 char *kaddr;
4831 char *ptr = (char *)ptrv;
4832 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4833 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4834 int ret = 0;
4835
4836 WARN_ON(start > eb->len);
4837 WARN_ON(start + len > eb->start + eb->len);
4838
4839 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4840
Chris Masond3977122009-01-05 21:25:51 -05004841 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004842 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004843
4844 cur = min(len, (PAGE_CACHE_SIZE - offset));
4845
Chris Masona6591712011-07-19 12:04:14 -04004846 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004847 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004848 if (ret)
4849 break;
4850
4851 ptr += cur;
4852 len -= cur;
4853 offset = 0;
4854 i++;
4855 }
4856 return ret;
4857}
Chris Masond1310b22008-01-24 16:13:08 -05004858
4859void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4860 unsigned long start, unsigned long len)
4861{
4862 size_t cur;
4863 size_t offset;
4864 struct page *page;
4865 char *kaddr;
4866 char *src = (char *)srcv;
4867 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4868 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4869
4870 WARN_ON(start > eb->len);
4871 WARN_ON(start + len > eb->start + eb->len);
4872
4873 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4874
Chris Masond3977122009-01-05 21:25:51 -05004875 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004876 page = extent_buffer_page(eb, i);
4877 WARN_ON(!PageUptodate(page));
4878
4879 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004880 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004881 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004882
4883 src += cur;
4884 len -= cur;
4885 offset = 0;
4886 i++;
4887 }
4888}
Chris Masond1310b22008-01-24 16:13:08 -05004889
4890void memset_extent_buffer(struct extent_buffer *eb, char c,
4891 unsigned long start, unsigned long len)
4892{
4893 size_t cur;
4894 size_t offset;
4895 struct page *page;
4896 char *kaddr;
4897 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4898 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4899
4900 WARN_ON(start > eb->len);
4901 WARN_ON(start + len > eb->start + eb->len);
4902
4903 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4904
Chris Masond3977122009-01-05 21:25:51 -05004905 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004906 page = extent_buffer_page(eb, i);
4907 WARN_ON(!PageUptodate(page));
4908
4909 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004910 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004911 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004912
4913 len -= cur;
4914 offset = 0;
4915 i++;
4916 }
4917}
Chris Masond1310b22008-01-24 16:13:08 -05004918
4919void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
4920 unsigned long dst_offset, unsigned long src_offset,
4921 unsigned long len)
4922{
4923 u64 dst_len = dst->len;
4924 size_t cur;
4925 size_t offset;
4926 struct page *page;
4927 char *kaddr;
4928 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4929 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4930
4931 WARN_ON(src->len != dst_len);
4932
4933 offset = (start_offset + dst_offset) &
4934 ((unsigned long)PAGE_CACHE_SIZE - 1);
4935
Chris Masond3977122009-01-05 21:25:51 -05004936 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004937 page = extent_buffer_page(dst, i);
4938 WARN_ON(!PageUptodate(page));
4939
4940 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
4941
Chris Masona6591712011-07-19 12:04:14 -04004942 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004943 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004944
4945 src_offset += cur;
4946 len -= cur;
4947 offset = 0;
4948 i++;
4949 }
4950}
Chris Masond1310b22008-01-24 16:13:08 -05004951
4952static void move_pages(struct page *dst_page, struct page *src_page,
4953 unsigned long dst_off, unsigned long src_off,
4954 unsigned long len)
4955{
Chris Masona6591712011-07-19 12:04:14 -04004956 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004957 if (dst_page == src_page) {
4958 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
4959 } else {
Chris Masona6591712011-07-19 12:04:14 -04004960 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05004961 char *p = dst_kaddr + dst_off + len;
4962 char *s = src_kaddr + src_off + len;
4963
4964 while (len--)
4965 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05004966 }
Chris Masond1310b22008-01-24 16:13:08 -05004967}
4968
Sergei Trofimovich33872062011-04-11 21:52:52 +00004969static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
4970{
4971 unsigned long distance = (src > dst) ? src - dst : dst - src;
4972 return distance < len;
4973}
4974
Chris Masond1310b22008-01-24 16:13:08 -05004975static void copy_pages(struct page *dst_page, struct page *src_page,
4976 unsigned long dst_off, unsigned long src_off,
4977 unsigned long len)
4978{
Chris Masona6591712011-07-19 12:04:14 -04004979 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004980 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004981 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004982
Sergei Trofimovich33872062011-04-11 21:52:52 +00004983 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04004984 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00004985 } else {
Chris Masond1310b22008-01-24 16:13:08 -05004986 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004987 if (areas_overlap(src_off, dst_off, len))
4988 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00004989 }
Chris Masond1310b22008-01-24 16:13:08 -05004990
Chris Mason727011e2010-08-06 13:21:20 -04004991 if (must_memmove)
4992 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
4993 else
4994 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05004995}
4996
4997void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4998 unsigned long src_offset, unsigned long len)
4999{
5000 size_t cur;
5001 size_t dst_off_in_page;
5002 size_t src_off_in_page;
5003 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5004 unsigned long dst_i;
5005 unsigned long src_i;
5006
5007 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005008 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5009 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005010 BUG_ON(1);
5011 }
5012 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005013 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5014 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005015 BUG_ON(1);
5016 }
5017
Chris Masond3977122009-01-05 21:25:51 -05005018 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005019 dst_off_in_page = (start_offset + dst_offset) &
5020 ((unsigned long)PAGE_CACHE_SIZE - 1);
5021 src_off_in_page = (start_offset + src_offset) &
5022 ((unsigned long)PAGE_CACHE_SIZE - 1);
5023
5024 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5025 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5026
5027 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5028 src_off_in_page));
5029 cur = min_t(unsigned long, cur,
5030 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5031
5032 copy_pages(extent_buffer_page(dst, dst_i),
5033 extent_buffer_page(dst, src_i),
5034 dst_off_in_page, src_off_in_page, cur);
5035
5036 src_offset += cur;
5037 dst_offset += cur;
5038 len -= cur;
5039 }
5040}
Chris Masond1310b22008-01-24 16:13:08 -05005041
5042void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5043 unsigned long src_offset, unsigned long len)
5044{
5045 size_t cur;
5046 size_t dst_off_in_page;
5047 size_t src_off_in_page;
5048 unsigned long dst_end = dst_offset + len - 1;
5049 unsigned long src_end = src_offset + len - 1;
5050 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5051 unsigned long dst_i;
5052 unsigned long src_i;
5053
5054 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005055 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5056 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005057 BUG_ON(1);
5058 }
5059 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005060 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5061 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005062 BUG_ON(1);
5063 }
Chris Mason727011e2010-08-06 13:21:20 -04005064 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005065 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5066 return;
5067 }
Chris Masond3977122009-01-05 21:25:51 -05005068 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005069 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5070 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5071
5072 dst_off_in_page = (start_offset + dst_end) &
5073 ((unsigned long)PAGE_CACHE_SIZE - 1);
5074 src_off_in_page = (start_offset + src_end) &
5075 ((unsigned long)PAGE_CACHE_SIZE - 1);
5076
5077 cur = min_t(unsigned long, len, src_off_in_page + 1);
5078 cur = min(cur, dst_off_in_page + 1);
5079 move_pages(extent_buffer_page(dst, dst_i),
5080 extent_buffer_page(dst, src_i),
5081 dst_off_in_page - cur + 1,
5082 src_off_in_page - cur + 1, cur);
5083
5084 dst_end -= cur;
5085 src_end -= cur;
5086 len -= cur;
5087 }
5088}
Chris Mason6af118ce2008-07-22 11:18:07 -04005089
David Sterbaf7a52a42013-04-26 14:56:29 +00005090int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005091{
Chris Mason6af118ce2008-07-22 11:18:07 -04005092 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04005093
Miao Xie19fe0a82010-10-26 20:57:29 -04005094 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005095 * We need to make sure noboody is attaching this page to an eb right
5096 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005097 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005098 spin_lock(&page->mapping->private_lock);
5099 if (!PagePrivate(page)) {
5100 spin_unlock(&page->mapping->private_lock);
5101 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005102 }
5103
Josef Bacik3083ee22012-03-09 16:01:49 -05005104 eb = (struct extent_buffer *)page->private;
5105 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005106
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005107 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005108 * This is a little awful but should be ok, we need to make sure that
5109 * the eb doesn't disappear out from under us while we're looking at
5110 * this page.
5111 */
5112 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005113 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005114 spin_unlock(&eb->refs_lock);
5115 spin_unlock(&page->mapping->private_lock);
5116 return 0;
5117 }
5118 spin_unlock(&page->mapping->private_lock);
5119
Josef Bacik3083ee22012-03-09 16:01:49 -05005120 /*
5121 * If tree ref isn't set then we know the ref on this eb is a real ref,
5122 * so just return, this page will likely be freed soon anyway.
5123 */
5124 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5125 spin_unlock(&eb->refs_lock);
5126 return 0;
5127 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005128
David Sterbaf7a52a42013-04-26 14:56:29 +00005129 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005130}