blob: 2bf6f46fae447416cd1546b8a25e5599f8ce81f3 [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"
Liu Bofe09e162013-09-22 12:54:23 +080023#include "backref.h"
Chris Masond1310b22008-01-24 16:13:08 -050024
Chris Masond1310b22008-01-24 16:13:08 -050025static struct kmem_cache *extent_state_cache;
26static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040027static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050028
Eric Sandeen6d49ba12013-04-22 16:12:31 +000029#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050030static LIST_HEAD(buffers);
31static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040032
Chris Masond3977122009-01-05 21:25:51 -050033static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000034
35static inline
36void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
37{
38 unsigned long flags;
39
40 spin_lock_irqsave(&leak_lock, flags);
41 list_add(new, head);
42 spin_unlock_irqrestore(&leak_lock, flags);
43}
44
45static inline
46void btrfs_leak_debug_del(struct list_head *entry)
47{
48 unsigned long flags;
49
50 spin_lock_irqsave(&leak_lock, flags);
51 list_del(entry);
52 spin_unlock_irqrestore(&leak_lock, flags);
53}
54
55static inline
56void btrfs_leak_debug_check(void)
57{
58 struct extent_state *state;
59 struct extent_buffer *eb;
60
61 while (!list_empty(&states)) {
62 state = list_entry(states.next, struct extent_state, leak_list);
63 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
64 "state %lu in tree %p refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020065 state->start, state->end, state->state, state->tree,
66 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000067 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 "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020074 "refs %d\n",
75 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000076 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",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020091 caller, btrfs_ino(inode), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000092 }
93}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000094#else
95#define btrfs_leak_debug_add(new, head) do {} while (0)
96#define btrfs_leak_debug_del(entry) do {} while (0)
97#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +000098#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -040099#endif
Chris Masond1310b22008-01-24 16:13:08 -0500100
Chris Masond1310b22008-01-24 16:13:08 -0500101#define BUFFER_LRU_MAX 64
102
103struct tree_entry {
104 u64 start;
105 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500106 struct rb_node rb_node;
107};
108
109struct extent_page_data {
110 struct bio *bio;
111 struct extent_io_tree *tree;
112 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400113 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500114
115 /* tells writepage not to lock the state bits for this range
116 * it still does the unlocking
117 */
Chris Masonffbd5172009-04-20 15:50:09 -0400118 unsigned int extent_locked:1;
119
120 /* tells the submit_bio code to use a WRITE_SYNC */
121 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500122};
123
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400124static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400125static inline struct btrfs_fs_info *
126tree_fs_info(struct extent_io_tree *tree)
127{
128 return btrfs_sb(tree->mapping->host->i_sb);
129}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400130
Chris Masond1310b22008-01-24 16:13:08 -0500131int __init extent_io_init(void)
132{
David Sterba837e1972012-09-07 03:00:48 -0600133 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200134 sizeof(struct extent_state), 0,
135 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500136 if (!extent_state_cache)
137 return -ENOMEM;
138
David Sterba837e1972012-09-07 03:00:48 -0600139 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200140 sizeof(struct extent_buffer), 0,
141 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500142 if (!extent_buffer_cache)
143 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400144
145 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
146 offsetof(struct btrfs_io_bio, bio));
147 if (!btrfs_bioset)
148 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700149
150 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
151 goto free_bioset;
152
Chris Masond1310b22008-01-24 16:13:08 -0500153 return 0;
154
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700155free_bioset:
156 bioset_free(btrfs_bioset);
157 btrfs_bioset = NULL;
158
Chris Mason9be33952013-05-17 18:30:14 -0400159free_buffer_cache:
160 kmem_cache_destroy(extent_buffer_cache);
161 extent_buffer_cache = NULL;
162
Chris Masond1310b22008-01-24 16:13:08 -0500163free_state_cache:
164 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400165 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500166 return -ENOMEM;
167}
168
169void extent_io_exit(void)
170{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000171 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000172
173 /*
174 * Make sure all delayed rcu free are flushed before we
175 * destroy caches.
176 */
177 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500178 if (extent_state_cache)
179 kmem_cache_destroy(extent_state_cache);
180 if (extent_buffer_cache)
181 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400182 if (btrfs_bioset)
183 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500184}
185
186void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200187 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500188{
Eric Paris6bef4d32010-02-23 19:43:04 +0000189 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400190 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500191 tree->ops = NULL;
192 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500193 spin_lock_init(&tree->lock);
Chris Mason6af118c2008-07-22 11:18:07 -0400194 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500195 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500196}
Chris Masond1310b22008-01-24 16:13:08 -0500197
Christoph Hellwigb2950862008-12-02 09:54:17 -0500198static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500199{
200 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500201
202 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400203 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500204 return state;
205 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500206 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500207 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000208 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500209 atomic_set(&state->refs, 1);
210 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100211 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500212 return state;
213}
Chris Masond1310b22008-01-24 16:13:08 -0500214
Chris Mason4845e442010-05-25 20:56:50 -0400215void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500216{
Chris Masond1310b22008-01-24 16:13:08 -0500217 if (!state)
218 return;
219 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500220 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000221 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100222 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500223 kmem_cache_free(extent_state_cache, state);
224 }
225}
Chris Masond1310b22008-01-24 16:13:08 -0500226
227static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
228 struct rb_node *node)
229{
Chris Masond3977122009-01-05 21:25:51 -0500230 struct rb_node **p = &root->rb_node;
231 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500232 struct tree_entry *entry;
233
Chris Masond3977122009-01-05 21:25:51 -0500234 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500235 parent = *p;
236 entry = rb_entry(parent, struct tree_entry, rb_node);
237
238 if (offset < entry->start)
239 p = &(*p)->rb_left;
240 else if (offset > entry->end)
241 p = &(*p)->rb_right;
242 else
243 return parent;
244 }
245
Chris Masond1310b22008-01-24 16:13:08 -0500246 rb_link_node(node, parent, p);
247 rb_insert_color(node, root);
248 return NULL;
249}
250
Chris Mason80ea96b2008-02-01 14:51:59 -0500251static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500252 struct rb_node **prev_ret,
253 struct rb_node **next_ret)
254{
Chris Mason80ea96b2008-02-01 14:51:59 -0500255 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500256 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500257 struct rb_node *prev = NULL;
258 struct rb_node *orig_prev = NULL;
259 struct tree_entry *entry;
260 struct tree_entry *prev_entry = NULL;
261
Chris Masond3977122009-01-05 21:25:51 -0500262 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500263 entry = rb_entry(n, struct tree_entry, rb_node);
264 prev = n;
265 prev_entry = entry;
266
267 if (offset < entry->start)
268 n = n->rb_left;
269 else if (offset > entry->end)
270 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500271 else
Chris Masond1310b22008-01-24 16:13:08 -0500272 return n;
273 }
274
275 if (prev_ret) {
276 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500277 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500278 prev = rb_next(prev);
279 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
280 }
281 *prev_ret = prev;
282 prev = orig_prev;
283 }
284
285 if (next_ret) {
286 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500287 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500288 prev = rb_prev(prev);
289 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
290 }
291 *next_ret = prev;
292 }
293 return NULL;
294}
295
Chris Mason80ea96b2008-02-01 14:51:59 -0500296static inline struct rb_node *tree_search(struct extent_io_tree *tree,
297 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500298{
Chris Mason70dec802008-01-29 09:59:12 -0500299 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500300 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500301
Chris Mason80ea96b2008-02-01 14:51:59 -0500302 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500303 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500304 return prev;
305 return ret;
306}
307
Josef Bacik9ed74f22009-09-11 16:12:44 -0400308static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
309 struct extent_state *other)
310{
311 if (tree->ops && tree->ops->merge_extent_hook)
312 tree->ops->merge_extent_hook(tree->mapping->host, new,
313 other);
314}
315
Chris Masond1310b22008-01-24 16:13:08 -0500316/*
317 * utility function to look for merge candidates inside a given range.
318 * Any extents with matching state are merged together into a single
319 * extent in the tree. Extents with EXTENT_IO in their state field
320 * are not merged because the end_io handlers need to be able to do
321 * operations on them without sleeping (or doing allocations/splits).
322 *
323 * This should be called with the tree lock held.
324 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000325static void merge_state(struct extent_io_tree *tree,
326 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500327{
328 struct extent_state *other;
329 struct rb_node *other_node;
330
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400331 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000332 return;
Chris Masond1310b22008-01-24 16:13:08 -0500333
334 other_node = rb_prev(&state->rb_node);
335 if (other_node) {
336 other = rb_entry(other_node, struct extent_state, rb_node);
337 if (other->end == state->start - 1 &&
338 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400339 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500340 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500341 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500342 rb_erase(&other->rb_node, &tree->state);
343 free_extent_state(other);
344 }
345 }
346 other_node = rb_next(&state->rb_node);
347 if (other_node) {
348 other = rb_entry(other_node, struct extent_state, rb_node);
349 if (other->start == state->end + 1 &&
350 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400351 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400352 state->end = other->end;
353 other->tree = NULL;
354 rb_erase(&other->rb_node, &tree->state);
355 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500356 }
357 }
Chris Masond1310b22008-01-24 16:13:08 -0500358}
359
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000360static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000361 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500362{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000363 if (tree->ops && tree->ops->set_bit_hook)
364 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500365}
366
367static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000368 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500369{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400370 if (tree->ops && tree->ops->clear_bit_hook)
371 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500372}
373
Xiao Guangrong3150b692011-07-14 03:19:08 +0000374static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000375 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000376
Chris Masond1310b22008-01-24 16:13:08 -0500377/*
378 * insert an extent_state struct into the tree. 'bits' are set on the
379 * struct before it is inserted.
380 *
381 * This may return -EEXIST if the extent is already there, in which case the
382 * state struct is freed.
383 *
384 * The tree lock is not taken internally. This is a utility function and
385 * probably isn't what you want to call (see set/clear_extent_bit).
386 */
387static int insert_state(struct extent_io_tree *tree,
388 struct extent_state *state, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000389 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500390{
391 struct rb_node *node;
392
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000393 if (end < start)
394 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200395 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500396 state->start = start;
397 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400398
Xiao Guangrong3150b692011-07-14 03:19:08 +0000399 set_state_bits(tree, state, bits);
400
Chris Masond1310b22008-01-24 16:13:08 -0500401 node = tree_insert(&tree->state, end, &state->rb_node);
402 if (node) {
403 struct extent_state *found;
404 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500405 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200406 "%llu %llu\n",
407 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500408 return -EEXIST;
409 }
Chris Mason70dec802008-01-29 09:59:12 -0500410 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500411 merge_state(tree, state);
412 return 0;
413}
414
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000415static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400416 u64 split)
417{
418 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000419 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400420}
421
Chris Masond1310b22008-01-24 16:13:08 -0500422/*
423 * split a given extent state struct in two, inserting the preallocated
424 * struct 'prealloc' as the newly created second half. 'split' indicates an
425 * offset inside 'orig' where it should be split.
426 *
427 * Before calling,
428 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
429 * are two extent state structs in the tree:
430 * prealloc: [orig->start, split - 1]
431 * orig: [ split, orig->end ]
432 *
433 * The tree locks are not taken by this function. They need to be held
434 * by the caller.
435 */
436static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
437 struct extent_state *prealloc, u64 split)
438{
439 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400440
441 split_cb(tree, orig, split);
442
Chris Masond1310b22008-01-24 16:13:08 -0500443 prealloc->start = orig->start;
444 prealloc->end = split - 1;
445 prealloc->state = orig->state;
446 orig->start = split;
447
448 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
449 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500450 free_extent_state(prealloc);
451 return -EEXIST;
452 }
Chris Mason70dec802008-01-29 09:59:12 -0500453 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500454 return 0;
455}
456
Li Zefancdc6a392012-03-12 16:39:48 +0800457static struct extent_state *next_state(struct extent_state *state)
458{
459 struct rb_node *next = rb_next(&state->rb_node);
460 if (next)
461 return rb_entry(next, struct extent_state, rb_node);
462 else
463 return NULL;
464}
465
Chris Masond1310b22008-01-24 16:13:08 -0500466/*
467 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800468 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500469 *
470 * If no bits are set on the state struct after clearing things, the
471 * struct is freed and removed from the tree
472 */
Li Zefancdc6a392012-03-12 16:39:48 +0800473static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
474 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000475 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500476{
Li Zefancdc6a392012-03-12 16:39:48 +0800477 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000478 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500479
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400480 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500481 u64 range = state->end - state->start + 1;
482 WARN_ON(range > tree->dirty_bytes);
483 tree->dirty_bytes -= range;
484 }
Chris Mason291d6732008-01-29 15:55:23 -0500485 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400486 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500487 if (wake)
488 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400489 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800490 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500491 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500492 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500493 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500494 free_extent_state(state);
495 } else {
496 WARN_ON(1);
497 }
498 } else {
499 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800500 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500501 }
Li Zefancdc6a392012-03-12 16:39:48 +0800502 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500503}
504
Xiao Guangrong82337672011-04-20 06:44:57 +0000505static struct extent_state *
506alloc_extent_state_atomic(struct extent_state *prealloc)
507{
508 if (!prealloc)
509 prealloc = alloc_extent_state(GFP_ATOMIC);
510
511 return prealloc;
512}
513
Eric Sandeen48a3b632013-04-25 20:41:01 +0000514static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400515{
516 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
517 "Extent tree was modified by another "
518 "thread while locked.");
519}
520
Chris Masond1310b22008-01-24 16:13:08 -0500521/*
522 * clear some bits on a range in the tree. This may require splitting
523 * or inserting elements in the tree, so the gfp mask is used to
524 * indicate which allocations or sleeping are allowed.
525 *
526 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
527 * the given range from the tree regardless of state (ie for truncate).
528 *
529 * the range [start, end] is inclusive.
530 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100531 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500532 */
533int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000534 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400535 struct extent_state **cached_state,
536 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500537{
538 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400539 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500540 struct extent_state *prealloc = NULL;
541 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400542 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500543 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000544 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500545
David Sterba8d599ae2013-04-30 15:22:23 +0000546 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
547
Josef Bacik7ee9e442013-06-21 16:37:03 -0400548 if (bits & EXTENT_DELALLOC)
549 bits |= EXTENT_NORESERVE;
550
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400551 if (delete)
552 bits |= ~EXTENT_CTLBITS;
553 bits |= EXTENT_FIRST_DELALLOC;
554
Josef Bacik2ac55d42010-02-03 19:33:23 +0000555 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
556 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500557again:
558 if (!prealloc && (mask & __GFP_WAIT)) {
559 prealloc = alloc_extent_state(mask);
560 if (!prealloc)
561 return -ENOMEM;
562 }
563
Chris Masoncad321a2008-12-17 14:51:42 -0500564 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400565 if (cached_state) {
566 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000567
568 if (clear) {
569 *cached_state = NULL;
570 cached_state = NULL;
571 }
572
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400573 if (cached && cached->tree && cached->start <= start &&
574 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000575 if (clear)
576 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400577 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400578 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400579 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000580 if (clear)
581 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400582 }
Chris Masond1310b22008-01-24 16:13:08 -0500583 /*
584 * this search will find the extents that end after
585 * our range starts
586 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500587 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500588 if (!node)
589 goto out;
590 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400591hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500592 if (state->start > end)
593 goto out;
594 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400595 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500596
Liu Bo04493142012-02-16 18:34:37 +0800597 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800598 if (!(state->state & bits)) {
599 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800600 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800601 }
Liu Bo04493142012-02-16 18:34:37 +0800602
Chris Masond1310b22008-01-24 16:13:08 -0500603 /*
604 * | ---- desired range ---- |
605 * | state | or
606 * | ------------- state -------------- |
607 *
608 * We need to split the extent we found, and may flip
609 * bits on second half.
610 *
611 * If the extent we found extends past our range, we
612 * just split and search again. It'll get split again
613 * the next time though.
614 *
615 * If the extent we found is inside our range, we clear
616 * the desired bit on it.
617 */
618
619 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000620 prealloc = alloc_extent_state_atomic(prealloc);
621 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500622 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400623 if (err)
624 extent_io_tree_panic(tree, err);
625
Chris Masond1310b22008-01-24 16:13:08 -0500626 prealloc = NULL;
627 if (err)
628 goto out;
629 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800630 state = clear_state_bit(tree, state, &bits, wake);
631 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500632 }
633 goto search_again;
634 }
635 /*
636 * | ---- desired range ---- |
637 * | state |
638 * We need to split the extent, and clear the bit
639 * on the first half
640 */
641 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000642 prealloc = alloc_extent_state_atomic(prealloc);
643 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500644 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400645 if (err)
646 extent_io_tree_panic(tree, err);
647
Chris Masond1310b22008-01-24 16:13:08 -0500648 if (wake)
649 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400650
Jeff Mahoney6763af82012-03-01 14:56:29 +0100651 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400652
Chris Masond1310b22008-01-24 16:13:08 -0500653 prealloc = NULL;
654 goto out;
655 }
Chris Mason42daec22009-09-23 19:51:09 -0400656
Li Zefancdc6a392012-03-12 16:39:48 +0800657 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800658next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400659 if (last_end == (u64)-1)
660 goto out;
661 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800662 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800663 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500664 goto search_again;
665
666out:
Chris Masoncad321a2008-12-17 14:51:42 -0500667 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500668 if (prealloc)
669 free_extent_state(prealloc);
670
Jeff Mahoney6763af82012-03-01 14:56:29 +0100671 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500672
673search_again:
674 if (start > end)
675 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500676 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500677 if (mask & __GFP_WAIT)
678 cond_resched();
679 goto again;
680}
Chris Masond1310b22008-01-24 16:13:08 -0500681
Jeff Mahoney143bede2012-03-01 14:56:26 +0100682static void wait_on_state(struct extent_io_tree *tree,
683 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500684 __releases(tree->lock)
685 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500686{
687 DEFINE_WAIT(wait);
688 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500689 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500690 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500691 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500692 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500693}
694
695/*
696 * waits for one or more bits to clear on a range in the state tree.
697 * The range [start, end] is inclusive.
698 * The tree lock is taken by this function
699 */
David Sterba41074882013-04-29 13:38:46 +0000700static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
701 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500702{
703 struct extent_state *state;
704 struct rb_node *node;
705
David Sterba8d599ae2013-04-30 15:22:23 +0000706 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
707
Chris Masoncad321a2008-12-17 14:51:42 -0500708 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500709again:
710 while (1) {
711 /*
712 * this search will find all the extents that end after
713 * our range starts
714 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500715 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500716 if (!node)
717 break;
718
719 state = rb_entry(node, struct extent_state, rb_node);
720
721 if (state->start > end)
722 goto out;
723
724 if (state->state & bits) {
725 start = state->start;
726 atomic_inc(&state->refs);
727 wait_on_state(tree, state);
728 free_extent_state(state);
729 goto again;
730 }
731 start = state->end + 1;
732
733 if (start > end)
734 break;
735
Xiao Guangrongded91f02011-07-14 03:19:27 +0000736 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500737 }
738out:
Chris Masoncad321a2008-12-17 14:51:42 -0500739 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500740}
Chris Masond1310b22008-01-24 16:13:08 -0500741
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000742static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500743 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000744 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500745{
David Sterba41074882013-04-29 13:38:46 +0000746 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400747
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000748 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400749 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500750 u64 range = state->end - state->start + 1;
751 tree->dirty_bytes += range;
752 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400753 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500754}
755
Chris Mason2c64c532009-09-02 15:04:12 -0400756static void cache_state(struct extent_state *state,
757 struct extent_state **cached_ptr)
758{
759 if (cached_ptr && !(*cached_ptr)) {
760 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
761 *cached_ptr = state;
762 atomic_inc(&state->refs);
763 }
764 }
765}
766
Chris Masond1310b22008-01-24 16:13:08 -0500767/*
Chris Mason1edbb732009-09-02 13:24:36 -0400768 * set some bits on a range in the tree. This may require allocations or
769 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500770 *
Chris Mason1edbb732009-09-02 13:24:36 -0400771 * If any of the exclusive bits are set, this will fail with -EEXIST if some
772 * part of the range already has the desired bits set. The start of the
773 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500774 *
Chris Mason1edbb732009-09-02 13:24:36 -0400775 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500776 */
Chris Mason1edbb732009-09-02 13:24:36 -0400777
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100778static int __must_check
779__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000780 unsigned long bits, unsigned long exclusive_bits,
781 u64 *failed_start, struct extent_state **cached_state,
782 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500783{
784 struct extent_state *state;
785 struct extent_state *prealloc = NULL;
786 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500787 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500788 u64 last_start;
789 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400790
David Sterba8d599ae2013-04-30 15:22:23 +0000791 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
792
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400793 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500794again:
795 if (!prealloc && (mask & __GFP_WAIT)) {
796 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000797 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500798 }
799
Chris Masoncad321a2008-12-17 14:51:42 -0500800 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400801 if (cached_state && *cached_state) {
802 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400803 if (state->start <= start && state->end > start &&
804 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400805 node = &state->rb_node;
806 goto hit_next;
807 }
808 }
Chris Masond1310b22008-01-24 16:13:08 -0500809 /*
810 * this search will find all the extents that end after
811 * our range starts.
812 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500813 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500814 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000815 prealloc = alloc_extent_state_atomic(prealloc);
816 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400817 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400818 if (err)
819 extent_io_tree_panic(tree, err);
820
Chris Masond1310b22008-01-24 16:13:08 -0500821 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500822 goto out;
823 }
Chris Masond1310b22008-01-24 16:13:08 -0500824 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400825hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500826 last_start = state->start;
827 last_end = state->end;
828
829 /*
830 * | ---- desired range ---- |
831 * | state |
832 *
833 * Just lock what we found and keep going
834 */
835 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400836 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500837 *failed_start = state->start;
838 err = -EEXIST;
839 goto out;
840 }
Chris Mason42daec22009-09-23 19:51:09 -0400841
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000842 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400843 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500844 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400845 if (last_end == (u64)-1)
846 goto out;
847 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800848 state = next_state(state);
849 if (start < end && state && state->start == start &&
850 !need_resched())
851 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500852 goto search_again;
853 }
854
855 /*
856 * | ---- desired range ---- |
857 * | state |
858 * or
859 * | ------------- state -------------- |
860 *
861 * We need to split the extent we found, and may flip bits on
862 * second half.
863 *
864 * If the extent we found extends past our
865 * range, we just split and search again. It'll get split
866 * again the next time though.
867 *
868 * If the extent we found is inside our range, we set the
869 * desired bit on it.
870 */
871 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400872 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500873 *failed_start = start;
874 err = -EEXIST;
875 goto out;
876 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000877
878 prealloc = alloc_extent_state_atomic(prealloc);
879 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500880 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400881 if (err)
882 extent_io_tree_panic(tree, err);
883
Chris Masond1310b22008-01-24 16:13:08 -0500884 prealloc = NULL;
885 if (err)
886 goto out;
887 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000888 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400889 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500890 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400891 if (last_end == (u64)-1)
892 goto out;
893 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800894 state = next_state(state);
895 if (start < end && state && state->start == start &&
896 !need_resched())
897 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500898 }
899 goto search_again;
900 }
901 /*
902 * | ---- desired range ---- |
903 * | state | or | state |
904 *
905 * There's a hole, we need to insert something in it and
906 * ignore the extent we found.
907 */
908 if (state->start > start) {
909 u64 this_end;
910 if (end < last_start)
911 this_end = end;
912 else
Chris Masond3977122009-01-05 21:25:51 -0500913 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000914
915 prealloc = alloc_extent_state_atomic(prealloc);
916 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000917
918 /*
919 * Avoid to free 'prealloc' if it can be merged with
920 * the later extent.
921 */
Chris Masond1310b22008-01-24 16:13:08 -0500922 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400923 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400924 if (err)
925 extent_io_tree_panic(tree, err);
926
Chris Mason2c64c532009-09-02 15:04:12 -0400927 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500928 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500929 start = this_end + 1;
930 goto search_again;
931 }
932 /*
933 * | ---- desired range ---- |
934 * | state |
935 * We need to split the extent, and set the bit
936 * on the first half
937 */
938 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400939 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500940 *failed_start = start;
941 err = -EEXIST;
942 goto out;
943 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000944
945 prealloc = alloc_extent_state_atomic(prealloc);
946 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500947 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400948 if (err)
949 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500950
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000951 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400952 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500953 merge_state(tree, prealloc);
954 prealloc = NULL;
955 goto out;
956 }
957
958 goto search_again;
959
960out:
Chris Masoncad321a2008-12-17 14:51:42 -0500961 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500962 if (prealloc)
963 free_extent_state(prealloc);
964
965 return err;
966
967search_again:
968 if (start > end)
969 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500970 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500971 if (mask & __GFP_WAIT)
972 cond_resched();
973 goto again;
974}
Chris Masond1310b22008-01-24 16:13:08 -0500975
David Sterba41074882013-04-29 13:38:46 +0000976int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
977 unsigned long bits, u64 * failed_start,
978 struct extent_state **cached_state, gfp_t mask)
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100979{
980 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
981 cached_state, mask);
982}
983
984
Josef Bacik462d6fa2011-09-26 13:56:12 -0400985/**
Liu Bo10983f22012-07-11 15:26:19 +0800986 * convert_extent_bit - convert all bits in a given range from one bit to
987 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400988 * @tree: the io tree to search
989 * @start: the start offset in bytes
990 * @end: the end offset in bytes (inclusive)
991 * @bits: the bits to set in this range
992 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400993 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400994 * @mask: the allocation mask
995 *
996 * This will go through and set bits for the given range. If any states exist
997 * already in this range they are set with the given bit and cleared of the
998 * clear_bits. This is only meant to be used by things that are mergeable, ie
999 * converting from say DELALLOC to DIRTY. This is not meant to be used with
1000 * boundary bits like LOCK.
1001 */
1002int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001003 unsigned long bits, unsigned long clear_bits,
Josef Bacike6138872012-09-27 17:07:30 -04001004 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -04001005{
1006 struct extent_state *state;
1007 struct extent_state *prealloc = NULL;
1008 struct rb_node *node;
1009 int err = 0;
1010 u64 last_start;
1011 u64 last_end;
1012
David Sterba8d599ae2013-04-30 15:22:23 +00001013 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
1014
Josef Bacik462d6fa2011-09-26 13:56:12 -04001015again:
1016 if (!prealloc && (mask & __GFP_WAIT)) {
1017 prealloc = alloc_extent_state(mask);
1018 if (!prealloc)
1019 return -ENOMEM;
1020 }
1021
1022 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001023 if (cached_state && *cached_state) {
1024 state = *cached_state;
1025 if (state->start <= start && state->end > start &&
1026 state->tree) {
1027 node = &state->rb_node;
1028 goto hit_next;
1029 }
1030 }
1031
Josef Bacik462d6fa2011-09-26 13:56:12 -04001032 /*
1033 * this search will find all the extents that end after
1034 * our range starts.
1035 */
1036 node = tree_search(tree, start);
1037 if (!node) {
1038 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001039 if (!prealloc) {
1040 err = -ENOMEM;
1041 goto out;
1042 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001043 err = insert_state(tree, prealloc, start, end, &bits);
1044 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001045 if (err)
1046 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001047 goto out;
1048 }
1049 state = rb_entry(node, struct extent_state, rb_node);
1050hit_next:
1051 last_start = state->start;
1052 last_end = state->end;
1053
1054 /*
1055 * | ---- desired range ---- |
1056 * | state |
1057 *
1058 * Just lock what we found and keep going
1059 */
1060 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001061 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001062 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001063 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001064 if (last_end == (u64)-1)
1065 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001066 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001067 if (start < end && state && state->start == start &&
1068 !need_resched())
1069 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001070 goto search_again;
1071 }
1072
1073 /*
1074 * | ---- desired range ---- |
1075 * | state |
1076 * or
1077 * | ------------- state -------------- |
1078 *
1079 * We need to split the extent we found, and may flip bits on
1080 * second half.
1081 *
1082 * If the extent we found extends past our
1083 * range, we just split and search again. It'll get split
1084 * again the next time though.
1085 *
1086 * If the extent we found is inside our range, we set the
1087 * desired bit on it.
1088 */
1089 if (state->start < start) {
1090 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001091 if (!prealloc) {
1092 err = -ENOMEM;
1093 goto out;
1094 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001096 if (err)
1097 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001098 prealloc = NULL;
1099 if (err)
1100 goto out;
1101 if (state->end <= end) {
1102 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001103 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001104 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001105 if (last_end == (u64)-1)
1106 goto out;
1107 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001108 if (start < end && state && state->start == start &&
1109 !need_resched())
1110 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001111 }
1112 goto search_again;
1113 }
1114 /*
1115 * | ---- desired range ---- |
1116 * | state | or | state |
1117 *
1118 * There's a hole, we need to insert something in it and
1119 * ignore the extent we found.
1120 */
1121 if (state->start > start) {
1122 u64 this_end;
1123 if (end < last_start)
1124 this_end = end;
1125 else
1126 this_end = last_start - 1;
1127
1128 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001129 if (!prealloc) {
1130 err = -ENOMEM;
1131 goto out;
1132 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001133
1134 /*
1135 * Avoid to free 'prealloc' if it can be merged with
1136 * the later extent.
1137 */
1138 err = insert_state(tree, prealloc, start, this_end,
1139 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001140 if (err)
1141 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001142 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001143 prealloc = NULL;
1144 start = this_end + 1;
1145 goto search_again;
1146 }
1147 /*
1148 * | ---- desired range ---- |
1149 * | state |
1150 * We need to split the extent, and set the bit
1151 * on the first half
1152 */
1153 if (state->start <= end && state->end > end) {
1154 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001155 if (!prealloc) {
1156 err = -ENOMEM;
1157 goto out;
1158 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001159
1160 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001161 if (err)
1162 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001163
1164 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001165 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001166 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167 prealloc = NULL;
1168 goto out;
1169 }
1170
1171 goto search_again;
1172
1173out:
1174 spin_unlock(&tree->lock);
1175 if (prealloc)
1176 free_extent_state(prealloc);
1177
1178 return err;
1179
1180search_again:
1181 if (start > end)
1182 goto out;
1183 spin_unlock(&tree->lock);
1184 if (mask & __GFP_WAIT)
1185 cond_resched();
1186 goto again;
1187}
1188
Chris Masond1310b22008-01-24 16:13:08 -05001189/* wrappers around set/clear extent bit */
1190int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1191 gfp_t mask)
1192{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001193 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001194 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001195}
Chris Masond1310b22008-01-24 16:13:08 -05001196
1197int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001198 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001199{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001200 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001201 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001202}
Chris Masond1310b22008-01-24 16:13:08 -05001203
1204int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001205 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001206{
Chris Mason2c64c532009-09-02 15:04:12 -04001207 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001208}
Chris Masond1310b22008-01-24 16:13:08 -05001209
1210int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001211 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001212{
1213 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001214 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001215 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001216}
Chris Masond1310b22008-01-24 16:13:08 -05001217
Liu Bo9e8a4a82012-09-05 19:10:51 -06001218int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1219 struct extent_state **cached_state, gfp_t mask)
1220{
1221 return set_extent_bit(tree, start, end,
1222 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1223 NULL, cached_state, mask);
1224}
1225
Chris Masond1310b22008-01-24 16:13:08 -05001226int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1227 gfp_t mask)
1228{
1229 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001230 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001231 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001232}
Chris Masond1310b22008-01-24 16:13:08 -05001233
1234int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1235 gfp_t mask)
1236{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001237 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001238 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001239}
Chris Masond1310b22008-01-24 16:13:08 -05001240
Chris Masond1310b22008-01-24 16:13:08 -05001241int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001242 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001243{
Liu Bo6b67a322013-03-28 08:30:28 +00001244 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001245 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001246}
Chris Masond1310b22008-01-24 16:13:08 -05001247
Josef Bacik5fd02042012-05-02 14:00:54 -04001248int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1249 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001250{
Chris Mason2c64c532009-09-02 15:04:12 -04001251 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001252 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001253}
Chris Masond1310b22008-01-24 16:13:08 -05001254
Chris Masond352ac62008-09-29 15:18:18 -04001255/*
1256 * either insert or lock state struct between start and end use mask to tell
1257 * us if waiting is desired.
1258 */
Chris Mason1edbb732009-09-02 13:24:36 -04001259int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001260 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001261{
1262 int err;
1263 u64 failed_start;
1264 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001265 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1266 EXTENT_LOCKED, &failed_start,
1267 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001268 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001269 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1270 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001271 } else
Chris Masond1310b22008-01-24 16:13:08 -05001272 break;
Chris Masond1310b22008-01-24 16:13:08 -05001273 WARN_ON(start > end);
1274 }
1275 return err;
1276}
Chris Masond1310b22008-01-24 16:13:08 -05001277
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001278int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001279{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001280 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001281}
1282
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001283int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001284{
1285 int err;
1286 u64 failed_start;
1287
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001288 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1289 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001290 if (err == -EEXIST) {
1291 if (failed_start > start)
1292 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001293 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001294 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001295 }
Josef Bacik25179202008-10-29 14:49:05 -04001296 return 1;
1297}
Josef Bacik25179202008-10-29 14:49:05 -04001298
Chris Mason2c64c532009-09-02 15:04:12 -04001299int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1300 struct extent_state **cached, gfp_t mask)
1301{
1302 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1303 mask);
1304}
1305
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001306int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001307{
Chris Mason2c64c532009-09-02 15:04:12 -04001308 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001309 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001310}
Chris Masond1310b22008-01-24 16:13:08 -05001311
Chris Mason4adaa612013-03-26 13:07:00 -04001312int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1313{
1314 unsigned long index = start >> PAGE_CACHE_SHIFT;
1315 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1316 struct page *page;
1317
1318 while (index <= end_index) {
1319 page = find_get_page(inode->i_mapping, index);
1320 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1321 clear_page_dirty_for_io(page);
1322 page_cache_release(page);
1323 index++;
1324 }
1325 return 0;
1326}
1327
1328int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1329{
1330 unsigned long index = start >> PAGE_CACHE_SHIFT;
1331 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1332 struct page *page;
1333
1334 while (index <= end_index) {
1335 page = find_get_page(inode->i_mapping, index);
1336 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1337 account_page_redirty(page);
1338 __set_page_dirty_nobuffers(page);
1339 page_cache_release(page);
1340 index++;
1341 }
1342 return 0;
1343}
1344
Chris Masond1310b22008-01-24 16:13:08 -05001345/*
Chris Masond1310b22008-01-24 16:13:08 -05001346 * helper function to set both pages and extents in the tree writeback
1347 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001348static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001349{
1350 unsigned long index = start >> PAGE_CACHE_SHIFT;
1351 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1352 struct page *page;
1353
1354 while (index <= end_index) {
1355 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001356 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001357 set_page_writeback(page);
1358 page_cache_release(page);
1359 index++;
1360 }
Chris Masond1310b22008-01-24 16:13:08 -05001361 return 0;
1362}
Chris Masond1310b22008-01-24 16:13:08 -05001363
Chris Masond352ac62008-09-29 15:18:18 -04001364/* find the first state struct with 'bits' set after 'start', and
1365 * return it. tree->lock must be held. NULL will returned if
1366 * nothing was found after 'start'
1367 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001368static struct extent_state *
1369find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001370 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001371{
1372 struct rb_node *node;
1373 struct extent_state *state;
1374
1375 /*
1376 * this search will find all the extents that end after
1377 * our range starts.
1378 */
1379 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001380 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001381 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001382
Chris Masond3977122009-01-05 21:25:51 -05001383 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001384 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001385 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001386 return state;
Chris Masond3977122009-01-05 21:25:51 -05001387
Chris Masond7fc6402008-02-18 12:12:38 -05001388 node = rb_next(node);
1389 if (!node)
1390 break;
1391 }
1392out:
1393 return NULL;
1394}
Chris Masond7fc6402008-02-18 12:12:38 -05001395
Chris Masond352ac62008-09-29 15:18:18 -04001396/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001397 * find the first offset in the io tree with 'bits' set. zero is
1398 * returned if we find something, and *start_ret and *end_ret are
1399 * set to reflect the state struct that was found.
1400 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001401 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001402 */
1403int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001404 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001405 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001406{
1407 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001408 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001409 int ret = 1;
1410
1411 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001412 if (cached_state && *cached_state) {
1413 state = *cached_state;
1414 if (state->end == start - 1 && state->tree) {
1415 n = rb_next(&state->rb_node);
1416 while (n) {
1417 state = rb_entry(n, struct extent_state,
1418 rb_node);
1419 if (state->state & bits)
1420 goto got_it;
1421 n = rb_next(n);
1422 }
1423 free_extent_state(*cached_state);
1424 *cached_state = NULL;
1425 goto out;
1426 }
1427 free_extent_state(*cached_state);
1428 *cached_state = NULL;
1429 }
1430
Xiao Guangrong69261c42011-07-14 03:19:45 +00001431 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001432got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001433 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001434 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001435 *start_ret = state->start;
1436 *end_ret = state->end;
1437 ret = 0;
1438 }
Josef Bacike6138872012-09-27 17:07:30 -04001439out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001440 spin_unlock(&tree->lock);
1441 return ret;
1442}
1443
1444/*
Chris Masond352ac62008-09-29 15:18:18 -04001445 * find a contiguous range of bytes in the file marked as delalloc, not
1446 * more than 'max_bytes'. start and end are used to return the range,
1447 *
1448 * 1 is returned if we find something, 0 if nothing was in the tree
1449 */
Chris Masonc8b97812008-10-29 14:49:59 -04001450static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001451 u64 *start, u64 *end, u64 max_bytes,
1452 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001453{
1454 struct rb_node *node;
1455 struct extent_state *state;
1456 u64 cur_start = *start;
1457 u64 found = 0;
1458 u64 total_bytes = 0;
1459
Chris Masoncad321a2008-12-17 14:51:42 -05001460 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001461
Chris Masond1310b22008-01-24 16:13:08 -05001462 /*
1463 * this search will find all the extents that end after
1464 * our range starts.
1465 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001466 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001467 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001468 if (!found)
1469 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001470 goto out;
1471 }
1472
Chris Masond3977122009-01-05 21:25:51 -05001473 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001474 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001475 if (found && (state->start != cur_start ||
1476 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001477 goto out;
1478 }
1479 if (!(state->state & EXTENT_DELALLOC)) {
1480 if (!found)
1481 *end = state->end;
1482 goto out;
1483 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001484 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001485 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001486 *cached_state = state;
1487 atomic_inc(&state->refs);
1488 }
Chris Masond1310b22008-01-24 16:13:08 -05001489 found++;
1490 *end = state->end;
1491 cur_start = state->end + 1;
1492 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001493 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001494 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001495 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001496 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001497 break;
1498 }
1499out:
Chris Masoncad321a2008-12-17 14:51:42 -05001500 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001501 return found;
1502}
1503
Jeff Mahoney143bede2012-03-01 14:56:26 +01001504static noinline void __unlock_for_delalloc(struct inode *inode,
1505 struct page *locked_page,
1506 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001507{
1508 int ret;
1509 struct page *pages[16];
1510 unsigned long index = start >> PAGE_CACHE_SHIFT;
1511 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1512 unsigned long nr_pages = end_index - index + 1;
1513 int i;
1514
1515 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001516 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001517
Chris Masond3977122009-01-05 21:25:51 -05001518 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001519 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001520 min_t(unsigned long, nr_pages,
1521 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001522 for (i = 0; i < ret; i++) {
1523 if (pages[i] != locked_page)
1524 unlock_page(pages[i]);
1525 page_cache_release(pages[i]);
1526 }
1527 nr_pages -= ret;
1528 index += ret;
1529 cond_resched();
1530 }
Chris Masonc8b97812008-10-29 14:49:59 -04001531}
1532
1533static noinline int lock_delalloc_pages(struct inode *inode,
1534 struct page *locked_page,
1535 u64 delalloc_start,
1536 u64 delalloc_end)
1537{
1538 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1539 unsigned long start_index = index;
1540 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1541 unsigned long pages_locked = 0;
1542 struct page *pages[16];
1543 unsigned long nrpages;
1544 int ret;
1545 int i;
1546
1547 /* the caller is responsible for locking the start index */
1548 if (index == locked_page->index && index == end_index)
1549 return 0;
1550
1551 /* skip the page at the start index */
1552 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001553 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001554 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001555 min_t(unsigned long,
1556 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001557 if (ret == 0) {
1558 ret = -EAGAIN;
1559 goto done;
1560 }
1561 /* now we have an array of pages, lock them all */
1562 for (i = 0; i < ret; i++) {
1563 /*
1564 * the caller is taking responsibility for
1565 * locked_page
1566 */
Chris Mason771ed682008-11-06 22:02:51 -05001567 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001568 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001569 if (!PageDirty(pages[i]) ||
1570 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001571 ret = -EAGAIN;
1572 unlock_page(pages[i]);
1573 page_cache_release(pages[i]);
1574 goto done;
1575 }
1576 }
Chris Masonc8b97812008-10-29 14:49:59 -04001577 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001578 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001579 }
Chris Masonc8b97812008-10-29 14:49:59 -04001580 nrpages -= ret;
1581 index += ret;
1582 cond_resched();
1583 }
1584 ret = 0;
1585done:
1586 if (ret && pages_locked) {
1587 __unlock_for_delalloc(inode, locked_page,
1588 delalloc_start,
1589 ((u64)(start_index + pages_locked - 1)) <<
1590 PAGE_CACHE_SHIFT);
1591 }
1592 return ret;
1593}
1594
1595/*
1596 * find a contiguous range of bytes in the file marked as delalloc, not
1597 * more than 'max_bytes'. start and end are used to return the range,
1598 *
1599 * 1 is returned if we find something, 0 if nothing was in the tree
1600 */
1601static noinline u64 find_lock_delalloc_range(struct inode *inode,
1602 struct extent_io_tree *tree,
1603 struct page *locked_page,
1604 u64 *start, u64 *end,
1605 u64 max_bytes)
1606{
1607 u64 delalloc_start;
1608 u64 delalloc_end;
1609 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001610 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001611 int ret;
1612 int loops = 0;
1613
1614again:
1615 /* step one, find a bunch of delalloc bytes starting at start */
1616 delalloc_start = *start;
1617 delalloc_end = 0;
1618 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001619 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001620 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001621 *start = delalloc_start;
1622 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001623 free_extent_state(cached_state);
Liu Bo385fe0b2013-10-01 23:49:49 +08001624 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001625 }
1626
1627 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001628 * start comes from the offset of locked_page. We have to lock
1629 * pages in order, so we can't process delalloc bytes before
1630 * locked_page
1631 */
Chris Masond3977122009-01-05 21:25:51 -05001632 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001633 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001634
1635 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001636 * make sure to limit the number of pages we try to lock down
Chris Masonc8b97812008-10-29 14:49:59 -04001637 */
Josef Bacik7bf811a52013-10-07 22:11:09 -04001638 if (delalloc_end + 1 - delalloc_start > max_bytes)
1639 delalloc_end = delalloc_start + max_bytes - 1;
Chris Masond3977122009-01-05 21:25:51 -05001640
Chris Masonc8b97812008-10-29 14:49:59 -04001641 /* step two, lock all the pages after the page that has start */
1642 ret = lock_delalloc_pages(inode, locked_page,
1643 delalloc_start, delalloc_end);
1644 if (ret == -EAGAIN) {
1645 /* some of the pages are gone, lets avoid looping by
1646 * shortening the size of the delalloc range we're searching
1647 */
Chris Mason9655d292009-09-02 15:22:30 -04001648 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001649 if (!loops) {
Josef Bacik7bf811a52013-10-07 22:11:09 -04001650 max_bytes = PAGE_CACHE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -04001651 loops = 1;
1652 goto again;
1653 } else {
1654 found = 0;
1655 goto out_failed;
1656 }
1657 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001658 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001659
1660 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001661 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001662
1663 /* then test to make sure it is all still delalloc */
1664 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001665 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001666 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001667 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1668 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001669 __unlock_for_delalloc(inode, locked_page,
1670 delalloc_start, delalloc_end);
1671 cond_resched();
1672 goto again;
1673 }
Chris Mason9655d292009-09-02 15:22:30 -04001674 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001675 *start = delalloc_start;
1676 *end = delalloc_end;
1677out_failed:
1678 return found;
1679}
1680
Josef Bacikc2790a22013-07-29 11:20:47 -04001681int extent_clear_unlock_delalloc(struct inode *inode, u64 start, u64 end,
1682 struct page *locked_page,
1683 unsigned long clear_bits,
1684 unsigned long page_ops)
Chris Masonc8b97812008-10-29 14:49:59 -04001685{
Josef Bacikc2790a22013-07-29 11:20:47 -04001686 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
Chris Masonc8b97812008-10-29 14:49:59 -04001687 int ret;
1688 struct page *pages[16];
1689 unsigned long index = start >> PAGE_CACHE_SHIFT;
1690 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1691 unsigned long nr_pages = end_index - index + 1;
1692 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001693
Chris Mason2c64c532009-09-02 15:04:12 -04001694 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacikc2790a22013-07-29 11:20:47 -04001695 if (page_ops == 0)
Chris Mason771ed682008-11-06 22:02:51 -05001696 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001697
Chris Masond3977122009-01-05 21:25:51 -05001698 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001699 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001700 min_t(unsigned long,
1701 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001702 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001703
Josef Bacikc2790a22013-07-29 11:20:47 -04001704 if (page_ops & PAGE_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001705 SetPagePrivate2(pages[i]);
1706
Chris Masonc8b97812008-10-29 14:49:59 -04001707 if (pages[i] == locked_page) {
1708 page_cache_release(pages[i]);
1709 continue;
1710 }
Josef Bacikc2790a22013-07-29 11:20:47 -04001711 if (page_ops & PAGE_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001712 clear_page_dirty_for_io(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001713 if (page_ops & PAGE_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001714 set_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001715 if (page_ops & PAGE_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001716 end_page_writeback(pages[i]);
Josef Bacikc2790a22013-07-29 11:20:47 -04001717 if (page_ops & PAGE_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001718 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001719 page_cache_release(pages[i]);
1720 }
1721 nr_pages -= ret;
1722 index += ret;
1723 cond_resched();
1724 }
1725 return 0;
1726}
Chris Masonc8b97812008-10-29 14:49:59 -04001727
Chris Masond352ac62008-09-29 15:18:18 -04001728/*
1729 * count the number of bytes in the tree that have a given bit(s)
1730 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1731 * cached. The total number found is returned.
1732 */
Chris Masond1310b22008-01-24 16:13:08 -05001733u64 count_range_bits(struct extent_io_tree *tree,
1734 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001735 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001736{
1737 struct rb_node *node;
1738 struct extent_state *state;
1739 u64 cur_start = *start;
1740 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001741 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001742 int found = 0;
1743
1744 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001745 WARN_ON(1);
1746 return 0;
1747 }
1748
Chris Masoncad321a2008-12-17 14:51:42 -05001749 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001750 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1751 total_bytes = tree->dirty_bytes;
1752 goto out;
1753 }
1754 /*
1755 * this search will find all the extents that end after
1756 * our range starts.
1757 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001758 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001759 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001760 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001761
Chris Masond3977122009-01-05 21:25:51 -05001762 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001763 state = rb_entry(node, struct extent_state, rb_node);
1764 if (state->start > search_end)
1765 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001766 if (contig && found && state->start > last + 1)
1767 break;
1768 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001769 total_bytes += min(search_end, state->end) + 1 -
1770 max(cur_start, state->start);
1771 if (total_bytes >= max_bytes)
1772 break;
1773 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001774 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001775 found = 1;
1776 }
Chris Masonec29ed52011-02-23 16:23:20 -05001777 last = state->end;
1778 } else if (contig && found) {
1779 break;
Chris Masond1310b22008-01-24 16:13:08 -05001780 }
1781 node = rb_next(node);
1782 if (!node)
1783 break;
1784 }
1785out:
Chris Masoncad321a2008-12-17 14:51:42 -05001786 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001787 return total_bytes;
1788}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001789
Chris Masond352ac62008-09-29 15:18:18 -04001790/*
1791 * set the private field for a given byte offset in the tree. If there isn't
1792 * an extent_state there already, this does nothing.
1793 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001794static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001795{
1796 struct rb_node *node;
1797 struct extent_state *state;
1798 int ret = 0;
1799
Chris Masoncad321a2008-12-17 14:51:42 -05001800 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001801 /*
1802 * this search will find all the extents that end after
1803 * our range starts.
1804 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001805 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001806 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001807 ret = -ENOENT;
1808 goto out;
1809 }
1810 state = rb_entry(node, struct extent_state, rb_node);
1811 if (state->start != start) {
1812 ret = -ENOENT;
1813 goto out;
1814 }
1815 state->private = private;
1816out:
Chris Masoncad321a2008-12-17 14:51:42 -05001817 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001818 return ret;
1819}
1820
1821int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1822{
1823 struct rb_node *node;
1824 struct extent_state *state;
1825 int ret = 0;
1826
Chris Masoncad321a2008-12-17 14:51:42 -05001827 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001828 /*
1829 * this search will find all the extents that end after
1830 * our range starts.
1831 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001832 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001833 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001834 ret = -ENOENT;
1835 goto out;
1836 }
1837 state = rb_entry(node, struct extent_state, rb_node);
1838 if (state->start != start) {
1839 ret = -ENOENT;
1840 goto out;
1841 }
1842 *private = state->private;
1843out:
Chris Masoncad321a2008-12-17 14:51:42 -05001844 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001845 return ret;
1846}
1847
1848/*
1849 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001850 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001851 * has the bits set. Otherwise, 1 is returned if any bit in the
1852 * range is found set.
1853 */
1854int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001855 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001856{
1857 struct extent_state *state = NULL;
1858 struct rb_node *node;
1859 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001860
Chris Masoncad321a2008-12-17 14:51:42 -05001861 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001862 if (cached && cached->tree && cached->start <= start &&
1863 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001864 node = &cached->rb_node;
1865 else
1866 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001867 while (node && start <= end) {
1868 state = rb_entry(node, struct extent_state, rb_node);
1869
1870 if (filled && state->start > start) {
1871 bitset = 0;
1872 break;
1873 }
1874
1875 if (state->start > end)
1876 break;
1877
1878 if (state->state & bits) {
1879 bitset = 1;
1880 if (!filled)
1881 break;
1882 } else if (filled) {
1883 bitset = 0;
1884 break;
1885 }
Chris Mason46562ce2009-09-23 20:23:16 -04001886
1887 if (state->end == (u64)-1)
1888 break;
1889
Chris Masond1310b22008-01-24 16:13:08 -05001890 start = state->end + 1;
1891 if (start > end)
1892 break;
1893 node = rb_next(node);
1894 if (!node) {
1895 if (filled)
1896 bitset = 0;
1897 break;
1898 }
1899 }
Chris Masoncad321a2008-12-17 14:51:42 -05001900 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001901 return bitset;
1902}
Chris Masond1310b22008-01-24 16:13:08 -05001903
1904/*
1905 * helper function to set a given page up to date if all the
1906 * extents in the tree for that page are up to date
1907 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001908static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001909{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001910 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001911 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001912 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001913 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001914}
1915
1916/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001917 * When IO fails, either with EIO or csum verification fails, we
1918 * try other mirrors that might have a good copy of the data. This
1919 * io_failure_record is used to record state as we go through all the
1920 * mirrors. If another mirror has good data, the page is set up to date
1921 * and things continue. If a good mirror can't be found, the original
1922 * bio end_io callback is called to indicate things have failed.
1923 */
1924struct io_failure_record {
1925 struct page *page;
1926 u64 start;
1927 u64 len;
1928 u64 logical;
1929 unsigned long bio_flags;
1930 int this_mirror;
1931 int failed_mirror;
1932 int in_validation;
1933};
1934
1935static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1936 int did_repair)
1937{
1938 int ret;
1939 int err = 0;
1940 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1941
1942 set_state_private(failure_tree, rec->start, 0);
1943 ret = clear_extent_bits(failure_tree, rec->start,
1944 rec->start + rec->len - 1,
1945 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1946 if (ret)
1947 err = ret;
1948
David Woodhouse53b381b2013-01-29 18:40:14 -05001949 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1950 rec->start + rec->len - 1,
1951 EXTENT_DAMAGED, GFP_NOFS);
1952 if (ret && !err)
1953 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001954
1955 kfree(rec);
1956 return err;
1957}
1958
1959static void repair_io_failure_callback(struct bio *bio, int err)
1960{
1961 complete(bio->bi_private);
1962}
1963
1964/*
1965 * this bypasses the standard btrfs submit functions deliberately, as
1966 * the standard behavior is to write all copies in a raid setup. here we only
1967 * want to write the one bad copy. so we do the mapping for ourselves and issue
1968 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001969 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001970 * actually prevents the read that triggered the error from finishing.
1971 * currently, there can be no more than two copies of every data bit. thus,
1972 * exactly one rewrite is required.
1973 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001974int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001975 u64 length, u64 logical, struct page *page,
1976 int mirror_num)
1977{
1978 struct bio *bio;
1979 struct btrfs_device *dev;
1980 DECLARE_COMPLETION_ONSTACK(compl);
1981 u64 map_length = 0;
1982 u64 sector;
1983 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05001984 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001985 int ret;
1986
1987 BUG_ON(!mirror_num);
1988
David Woodhouse53b381b2013-01-29 18:40:14 -05001989 /* we can't repair anything in raid56 yet */
1990 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
1991 return 0;
1992
Chris Mason9be33952013-05-17 18:30:14 -04001993 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001994 if (!bio)
1995 return -EIO;
1996 bio->bi_private = &compl;
1997 bio->bi_end_io = repair_io_failure_callback;
1998 bio->bi_size = 0;
1999 map_length = length;
2000
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002001 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002002 &map_length, &bbio, mirror_num);
2003 if (ret) {
2004 bio_put(bio);
2005 return -EIO;
2006 }
2007 BUG_ON(mirror_num != bbio->mirror_num);
2008 sector = bbio->stripes[mirror_num-1].physical >> 9;
2009 bio->bi_sector = sector;
2010 dev = bbio->stripes[mirror_num-1].dev;
2011 kfree(bbio);
2012 if (!dev || !dev->bdev || !dev->writeable) {
2013 bio_put(bio);
2014 return -EIO;
2015 }
2016 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002017 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01002018 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002019 wait_for_completion(&compl);
2020
2021 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
2022 /* try to remap that extent elsewhere? */
2023 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002024 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002025 return -EIO;
2026 }
2027
Anand Jaind5b025d2012-07-02 22:05:21 -06002028 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002029 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2030 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002031
2032 bio_put(bio);
2033 return 0;
2034}
2035
Josef Bacikea466792012-03-26 21:57:36 -04002036int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2037 int mirror_num)
2038{
Josef Bacikea466792012-03-26 21:57:36 -04002039 u64 start = eb->start;
2040 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002041 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002042
2043 for (i = 0; i < num_pages; i++) {
2044 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002045 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002046 start, p, mirror_num);
2047 if (ret)
2048 break;
2049 start += PAGE_CACHE_SIZE;
2050 }
2051
2052 return ret;
2053}
2054
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002055/*
2056 * each time an IO finishes, we do a fast check in the IO failure tree
2057 * to see if we need to process or clean up an io_failure_record
2058 */
2059static int clean_io_failure(u64 start, struct page *page)
2060{
2061 u64 private;
2062 u64 private_failure;
2063 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002064 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002065 struct extent_state *state;
2066 int num_copies;
2067 int did_repair = 0;
2068 int ret;
2069 struct inode *inode = page->mapping->host;
2070
2071 private = 0;
2072 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2073 (u64)-1, 1, EXTENT_DIRTY, 0);
2074 if (!ret)
2075 return 0;
2076
2077 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2078 &private_failure);
2079 if (ret)
2080 return 0;
2081
2082 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2083 BUG_ON(!failrec->this_mirror);
2084
2085 if (failrec->in_validation) {
2086 /* there was no real error, just free the record */
2087 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2088 failrec->start);
2089 did_repair = 1;
2090 goto out;
2091 }
2092
2093 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2094 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2095 failrec->start,
2096 EXTENT_LOCKED);
2097 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2098
Miao Xie883d0de2013-07-25 19:22:35 +08002099 if (state && state->start <= failrec->start &&
2100 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002101 fs_info = BTRFS_I(inode)->root->fs_info;
2102 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2103 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002105 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002106 failrec->logical, page,
2107 failrec->failed_mirror);
2108 did_repair = !ret;
2109 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002110 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002111 }
2112
2113out:
2114 if (!ret)
2115 ret = free_io_failure(inode, failrec, did_repair);
2116
2117 return ret;
2118}
2119
2120/*
2121 * this is a generic handler for readpage errors (default
2122 * readpage_io_failed_hook). if other copies exist, read those and write back
2123 * good data to the failed position. does not investigate in remapping the
2124 * failed extent elsewhere, hoping the device will be smart enough to do this as
2125 * needed
2126 */
2127
Miao Xiefacc8a22013-07-25 19:22:34 +08002128static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2129 struct page *page, u64 start, u64 end,
2130 int failed_mirror)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002131{
2132 struct io_failure_record *failrec = NULL;
2133 u64 private;
2134 struct extent_map *em;
2135 struct inode *inode = page->mapping->host;
2136 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2137 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2138 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2139 struct bio *bio;
Miao Xiefacc8a22013-07-25 19:22:34 +08002140 struct btrfs_io_bio *btrfs_failed_bio;
2141 struct btrfs_io_bio *btrfs_bio;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002142 int num_copies;
2143 int ret;
2144 int read_mode;
2145 u64 logical;
2146
2147 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2148
2149 ret = get_state_private(failure_tree, start, &private);
2150 if (ret) {
2151 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2152 if (!failrec)
2153 return -ENOMEM;
2154 failrec->start = start;
2155 failrec->len = end - start + 1;
2156 failrec->this_mirror = 0;
2157 failrec->bio_flags = 0;
2158 failrec->in_validation = 0;
2159
2160 read_lock(&em_tree->lock);
2161 em = lookup_extent_mapping(em_tree, start, failrec->len);
2162 if (!em) {
2163 read_unlock(&em_tree->lock);
2164 kfree(failrec);
2165 return -EIO;
2166 }
2167
2168 if (em->start > start || em->start + em->len < start) {
2169 free_extent_map(em);
2170 em = NULL;
2171 }
2172 read_unlock(&em_tree->lock);
2173
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002174 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002175 kfree(failrec);
2176 return -EIO;
2177 }
2178 logical = start - em->start;
2179 logical = em->block_start + logical;
2180 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2181 logical = em->block_start;
2182 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2183 extent_set_compress_type(&failrec->bio_flags,
2184 em->compress_type);
2185 }
2186 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2187 "len=%llu\n", logical, start, failrec->len);
2188 failrec->logical = logical;
2189 free_extent_map(em);
2190
2191 /* set the bits in the private failure tree */
2192 ret = set_extent_bits(failure_tree, start, end,
2193 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2194 if (ret >= 0)
2195 ret = set_state_private(failure_tree, start,
2196 (u64)(unsigned long)failrec);
2197 /* set the bits in the inode's tree */
2198 if (ret >= 0)
2199 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2200 GFP_NOFS);
2201 if (ret < 0) {
2202 kfree(failrec);
2203 return ret;
2204 }
2205 } else {
2206 failrec = (struct io_failure_record *)(unsigned long)private;
2207 pr_debug("bio_readpage_error: (found) logical=%llu, "
2208 "start=%llu, len=%llu, validation=%d\n",
2209 failrec->logical, failrec->start, failrec->len,
2210 failrec->in_validation);
2211 /*
2212 * when data can be on disk more than twice, add to failrec here
2213 * (e.g. with a list for failed_mirror) to make
2214 * clean_io_failure() clean all those errors at once.
2215 */
2216 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002217 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2218 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002219 if (num_copies == 1) {
2220 /*
2221 * we only have a single copy of the data, so don't bother with
2222 * all the retry and error correction code that follows. no
2223 * matter what the error is, it is very likely to persist.
2224 */
Miao Xie09a7f7a2013-07-25 19:22:32 +08002225 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2226 num_copies, failrec->this_mirror, failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002227 free_io_failure(inode, failrec, 0);
2228 return -EIO;
2229 }
2230
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002231 /*
2232 * there are two premises:
2233 * a) deliver good data to the caller
2234 * b) correct the bad sectors on disk
2235 */
2236 if (failed_bio->bi_vcnt > 1) {
2237 /*
2238 * to fulfill b), we need to know the exact failing sectors, as
2239 * we don't want to rewrite any more than the failed ones. thus,
2240 * we need separate read requests for the failed bio
2241 *
2242 * if the following BUG_ON triggers, our validation request got
2243 * merged. we need separate requests for our algorithm to work.
2244 */
2245 BUG_ON(failrec->in_validation);
2246 failrec->in_validation = 1;
2247 failrec->this_mirror = failed_mirror;
2248 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2249 } else {
2250 /*
2251 * we're ready to fulfill a) and b) alongside. get a good copy
2252 * of the failed sector and if we succeed, we have setup
2253 * everything for repair_io_failure to do the rest for us.
2254 */
2255 if (failrec->in_validation) {
2256 BUG_ON(failrec->this_mirror != failed_mirror);
2257 failrec->in_validation = 0;
2258 failrec->this_mirror = 0;
2259 }
2260 failrec->failed_mirror = failed_mirror;
2261 failrec->this_mirror++;
2262 if (failrec->this_mirror == failed_mirror)
2263 failrec->this_mirror++;
2264 read_mode = READ_SYNC;
2265 }
2266
Miao Xiefacc8a22013-07-25 19:22:34 +08002267 if (failrec->this_mirror > num_copies) {
2268 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002269 num_copies, failrec->this_mirror, failed_mirror);
2270 free_io_failure(inode, failrec, 0);
2271 return -EIO;
2272 }
2273
Chris Mason9be33952013-05-17 18:30:14 -04002274 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002275 if (!bio) {
2276 free_io_failure(inode, failrec, 0);
2277 return -EIO;
2278 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002279 bio->bi_end_io = failed_bio->bi_end_io;
2280 bio->bi_sector = failrec->logical >> 9;
2281 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2282 bio->bi_size = 0;
2283
Miao Xiefacc8a22013-07-25 19:22:34 +08002284 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2285 if (btrfs_failed_bio->csum) {
2286 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2287 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2288
2289 btrfs_bio = btrfs_io_bio(bio);
2290 btrfs_bio->csum = btrfs_bio->csum_inline;
2291 phy_offset >>= inode->i_sb->s_blocksize_bits;
2292 phy_offset *= csum_size;
2293 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2294 csum_size);
2295 }
2296
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002297 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2298
2299 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2300 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2301 failrec->this_mirror, num_copies, failrec->in_validation);
2302
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002303 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2304 failrec->this_mirror,
2305 failrec->bio_flags, 0);
2306 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002307}
2308
Chris Masond1310b22008-01-24 16:13:08 -05002309/* lots and lots of room for performance fixes in the end_bio funcs */
2310
Jeff Mahoney87826df2012-02-15 16:23:57 +01002311int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2312{
2313 int uptodate = (err == 0);
2314 struct extent_io_tree *tree;
2315 int ret;
2316
2317 tree = &BTRFS_I(page->mapping->host)->io_tree;
2318
2319 if (tree->ops && tree->ops->writepage_end_io_hook) {
2320 ret = tree->ops->writepage_end_io_hook(page, start,
2321 end, NULL, uptodate);
2322 if (ret)
2323 uptodate = 0;
2324 }
2325
Jeff Mahoney87826df2012-02-15 16:23:57 +01002326 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002327 ClearPageUptodate(page);
2328 SetPageError(page);
2329 }
2330 return 0;
2331}
2332
Chris Masond1310b22008-01-24 16:13:08 -05002333/*
2334 * after a writepage IO is done, we need to:
2335 * clear the uptodate bits on error
2336 * clear the writeback bits in the extent tree for this IO
2337 * end_page_writeback if the page has no more pending IO
2338 *
2339 * Scheduling is not allowed, so the extent state tree is expected
2340 * to have one and only one object corresponding to this IO.
2341 */
Chris Masond1310b22008-01-24 16:13:08 -05002342static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002343{
Chris Masond1310b22008-01-24 16:13:08 -05002344 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002345 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002346 u64 start;
2347 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002348
Chris Masond1310b22008-01-24 16:13:08 -05002349 do {
2350 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002351 tree = &BTRFS_I(page->mapping->host)->io_tree;
2352
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002353 /* We always issue full-page reads, but if some block
2354 * in a page fails to read, blk_update_request() will
2355 * advance bv_offset and adjust bv_len to compensate.
2356 * Print a warning for nonzero offsets, and an error
2357 * if they don't add up to a full page. */
2358 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2359 printk("%s page write in btrfs with offset %u and length %u\n",
2360 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2361 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2362 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002363
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002364 start = page_offset(page);
2365 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002366
2367 if (--bvec >= bio->bi_io_vec)
2368 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002369
Jeff Mahoney87826df2012-02-15 16:23:57 +01002370 if (end_extent_writepage(page, err, start, end))
2371 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002372
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002373 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002374 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002375
Chris Masond1310b22008-01-24 16:13:08 -05002376 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002377}
2378
Miao Xie883d0de2013-07-25 19:22:35 +08002379static void
2380endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2381 int uptodate)
2382{
2383 struct extent_state *cached = NULL;
2384 u64 end = start + len - 1;
2385
2386 if (uptodate && tree->track_uptodate)
2387 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2388 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2389}
2390
Chris Masond1310b22008-01-24 16:13:08 -05002391/*
2392 * after a readpage IO is done, we need to:
2393 * clear the uptodate bits on error
2394 * set the uptodate bits if things worked
2395 * set the page up to date if all extents in the tree are uptodate
2396 * clear the lock bit in the extent tree
2397 * unlock the page if there are no other extents locked for it
2398 *
2399 * Scheduling is not allowed, so the extent state tree is expected
2400 * to have one and only one object corresponding to this IO.
2401 */
Chris Masond1310b22008-01-24 16:13:08 -05002402static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002403{
2404 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002405 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2406 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a22013-07-25 19:22:34 +08002407 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002408 struct extent_io_tree *tree;
Miao Xiefacc8a22013-07-25 19:22:34 +08002409 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002410 u64 start;
2411 u64 end;
Miao Xiefacc8a22013-07-25 19:22:34 +08002412 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002413 u64 extent_start = 0;
2414 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002415 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002416 int ret;
2417
Chris Masond20f7042008-12-08 16:58:54 -05002418 if (err)
2419 uptodate = 0;
2420
Chris Masond1310b22008-01-24 16:13:08 -05002421 do {
2422 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002423 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002424
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002425 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002426 "mirror=%lu\n", (u64)bio->bi_sector, err,
2427 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002428 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002429
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002430 /* We always issue full-page reads, but if some block
2431 * in a page fails to read, blk_update_request() will
2432 * advance bv_offset and adjust bv_len to compensate.
2433 * Print a warning for nonzero offsets, and an error
2434 * if they don't add up to a full page. */
2435 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2436 printk("%s page read in btrfs with offset %u and length %u\n",
2437 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2438 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2439 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002440
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002441 start = page_offset(page);
2442 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a22013-07-25 19:22:34 +08002443 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002444
Chris Mason4125bf72010-02-03 18:18:45 +00002445 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002446 prefetchw(&bvec->bv_page->flags);
2447
Chris Mason9be33952013-05-17 18:30:14 -04002448 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002449 if (likely(uptodate && tree->ops &&
2450 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a22013-07-25 19:22:34 +08002451 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2452 page, start, end,
2453 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002454 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002455 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002456 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002457 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002458 }
Josef Bacikea466792012-03-26 21:57:36 -04002459
Miao Xief2a09da2013-07-25 19:22:33 +08002460 if (likely(uptodate))
2461 goto readpage_ok;
2462
2463 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002464 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002465 if (!ret && !err &&
2466 test_bit(BIO_UPTODATE, &bio->bi_flags))
2467 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002468 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002469 /*
2470 * The generic bio_readpage_error handles errors the
2471 * following way: If possible, new read requests are
2472 * created and submitted and will end up in
2473 * end_bio_extent_readpage as well (if we're lucky, not
2474 * in the !uptodate case). In that case it returns 0 and
2475 * we just go on with the next page in our bio. If it
2476 * can't handle the error it will return -EIO and we
2477 * remain responsible for that page.
2478 */
Miao Xiefacc8a22013-07-25 19:22:34 +08002479 ret = bio_readpage_error(bio, offset, page, start, end,
2480 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002481 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002482 uptodate =
2483 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002484 if (err)
2485 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04002486 continue;
2487 }
2488 }
Miao Xief2a09da2013-07-25 19:22:33 +08002489readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002490 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002491 loff_t i_size = i_size_read(inode);
2492 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2493 unsigned offset;
2494
2495 /* Zero out the end if this page straddles i_size */
2496 offset = i_size & (PAGE_CACHE_SIZE-1);
2497 if (page->index == end_index && offset)
2498 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002499 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002500 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002501 ClearPageUptodate(page);
2502 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002503 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002504 unlock_page(page);
Miao Xiefacc8a22013-07-25 19:22:34 +08002505 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002506
2507 if (unlikely(!uptodate)) {
2508 if (extent_len) {
2509 endio_readpage_release_extent(tree,
2510 extent_start,
2511 extent_len, 1);
2512 extent_start = 0;
2513 extent_len = 0;
2514 }
2515 endio_readpage_release_extent(tree, start,
2516 end - start + 1, 0);
2517 } else if (!extent_len) {
2518 extent_start = start;
2519 extent_len = end + 1 - start;
2520 } else if (extent_start + extent_len == start) {
2521 extent_len += end + 1 - start;
2522 } else {
2523 endio_readpage_release_extent(tree, extent_start,
2524 extent_len, uptodate);
2525 extent_start = start;
2526 extent_len = end + 1 - start;
2527 }
Chris Mason4125bf72010-02-03 18:18:45 +00002528 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002529
Miao Xie883d0de2013-07-25 19:22:35 +08002530 if (extent_len)
2531 endio_readpage_release_extent(tree, extent_start, extent_len,
2532 uptodate);
Miao Xiefacc8a22013-07-25 19:22:34 +08002533 if (io_bio->end_io)
2534 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002535 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002536}
2537
Chris Mason9be33952013-05-17 18:30:14 -04002538/*
2539 * this allocates from the btrfs_bioset. We're returning a bio right now
2540 * but you can call btrfs_io_bio for the appropriate container_of magic
2541 */
Miao Xie88f794e2010-11-22 03:02:55 +00002542struct bio *
2543btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2544 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002545{
Miao Xiefacc8a22013-07-25 19:22:34 +08002546 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002547 struct bio *bio;
2548
Chris Mason9be33952013-05-17 18:30:14 -04002549 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002550
2551 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002552 while (!bio && (nr_vecs /= 2)) {
2553 bio = bio_alloc_bioset(gfp_flags,
2554 nr_vecs, btrfs_bioset);
2555 }
Chris Masond1310b22008-01-24 16:13:08 -05002556 }
2557
2558 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002559 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002560 bio->bi_bdev = bdev;
2561 bio->bi_sector = first_sector;
Miao Xiefacc8a22013-07-25 19:22:34 +08002562 btrfs_bio = btrfs_io_bio(bio);
2563 btrfs_bio->csum = NULL;
2564 btrfs_bio->csum_allocated = NULL;
2565 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002566 }
2567 return bio;
2568}
2569
Chris Mason9be33952013-05-17 18:30:14 -04002570struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2571{
2572 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2573}
2574
2575
2576/* this also allocates from the btrfs_bioset */
2577struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2578{
Miao Xiefacc8a22013-07-25 19:22:34 +08002579 struct btrfs_io_bio *btrfs_bio;
2580 struct bio *bio;
2581
2582 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2583 if (bio) {
2584 btrfs_bio = btrfs_io_bio(bio);
2585 btrfs_bio->csum = NULL;
2586 btrfs_bio->csum_allocated = NULL;
2587 btrfs_bio->end_io = NULL;
2588 }
2589 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002590}
2591
2592
Jeff Mahoney355808c2011-10-03 23:23:14 -04002593static int __must_check submit_one_bio(int rw, struct bio *bio,
2594 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002595{
Chris Masond1310b22008-01-24 16:13:08 -05002596 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002597 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2598 struct page *page = bvec->bv_page;
2599 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002600 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002601
Miao Xie4eee4fa2012-12-21 09:17:45 +00002602 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002603
David Woodhouse902b22f2008-08-20 08:51:49 -04002604 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002605
2606 bio_get(bio);
2607
Chris Mason065631f2008-02-20 12:07:25 -05002608 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002609 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002610 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002611 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002612 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002613
Chris Masond1310b22008-01-24 16:13:08 -05002614 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2615 ret = -EOPNOTSUPP;
2616 bio_put(bio);
2617 return ret;
2618}
2619
David Woodhouse64a16702009-07-15 23:29:37 +01002620static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002621 unsigned long offset, size_t size, struct bio *bio,
2622 unsigned long bio_flags)
2623{
2624 int ret = 0;
2625 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002626 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002627 bio_flags);
2628 BUG_ON(ret < 0);
2629 return ret;
2630
2631}
2632
Chris Masond1310b22008-01-24 16:13:08 -05002633static int submit_extent_page(int rw, struct extent_io_tree *tree,
2634 struct page *page, sector_t sector,
2635 size_t size, unsigned long offset,
2636 struct block_device *bdev,
2637 struct bio **bio_ret,
2638 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002639 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002640 int mirror_num,
2641 unsigned long prev_bio_flags,
2642 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002643{
2644 int ret = 0;
2645 struct bio *bio;
2646 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002647 int contig = 0;
2648 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2649 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002650 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002651
2652 if (bio_ret && *bio_ret) {
2653 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002654 if (old_compressed)
2655 contig = bio->bi_sector == sector;
2656 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002657 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002658
2659 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002660 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002661 bio_add_page(bio, page, page_size, offset) < page_size) {
2662 ret = submit_one_bio(rw, bio, mirror_num,
2663 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002664 if (ret < 0)
2665 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002666 bio = NULL;
2667 } else {
2668 return 0;
2669 }
2670 }
Chris Masonc8b97812008-10-29 14:49:59 -04002671 if (this_compressed)
2672 nr = BIO_MAX_PAGES;
2673 else
2674 nr = bio_get_nr_vecs(bdev);
2675
Miao Xie88f794e2010-11-22 03:02:55 +00002676 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002677 if (!bio)
2678 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002679
Chris Masonc8b97812008-10-29 14:49:59 -04002680 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002681 bio->bi_end_io = end_io_func;
2682 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002683
Chris Masond3977122009-01-05 21:25:51 -05002684 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002685 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002686 else
Chris Masonc8b97812008-10-29 14:49:59 -04002687 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002688
2689 return ret;
2690}
2691
Eric Sandeen48a3b632013-04-25 20:41:01 +00002692static void attach_extent_buffer_page(struct extent_buffer *eb,
2693 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002694{
2695 if (!PagePrivate(page)) {
2696 SetPagePrivate(page);
2697 page_cache_get(page);
2698 set_page_private(page, (unsigned long)eb);
2699 } else {
2700 WARN_ON(page->private != (unsigned long)eb);
2701 }
2702}
2703
Chris Masond1310b22008-01-24 16:13:08 -05002704void set_page_extent_mapped(struct page *page)
2705{
2706 if (!PagePrivate(page)) {
2707 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002708 page_cache_get(page);
Chris Mason6af118c2008-07-22 11:18:07 -04002709 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002710 }
2711}
2712
Miao Xie125bac02013-07-25 19:22:37 +08002713static struct extent_map *
2714__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2715 u64 start, u64 len, get_extent_t *get_extent,
2716 struct extent_map **em_cached)
2717{
2718 struct extent_map *em;
2719
2720 if (em_cached && *em_cached) {
2721 em = *em_cached;
2722 if (em->in_tree && start >= em->start &&
2723 start < extent_map_end(em)) {
2724 atomic_inc(&em->refs);
2725 return em;
2726 }
2727
2728 free_extent_map(em);
2729 *em_cached = NULL;
2730 }
2731
2732 em = get_extent(inode, page, pg_offset, start, len, 0);
2733 if (em_cached && !IS_ERR_OR_NULL(em)) {
2734 BUG_ON(*em_cached);
2735 atomic_inc(&em->refs);
2736 *em_cached = em;
2737 }
2738 return em;
2739}
Chris Masond1310b22008-01-24 16:13:08 -05002740/*
2741 * basic readpage implementation. Locked extent state structs are inserted
2742 * into the tree that are removed when the IO is done (by the end_io
2743 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002744 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002745 */
Miao Xie99740902013-07-25 19:22:36 +08002746static int __do_readpage(struct extent_io_tree *tree,
2747 struct page *page,
2748 get_extent_t *get_extent,
Miao Xie125bac02013-07-25 19:22:37 +08002749 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002750 struct bio **bio, int mirror_num,
2751 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002752{
2753 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002754 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002755 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2756 u64 end;
2757 u64 cur = start;
2758 u64 extent_offset;
2759 u64 last_byte = i_size_read(inode);
2760 u64 block_start;
2761 u64 cur_end;
2762 sector_t sector;
2763 struct extent_map *em;
2764 struct block_device *bdev;
2765 int ret;
2766 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002767 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002768 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002769 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002770 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002771 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002772 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002773
2774 set_page_extent_mapped(page);
2775
Miao Xie99740902013-07-25 19:22:36 +08002776 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002777 if (!PageUptodate(page)) {
2778 if (cleancache_get_page(page) == 0) {
2779 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002780 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002781 goto out;
2782 }
2783 }
2784
Chris Masonc8b97812008-10-29 14:49:59 -04002785 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2786 char *userpage;
2787 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2788
2789 if (zero_offset) {
2790 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002791 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002792 memset(userpage + zero_offset, 0, iosize);
2793 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002794 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002795 }
2796 }
Chris Masond1310b22008-01-24 16:13:08 -05002797 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002798 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2799
Chris Masond1310b22008-01-24 16:13:08 -05002800 if (cur >= last_byte) {
2801 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002802 struct extent_state *cached = NULL;
2803
David Sterba306e16c2011-04-19 14:29:38 +02002804 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002805 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002806 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002807 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002808 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002809 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002810 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002811 if (!parent_locked)
2812 unlock_extent_cached(tree, cur,
2813 cur + iosize - 1,
2814 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002815 break;
2816 }
Miao Xie125bac02013-07-25 19:22:37 +08002817 em = __get_extent_map(inode, page, pg_offset, cur,
2818 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002819 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002820 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002821 if (!parent_locked)
2822 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002823 break;
2824 }
Chris Masond1310b22008-01-24 16:13:08 -05002825 extent_offset = cur - em->start;
2826 BUG_ON(extent_map_end(em) <= cur);
2827 BUG_ON(end < cur);
2828
Li Zefan261507a02010-12-17 14:21:50 +08002829 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002830 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002831 extent_set_compress_type(&this_bio_flag,
2832 em->compress_type);
2833 }
Chris Masonc8b97812008-10-29 14:49:59 -04002834
Chris Masond1310b22008-01-24 16:13:08 -05002835 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2836 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002837 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002838 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2839 disk_io_size = em->block_len;
2840 sector = em->block_start >> 9;
2841 } else {
2842 sector = (em->block_start + extent_offset) >> 9;
2843 disk_io_size = iosize;
2844 }
Chris Masond1310b22008-01-24 16:13:08 -05002845 bdev = em->bdev;
2846 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002847 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2848 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002849 free_extent_map(em);
2850 em = NULL;
2851
2852 /* we've found a hole, just zero and go on */
2853 if (block_start == EXTENT_MAP_HOLE) {
2854 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002855 struct extent_state *cached = NULL;
2856
Cong Wang7ac687d2011-11-25 23:14:28 +08002857 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002858 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002859 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002860 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002861
2862 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002863 &cached, GFP_NOFS);
2864 unlock_extent_cached(tree, cur, cur + iosize - 1,
2865 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002866 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002867 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002868 continue;
2869 }
2870 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002871 if (test_range_bit(tree, cur, cur_end,
2872 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002873 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002874 if (!parent_locked)
2875 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002876 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002877 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002878 continue;
2879 }
Chris Mason70dec802008-01-29 09:59:12 -05002880 /* we have an inline extent but it didn't get marked up
2881 * to date. Error out
2882 */
2883 if (block_start == EXTENT_MAP_INLINE) {
2884 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002885 if (!parent_locked)
2886 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002887 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002888 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002889 continue;
2890 }
Chris Masond1310b22008-01-24 16:13:08 -05002891
Josef Bacikc8f2f242013-02-11 11:33:00 -05002892 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002893 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002894 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002895 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002896 end_bio_extent_readpage, mirror_num,
2897 *bio_flags,
2898 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002899 if (!ret) {
2900 nr++;
2901 *bio_flags = this_bio_flag;
2902 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002903 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002904 if (!parent_locked)
2905 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04002906 }
Chris Masond1310b22008-01-24 16:13:08 -05002907 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002908 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002909 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002910out:
Chris Masond1310b22008-01-24 16:13:08 -05002911 if (!nr) {
2912 if (!PageError(page))
2913 SetPageUptodate(page);
2914 unlock_page(page);
2915 }
2916 return 0;
2917}
2918
Miao Xie99740902013-07-25 19:22:36 +08002919static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2920 struct page *pages[], int nr_pages,
2921 u64 start, u64 end,
2922 get_extent_t *get_extent,
Miao Xie125bac02013-07-25 19:22:37 +08002923 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002924 struct bio **bio, int mirror_num,
2925 unsigned long *bio_flags, int rw)
2926{
2927 struct inode *inode;
2928 struct btrfs_ordered_extent *ordered;
2929 int index;
2930
2931 inode = pages[0]->mapping->host;
2932 while (1) {
2933 lock_extent(tree, start, end);
2934 ordered = btrfs_lookup_ordered_range(inode, start,
2935 end - start + 1);
2936 if (!ordered)
2937 break;
2938 unlock_extent(tree, start, end);
2939 btrfs_start_ordered_extent(inode, ordered, 1);
2940 btrfs_put_ordered_extent(ordered);
2941 }
2942
2943 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac02013-07-25 19:22:37 +08002944 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
2945 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08002946 page_cache_release(pages[index]);
2947 }
2948}
2949
2950static void __extent_readpages(struct extent_io_tree *tree,
2951 struct page *pages[],
2952 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac02013-07-25 19:22:37 +08002953 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002954 struct bio **bio, int mirror_num,
2955 unsigned long *bio_flags, int rw)
2956{
Stefan Behrens35a36212013-08-14 18:12:25 +02002957 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08002958 u64 end = 0;
2959 u64 page_start;
2960 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02002961 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08002962
2963 for (index = 0; index < nr_pages; index++) {
2964 page_start = page_offset(pages[index]);
2965 if (!end) {
2966 start = page_start;
2967 end = start + PAGE_CACHE_SIZE - 1;
2968 first_index = index;
2969 } else if (end + 1 == page_start) {
2970 end += PAGE_CACHE_SIZE;
2971 } else {
2972 __do_contiguous_readpages(tree, &pages[first_index],
2973 index - first_index, start,
Miao Xie125bac02013-07-25 19:22:37 +08002974 end, get_extent, em_cached,
2975 bio, mirror_num, bio_flags,
2976 rw);
Miao Xie99740902013-07-25 19:22:36 +08002977 start = page_start;
2978 end = start + PAGE_CACHE_SIZE - 1;
2979 first_index = index;
2980 }
2981 }
2982
2983 if (end)
2984 __do_contiguous_readpages(tree, &pages[first_index],
2985 index - first_index, start,
Miao Xie125bac02013-07-25 19:22:37 +08002986 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08002987 mirror_num, bio_flags, rw);
2988}
2989
2990static int __extent_read_full_page(struct extent_io_tree *tree,
2991 struct page *page,
2992 get_extent_t *get_extent,
2993 struct bio **bio, int mirror_num,
2994 unsigned long *bio_flags, int rw)
2995{
2996 struct inode *inode = page->mapping->host;
2997 struct btrfs_ordered_extent *ordered;
2998 u64 start = page_offset(page);
2999 u64 end = start + PAGE_CACHE_SIZE - 1;
3000 int ret;
3001
3002 while (1) {
3003 lock_extent(tree, start, end);
3004 ordered = btrfs_lookup_ordered_extent(inode, start);
3005 if (!ordered)
3006 break;
3007 unlock_extent(tree, start, end);
3008 btrfs_start_ordered_extent(inode, ordered, 1);
3009 btrfs_put_ordered_extent(ordered);
3010 }
3011
Miao Xie125bac02013-07-25 19:22:37 +08003012 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3013 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003014 return ret;
3015}
3016
Chris Masond1310b22008-01-24 16:13:08 -05003017int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003018 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003019{
3020 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003021 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003022 int ret;
3023
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003024 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003025 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003026 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003027 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003028 return ret;
3029}
Chris Masond1310b22008-01-24 16:13:08 -05003030
Mark Fasheh4b384312013-08-06 11:42:50 -07003031int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3032 get_extent_t *get_extent, int mirror_num)
3033{
3034 struct bio *bio = NULL;
3035 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3036 int ret;
3037
3038 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3039 &bio_flags, READ);
3040 if (bio)
3041 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3042 return ret;
3043}
3044
Chris Mason11c83492009-04-20 15:50:09 -04003045static noinline void update_nr_written(struct page *page,
3046 struct writeback_control *wbc,
3047 unsigned long nr_written)
3048{
3049 wbc->nr_to_write -= nr_written;
3050 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3051 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3052 page->mapping->writeback_index = page->index + nr_written;
3053}
3054
Chris Masond1310b22008-01-24 16:13:08 -05003055/*
3056 * the writepage semantics are similar to regular writepage. extent
3057 * records are inserted to lock ranges in the tree, and as dirty areas
3058 * are found, they are marked writeback. Then the lock bits are removed
3059 * and the end_io handler clears the writeback ranges
3060 */
3061static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3062 void *data)
3063{
3064 struct inode *inode = page->mapping->host;
3065 struct extent_page_data *epd = data;
3066 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003067 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003068 u64 delalloc_start;
3069 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3070 u64 end;
3071 u64 cur = start;
3072 u64 extent_offset;
3073 u64 last_byte = i_size_read(inode);
3074 u64 block_start;
3075 u64 iosize;
3076 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003077 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003078 struct extent_map *em;
3079 struct block_device *bdev;
3080 int ret;
3081 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003082 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003083 size_t blocksize;
3084 loff_t i_size = i_size_read(inode);
3085 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3086 u64 nr_delalloc;
3087 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04003088 int page_started;
3089 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04003090 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05003091 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003092 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05003093
Chris Masonffbd5172009-04-20 15:50:09 -04003094 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01003095 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04003096 else
3097 write_flags = WRITE;
3098
liubo1abe9b82011-03-24 11:18:59 +00003099 trace___extent_writepage(page, inode, wbc);
3100
Chris Masond1310b22008-01-24 16:13:08 -05003101 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04003102
3103 ClearPageError(page);
3104
Chris Mason7f3c74f2008-07-18 12:01:11 -04003105 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04003106 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04003107 (page->index == end_index && !pg_offset)) {
Lukas Czernerd47992f2013-05-21 23:17:23 -04003108 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05003109 unlock_page(page);
3110 return 0;
3111 }
3112
3113 if (page->index == end_index) {
3114 char *userpage;
3115
Cong Wang7ac687d2011-11-25 23:14:28 +08003116 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003117 memset(userpage + pg_offset, 0,
3118 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003119 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003120 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003121 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003122 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003123
3124 set_page_extent_mapped(page);
3125
Josef Bacik9e487102011-08-01 12:08:18 -04003126 if (!tree->ops || !tree->ops->fill_delalloc)
3127 fill_delalloc = false;
3128
Chris Masond1310b22008-01-24 16:13:08 -05003129 delalloc_start = start;
3130 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003131 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003132 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003133 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003134 /*
3135 * make sure the wbc mapping index is at least updated
3136 * to this page.
3137 */
3138 update_nr_written(page, wbc, 0);
3139
Chris Masond3977122009-01-05 21:25:51 -05003140 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003141 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003142 page,
3143 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003144 &delalloc_end,
3145 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003146 if (nr_delalloc == 0) {
3147 delalloc_start = delalloc_end + 1;
3148 continue;
3149 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003150 ret = tree->ops->fill_delalloc(inode, page,
3151 delalloc_start,
3152 delalloc_end,
3153 &page_started,
3154 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003155 /* File system has been set read-only */
3156 if (ret) {
3157 SetPageError(page);
3158 goto done;
3159 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003160 /*
3161 * delalloc_end is already one less than the total
3162 * length, so we don't subtract one from
3163 * PAGE_CACHE_SIZE
3164 */
3165 delalloc_to_write += (delalloc_end - delalloc_start +
3166 PAGE_CACHE_SIZE) >>
3167 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003168 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003169 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003170 if (wbc->nr_to_write < delalloc_to_write) {
3171 int thresh = 8192;
3172
3173 if (delalloc_to_write < thresh * 2)
3174 thresh = delalloc_to_write;
3175 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3176 thresh);
3177 }
Chris Masonc8b97812008-10-29 14:49:59 -04003178
Chris Mason771ed682008-11-06 22:02:51 -05003179 /* did the fill delalloc function already unlock and start
3180 * the IO?
3181 */
3182 if (page_started) {
3183 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003184 /*
3185 * we've unlocked the page, so we can't update
3186 * the mapping's writeback index, just update
3187 * nr_to_write.
3188 */
3189 wbc->nr_to_write -= nr_written;
3190 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003191 }
Chris Masonc8b97812008-10-29 14:49:59 -04003192 }
Chris Mason247e7432008-07-17 12:53:51 -04003193 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003194 ret = tree->ops->writepage_start_hook(page, start,
3195 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003196 if (ret) {
3197 /* Fixup worker will requeue */
3198 if (ret == -EBUSY)
3199 wbc->pages_skipped++;
3200 else
3201 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003202 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003203 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003204 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003205 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003206 }
3207 }
3208
Chris Mason11c83492009-04-20 15:50:09 -04003209 /*
3210 * we don't want to touch the inode after unlocking the page,
3211 * so we update the mapping writeback index now
3212 */
3213 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003214
Chris Masond1310b22008-01-24 16:13:08 -05003215 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003216 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003217 if (tree->ops && tree->ops->writepage_end_io_hook)
3218 tree->ops->writepage_end_io_hook(page, start,
3219 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003220 goto done;
3221 }
3222
Chris Masond1310b22008-01-24 16:13:08 -05003223 blocksize = inode->i_sb->s_blocksize;
3224
3225 while (cur <= end) {
3226 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003227 if (tree->ops && tree->ops->writepage_end_io_hook)
3228 tree->ops->writepage_end_io_hook(page, cur,
3229 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003230 break;
3231 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003232 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003233 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003234 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003235 SetPageError(page);
3236 break;
3237 }
3238
3239 extent_offset = cur - em->start;
3240 BUG_ON(extent_map_end(em) <= cur);
3241 BUG_ON(end < cur);
3242 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003243 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003244 sector = (em->block_start + extent_offset) >> 9;
3245 bdev = em->bdev;
3246 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003247 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003248 free_extent_map(em);
3249 em = NULL;
3250
Chris Masonc8b97812008-10-29 14:49:59 -04003251 /*
3252 * compressed and inline extents are written through other
3253 * paths in the FS
3254 */
3255 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003256 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003257 /*
3258 * end_io notification does not happen here for
3259 * compressed extents
3260 */
3261 if (!compressed && tree->ops &&
3262 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003263 tree->ops->writepage_end_io_hook(page, cur,
3264 cur + iosize - 1,
3265 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003266 else if (compressed) {
3267 /* we don't want to end_page_writeback on
3268 * a compressed extent. this happens
3269 * elsewhere
3270 */
3271 nr++;
3272 }
3273
3274 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003275 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003276 continue;
3277 }
Chris Masond1310b22008-01-24 16:13:08 -05003278 /* leave this out until we have a page_mkwrite call */
3279 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003280 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003281 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003282 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003283 continue;
3284 }
Chris Masonc8b97812008-10-29 14:49:59 -04003285
Chris Masond1310b22008-01-24 16:13:08 -05003286 if (tree->ops && tree->ops->writepage_io_hook) {
3287 ret = tree->ops->writepage_io_hook(page, cur,
3288 cur + iosize - 1);
3289 } else {
3290 ret = 0;
3291 }
Chris Mason1259ab72008-05-12 13:39:03 -04003292 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003293 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003294 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003295 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003296
Chris Masond1310b22008-01-24 16:13:08 -05003297 set_range_writeback(tree, cur, cur + iosize - 1);
3298 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003299 printk(KERN_ERR "btrfs warning page %lu not "
3300 "writeback, cur %llu end %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003301 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003302 }
3303
Chris Masonffbd5172009-04-20 15:50:09 -04003304 ret = submit_extent_page(write_flags, tree, page,
3305 sector, iosize, pg_offset,
3306 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003307 end_bio_extent_writepage,
3308 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003309 if (ret)
3310 SetPageError(page);
3311 }
3312 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003313 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003314 nr++;
3315 }
3316done:
3317 if (nr == 0) {
3318 /* make sure the mapping tag for page dirty gets cleared */
3319 set_page_writeback(page);
3320 end_page_writeback(page);
3321 }
Chris Masond1310b22008-01-24 16:13:08 -05003322 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003323
Chris Mason11c83492009-04-20 15:50:09 -04003324done_unlocked:
3325
Chris Mason2c64c532009-09-02 15:04:12 -04003326 /* drop our reference on any cached states */
3327 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003328 return 0;
3329}
3330
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003331static int eb_wait(void *word)
3332{
3333 io_schedule();
3334 return 0;
3335}
3336
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003337void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003338{
3339 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3340 TASK_UNINTERRUPTIBLE);
3341}
3342
3343static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3344 struct btrfs_fs_info *fs_info,
3345 struct extent_page_data *epd)
3346{
3347 unsigned long i, num_pages;
3348 int flush = 0;
3349 int ret = 0;
3350
3351 if (!btrfs_try_tree_write_lock(eb)) {
3352 flush = 1;
3353 flush_write_bio(epd);
3354 btrfs_tree_lock(eb);
3355 }
3356
3357 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3358 btrfs_tree_unlock(eb);
3359 if (!epd->sync_io)
3360 return 0;
3361 if (!flush) {
3362 flush_write_bio(epd);
3363 flush = 1;
3364 }
Chris Masona098d8e2012-03-21 12:09:56 -04003365 while (1) {
3366 wait_on_extent_buffer_writeback(eb);
3367 btrfs_tree_lock(eb);
3368 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3369 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003370 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003371 }
3372 }
3373
Josef Bacik51561ff2012-07-20 16:25:24 -04003374 /*
3375 * We need to do this to prevent races in people who check if the eb is
3376 * under IO since we can end up having no IO bits set for a short period
3377 * of time.
3378 */
3379 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003380 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3381 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003382 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003383 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003384 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3385 -eb->len,
3386 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003387 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003388 } else {
3389 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003390 }
3391
3392 btrfs_tree_unlock(eb);
3393
3394 if (!ret)
3395 return ret;
3396
3397 num_pages = num_extent_pages(eb->start, eb->len);
3398 for (i = 0; i < num_pages; i++) {
3399 struct page *p = extent_buffer_page(eb, i);
3400
3401 if (!trylock_page(p)) {
3402 if (!flush) {
3403 flush_write_bio(epd);
3404 flush = 1;
3405 }
3406 lock_page(p);
3407 }
3408 }
3409
3410 return ret;
3411}
3412
3413static void end_extent_buffer_writeback(struct extent_buffer *eb)
3414{
3415 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3416 smp_mb__after_clear_bit();
3417 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3418}
3419
3420static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3421{
3422 int uptodate = err == 0;
3423 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3424 struct extent_buffer *eb;
3425 int done;
3426
3427 do {
3428 struct page *page = bvec->bv_page;
3429
3430 bvec--;
3431 eb = (struct extent_buffer *)page->private;
3432 BUG_ON(!eb);
3433 done = atomic_dec_and_test(&eb->io_pages);
3434
3435 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3436 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3437 ClearPageUptodate(page);
3438 SetPageError(page);
3439 }
3440
3441 end_page_writeback(page);
3442
3443 if (!done)
3444 continue;
3445
3446 end_extent_buffer_writeback(eb);
3447 } while (bvec >= bio->bi_io_vec);
3448
3449 bio_put(bio);
3450
3451}
3452
3453static int write_one_eb(struct extent_buffer *eb,
3454 struct btrfs_fs_info *fs_info,
3455 struct writeback_control *wbc,
3456 struct extent_page_data *epd)
3457{
3458 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3459 u64 offset = eb->start;
3460 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003461 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003462 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003463 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003464
3465 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3466 num_pages = num_extent_pages(eb->start, eb->len);
3467 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003468 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3469 bio_flags = EXTENT_BIO_TREE_LOG;
3470
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003471 for (i = 0; i < num_pages; i++) {
3472 struct page *p = extent_buffer_page(eb, i);
3473
3474 clear_page_dirty_for_io(p);
3475 set_page_writeback(p);
3476 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3477 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3478 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003479 0, epd->bio_flags, bio_flags);
3480 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003481 if (ret) {
3482 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3483 SetPageError(p);
3484 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3485 end_extent_buffer_writeback(eb);
3486 ret = -EIO;
3487 break;
3488 }
3489 offset += PAGE_CACHE_SIZE;
3490 update_nr_written(p, wbc, 1);
3491 unlock_page(p);
3492 }
3493
3494 if (unlikely(ret)) {
3495 for (; i < num_pages; i++) {
3496 struct page *p = extent_buffer_page(eb, i);
3497 unlock_page(p);
3498 }
3499 }
3500
3501 return ret;
3502}
3503
3504int btree_write_cache_pages(struct address_space *mapping,
3505 struct writeback_control *wbc)
3506{
3507 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3508 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3509 struct extent_buffer *eb, *prev_eb = NULL;
3510 struct extent_page_data epd = {
3511 .bio = NULL,
3512 .tree = tree,
3513 .extent_locked = 0,
3514 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003515 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003516 };
3517 int ret = 0;
3518 int done = 0;
3519 int nr_to_write_done = 0;
3520 struct pagevec pvec;
3521 int nr_pages;
3522 pgoff_t index;
3523 pgoff_t end; /* Inclusive */
3524 int scanned = 0;
3525 int tag;
3526
3527 pagevec_init(&pvec, 0);
3528 if (wbc->range_cyclic) {
3529 index = mapping->writeback_index; /* Start from prev offset */
3530 end = -1;
3531 } else {
3532 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3533 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3534 scanned = 1;
3535 }
3536 if (wbc->sync_mode == WB_SYNC_ALL)
3537 tag = PAGECACHE_TAG_TOWRITE;
3538 else
3539 tag = PAGECACHE_TAG_DIRTY;
3540retry:
3541 if (wbc->sync_mode == WB_SYNC_ALL)
3542 tag_pages_for_writeback(mapping, index, end);
3543 while (!done && !nr_to_write_done && (index <= end) &&
3544 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3545 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3546 unsigned i;
3547
3548 scanned = 1;
3549 for (i = 0; i < nr_pages; i++) {
3550 struct page *page = pvec.pages[i];
3551
3552 if (!PagePrivate(page))
3553 continue;
3554
3555 if (!wbc->range_cyclic && page->index > end) {
3556 done = 1;
3557 break;
3558 }
3559
Josef Bacikb5bae262012-09-14 13:43:01 -04003560 spin_lock(&mapping->private_lock);
3561 if (!PagePrivate(page)) {
3562 spin_unlock(&mapping->private_lock);
3563 continue;
3564 }
3565
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003566 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003567
3568 /*
3569 * Shouldn't happen and normally this would be a BUG_ON
3570 * but no sense in crashing the users box for something
3571 * we can survive anyway.
3572 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003573 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003574 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003575 WARN_ON(1);
3576 continue;
3577 }
3578
Josef Bacikb5bae262012-09-14 13:43:01 -04003579 if (eb == prev_eb) {
3580 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003581 continue;
3582 }
3583
Josef Bacikb5bae262012-09-14 13:43:01 -04003584 ret = atomic_inc_not_zero(&eb->refs);
3585 spin_unlock(&mapping->private_lock);
3586 if (!ret)
3587 continue;
3588
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003589 prev_eb = eb;
3590 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3591 if (!ret) {
3592 free_extent_buffer(eb);
3593 continue;
3594 }
3595
3596 ret = write_one_eb(eb, fs_info, wbc, &epd);
3597 if (ret) {
3598 done = 1;
3599 free_extent_buffer(eb);
3600 break;
3601 }
3602 free_extent_buffer(eb);
3603
3604 /*
3605 * the filesystem may choose to bump up nr_to_write.
3606 * We have to make sure to honor the new nr_to_write
3607 * at any time
3608 */
3609 nr_to_write_done = wbc->nr_to_write <= 0;
3610 }
3611 pagevec_release(&pvec);
3612 cond_resched();
3613 }
3614 if (!scanned && !done) {
3615 /*
3616 * We hit the last page and there is more work to be done: wrap
3617 * back to the start of the file
3618 */
3619 scanned = 1;
3620 index = 0;
3621 goto retry;
3622 }
3623 flush_write_bio(&epd);
3624 return ret;
3625}
3626
Chris Masond1310b22008-01-24 16:13:08 -05003627/**
Chris Mason4bef0842008-09-08 11:18:08 -04003628 * 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 -05003629 * @mapping: address space structure to write
3630 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3631 * @writepage: function called for each page
3632 * @data: data passed to writepage function
3633 *
3634 * If a page is already under I/O, write_cache_pages() skips it, even
3635 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3636 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3637 * and msync() need to guarantee that all the data which was dirty at the time
3638 * the call was made get new I/O started against them. If wbc->sync_mode is
3639 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3640 * existing IO to complete.
3641 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003642static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003643 struct address_space *mapping,
3644 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003645 writepage_t writepage, void *data,
3646 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003647{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003648 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003649 int ret = 0;
3650 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003651 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003652 struct pagevec pvec;
3653 int nr_pages;
3654 pgoff_t index;
3655 pgoff_t end; /* Inclusive */
3656 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003657 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003658
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003659 /*
3660 * We have to hold onto the inode so that ordered extents can do their
3661 * work when the IO finishes. The alternative to this is failing to add
3662 * an ordered extent if the igrab() fails there and that is a huge pain
3663 * to deal with, so instead just hold onto the inode throughout the
3664 * writepages operation. If it fails here we are freeing up the inode
3665 * anyway and we'd rather not waste our time writing out stuff that is
3666 * going to be truncated anyway.
3667 */
3668 if (!igrab(inode))
3669 return 0;
3670
Chris Masond1310b22008-01-24 16:13:08 -05003671 pagevec_init(&pvec, 0);
3672 if (wbc->range_cyclic) {
3673 index = mapping->writeback_index; /* Start from prev offset */
3674 end = -1;
3675 } else {
3676 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3677 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003678 scanned = 1;
3679 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003680 if (wbc->sync_mode == WB_SYNC_ALL)
3681 tag = PAGECACHE_TAG_TOWRITE;
3682 else
3683 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003684retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003685 if (wbc->sync_mode == WB_SYNC_ALL)
3686 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003687 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003688 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3689 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003690 unsigned i;
3691
3692 scanned = 1;
3693 for (i = 0; i < nr_pages; i++) {
3694 struct page *page = pvec.pages[i];
3695
3696 /*
3697 * At this point we hold neither mapping->tree_lock nor
3698 * lock on the page itself: the page may be truncated or
3699 * invalidated (changing page->mapping to NULL), or even
3700 * swizzled back from swapper_space to tmpfs file
3701 * mapping
3702 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003703 if (!trylock_page(page)) {
3704 flush_fn(data);
3705 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003706 }
Chris Masond1310b22008-01-24 16:13:08 -05003707
3708 if (unlikely(page->mapping != mapping)) {
3709 unlock_page(page);
3710 continue;
3711 }
3712
3713 if (!wbc->range_cyclic && page->index > end) {
3714 done = 1;
3715 unlock_page(page);
3716 continue;
3717 }
3718
Chris Masond2c3f4f2008-11-19 12:44:22 -05003719 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003720 if (PageWriteback(page))
3721 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003722 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003723 }
Chris Masond1310b22008-01-24 16:13:08 -05003724
3725 if (PageWriteback(page) ||
3726 !clear_page_dirty_for_io(page)) {
3727 unlock_page(page);
3728 continue;
3729 }
3730
3731 ret = (*writepage)(page, wbc, data);
3732
3733 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3734 unlock_page(page);
3735 ret = 0;
3736 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003737 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003738 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003739
3740 /*
3741 * the filesystem may choose to bump up nr_to_write.
3742 * We have to make sure to honor the new nr_to_write
3743 * at any time
3744 */
3745 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003746 }
3747 pagevec_release(&pvec);
3748 cond_resched();
3749 }
3750 if (!scanned && !done) {
3751 /*
3752 * We hit the last page and there is more work to be done: wrap
3753 * back to the start of the file
3754 */
3755 scanned = 1;
3756 index = 0;
3757 goto retry;
3758 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003759 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003760 return ret;
3761}
Chris Masond1310b22008-01-24 16:13:08 -05003762
Chris Masonffbd5172009-04-20 15:50:09 -04003763static void flush_epd_write_bio(struct extent_page_data *epd)
3764{
3765 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003766 int rw = WRITE;
3767 int ret;
3768
Chris Masonffbd5172009-04-20 15:50:09 -04003769 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003770 rw = WRITE_SYNC;
3771
Josef Bacikde0022b2012-09-25 14:25:58 -04003772 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003773 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003774 epd->bio = NULL;
3775 }
3776}
3777
Chris Masond2c3f4f2008-11-19 12:44:22 -05003778static noinline void flush_write_bio(void *data)
3779{
3780 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003781 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003782}
3783
Chris Masond1310b22008-01-24 16:13:08 -05003784int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3785 get_extent_t *get_extent,
3786 struct writeback_control *wbc)
3787{
3788 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003789 struct extent_page_data epd = {
3790 .bio = NULL,
3791 .tree = tree,
3792 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003793 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003794 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003795 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003796 };
Chris Masond1310b22008-01-24 16:13:08 -05003797
Chris Masond1310b22008-01-24 16:13:08 -05003798 ret = __extent_writepage(page, wbc, &epd);
3799
Chris Masonffbd5172009-04-20 15:50:09 -04003800 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003801 return ret;
3802}
Chris Masond1310b22008-01-24 16:13:08 -05003803
Chris Mason771ed682008-11-06 22:02:51 -05003804int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3805 u64 start, u64 end, get_extent_t *get_extent,
3806 int mode)
3807{
3808 int ret = 0;
3809 struct address_space *mapping = inode->i_mapping;
3810 struct page *page;
3811 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3812 PAGE_CACHE_SHIFT;
3813
3814 struct extent_page_data epd = {
3815 .bio = NULL,
3816 .tree = tree,
3817 .get_extent = get_extent,
3818 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003819 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003820 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003821 };
3822 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003823 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003824 .nr_to_write = nr_pages * 2,
3825 .range_start = start,
3826 .range_end = end + 1,
3827 };
3828
Chris Masond3977122009-01-05 21:25:51 -05003829 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003830 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3831 if (clear_page_dirty_for_io(page))
3832 ret = __extent_writepage(page, &wbc_writepages, &epd);
3833 else {
3834 if (tree->ops && tree->ops->writepage_end_io_hook)
3835 tree->ops->writepage_end_io_hook(page, start,
3836 start + PAGE_CACHE_SIZE - 1,
3837 NULL, 1);
3838 unlock_page(page);
3839 }
3840 page_cache_release(page);
3841 start += PAGE_CACHE_SIZE;
3842 }
3843
Chris Masonffbd5172009-04-20 15:50:09 -04003844 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003845 return ret;
3846}
Chris Masond1310b22008-01-24 16:13:08 -05003847
3848int extent_writepages(struct extent_io_tree *tree,
3849 struct address_space *mapping,
3850 get_extent_t *get_extent,
3851 struct writeback_control *wbc)
3852{
3853 int ret = 0;
3854 struct extent_page_data epd = {
3855 .bio = NULL,
3856 .tree = tree,
3857 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003858 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003859 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003860 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003861 };
3862
Chris Mason4bef0842008-09-08 11:18:08 -04003863 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003864 __extent_writepage, &epd,
3865 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003866 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003867 return ret;
3868}
Chris Masond1310b22008-01-24 16:13:08 -05003869
3870int extent_readpages(struct extent_io_tree *tree,
3871 struct address_space *mapping,
3872 struct list_head *pages, unsigned nr_pages,
3873 get_extent_t get_extent)
3874{
3875 struct bio *bio = NULL;
3876 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003877 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003878 struct page *pagepool[16];
3879 struct page *page;
Miao Xie125bac02013-07-25 19:22:37 +08003880 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06003881 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003882
Chris Masond1310b22008-01-24 16:13:08 -05003883 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003884 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003885
3886 prefetchw(&page->flags);
3887 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003888 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003889 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003890 page_cache_release(page);
3891 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003892 }
Liu Bo67c96842012-07-20 21:43:09 -06003893
3894 pagepool[nr++] = page;
3895 if (nr < ARRAY_SIZE(pagepool))
3896 continue;
Miao Xie125bac02013-07-25 19:22:37 +08003897 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003898 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003899 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003900 }
Miao Xie99740902013-07-25 19:22:36 +08003901 if (nr)
Miao Xie125bac02013-07-25 19:22:37 +08003902 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003903 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003904
Miao Xie125bac02013-07-25 19:22:37 +08003905 if (em_cached)
3906 free_extent_map(em_cached);
3907
Chris Masond1310b22008-01-24 16:13:08 -05003908 BUG_ON(!list_empty(pages));
3909 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003910 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003911 return 0;
3912}
Chris Masond1310b22008-01-24 16:13:08 -05003913
3914/*
3915 * basic invalidatepage code, this waits on any locked or writeback
3916 * ranges corresponding to the page, and then deletes any extent state
3917 * records from the tree
3918 */
3919int extent_invalidatepage(struct extent_io_tree *tree,
3920 struct page *page, unsigned long offset)
3921{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003922 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003923 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003924 u64 end = start + PAGE_CACHE_SIZE - 1;
3925 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3926
Qu Wenruofda28322013-02-26 08:10:22 +00003927 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003928 if (start > end)
3929 return 0;
3930
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003931 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003932 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003933 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003934 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3935 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003936 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003937 return 0;
3938}
Chris Masond1310b22008-01-24 16:13:08 -05003939
3940/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003941 * a helper for releasepage, this tests for areas of the page that
3942 * are locked or under IO and drops the related state bits if it is safe
3943 * to drop the page.
3944 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003945static int try_release_extent_state(struct extent_map_tree *map,
3946 struct extent_io_tree *tree,
3947 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003948{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003949 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003950 u64 end = start + PAGE_CACHE_SIZE - 1;
3951 int ret = 1;
3952
Chris Mason211f90e2008-07-18 11:56:15 -04003953 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003954 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003955 ret = 0;
3956 else {
3957 if ((mask & GFP_NOFS) == GFP_NOFS)
3958 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003959 /*
3960 * at this point we can safely clear everything except the
3961 * locked bit and the nodatasum bit
3962 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003963 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003964 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3965 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003966
3967 /* if clear_extent_bit failed for enomem reasons,
3968 * we can't allow the release to continue.
3969 */
3970 if (ret < 0)
3971 ret = 0;
3972 else
3973 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003974 }
3975 return ret;
3976}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003977
3978/*
Chris Masond1310b22008-01-24 16:13:08 -05003979 * a helper for releasepage. As long as there are no locked extents
3980 * in the range corresponding to the page, both state records and extent
3981 * map records are removed
3982 */
3983int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003984 struct extent_io_tree *tree, struct page *page,
3985 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003986{
3987 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003988 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003989 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003990
Chris Mason70dec802008-01-29 09:59:12 -05003991 if ((mask & __GFP_WAIT) &&
3992 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003993 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003994 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003995 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003996 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003997 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003998 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003999 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004000 break;
4001 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04004002 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
4003 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04004004 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004005 free_extent_map(em);
4006 break;
4007 }
4008 if (!test_range_bit(tree, em->start,
4009 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004010 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004011 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004012 remove_extent_mapping(map, em);
4013 /* once for the rb tree */
4014 free_extent_map(em);
4015 }
4016 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004017 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004018
4019 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004020 free_extent_map(em);
4021 }
Chris Masond1310b22008-01-24 16:13:08 -05004022 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004023 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004024}
Chris Masond1310b22008-01-24 16:13:08 -05004025
Chris Masonec29ed52011-02-23 16:23:20 -05004026/*
4027 * helper function for fiemap, which doesn't want to see any holes.
4028 * This maps until we find something past 'last'
4029 */
4030static struct extent_map *get_extent_skip_holes(struct inode *inode,
4031 u64 offset,
4032 u64 last,
4033 get_extent_t *get_extent)
4034{
4035 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4036 struct extent_map *em;
4037 u64 len;
4038
4039 if (offset >= last)
4040 return NULL;
4041
4042 while(1) {
4043 len = last - offset;
4044 if (len == 0)
4045 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004046 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004047 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004048 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004049 return em;
4050
4051 /* if this isn't a hole return it */
4052 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4053 em->block_start != EXTENT_MAP_HOLE) {
4054 return em;
4055 }
4056
4057 /* this is a hole, advance to the next extent */
4058 offset = extent_map_end(em);
4059 free_extent_map(em);
4060 if (offset >= last)
4061 break;
4062 }
4063 return NULL;
4064}
4065
Liu Bofe09e162013-09-22 12:54:23 +08004066static noinline int count_ext_ref(u64 inum, u64 offset, u64 root_id, void *ctx)
4067{
4068 unsigned long cnt = *((unsigned long *)ctx);
4069
4070 cnt++;
4071 *((unsigned long *)ctx) = cnt;
4072
4073 /* Now we're sure that the extent is shared. */
4074 if (cnt > 1)
4075 return 1;
4076 return 0;
4077}
4078
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004079int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4080 __u64 start, __u64 len, get_extent_t *get_extent)
4081{
Josef Bacik975f84f2010-11-23 19:36:57 +00004082 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004083 u64 off = start;
4084 u64 max = start + len;
4085 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004086 u32 found_type;
4087 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004088 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004089 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004090 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004091 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004092 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004093 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004094 struct btrfs_path *path;
4095 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004096 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004097 u64 em_start = 0;
4098 u64 em_len = 0;
4099 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004100 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004101
4102 if (len == 0)
4103 return -EINVAL;
4104
Josef Bacik975f84f2010-11-23 19:36:57 +00004105 path = btrfs_alloc_path();
4106 if (!path)
4107 return -ENOMEM;
4108 path->leave_spinning = 1;
4109
Josef Bacik4d479cf2011-11-17 11:34:31 -05004110 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
4111 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
4112
Chris Masonec29ed52011-02-23 16:23:20 -05004113 /*
4114 * lookup the last file extent. We're not using i_size here
4115 * because there might be preallocation past i_size
4116 */
Josef Bacik975f84f2010-11-23 19:36:57 +00004117 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08004118 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004119 if (ret < 0) {
4120 btrfs_free_path(path);
4121 return ret;
4122 }
4123 WARN_ON(!ret);
4124 path->slots[0]--;
4125 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4126 struct btrfs_file_extent_item);
4127 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4128 found_type = btrfs_key_type(&found_key);
4129
Chris Masonec29ed52011-02-23 16:23:20 -05004130 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004131 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004132 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004133 /* have to trust i_size as the end */
4134 last = (u64)-1;
4135 last_for_get_extent = isize;
4136 } else {
4137 /*
4138 * remember the start of the last extent. There are a
4139 * bunch of different factors that go into the length of the
4140 * extent, so its much less complex to remember where it started
4141 */
4142 last = found_key.offset;
4143 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004144 }
Liu Bofe09e162013-09-22 12:54:23 +08004145 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004146
Chris Masonec29ed52011-02-23 16:23:20 -05004147 /*
4148 * we might have some extents allocated but more delalloc past those
4149 * extents. so, we trust isize unless the start of the last extent is
4150 * beyond isize
4151 */
4152 if (last < isize) {
4153 last = (u64)-1;
4154 last_for_get_extent = isize;
4155 }
4156
Liu Boa52f4cd2013-05-01 16:23:41 +00004157 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004158 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004159
Josef Bacik4d479cf2011-11-17 11:34:31 -05004160 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004161 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004162 if (!em)
4163 goto out;
4164 if (IS_ERR(em)) {
4165 ret = PTR_ERR(em);
4166 goto out;
4167 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004168
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004169 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004170 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004171
Chris Masonea8efc72011-03-08 11:54:40 -05004172 /* break if the extent we found is outside the range */
4173 if (em->start >= max || extent_map_end(em) < off)
4174 break;
4175
4176 /*
4177 * get_extent may return an extent that starts before our
4178 * requested range. We have to make sure the ranges
4179 * we return to fiemap always move forward and don't
4180 * overlap, so adjust the offsets here
4181 */
4182 em_start = max(em->start, off);
4183
4184 /*
4185 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004186 * for adjusting the disk offset below. Only do this if the
4187 * extent isn't compressed since our in ram offset may be past
4188 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004189 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004190 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4191 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004192 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004193 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05004194 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004195 disko = 0;
4196 flags = 0;
4197
Chris Masonea8efc72011-03-08 11:54:40 -05004198 /*
4199 * bump off for our next call to get_extent
4200 */
4201 off = extent_map_end(em);
4202 if (off >= max)
4203 end = 1;
4204
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004205 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004206 end = 1;
4207 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004208 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004209 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4210 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004211 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004212 flags |= (FIEMAP_EXTENT_DELALLOC |
4213 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004214 } else {
Liu Bofe09e162013-09-22 12:54:23 +08004215 unsigned long ref_cnt = 0;
4216
Chris Masonea8efc72011-03-08 11:54:40 -05004217 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004218
4219 /*
4220 * As btrfs supports shared space, this information
4221 * can be exported to userspace tools via
4222 * flag FIEMAP_EXTENT_SHARED.
4223 */
4224 ret = iterate_inodes_from_logical(
4225 em->block_start,
4226 BTRFS_I(inode)->root->fs_info,
4227 path, count_ext_ref, &ref_cnt);
4228 if (ret < 0 && ret != -ENOENT)
4229 goto out_free;
4230
4231 if (ref_cnt > 1)
4232 flags |= FIEMAP_EXTENT_SHARED;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004233 }
4234 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4235 flags |= FIEMAP_EXTENT_ENCODED;
4236
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004237 free_extent_map(em);
4238 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004239 if ((em_start >= last) || em_len == (u64)-1 ||
4240 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004241 flags |= FIEMAP_EXTENT_LAST;
4242 end = 1;
4243 }
4244
Chris Masonec29ed52011-02-23 16:23:20 -05004245 /* now scan forward to see if this is really the last extent. */
4246 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4247 get_extent);
4248 if (IS_ERR(em)) {
4249 ret = PTR_ERR(em);
4250 goto out;
4251 }
4252 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004253 flags |= FIEMAP_EXTENT_LAST;
4254 end = 1;
4255 }
Chris Masonec29ed52011-02-23 16:23:20 -05004256 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4257 em_len, flags);
4258 if (ret)
4259 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004260 }
4261out_free:
4262 free_extent_map(em);
4263out:
Liu Bofe09e162013-09-22 12:54:23 +08004264 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004265 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004266 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004267 return ret;
4268}
4269
Chris Mason727011e2010-08-06 13:21:20 -04004270static void __free_extent_buffer(struct extent_buffer *eb)
4271{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004272 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004273 kmem_cache_free(extent_buffer_cache, eb);
4274}
4275
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004276static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004277{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004278 return (atomic_read(&eb->io_pages) ||
4279 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4280 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004281}
4282
Miao Xie897ca6e2010-10-26 20:57:29 -04004283/*
4284 * Helper for releasing extent buffer page.
4285 */
4286static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4287 unsigned long start_idx)
4288{
4289 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004290 unsigned long num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004291 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004292 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004293
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004294 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004295
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004296 num_pages = num_extent_pages(eb->start, eb->len);
4297 index = start_idx + num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004298 if (start_idx >= index)
4299 return;
4300
4301 do {
4302 index--;
4303 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004304 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004305 spin_lock(&page->mapping->private_lock);
4306 /*
4307 * We do this since we'll remove the pages after we've
4308 * removed the eb from the radix tree, so we could race
4309 * and have this page now attached to the new eb. So
4310 * only clear page_private if it's still connected to
4311 * this eb.
4312 */
4313 if (PagePrivate(page) &&
4314 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004315 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004316 BUG_ON(PageDirty(page));
4317 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004318 /*
4319 * We need to make sure we haven't be attached
4320 * to a new eb.
4321 */
4322 ClearPagePrivate(page);
4323 set_page_private(page, 0);
4324 /* One for the page private */
4325 page_cache_release(page);
4326 }
4327 spin_unlock(&page->mapping->private_lock);
4328
Jan Schmidt815a51c2012-05-16 17:00:02 +02004329 }
4330 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004331 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004332 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004333 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004334 } while (index != start_idx);
4335}
4336
4337/*
4338 * Helper for releasing the extent buffer.
4339 */
4340static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4341{
4342 btrfs_release_extent_buffer_page(eb, 0);
4343 __free_extent_buffer(eb);
4344}
4345
Josef Bacikdb7f3432013-08-07 14:54:37 -04004346static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4347 u64 start,
4348 unsigned long len,
4349 gfp_t mask)
4350{
4351 struct extent_buffer *eb = NULL;
4352
4353 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4354 if (eb == NULL)
4355 return NULL;
4356 eb->start = start;
4357 eb->len = len;
4358 eb->tree = tree;
4359 eb->bflags = 0;
4360 rwlock_init(&eb->lock);
4361 atomic_set(&eb->write_locks, 0);
4362 atomic_set(&eb->read_locks, 0);
4363 atomic_set(&eb->blocking_readers, 0);
4364 atomic_set(&eb->blocking_writers, 0);
4365 atomic_set(&eb->spinning_readers, 0);
4366 atomic_set(&eb->spinning_writers, 0);
4367 eb->lock_nested = 0;
4368 init_waitqueue_head(&eb->write_lock_wq);
4369 init_waitqueue_head(&eb->read_lock_wq);
4370
4371 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4372
4373 spin_lock_init(&eb->refs_lock);
4374 atomic_set(&eb->refs, 1);
4375 atomic_set(&eb->io_pages, 0);
4376
4377 /*
4378 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4379 */
4380 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4381 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4382 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4383
4384 return eb;
4385}
4386
4387struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4388{
4389 unsigned long i;
4390 struct page *p;
4391 struct extent_buffer *new;
4392 unsigned long num_pages = num_extent_pages(src->start, src->len);
4393
Josef Bacik9ec72672013-08-07 16:57:23 -04004394 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004395 if (new == NULL)
4396 return NULL;
4397
4398 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004399 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004400 if (!p) {
4401 btrfs_release_extent_buffer(new);
4402 return NULL;
4403 }
4404 attach_extent_buffer_page(new, p);
4405 WARN_ON(PageDirty(p));
4406 SetPageUptodate(p);
4407 new->pages[i] = p;
4408 }
4409
4410 copy_extent_buffer(new, src, 0, 0, src->len);
4411 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4412 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4413
4414 return new;
4415}
4416
4417struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4418{
4419 struct extent_buffer *eb;
4420 unsigned long num_pages = num_extent_pages(0, len);
4421 unsigned long i;
4422
Josef Bacik9ec72672013-08-07 16:57:23 -04004423 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004424 if (!eb)
4425 return NULL;
4426
4427 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004428 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004429 if (!eb->pages[i])
4430 goto err;
4431 }
4432 set_extent_buffer_uptodate(eb);
4433 btrfs_set_header_nritems(eb, 0);
4434 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4435
4436 return eb;
4437err:
4438 for (; i > 0; i--)
4439 __free_page(eb->pages[i - 1]);
4440 __free_extent_buffer(eb);
4441 return NULL;
4442}
4443
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004444static void check_buffer_tree_ref(struct extent_buffer *eb)
4445{
Chris Mason242e18c2013-01-29 17:49:37 -05004446 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004447 /* the ref bit is tricky. We have to make sure it is set
4448 * if we have the buffer dirty. Otherwise the
4449 * code to free a buffer can end up dropping a dirty
4450 * page
4451 *
4452 * Once the ref bit is set, it won't go away while the
4453 * buffer is dirty or in writeback, and it also won't
4454 * go away while we have the reference count on the
4455 * eb bumped.
4456 *
4457 * We can't just set the ref bit without bumping the
4458 * ref on the eb because free_extent_buffer might
4459 * see the ref bit and try to clear it. If this happens
4460 * free_extent_buffer might end up dropping our original
4461 * ref by mistake and freeing the page before we are able
4462 * to add one more ref.
4463 *
4464 * So bump the ref count first, then set the bit. If someone
4465 * beat us to it, drop the ref we added.
4466 */
Chris Mason242e18c2013-01-29 17:49:37 -05004467 refs = atomic_read(&eb->refs);
4468 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4469 return;
4470
Josef Bacik594831c2012-07-20 16:11:08 -04004471 spin_lock(&eb->refs_lock);
4472 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004473 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004474 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004475}
4476
Josef Bacik5df42352012-03-15 18:24:42 -04004477static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4478{
4479 unsigned long num_pages, i;
4480
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004481 check_buffer_tree_ref(eb);
4482
Josef Bacik5df42352012-03-15 18:24:42 -04004483 num_pages = num_extent_pages(eb->start, eb->len);
4484 for (i = 0; i < num_pages; i++) {
4485 struct page *p = extent_buffer_page(eb, i);
4486 mark_page_accessed(p);
4487 }
4488}
4489
Chris Masond1310b22008-01-24 16:13:08 -05004490struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004491 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004492{
4493 unsigned long num_pages = num_extent_pages(start, len);
4494 unsigned long i;
4495 unsigned long index = start >> PAGE_CACHE_SHIFT;
4496 struct extent_buffer *eb;
Chris Mason6af118c2008-07-22 11:18:07 -04004497 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004498 struct page *p;
4499 struct address_space *mapping = tree->mapping;
4500 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004501 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004502
Miao Xie19fe0a82010-10-26 20:57:29 -04004503 rcu_read_lock();
4504 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4505 if (eb && atomic_inc_not_zero(&eb->refs)) {
4506 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004507 mark_extent_buffer_accessed(eb);
Chris Mason6af118c2008-07-22 11:18:07 -04004508 return eb;
4509 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004510 rcu_read_unlock();
Chris Mason6af118c2008-07-22 11:18:07 -04004511
David Sterbaba144192011-04-21 01:12:06 +02004512 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004513 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004514 return NULL;
4515
Chris Mason727011e2010-08-06 13:21:20 -04004516 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004517 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004518 if (!p)
Chris Mason6af118c2008-07-22 11:18:07 -04004519 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004520
4521 spin_lock(&mapping->private_lock);
4522 if (PagePrivate(p)) {
4523 /*
4524 * We could have already allocated an eb for this page
4525 * and attached one so lets see if we can get a ref on
4526 * the existing eb, and if we can we know it's good and
4527 * we can just return that one, else we know we can just
4528 * overwrite page->private.
4529 */
4530 exists = (struct extent_buffer *)p->private;
4531 if (atomic_inc_not_zero(&exists->refs)) {
4532 spin_unlock(&mapping->private_lock);
4533 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004534 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004535 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004536 goto free_eb;
4537 }
4538
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004539 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004540 * Do this so attach doesn't complain and we need to
4541 * drop the ref the old guy had.
4542 */
4543 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004544 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004545 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004546 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004547 attach_extent_buffer_page(eb, p);
4548 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004549 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004550 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004551 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004552 if (!PageUptodate(p))
4553 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004554
4555 /*
4556 * see below about how we avoid a nasty race with release page
4557 * and why we unlock later
4558 */
Chris Masond1310b22008-01-24 16:13:08 -05004559 }
4560 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004561 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004562again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004563 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4564 if (ret)
4565 goto free_eb;
4566
Chris Mason6af118c2008-07-22 11:18:07 -04004567 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004568 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4569 if (ret == -EEXIST) {
4570 exists = radix_tree_lookup(&tree->buffer,
4571 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004572 if (!atomic_inc_not_zero(&exists->refs)) {
4573 spin_unlock(&tree->buffer_lock);
4574 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004575 exists = NULL;
4576 goto again;
4577 }
Chris Mason6af118c2008-07-22 11:18:07 -04004578 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004579 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004580 mark_extent_buffer_accessed(exists);
Chris Mason6af118c2008-07-22 11:18:07 -04004581 goto free_eb;
4582 }
Chris Mason6af118c2008-07-22 11:18:07 -04004583 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004584 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004585 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004586 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004587
4588 /*
4589 * there is a race where release page may have
4590 * tried to find this extent buffer in the radix
4591 * but failed. It will tell the VM it is safe to
4592 * reclaim the, and it will clear the page private bit.
4593 * We must make sure to set the page private bit properly
4594 * after the extent buffer is in the radix tree so
4595 * it doesn't get lost
4596 */
Chris Mason727011e2010-08-06 13:21:20 -04004597 SetPageChecked(eb->pages[0]);
4598 for (i = 1; i < num_pages; i++) {
4599 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004600 ClearPageChecked(p);
4601 unlock_page(p);
4602 }
4603 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004604 return eb;
4605
Chris Mason6af118c2008-07-22 11:18:07 -04004606free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004607 for (i = 0; i < num_pages; i++) {
4608 if (eb->pages[i])
4609 unlock_page(eb->pages[i]);
4610 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004611
Josef Bacik17de39a2012-05-04 15:16:06 -04004612 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004613 btrfs_release_extent_buffer(eb);
Chris Mason6af118c2008-07-22 11:18:07 -04004614 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004615}
Chris Masond1310b22008-01-24 16:13:08 -05004616
4617struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004618 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004619{
Chris Masond1310b22008-01-24 16:13:08 -05004620 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004621
Miao Xie19fe0a82010-10-26 20:57:29 -04004622 rcu_read_lock();
4623 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4624 if (eb && atomic_inc_not_zero(&eb->refs)) {
4625 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004626 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004627 return eb;
4628 }
4629 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004630
Miao Xie19fe0a82010-10-26 20:57:29 -04004631 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004632}
Chris Masond1310b22008-01-24 16:13:08 -05004633
Josef Bacik3083ee22012-03-09 16:01:49 -05004634static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4635{
4636 struct extent_buffer *eb =
4637 container_of(head, struct extent_buffer, rcu_head);
4638
4639 __free_extent_buffer(eb);
4640}
4641
Josef Bacik3083ee22012-03-09 16:01:49 -05004642/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004643static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004644{
4645 WARN_ON(atomic_read(&eb->refs) == 0);
4646 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004647 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4648 spin_unlock(&eb->refs_lock);
4649 } else {
4650 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004651
Jan Schmidt815a51c2012-05-16 17:00:02 +02004652 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004653
Jan Schmidt815a51c2012-05-16 17:00:02 +02004654 spin_lock(&tree->buffer_lock);
4655 radix_tree_delete(&tree->buffer,
4656 eb->start >> PAGE_CACHE_SHIFT);
4657 spin_unlock(&tree->buffer_lock);
4658 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004659
4660 /* Should be safe to release our pages at this point */
4661 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004662 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004663 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004664 }
4665 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004666
4667 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004668}
4669
Chris Masond1310b22008-01-24 16:13:08 -05004670void free_extent_buffer(struct extent_buffer *eb)
4671{
Chris Mason242e18c2013-01-29 17:49:37 -05004672 int refs;
4673 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004674 if (!eb)
4675 return;
4676
Chris Mason242e18c2013-01-29 17:49:37 -05004677 while (1) {
4678 refs = atomic_read(&eb->refs);
4679 if (refs <= 3)
4680 break;
4681 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4682 if (old == refs)
4683 return;
4684 }
4685
Josef Bacik3083ee22012-03-09 16:01:49 -05004686 spin_lock(&eb->refs_lock);
4687 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004688 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4689 atomic_dec(&eb->refs);
4690
4691 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004692 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004693 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004694 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4695 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004696
Josef Bacik3083ee22012-03-09 16:01:49 -05004697 /*
4698 * I know this is terrible, but it's temporary until we stop tracking
4699 * the uptodate bits and such for the extent buffers.
4700 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004701 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004702}
Chris Masond1310b22008-01-24 16:13:08 -05004703
Josef Bacik3083ee22012-03-09 16:01:49 -05004704void free_extent_buffer_stale(struct extent_buffer *eb)
4705{
4706 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004707 return;
4708
Josef Bacik3083ee22012-03-09 16:01:49 -05004709 spin_lock(&eb->refs_lock);
4710 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4711
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004712 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004713 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4714 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004715 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004716}
4717
Chris Mason1d4284b2012-03-28 20:31:37 -04004718void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004719{
Chris Masond1310b22008-01-24 16:13:08 -05004720 unsigned long i;
4721 unsigned long num_pages;
4722 struct page *page;
4723
Chris Masond1310b22008-01-24 16:13:08 -05004724 num_pages = num_extent_pages(eb->start, eb->len);
4725
4726 for (i = 0; i < num_pages; i++) {
4727 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004728 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004729 continue;
4730
Chris Masona61e6f22008-07-22 11:18:08 -04004731 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004732 WARN_ON(!PagePrivate(page));
4733
Chris Masond1310b22008-01-24 16:13:08 -05004734 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004735 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004736 if (!PageDirty(page)) {
4737 radix_tree_tag_clear(&page->mapping->page_tree,
4738 page_index(page),
4739 PAGECACHE_TAG_DIRTY);
4740 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004741 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004742 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004743 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004744 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004745 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004746}
Chris Masond1310b22008-01-24 16:13:08 -05004747
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004748int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004749{
4750 unsigned long i;
4751 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004752 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004753
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004754 check_buffer_tree_ref(eb);
4755
Chris Masonb9473432009-03-13 11:00:37 -04004756 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004757
Chris Masond1310b22008-01-24 16:13:08 -05004758 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004759 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004760 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4761
Chris Masonb9473432009-03-13 11:00:37 -04004762 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004763 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004764 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004765}
Chris Masond1310b22008-01-24 16:13:08 -05004766
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004767int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004768{
4769 unsigned long i;
4770 struct page *page;
4771 unsigned long num_pages;
4772
Chris Masonb4ce94d2009-02-04 09:25:08 -05004773 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004774 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004775 for (i = 0; i < num_pages; i++) {
4776 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004777 if (page)
4778 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004779 }
4780 return 0;
4781}
4782
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004783int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004784{
4785 unsigned long i;
4786 struct page *page;
4787 unsigned long num_pages;
4788
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004789 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004790 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004791 for (i = 0; i < num_pages; i++) {
4792 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004793 SetPageUptodate(page);
4794 }
4795 return 0;
4796}
Chris Masond1310b22008-01-24 16:13:08 -05004797
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004798int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004799{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004800 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004801}
Chris Masond1310b22008-01-24 16:13:08 -05004802
4803int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004804 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004805 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004806{
4807 unsigned long i;
4808 unsigned long start_i;
4809 struct page *page;
4810 int err;
4811 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004812 int locked_pages = 0;
4813 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004814 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004815 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004816 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004817 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004818
Chris Masonb4ce94d2009-02-04 09:25:08 -05004819 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004820 return 0;
4821
Chris Masond1310b22008-01-24 16:13:08 -05004822 if (start) {
4823 WARN_ON(start < eb->start);
4824 start_i = (start >> PAGE_CACHE_SHIFT) -
4825 (eb->start >> PAGE_CACHE_SHIFT);
4826 } else {
4827 start_i = 0;
4828 }
4829
4830 num_pages = num_extent_pages(eb->start, eb->len);
4831 for (i = start_i; i < num_pages; i++) {
4832 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004833 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004834 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004835 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004836 } else {
4837 lock_page(page);
4838 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004839 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004840 if (!PageUptodate(page)) {
4841 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004842 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004843 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004844 }
4845 if (all_uptodate) {
4846 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004847 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004848 goto unlock_exit;
4849 }
4850
Josef Bacikea466792012-03-26 21:57:36 -04004851 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004852 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004853 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004854 for (i = start_i; i < num_pages; i++) {
4855 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004856 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004857 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004858 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004859 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004860 mirror_num, &bio_flags,
4861 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004862 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004863 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004864 } else {
4865 unlock_page(page);
4866 }
4867 }
4868
Jeff Mahoney355808c2011-10-03 23:23:14 -04004869 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004870 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4871 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004872 if (err)
4873 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004874 }
Chris Masona86c12c2008-02-07 10:50:54 -05004875
Arne Jansenbb82ab82011-06-10 14:06:53 +02004876 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004877 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004878
Chris Masond1310b22008-01-24 16:13:08 -05004879 for (i = start_i; i < num_pages; i++) {
4880 page = extent_buffer_page(eb, i);
4881 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004882 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004883 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004884 }
Chris Masond3977122009-01-05 21:25:51 -05004885
Chris Masond1310b22008-01-24 16:13:08 -05004886 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004887
4888unlock_exit:
4889 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004890 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004891 page = extent_buffer_page(eb, i);
4892 i++;
4893 unlock_page(page);
4894 locked_pages--;
4895 }
4896 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004897}
Chris Masond1310b22008-01-24 16:13:08 -05004898
4899void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4900 unsigned long start,
4901 unsigned long len)
4902{
4903 size_t cur;
4904 size_t offset;
4905 struct page *page;
4906 char *kaddr;
4907 char *dst = (char *)dstv;
4908 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4909 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004910
4911 WARN_ON(start > eb->len);
4912 WARN_ON(start + len > eb->start + eb->len);
4913
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004914 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004915
Chris Masond3977122009-01-05 21:25:51 -05004916 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004917 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004918
4919 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004920 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004921 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004922
4923 dst += cur;
4924 len -= cur;
4925 offset = 0;
4926 i++;
4927 }
4928}
Chris Masond1310b22008-01-24 16:13:08 -05004929
4930int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004931 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004932 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004933 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004934{
4935 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4936 char *kaddr;
4937 struct page *p;
4938 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4939 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4940 unsigned long end_i = (start_offset + start + min_len - 1) >>
4941 PAGE_CACHE_SHIFT;
4942
4943 if (i != end_i)
4944 return -EINVAL;
4945
4946 if (i == 0) {
4947 offset = start_offset;
4948 *map_start = 0;
4949 } else {
4950 offset = 0;
4951 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4952 }
Chris Masond3977122009-01-05 21:25:51 -05004953
Chris Masond1310b22008-01-24 16:13:08 -05004954 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004955 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004956 "wanted %lu %lu\n",
4957 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004958 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004959 }
4960
4961 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004962 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004963 *map = kaddr + offset;
4964 *map_len = PAGE_CACHE_SIZE - offset;
4965 return 0;
4966}
Chris Masond1310b22008-01-24 16:13:08 -05004967
Chris Masond1310b22008-01-24 16:13:08 -05004968int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4969 unsigned long start,
4970 unsigned long len)
4971{
4972 size_t cur;
4973 size_t offset;
4974 struct page *page;
4975 char *kaddr;
4976 char *ptr = (char *)ptrv;
4977 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4978 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4979 int ret = 0;
4980
4981 WARN_ON(start > eb->len);
4982 WARN_ON(start + len > eb->start + eb->len);
4983
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004984 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004985
Chris Masond3977122009-01-05 21:25:51 -05004986 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004987 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004988
4989 cur = min(len, (PAGE_CACHE_SIZE - offset));
4990
Chris Masona6591712011-07-19 12:04:14 -04004991 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004992 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004993 if (ret)
4994 break;
4995
4996 ptr += cur;
4997 len -= cur;
4998 offset = 0;
4999 i++;
5000 }
5001 return ret;
5002}
Chris Masond1310b22008-01-24 16:13:08 -05005003
5004void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
5005 unsigned long start, unsigned long len)
5006{
5007 size_t cur;
5008 size_t offset;
5009 struct page *page;
5010 char *kaddr;
5011 char *src = (char *)srcv;
5012 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5013 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5014
5015 WARN_ON(start > eb->len);
5016 WARN_ON(start + len > eb->start + eb->len);
5017
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005018 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005019
Chris Masond3977122009-01-05 21:25:51 -05005020 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005021 page = extent_buffer_page(eb, i);
5022 WARN_ON(!PageUptodate(page));
5023
5024 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005025 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005026 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005027
5028 src += cur;
5029 len -= cur;
5030 offset = 0;
5031 i++;
5032 }
5033}
Chris Masond1310b22008-01-24 16:13:08 -05005034
5035void memset_extent_buffer(struct extent_buffer *eb, char c,
5036 unsigned long start, unsigned long len)
5037{
5038 size_t cur;
5039 size_t offset;
5040 struct page *page;
5041 char *kaddr;
5042 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5043 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5044
5045 WARN_ON(start > eb->len);
5046 WARN_ON(start + len > eb->start + eb->len);
5047
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005048 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005049
Chris Masond3977122009-01-05 21:25:51 -05005050 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005051 page = extent_buffer_page(eb, i);
5052 WARN_ON(!PageUptodate(page));
5053
5054 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005055 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005056 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005057
5058 len -= cur;
5059 offset = 0;
5060 i++;
5061 }
5062}
Chris Masond1310b22008-01-24 16:13:08 -05005063
5064void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5065 unsigned long dst_offset, unsigned long src_offset,
5066 unsigned long len)
5067{
5068 u64 dst_len = dst->len;
5069 size_t cur;
5070 size_t offset;
5071 struct page *page;
5072 char *kaddr;
5073 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5074 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5075
5076 WARN_ON(src->len != dst_len);
5077
5078 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005079 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005080
Chris Masond3977122009-01-05 21:25:51 -05005081 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005082 page = extent_buffer_page(dst, i);
5083 WARN_ON(!PageUptodate(page));
5084
5085 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5086
Chris Masona6591712011-07-19 12:04:14 -04005087 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005088 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005089
5090 src_offset += cur;
5091 len -= cur;
5092 offset = 0;
5093 i++;
5094 }
5095}
Chris Masond1310b22008-01-24 16:13:08 -05005096
5097static void move_pages(struct page *dst_page, struct page *src_page,
5098 unsigned long dst_off, unsigned long src_off,
5099 unsigned long len)
5100{
Chris Masona6591712011-07-19 12:04:14 -04005101 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005102 if (dst_page == src_page) {
5103 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
5104 } else {
Chris Masona6591712011-07-19 12:04:14 -04005105 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05005106 char *p = dst_kaddr + dst_off + len;
5107 char *s = src_kaddr + src_off + len;
5108
5109 while (len--)
5110 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05005111 }
Chris Masond1310b22008-01-24 16:13:08 -05005112}
5113
Sergei Trofimovich33872062011-04-11 21:52:52 +00005114static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5115{
5116 unsigned long distance = (src > dst) ? src - dst : dst - src;
5117 return distance < len;
5118}
5119
Chris Masond1310b22008-01-24 16:13:08 -05005120static void copy_pages(struct page *dst_page, struct page *src_page,
5121 unsigned long dst_off, unsigned long src_off,
5122 unsigned long len)
5123{
Chris Masona6591712011-07-19 12:04:14 -04005124 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005125 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005126 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005127
Sergei Trofimovich33872062011-04-11 21:52:52 +00005128 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005129 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005130 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005131 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005132 if (areas_overlap(src_off, dst_off, len))
5133 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005134 }
Chris Masond1310b22008-01-24 16:13:08 -05005135
Chris Mason727011e2010-08-06 13:21:20 -04005136 if (must_memmove)
5137 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5138 else
5139 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005140}
5141
5142void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5143 unsigned long src_offset, unsigned long len)
5144{
5145 size_t cur;
5146 size_t dst_off_in_page;
5147 size_t src_off_in_page;
5148 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5149 unsigned long dst_i;
5150 unsigned long src_i;
5151
5152 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005153 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5154 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005155 BUG_ON(1);
5156 }
5157 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005158 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5159 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005160 BUG_ON(1);
5161 }
5162
Chris Masond3977122009-01-05 21:25:51 -05005163 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005164 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005165 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005166 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005167 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005168
5169 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5170 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5171
5172 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5173 src_off_in_page));
5174 cur = min_t(unsigned long, cur,
5175 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5176
5177 copy_pages(extent_buffer_page(dst, dst_i),
5178 extent_buffer_page(dst, src_i),
5179 dst_off_in_page, src_off_in_page, cur);
5180
5181 src_offset += cur;
5182 dst_offset += cur;
5183 len -= cur;
5184 }
5185}
Chris Masond1310b22008-01-24 16:13:08 -05005186
5187void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5188 unsigned long src_offset, unsigned long len)
5189{
5190 size_t cur;
5191 size_t dst_off_in_page;
5192 size_t src_off_in_page;
5193 unsigned long dst_end = dst_offset + len - 1;
5194 unsigned long src_end = src_offset + len - 1;
5195 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5196 unsigned long dst_i;
5197 unsigned long src_i;
5198
5199 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005200 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5201 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005202 BUG_ON(1);
5203 }
5204 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005205 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5206 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005207 BUG_ON(1);
5208 }
Chris Mason727011e2010-08-06 13:21:20 -04005209 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005210 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5211 return;
5212 }
Chris Masond3977122009-01-05 21:25:51 -05005213 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005214 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5215 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5216
5217 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005218 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005219 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005220 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005221
5222 cur = min_t(unsigned long, len, src_off_in_page + 1);
5223 cur = min(cur, dst_off_in_page + 1);
5224 move_pages(extent_buffer_page(dst, dst_i),
5225 extent_buffer_page(dst, src_i),
5226 dst_off_in_page - cur + 1,
5227 src_off_in_page - cur + 1, cur);
5228
5229 dst_end -= cur;
5230 src_end -= cur;
5231 len -= cur;
5232 }
5233}
Chris Mason6af118c2008-07-22 11:18:07 -04005234
David Sterbaf7a52a42013-04-26 14:56:29 +00005235int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005236{
Chris Mason6af118c2008-07-22 11:18:07 -04005237 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005238
Miao Xie19fe0a82010-10-26 20:57:29 -04005239 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005240 * We need to make sure noboody is attaching this page to an eb right
5241 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005242 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005243 spin_lock(&page->mapping->private_lock);
5244 if (!PagePrivate(page)) {
5245 spin_unlock(&page->mapping->private_lock);
5246 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005247 }
5248
Josef Bacik3083ee22012-03-09 16:01:49 -05005249 eb = (struct extent_buffer *)page->private;
5250 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005251
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005252 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005253 * This is a little awful but should be ok, we need to make sure that
5254 * the eb doesn't disappear out from under us while we're looking at
5255 * this page.
5256 */
5257 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005258 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005259 spin_unlock(&eb->refs_lock);
5260 spin_unlock(&page->mapping->private_lock);
5261 return 0;
5262 }
5263 spin_unlock(&page->mapping->private_lock);
5264
Josef Bacik3083ee22012-03-09 16:01:49 -05005265 /*
5266 * If tree ref isn't set then we know the ref on this eb is a real ref,
5267 * so just return, this page will likely be freed soon anyway.
5268 */
5269 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5270 spin_unlock(&eb->refs_lock);
5271 return 0;
5272 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005273
David Sterbaf7a52a42013-04-26 14:56:29 +00005274 return release_extent_buffer(eb);
Chris Mason6af118c2008-07-22 11:18:07 -04005275}