blob: 01a1412458622bb096649fbef0176396be01f5ad [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050010#include <linux/writeback.h>
11#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070012#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060013#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050014#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040016#include "ctree.h"
17#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020018#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010019#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040020#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040021#include "rcu-string.h"
Liu Bofe09e162013-09-22 12:54:23 +080022#include "backref.h"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
Chris Mason9be33952013-05-17 18:30:14 -040026static struct bio_set *btrfs_bioset;
Chris Masond1310b22008-01-24 16:13:08 -050027
Eric Sandeen6d49ba12013-04-22 16:12:31 +000028#ifdef CONFIG_BTRFS_DEBUG
Chris Masond1310b22008-01-24 16:13:08 -050029static LIST_HEAD(buffers);
30static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040031
Chris Masond3977122009-01-05 21:25:51 -050032static DEFINE_SPINLOCK(leak_lock);
Eric Sandeen6d49ba12013-04-22 16:12:31 +000033
34static inline
35void btrfs_leak_debug_add(struct list_head *new, struct list_head *head)
36{
37 unsigned long flags;
38
39 spin_lock_irqsave(&leak_lock, flags);
40 list_add(new, head);
41 spin_unlock_irqrestore(&leak_lock, flags);
42}
43
44static inline
45void btrfs_leak_debug_del(struct list_head *entry)
46{
47 unsigned long flags;
48
49 spin_lock_irqsave(&leak_lock, flags);
50 list_del(entry);
51 spin_unlock_irqrestore(&leak_lock, flags);
52}
53
54static inline
55void btrfs_leak_debug_check(void)
56{
57 struct extent_state *state;
58 struct extent_buffer *eb;
59
60 while (!list_empty(&states)) {
61 state = list_entry(states.next, struct extent_state, leak_list);
62 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
63 "state %lu in tree %p refs %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020064 state->start, state->end, state->state, state->tree,
65 atomic_read(&state->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000066 list_del(&state->leak_list);
67 kmem_cache_free(extent_state_cache, state);
68 }
69
70 while (!list_empty(&buffers)) {
71 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
72 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020073 "refs %d\n",
74 eb->start, eb->len, atomic_read(&eb->refs));
Eric Sandeen6d49ba12013-04-22 16:12:31 +000075 list_del(&eb->leak_list);
76 kmem_cache_free(extent_buffer_cache, eb);
77 }
78}
David Sterba8d599ae2013-04-30 15:22:23 +000079
80#define btrfs_debug_check_extent_io_range(inode, start, end) \
81 __btrfs_debug_check_extent_io_range(__func__, (inode), (start), (end))
82static inline void __btrfs_debug_check_extent_io_range(const char *caller,
83 struct inode *inode, u64 start, u64 end)
84{
85 u64 isize = i_size_read(inode);
86
87 if (end >= PAGE_SIZE && (end % 2) == 0 && end != isize - 1) {
88 printk_ratelimited(KERN_DEBUG
89 "btrfs: %s: ino %llu isize %llu odd range [%llu,%llu]\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +020090 caller, btrfs_ino(inode), isize, start, end);
David Sterba8d599ae2013-04-30 15:22:23 +000091 }
92}
Eric Sandeen6d49ba12013-04-22 16:12:31 +000093#else
94#define btrfs_leak_debug_add(new, head) do {} while (0)
95#define btrfs_leak_debug_del(entry) do {} while (0)
96#define btrfs_leak_debug_check() do {} while (0)
David Sterba8d599ae2013-04-30 15:22:23 +000097#define btrfs_debug_check_extent_io_range(c, s, e) do {} while (0)
Chris Mason4bef0842008-09-08 11:18:08 -040098#endif
Chris Masond1310b22008-01-24 16:13:08 -050099
Chris Masond1310b22008-01-24 16:13:08 -0500100#define BUFFER_LRU_MAX 64
101
102struct tree_entry {
103 u64 start;
104 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -0500105 struct rb_node rb_node;
106};
107
108struct extent_page_data {
109 struct bio *bio;
110 struct extent_io_tree *tree;
111 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -0400112 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -0500113
114 /* tells writepage not to lock the state bits for this range
115 * it still does the unlocking
116 */
Chris Masonffbd5172009-04-20 15:50:09 -0400117 unsigned int extent_locked:1;
118
119 /* tells the submit_bio code to use a WRITE_SYNC */
120 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -0500121};
122
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400123static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400124static inline struct btrfs_fs_info *
125tree_fs_info(struct extent_io_tree *tree)
126{
127 return btrfs_sb(tree->mapping->host->i_sb);
128}
Josef Bacik0b32f4b2012-03-13 09:38:00 -0400129
Chris Masond1310b22008-01-24 16:13:08 -0500130int __init extent_io_init(void)
131{
David Sterba837e1972012-09-07 03:00:48 -0600132 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200133 sizeof(struct extent_state), 0,
134 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500135 if (!extent_state_cache)
136 return -ENOMEM;
137
David Sterba837e1972012-09-07 03:00:48 -0600138 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +0200139 sizeof(struct extent_buffer), 0,
140 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -0500141 if (!extent_buffer_cache)
142 goto free_state_cache;
Chris Mason9be33952013-05-17 18:30:14 -0400143
144 btrfs_bioset = bioset_create(BIO_POOL_SIZE,
145 offsetof(struct btrfs_io_bio, bio));
146 if (!btrfs_bioset)
147 goto free_buffer_cache;
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700148
149 if (bioset_integrity_create(btrfs_bioset, BIO_POOL_SIZE))
150 goto free_bioset;
151
Chris Masond1310b22008-01-24 16:13:08 -0500152 return 0;
153
Darrick J. Wongb208c2f2013-09-19 20:37:07 -0700154free_bioset:
155 bioset_free(btrfs_bioset);
156 btrfs_bioset = NULL;
157
Chris Mason9be33952013-05-17 18:30:14 -0400158free_buffer_cache:
159 kmem_cache_destroy(extent_buffer_cache);
160 extent_buffer_cache = NULL;
161
Chris Masond1310b22008-01-24 16:13:08 -0500162free_state_cache:
163 kmem_cache_destroy(extent_state_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400164 extent_state_cache = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500165 return -ENOMEM;
166}
167
168void extent_io_exit(void)
169{
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000170 btrfs_leak_debug_check();
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000171
172 /*
173 * Make sure all delayed rcu free are flushed before we
174 * destroy caches.
175 */
176 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500177 if (extent_state_cache)
178 kmem_cache_destroy(extent_state_cache);
179 if (extent_buffer_cache)
180 kmem_cache_destroy(extent_buffer_cache);
Chris Mason9be33952013-05-17 18:30:14 -0400181 if (btrfs_bioset)
182 bioset_free(btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -0500183}
184
185void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200186 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500187{
Eric Paris6bef4d32010-02-23 19:43:04 +0000188 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400189 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500190 tree->ops = NULL;
191 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500192 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400193 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500194 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500195}
Chris Masond1310b22008-01-24 16:13:08 -0500196
Christoph Hellwigb2950862008-12-02 09:54:17 -0500197static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500198{
199 struct extent_state *state;
Chris Masond1310b22008-01-24 16:13:08 -0500200
201 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400202 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500203 return state;
204 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500205 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500206 state->tree = NULL;
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000207 btrfs_leak_debug_add(&state->leak_list, &states);
Chris Masond1310b22008-01-24 16:13:08 -0500208 atomic_set(&state->refs, 1);
209 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100210 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500211 return state;
212}
Chris Masond1310b22008-01-24 16:13:08 -0500213
Chris Mason4845e442010-05-25 20:56:50 -0400214void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500215{
Chris Masond1310b22008-01-24 16:13:08 -0500216 if (!state)
217 return;
218 if (atomic_dec_and_test(&state->refs)) {
Chris Mason70dec802008-01-29 09:59:12 -0500219 WARN_ON(state->tree);
Eric Sandeen6d49ba12013-04-22 16:12:31 +0000220 btrfs_leak_debug_del(&state->leak_list);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100221 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500222 kmem_cache_free(extent_state_cache, state);
223 }
224}
Chris Masond1310b22008-01-24 16:13:08 -0500225
226static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
227 struct rb_node *node)
228{
Chris Masond3977122009-01-05 21:25:51 -0500229 struct rb_node **p = &root->rb_node;
230 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500231 struct tree_entry *entry;
232
Chris Masond3977122009-01-05 21:25:51 -0500233 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500234 parent = *p;
235 entry = rb_entry(parent, struct tree_entry, rb_node);
236
237 if (offset < entry->start)
238 p = &(*p)->rb_left;
239 else if (offset > entry->end)
240 p = &(*p)->rb_right;
241 else
242 return parent;
243 }
244
Chris Masond1310b22008-01-24 16:13:08 -0500245 rb_link_node(node, parent, p);
246 rb_insert_color(node, root);
247 return NULL;
248}
249
Chris Mason80ea96b2008-02-01 14:51:59 -0500250static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500251 struct rb_node **prev_ret,
252 struct rb_node **next_ret)
253{
Chris Mason80ea96b2008-02-01 14:51:59 -0500254 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500255 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500256 struct rb_node *prev = NULL;
257 struct rb_node *orig_prev = NULL;
258 struct tree_entry *entry;
259 struct tree_entry *prev_entry = NULL;
260
Chris Masond3977122009-01-05 21:25:51 -0500261 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500262 entry = rb_entry(n, struct tree_entry, rb_node);
263 prev = n;
264 prev_entry = entry;
265
266 if (offset < entry->start)
267 n = n->rb_left;
268 else if (offset > entry->end)
269 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500270 else
Chris Masond1310b22008-01-24 16:13:08 -0500271 return n;
272 }
273
274 if (prev_ret) {
275 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500276 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500277 prev = rb_next(prev);
278 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
279 }
280 *prev_ret = prev;
281 prev = orig_prev;
282 }
283
284 if (next_ret) {
285 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500286 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500287 prev = rb_prev(prev);
288 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
289 }
290 *next_ret = prev;
291 }
292 return NULL;
293}
294
Chris Mason80ea96b2008-02-01 14:51:59 -0500295static inline struct rb_node *tree_search(struct extent_io_tree *tree,
296 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500297{
Chris Mason70dec802008-01-29 09:59:12 -0500298 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500299 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500300
Chris Mason80ea96b2008-02-01 14:51:59 -0500301 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500302 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500303 return prev;
304 return ret;
305}
306
Josef Bacik9ed74f22009-09-11 16:12:44 -0400307static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
308 struct extent_state *other)
309{
310 if (tree->ops && tree->ops->merge_extent_hook)
311 tree->ops->merge_extent_hook(tree->mapping->host, new,
312 other);
313}
314
Chris Masond1310b22008-01-24 16:13:08 -0500315/*
316 * utility function to look for merge candidates inside a given range.
317 * Any extents with matching state are merged together into a single
318 * extent in the tree. Extents with EXTENT_IO in their state field
319 * are not merged because the end_io handlers need to be able to do
320 * operations on them without sleeping (or doing allocations/splits).
321 *
322 * This should be called with the tree lock held.
323 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000324static void merge_state(struct extent_io_tree *tree,
325 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500326{
327 struct extent_state *other;
328 struct rb_node *other_node;
329
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400330 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000331 return;
Chris Masond1310b22008-01-24 16:13:08 -0500332
333 other_node = rb_prev(&state->rb_node);
334 if (other_node) {
335 other = rb_entry(other_node, struct extent_state, rb_node);
336 if (other->end == state->start - 1 &&
337 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400338 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500339 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500340 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500341 rb_erase(&other->rb_node, &tree->state);
342 free_extent_state(other);
343 }
344 }
345 other_node = rb_next(&state->rb_node);
346 if (other_node) {
347 other = rb_entry(other_node, struct extent_state, rb_node);
348 if (other->start == state->end + 1 &&
349 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400350 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400351 state->end = other->end;
352 other->tree = NULL;
353 rb_erase(&other->rb_node, &tree->state);
354 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500355 }
356 }
Chris Masond1310b22008-01-24 16:13:08 -0500357}
358
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000359static void set_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000360 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500361{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000362 if (tree->ops && tree->ops->set_bit_hook)
363 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500364}
365
366static void clear_state_cb(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000367 struct extent_state *state, unsigned long *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500368{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400369 if (tree->ops && tree->ops->clear_bit_hook)
370 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500371}
372
Xiao Guangrong3150b692011-07-14 03:19:08 +0000373static void set_state_bits(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +0000374 struct extent_state *state, unsigned long *bits);
Xiao Guangrong3150b692011-07-14 03:19:08 +0000375
Chris Masond1310b22008-01-24 16:13:08 -0500376/*
377 * insert an extent_state struct into the tree. 'bits' are set on the
378 * struct before it is inserted.
379 *
380 * This may return -EEXIST if the extent is already there, in which case the
381 * state struct is freed.
382 *
383 * The tree lock is not taken internally. This is a utility function and
384 * probably isn't what you want to call (see set/clear_extent_bit).
385 */
386static int insert_state(struct extent_io_tree *tree,
387 struct extent_state *state, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000388 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500389{
390 struct rb_node *node;
391
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000392 if (end < start)
393 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200394 end, start);
Chris Masond1310b22008-01-24 16:13:08 -0500395 state->start = start;
396 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400397
Xiao Guangrong3150b692011-07-14 03:19:08 +0000398 set_state_bits(tree, state, bits);
399
Chris Masond1310b22008-01-24 16:13:08 -0500400 node = tree_insert(&tree->state, end, &state->rb_node);
401 if (node) {
402 struct extent_state *found;
403 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500404 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200405 "%llu %llu\n",
406 found->start, found->end, start, end);
Chris Masond1310b22008-01-24 16:13:08 -0500407 return -EEXIST;
408 }
Chris Mason70dec802008-01-29 09:59:12 -0500409 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500410 merge_state(tree, state);
411 return 0;
412}
413
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000414static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400415 u64 split)
416{
417 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000418 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400419}
420
Chris Masond1310b22008-01-24 16:13:08 -0500421/*
422 * split a given extent state struct in two, inserting the preallocated
423 * struct 'prealloc' as the newly created second half. 'split' indicates an
424 * offset inside 'orig' where it should be split.
425 *
426 * Before calling,
427 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
428 * are two extent state structs in the tree:
429 * prealloc: [orig->start, split - 1]
430 * orig: [ split, orig->end ]
431 *
432 * The tree locks are not taken by this function. They need to be held
433 * by the caller.
434 */
435static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
436 struct extent_state *prealloc, u64 split)
437{
438 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400439
440 split_cb(tree, orig, split);
441
Chris Masond1310b22008-01-24 16:13:08 -0500442 prealloc->start = orig->start;
443 prealloc->end = split - 1;
444 prealloc->state = orig->state;
445 orig->start = split;
446
447 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
448 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500449 free_extent_state(prealloc);
450 return -EEXIST;
451 }
Chris Mason70dec802008-01-29 09:59:12 -0500452 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500453 return 0;
454}
455
Li Zefancdc6a392012-03-12 16:39:48 +0800456static struct extent_state *next_state(struct extent_state *state)
457{
458 struct rb_node *next = rb_next(&state->rb_node);
459 if (next)
460 return rb_entry(next, struct extent_state, rb_node);
461 else
462 return NULL;
463}
464
Chris Masond1310b22008-01-24 16:13:08 -0500465/*
466 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800467 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500468 *
469 * If no bits are set on the state struct after clearing things, the
470 * struct is freed and removed from the tree
471 */
Li Zefancdc6a392012-03-12 16:39:48 +0800472static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
473 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000474 unsigned long *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500475{
Li Zefancdc6a392012-03-12 16:39:48 +0800476 struct extent_state *next;
David Sterba41074882013-04-29 13:38:46 +0000477 unsigned long bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500478
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400479 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500480 u64 range = state->end - state->start + 1;
481 WARN_ON(range > tree->dirty_bytes);
482 tree->dirty_bytes -= range;
483 }
Chris Mason291d6732008-01-29 15:55:23 -0500484 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400485 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500486 if (wake)
487 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400488 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800489 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500490 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500491 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500492 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500493 free_extent_state(state);
494 } else {
495 WARN_ON(1);
496 }
497 } else {
498 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800499 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500500 }
Li Zefancdc6a392012-03-12 16:39:48 +0800501 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500502}
503
Xiao Guangrong82337672011-04-20 06:44:57 +0000504static struct extent_state *
505alloc_extent_state_atomic(struct extent_state *prealloc)
506{
507 if (!prealloc)
508 prealloc = alloc_extent_state(GFP_ATOMIC);
509
510 return prealloc;
511}
512
Eric Sandeen48a3b632013-04-25 20:41:01 +0000513static void extent_io_tree_panic(struct extent_io_tree *tree, int err)
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400514{
515 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
516 "Extent tree was modified by another "
517 "thread while locked.");
518}
519
Chris Masond1310b22008-01-24 16:13:08 -0500520/*
521 * clear some bits on a range in the tree. This may require splitting
522 * or inserting elements in the tree, so the gfp mask is used to
523 * indicate which allocations or sleeping are allowed.
524 *
525 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
526 * the given range from the tree regardless of state (ie for truncate).
527 *
528 * the range [start, end] is inclusive.
529 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100530 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500531 */
532int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000533 unsigned long bits, int wake, int delete,
Chris Mason2c64c532009-09-02 15:04:12 -0400534 struct extent_state **cached_state,
535 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500536{
537 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400538 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500539 struct extent_state *prealloc = NULL;
540 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400541 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500542 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000543 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500544
David Sterba8d599ae2013-04-30 15:22:23 +0000545 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
546
Josef Bacik7ee9e442013-06-21 16:37:03 -0400547 if (bits & EXTENT_DELALLOC)
548 bits |= EXTENT_NORESERVE;
549
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400550 if (delete)
551 bits |= ~EXTENT_CTLBITS;
552 bits |= EXTENT_FIRST_DELALLOC;
553
Josef Bacik2ac55d42010-02-03 19:33:23 +0000554 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
555 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500556again:
557 if (!prealloc && (mask & __GFP_WAIT)) {
558 prealloc = alloc_extent_state(mask);
559 if (!prealloc)
560 return -ENOMEM;
561 }
562
Chris Masoncad321a2008-12-17 14:51:42 -0500563 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400564 if (cached_state) {
565 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000566
567 if (clear) {
568 *cached_state = NULL;
569 cached_state = NULL;
570 }
571
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400572 if (cached && cached->tree && cached->start <= start &&
573 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000574 if (clear)
575 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400576 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400577 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400578 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000579 if (clear)
580 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400581 }
Chris Masond1310b22008-01-24 16:13:08 -0500582 /*
583 * this search will find the extents that end after
584 * our range starts
585 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500586 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500587 if (!node)
588 goto out;
589 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400590hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500591 if (state->start > end)
592 goto out;
593 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400594 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500595
Liu Bo04493142012-02-16 18:34:37 +0800596 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800597 if (!(state->state & bits)) {
598 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800599 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800600 }
Liu Bo04493142012-02-16 18:34:37 +0800601
Chris Masond1310b22008-01-24 16:13:08 -0500602 /*
603 * | ---- desired range ---- |
604 * | state | or
605 * | ------------- state -------------- |
606 *
607 * We need to split the extent we found, and may flip
608 * bits on second half.
609 *
610 * If the extent we found extends past our range, we
611 * just split and search again. It'll get split again
612 * the next time though.
613 *
614 * If the extent we found is inside our range, we clear
615 * the desired bit on it.
616 */
617
618 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000619 prealloc = alloc_extent_state_atomic(prealloc);
620 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500621 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400622 if (err)
623 extent_io_tree_panic(tree, err);
624
Chris Masond1310b22008-01-24 16:13:08 -0500625 prealloc = NULL;
626 if (err)
627 goto out;
628 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800629 state = clear_state_bit(tree, state, &bits, wake);
630 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500631 }
632 goto search_again;
633 }
634 /*
635 * | ---- desired range ---- |
636 * | state |
637 * We need to split the extent, and clear the bit
638 * on the first half
639 */
640 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000641 prealloc = alloc_extent_state_atomic(prealloc);
642 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500643 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400644 if (err)
645 extent_io_tree_panic(tree, err);
646
Chris Masond1310b22008-01-24 16:13:08 -0500647 if (wake)
648 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400649
Jeff Mahoney6763af82012-03-01 14:56:29 +0100650 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400651
Chris Masond1310b22008-01-24 16:13:08 -0500652 prealloc = NULL;
653 goto out;
654 }
Chris Mason42daec22009-09-23 19:51:09 -0400655
Li Zefancdc6a392012-03-12 16:39:48 +0800656 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800657next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400658 if (last_end == (u64)-1)
659 goto out;
660 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800661 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800662 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500663 goto search_again;
664
665out:
Chris Masoncad321a2008-12-17 14:51:42 -0500666 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500667 if (prealloc)
668 free_extent_state(prealloc);
669
Jeff Mahoney6763af82012-03-01 14:56:29 +0100670 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500671
672search_again:
673 if (start > end)
674 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500675 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500676 if (mask & __GFP_WAIT)
677 cond_resched();
678 goto again;
679}
Chris Masond1310b22008-01-24 16:13:08 -0500680
Jeff Mahoney143bede2012-03-01 14:56:26 +0100681static void wait_on_state(struct extent_io_tree *tree,
682 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500683 __releases(tree->lock)
684 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500685{
686 DEFINE_WAIT(wait);
687 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500688 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500689 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500690 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500691 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500692}
693
694/*
695 * waits for one or more bits to clear on a range in the state tree.
696 * The range [start, end] is inclusive.
697 * The tree lock is taken by this function
698 */
David Sterba41074882013-04-29 13:38:46 +0000699static void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
700 unsigned long bits)
Chris Masond1310b22008-01-24 16:13:08 -0500701{
702 struct extent_state *state;
703 struct rb_node *node;
704
David Sterba8d599ae2013-04-30 15:22:23 +0000705 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
706
Chris Masoncad321a2008-12-17 14:51:42 -0500707 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500708again:
709 while (1) {
710 /*
711 * this search will find all the extents that end after
712 * our range starts
713 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500714 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500715 if (!node)
716 break;
717
718 state = rb_entry(node, struct extent_state, rb_node);
719
720 if (state->start > end)
721 goto out;
722
723 if (state->state & bits) {
724 start = state->start;
725 atomic_inc(&state->refs);
726 wait_on_state(tree, state);
727 free_extent_state(state);
728 goto again;
729 }
730 start = state->end + 1;
731
732 if (start > end)
733 break;
734
Xiao Guangrongded91f02011-07-14 03:19:27 +0000735 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500736 }
737out:
Chris Masoncad321a2008-12-17 14:51:42 -0500738 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500739}
Chris Masond1310b22008-01-24 16:13:08 -0500740
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000741static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500742 struct extent_state *state,
David Sterba41074882013-04-29 13:38:46 +0000743 unsigned long *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500744{
David Sterba41074882013-04-29 13:38:46 +0000745 unsigned long bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400746
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000747 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400748 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500749 u64 range = state->end - state->start + 1;
750 tree->dirty_bytes += range;
751 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400752 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500753}
754
Chris Mason2c64c532009-09-02 15:04:12 -0400755static void cache_state(struct extent_state *state,
756 struct extent_state **cached_ptr)
757{
758 if (cached_ptr && !(*cached_ptr)) {
759 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
760 *cached_ptr = state;
761 atomic_inc(&state->refs);
762 }
763 }
764}
765
Chris Masond1310b22008-01-24 16:13:08 -0500766/*
Chris Mason1edbb732009-09-02 13:24:36 -0400767 * set some bits on a range in the tree. This may require allocations or
768 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500769 *
Chris Mason1edbb732009-09-02 13:24:36 -0400770 * If any of the exclusive bits are set, this will fail with -EEXIST if some
771 * part of the range already has the desired bits set. The start of the
772 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500773 *
Chris Mason1edbb732009-09-02 13:24:36 -0400774 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500775 */
Chris Mason1edbb732009-09-02 13:24:36 -0400776
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100777static int __must_check
778__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +0000779 unsigned long bits, unsigned long exclusive_bits,
780 u64 *failed_start, struct extent_state **cached_state,
781 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500782{
783 struct extent_state *state;
784 struct extent_state *prealloc = NULL;
785 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500786 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500787 u64 last_start;
788 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400789
David Sterba8d599ae2013-04-30 15:22:23 +0000790 btrfs_debug_check_extent_io_range(tree->mapping->host, start, end);
791
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400792 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500793again:
794 if (!prealloc && (mask & __GFP_WAIT)) {
795 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000796 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500797 }
798
Chris Masoncad321a2008-12-17 14:51:42 -0500799 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400800 if (cached_state && *cached_state) {
801 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400802 if (state->start <= start && state->end > start &&
803 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400804 node = &state->rb_node;
805 goto hit_next;
806 }
807 }
Chris Masond1310b22008-01-24 16:13:08 -0500808 /*
809 * this search will find all the extents that end after
810 * our range starts.
811 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500812 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500813 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000814 prealloc = alloc_extent_state_atomic(prealloc);
815 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400816 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400817 if (err)
818 extent_io_tree_panic(tree, err);
819
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +0000820 cache_state(prealloc, cached_state);
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);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001044 if (err)
1045 extent_io_tree_panic(tree, err);
Filipe David Borba Mananac42ac0b2013-11-26 15:01:34 +00001046 cache_state(prealloc, cached_state);
1047 prealloc = NULL;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001048 goto out;
1049 }
1050 state = rb_entry(node, struct extent_state, rb_node);
1051hit_next:
1052 last_start = state->start;
1053 last_end = state->end;
1054
1055 /*
1056 * | ---- desired range ---- |
1057 * | state |
1058 *
1059 * Just lock what we found and keep going
1060 */
1061 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001062 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001063 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001064 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001065 if (last_end == (u64)-1)
1066 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001067 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001068 if (start < end && state && state->start == start &&
1069 !need_resched())
1070 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001071 goto search_again;
1072 }
1073
1074 /*
1075 * | ---- desired range ---- |
1076 * | state |
1077 * or
1078 * | ------------- state -------------- |
1079 *
1080 * We need to split the extent we found, and may flip bits on
1081 * second half.
1082 *
1083 * If the extent we found extends past our
1084 * range, we just split and search again. It'll get split
1085 * again the next time though.
1086 *
1087 * If the extent we found is inside our range, we set the
1088 * desired bit on it.
1089 */
1090 if (state->start < start) {
1091 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001092 if (!prealloc) {
1093 err = -ENOMEM;
1094 goto out;
1095 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001096 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001097 if (err)
1098 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001099 prealloc = NULL;
1100 if (err)
1101 goto out;
1102 if (state->end <= end) {
1103 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001104 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001105 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001106 if (last_end == (u64)-1)
1107 goto out;
1108 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001109 if (start < end && state && state->start == start &&
1110 !need_resched())
1111 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001112 }
1113 goto search_again;
1114 }
1115 /*
1116 * | ---- desired range ---- |
1117 * | state | or | state |
1118 *
1119 * There's a hole, we need to insert something in it and
1120 * ignore the extent we found.
1121 */
1122 if (state->start > start) {
1123 u64 this_end;
1124 if (end < last_start)
1125 this_end = end;
1126 else
1127 this_end = last_start - 1;
1128
1129 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001130 if (!prealloc) {
1131 err = -ENOMEM;
1132 goto out;
1133 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001134
1135 /*
1136 * Avoid to free 'prealloc' if it can be merged with
1137 * the later extent.
1138 */
1139 err = insert_state(tree, prealloc, start, this_end,
1140 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001141 if (err)
1142 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001143 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001144 prealloc = NULL;
1145 start = this_end + 1;
1146 goto search_again;
1147 }
1148 /*
1149 * | ---- desired range ---- |
1150 * | state |
1151 * We need to split the extent, and set the bit
1152 * on the first half
1153 */
1154 if (state->start <= end && state->end > end) {
1155 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001156 if (!prealloc) {
1157 err = -ENOMEM;
1158 goto out;
1159 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001160
1161 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001162 if (err)
1163 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001164
1165 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001166 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001167 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001168 prealloc = NULL;
1169 goto out;
1170 }
1171
1172 goto search_again;
1173
1174out:
1175 spin_unlock(&tree->lock);
1176 if (prealloc)
1177 free_extent_state(prealloc);
1178
1179 return err;
1180
1181search_again:
1182 if (start > end)
1183 goto out;
1184 spin_unlock(&tree->lock);
1185 if (mask & __GFP_WAIT)
1186 cond_resched();
1187 goto again;
1188}
1189
Chris Masond1310b22008-01-24 16:13:08 -05001190/* wrappers around set/clear extent bit */
1191int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1192 gfp_t mask)
1193{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001194 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001195 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001196}
Chris Masond1310b22008-01-24 16:13:08 -05001197
1198int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001199 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001200{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001201 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001202 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001203}
Chris Masond1310b22008-01-24 16:13:08 -05001204
1205int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001206 unsigned long bits, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001207{
Chris Mason2c64c532009-09-02 15:04:12 -04001208 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001209}
Chris Masond1310b22008-01-24 16:13:08 -05001210
1211int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001212 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001213{
1214 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001215 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001216 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001217}
Chris Masond1310b22008-01-24 16:13:08 -05001218
Liu Bo9e8a4a82012-09-05 19:10:51 -06001219int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1220 struct extent_state **cached_state, gfp_t mask)
1221{
1222 return set_extent_bit(tree, start, end,
1223 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1224 NULL, cached_state, mask);
1225}
1226
Chris Masond1310b22008-01-24 16:13:08 -05001227int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1228 gfp_t mask)
1229{
1230 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001231 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001232 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001233}
Chris Masond1310b22008-01-24 16:13:08 -05001234
1235int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1236 gfp_t mask)
1237{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001238 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001239 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001240}
Chris Masond1310b22008-01-24 16:13:08 -05001241
Chris Masond1310b22008-01-24 16:13:08 -05001242int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001243 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001244{
Liu Bo6b67a322013-03-28 08:30:28 +00001245 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, NULL,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001246 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001247}
Chris Masond1310b22008-01-24 16:13:08 -05001248
Josef Bacik5fd02042012-05-02 14:00:54 -04001249int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1250 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001251{
Chris Mason2c64c532009-09-02 15:04:12 -04001252 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001253 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001254}
Chris Masond1310b22008-01-24 16:13:08 -05001255
Chris Masond352ac62008-09-29 15:18:18 -04001256/*
1257 * either insert or lock state struct between start and end use mask to tell
1258 * us if waiting is desired.
1259 */
Chris Mason1edbb732009-09-02 13:24:36 -04001260int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001261 unsigned long bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001262{
1263 int err;
1264 u64 failed_start;
1265 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001266 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1267 EXTENT_LOCKED, &failed_start,
1268 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001269 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001270 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1271 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001272 } else
Chris Masond1310b22008-01-24 16:13:08 -05001273 break;
Chris Masond1310b22008-01-24 16:13:08 -05001274 WARN_ON(start > end);
1275 }
1276 return err;
1277}
Chris Masond1310b22008-01-24 16:13:08 -05001278
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001279int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001280{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001281 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001282}
1283
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001284int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001285{
1286 int err;
1287 u64 failed_start;
1288
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001289 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1290 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001291 if (err == -EEXIST) {
1292 if (failed_start > start)
1293 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001294 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001295 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001296 }
Josef Bacik25179202008-10-29 14:49:05 -04001297 return 1;
1298}
Josef Bacik25179202008-10-29 14:49:05 -04001299
Chris Mason2c64c532009-09-02 15:04:12 -04001300int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1301 struct extent_state **cached, gfp_t mask)
1302{
1303 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1304 mask);
1305}
1306
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001307int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001308{
Chris Mason2c64c532009-09-02 15:04:12 -04001309 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001310 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001311}
Chris Masond1310b22008-01-24 16:13:08 -05001312
Chris Mason4adaa612013-03-26 13:07:00 -04001313int extent_range_clear_dirty_for_io(struct inode *inode, u64 start, u64 end)
1314{
1315 unsigned long index = start >> PAGE_CACHE_SHIFT;
1316 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1317 struct page *page;
1318
1319 while (index <= end_index) {
1320 page = find_get_page(inode->i_mapping, index);
1321 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1322 clear_page_dirty_for_io(page);
1323 page_cache_release(page);
1324 index++;
1325 }
1326 return 0;
1327}
1328
1329int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end)
1330{
1331 unsigned long index = start >> PAGE_CACHE_SHIFT;
1332 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1333 struct page *page;
1334
1335 while (index <= end_index) {
1336 page = find_get_page(inode->i_mapping, index);
1337 BUG_ON(!page); /* Pages should be in the extent_io_tree */
1338 account_page_redirty(page);
1339 __set_page_dirty_nobuffers(page);
1340 page_cache_release(page);
1341 index++;
1342 }
1343 return 0;
1344}
1345
Chris Masond1310b22008-01-24 16:13:08 -05001346/*
Chris Masond1310b22008-01-24 16:13:08 -05001347 * helper function to set both pages and extents in the tree writeback
1348 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001349static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001350{
1351 unsigned long index = start >> PAGE_CACHE_SHIFT;
1352 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1353 struct page *page;
1354
1355 while (index <= end_index) {
1356 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001357 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001358 set_page_writeback(page);
1359 page_cache_release(page);
1360 index++;
1361 }
Chris Masond1310b22008-01-24 16:13:08 -05001362 return 0;
1363}
Chris Masond1310b22008-01-24 16:13:08 -05001364
Chris Masond352ac62008-09-29 15:18:18 -04001365/* find the first state struct with 'bits' set after 'start', and
1366 * return it. tree->lock must be held. NULL will returned if
1367 * nothing was found after 'start'
1368 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00001369static struct extent_state *
1370find_first_extent_bit_state(struct extent_io_tree *tree,
David Sterba41074882013-04-29 13:38:46 +00001371 u64 start, unsigned long bits)
Chris Masond7fc6402008-02-18 12:12:38 -05001372{
1373 struct rb_node *node;
1374 struct extent_state *state;
1375
1376 /*
1377 * this search will find all the extents that end after
1378 * our range starts.
1379 */
1380 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001381 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001382 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001383
Chris Masond3977122009-01-05 21:25:51 -05001384 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001385 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001386 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001387 return state;
Chris Masond3977122009-01-05 21:25:51 -05001388
Chris Masond7fc6402008-02-18 12:12:38 -05001389 node = rb_next(node);
1390 if (!node)
1391 break;
1392 }
1393out:
1394 return NULL;
1395}
Chris Masond7fc6402008-02-18 12:12:38 -05001396
Chris Masond352ac62008-09-29 15:18:18 -04001397/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001398 * find the first offset in the io tree with 'bits' set. zero is
1399 * returned if we find something, and *start_ret and *end_ret are
1400 * set to reflect the state struct that was found.
1401 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001402 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001403 */
1404int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
David Sterba41074882013-04-29 13:38:46 +00001405 u64 *start_ret, u64 *end_ret, unsigned long bits,
Josef Bacike6138872012-09-27 17:07:30 -04001406 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001407{
1408 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001409 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001410 int ret = 1;
1411
1412 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001413 if (cached_state && *cached_state) {
1414 state = *cached_state;
1415 if (state->end == start - 1 && state->tree) {
1416 n = rb_next(&state->rb_node);
1417 while (n) {
1418 state = rb_entry(n, struct extent_state,
1419 rb_node);
1420 if (state->state & bits)
1421 goto got_it;
1422 n = rb_next(n);
1423 }
1424 free_extent_state(*cached_state);
1425 *cached_state = NULL;
1426 goto out;
1427 }
1428 free_extent_state(*cached_state);
1429 *cached_state = NULL;
1430 }
1431
Xiao Guangrong69261c42011-07-14 03:19:45 +00001432 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001433got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001434 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001435 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001436 *start_ret = state->start;
1437 *end_ret = state->end;
1438 ret = 0;
1439 }
Josef Bacike6138872012-09-27 17:07:30 -04001440out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001441 spin_unlock(&tree->lock);
1442 return ret;
1443}
1444
1445/*
Chris Masond352ac62008-09-29 15:18:18 -04001446 * find a contiguous range of bytes in the file marked as delalloc, not
1447 * more than 'max_bytes'. start and end are used to return the range,
1448 *
1449 * 1 is returned if we find something, 0 if nothing was in the tree
1450 */
Chris Masonc8b97812008-10-29 14:49:59 -04001451static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001452 u64 *start, u64 *end, u64 max_bytes,
1453 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001454{
1455 struct rb_node *node;
1456 struct extent_state *state;
1457 u64 cur_start = *start;
1458 u64 found = 0;
1459 u64 total_bytes = 0;
1460
Chris Masoncad321a2008-12-17 14:51:42 -05001461 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001462
Chris Masond1310b22008-01-24 16:13:08 -05001463 /*
1464 * this search will find all the extents that end after
1465 * our range starts.
1466 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001467 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001468 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001469 if (!found)
1470 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001471 goto out;
1472 }
1473
Chris Masond3977122009-01-05 21:25:51 -05001474 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001475 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001476 if (found && (state->start != cur_start ||
1477 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001478 goto out;
1479 }
1480 if (!(state->state & EXTENT_DELALLOC)) {
1481 if (!found)
1482 *end = state->end;
1483 goto out;
1484 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001485 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001486 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001487 *cached_state = state;
1488 atomic_inc(&state->refs);
1489 }
Chris Masond1310b22008-01-24 16:13:08 -05001490 found++;
1491 *end = state->end;
1492 cur_start = state->end + 1;
1493 node = rb_next(node);
Chris Masond1310b22008-01-24 16:13:08 -05001494 total_bytes += state->end - state->start + 1;
Josef Bacik7bf811a52013-10-07 22:11:09 -04001495 if (total_bytes >= max_bytes)
Josef Bacik573aeca2013-08-30 14:38:49 -04001496 break;
Josef Bacik573aeca2013-08-30 14:38:49 -04001497 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001498 break;
1499 }
1500out:
Chris Masoncad321a2008-12-17 14:51:42 -05001501 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001502 return found;
1503}
1504
Jeff Mahoney143bede2012-03-01 14:56:26 +01001505static noinline void __unlock_for_delalloc(struct inode *inode,
1506 struct page *locked_page,
1507 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001508{
1509 int ret;
1510 struct page *pages[16];
1511 unsigned long index = start >> PAGE_CACHE_SHIFT;
1512 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1513 unsigned long nr_pages = end_index - index + 1;
1514 int i;
1515
1516 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001517 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001518
Chris Masond3977122009-01-05 21:25:51 -05001519 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001520 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001521 min_t(unsigned long, nr_pages,
1522 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001523 for (i = 0; i < ret; i++) {
1524 if (pages[i] != locked_page)
1525 unlock_page(pages[i]);
1526 page_cache_release(pages[i]);
1527 }
1528 nr_pages -= ret;
1529 index += ret;
1530 cond_resched();
1531 }
Chris Masonc8b97812008-10-29 14:49:59 -04001532}
1533
1534static noinline int lock_delalloc_pages(struct inode *inode,
1535 struct page *locked_page,
1536 u64 delalloc_start,
1537 u64 delalloc_end)
1538{
1539 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1540 unsigned long start_index = index;
1541 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1542 unsigned long pages_locked = 0;
1543 struct page *pages[16];
1544 unsigned long nrpages;
1545 int ret;
1546 int i;
1547
1548 /* the caller is responsible for locking the start index */
1549 if (index == locked_page->index && index == end_index)
1550 return 0;
1551
1552 /* skip the page at the start index */
1553 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001554 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001555 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001556 min_t(unsigned long,
1557 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001558 if (ret == 0) {
1559 ret = -EAGAIN;
1560 goto done;
1561 }
1562 /* now we have an array of pages, lock them all */
1563 for (i = 0; i < ret; i++) {
1564 /*
1565 * the caller is taking responsibility for
1566 * locked_page
1567 */
Chris Mason771ed682008-11-06 22:02:51 -05001568 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001569 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001570 if (!PageDirty(pages[i]) ||
1571 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001572 ret = -EAGAIN;
1573 unlock_page(pages[i]);
1574 page_cache_release(pages[i]);
1575 goto done;
1576 }
1577 }
Chris Masonc8b97812008-10-29 14:49:59 -04001578 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001579 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001580 }
Chris Masonc8b97812008-10-29 14:49:59 -04001581 nrpages -= ret;
1582 index += ret;
1583 cond_resched();
1584 }
1585 ret = 0;
1586done:
1587 if (ret && pages_locked) {
1588 __unlock_for_delalloc(inode, locked_page,
1589 delalloc_start,
1590 ((u64)(start_index + pages_locked - 1)) <<
1591 PAGE_CACHE_SHIFT);
1592 }
1593 return ret;
1594}
1595
1596/*
1597 * find a contiguous range of bytes in the file marked as delalloc, not
1598 * more than 'max_bytes'. start and end are used to return the range,
1599 *
1600 * 1 is returned if we find something, 0 if nothing was in the tree
1601 */
Josef Bacik294e30f2013-10-09 12:00:56 -04001602STATIC u64 find_lock_delalloc_range(struct inode *inode,
1603 struct extent_io_tree *tree,
1604 struct page *locked_page, u64 *start,
1605 u64 *end, u64 max_bytes)
Chris Masonc8b97812008-10-29 14:49:59 -04001606{
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
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301744 if (WARN_ON(search_end <= cur_start))
Chris Masond1310b22008-01-24 16:13:08 -05001745 return 0;
Chris Masond1310b22008-01-24 16:13:08 -05001746
Chris Masoncad321a2008-12-17 14:51:42 -05001747 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001748 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1749 total_bytes = tree->dirty_bytes;
1750 goto out;
1751 }
1752 /*
1753 * this search will find all the extents that end after
1754 * our range starts.
1755 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001756 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001757 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001758 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001759
Chris Masond3977122009-01-05 21:25:51 -05001760 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001761 state = rb_entry(node, struct extent_state, rb_node);
1762 if (state->start > search_end)
1763 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001764 if (contig && found && state->start > last + 1)
1765 break;
1766 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001767 total_bytes += min(search_end, state->end) + 1 -
1768 max(cur_start, state->start);
1769 if (total_bytes >= max_bytes)
1770 break;
1771 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001772 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001773 found = 1;
1774 }
Chris Masonec29ed52011-02-23 16:23:20 -05001775 last = state->end;
1776 } else if (contig && found) {
1777 break;
Chris Masond1310b22008-01-24 16:13:08 -05001778 }
1779 node = rb_next(node);
1780 if (!node)
1781 break;
1782 }
1783out:
Chris Masoncad321a2008-12-17 14:51:42 -05001784 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001785 return total_bytes;
1786}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001787
Chris Masond352ac62008-09-29 15:18:18 -04001788/*
1789 * set the private field for a given byte offset in the tree. If there isn't
1790 * an extent_state there already, this does nothing.
1791 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +03001792static int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
Chris Masond1310b22008-01-24 16:13:08 -05001793{
1794 struct rb_node *node;
1795 struct extent_state *state;
1796 int ret = 0;
1797
Chris Masoncad321a2008-12-17 14:51:42 -05001798 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001799 /*
1800 * this search will find all the extents that end after
1801 * our range starts.
1802 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001803 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001804 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001805 ret = -ENOENT;
1806 goto out;
1807 }
1808 state = rb_entry(node, struct extent_state, rb_node);
1809 if (state->start != start) {
1810 ret = -ENOENT;
1811 goto out;
1812 }
1813 state->private = private;
1814out:
Chris Masoncad321a2008-12-17 14:51:42 -05001815 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001816 return ret;
1817}
1818
1819int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1820{
1821 struct rb_node *node;
1822 struct extent_state *state;
1823 int ret = 0;
1824
Chris Masoncad321a2008-12-17 14:51:42 -05001825 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001826 /*
1827 * this search will find all the extents that end after
1828 * our range starts.
1829 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001830 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001831 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001832 ret = -ENOENT;
1833 goto out;
1834 }
1835 state = rb_entry(node, struct extent_state, rb_node);
1836 if (state->start != start) {
1837 ret = -ENOENT;
1838 goto out;
1839 }
1840 *private = state->private;
1841out:
Chris Masoncad321a2008-12-17 14:51:42 -05001842 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001843 return ret;
1844}
1845
1846/*
1847 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001848 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001849 * has the bits set. Otherwise, 1 is returned if any bit in the
1850 * range is found set.
1851 */
1852int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
David Sterba41074882013-04-29 13:38:46 +00001853 unsigned long bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001854{
1855 struct extent_state *state = NULL;
1856 struct rb_node *node;
1857 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001858
Chris Masoncad321a2008-12-17 14:51:42 -05001859 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001860 if (cached && cached->tree && cached->start <= start &&
1861 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001862 node = &cached->rb_node;
1863 else
1864 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001865 while (node && start <= end) {
1866 state = rb_entry(node, struct extent_state, rb_node);
1867
1868 if (filled && state->start > start) {
1869 bitset = 0;
1870 break;
1871 }
1872
1873 if (state->start > end)
1874 break;
1875
1876 if (state->state & bits) {
1877 bitset = 1;
1878 if (!filled)
1879 break;
1880 } else if (filled) {
1881 bitset = 0;
1882 break;
1883 }
Chris Mason46562cec2009-09-23 20:23:16 -04001884
1885 if (state->end == (u64)-1)
1886 break;
1887
Chris Masond1310b22008-01-24 16:13:08 -05001888 start = state->end + 1;
1889 if (start > end)
1890 break;
1891 node = rb_next(node);
1892 if (!node) {
1893 if (filled)
1894 bitset = 0;
1895 break;
1896 }
1897 }
Chris Masoncad321a2008-12-17 14:51:42 -05001898 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001899 return bitset;
1900}
Chris Masond1310b22008-01-24 16:13:08 -05001901
1902/*
1903 * helper function to set a given page up to date if all the
1904 * extents in the tree for that page are up to date
1905 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001906static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001907{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001908 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001909 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001910 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001911 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001912}
1913
1914/*
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001915 * When IO fails, either with EIO or csum verification fails, we
1916 * try other mirrors that might have a good copy of the data. This
1917 * io_failure_record is used to record state as we go through all the
1918 * mirrors. If another mirror has good data, the page is set up to date
1919 * and things continue. If a good mirror can't be found, the original
1920 * bio end_io callback is called to indicate things have failed.
1921 */
1922struct io_failure_record {
1923 struct page *page;
1924 u64 start;
1925 u64 len;
1926 u64 logical;
1927 unsigned long bio_flags;
1928 int this_mirror;
1929 int failed_mirror;
1930 int in_validation;
1931};
1932
1933static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1934 int did_repair)
1935{
1936 int ret;
1937 int err = 0;
1938 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1939
1940 set_state_private(failure_tree, rec->start, 0);
1941 ret = clear_extent_bits(failure_tree, rec->start,
1942 rec->start + rec->len - 1,
1943 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1944 if (ret)
1945 err = ret;
1946
David Woodhouse53b381b2013-01-29 18:40:14 -05001947 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1948 rec->start + rec->len - 1,
1949 EXTENT_DAMAGED, GFP_NOFS);
1950 if (ret && !err)
1951 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001952
1953 kfree(rec);
1954 return err;
1955}
1956
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001957/*
1958 * this bypasses the standard btrfs submit functions deliberately, as
1959 * the standard behavior is to write all copies in a raid setup. here we only
1960 * want to write the one bad copy. so we do the mapping for ourselves and issue
1961 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001962 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001963 * actually prevents the read that triggered the error from finishing.
1964 * currently, there can be no more than two copies of every data bit. thus,
1965 * exactly one rewrite is required.
1966 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001967int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001968 u64 length, u64 logical, struct page *page,
1969 int mirror_num)
1970{
1971 struct bio *bio;
1972 struct btrfs_device *dev;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001973 u64 map_length = 0;
1974 u64 sector;
1975 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05001976 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001977 int ret;
1978
Ilya Dryomov908960c2013-11-03 19:06:39 +02001979 ASSERT(!(fs_info->sb->s_flags & MS_RDONLY));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001980 BUG_ON(!mirror_num);
1981
David Woodhouse53b381b2013-01-29 18:40:14 -05001982 /* we can't repair anything in raid56 yet */
1983 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
1984 return 0;
1985
Chris Mason9be33952013-05-17 18:30:14 -04001986 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001987 if (!bio)
1988 return -EIO;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001989 bio->bi_size = 0;
1990 map_length = length;
1991
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001992 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001993 &map_length, &bbio, mirror_num);
1994 if (ret) {
1995 bio_put(bio);
1996 return -EIO;
1997 }
1998 BUG_ON(mirror_num != bbio->mirror_num);
1999 sector = bbio->stripes[mirror_num-1].physical >> 9;
2000 bio->bi_sector = sector;
2001 dev = bbio->stripes[mirror_num-1].dev;
2002 kfree(bbio);
2003 if (!dev || !dev->bdev || !dev->writeable) {
2004 bio_put(bio);
2005 return -EIO;
2006 }
2007 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002008 bio_add_page(bio, page, length, start - page_offset(page));
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002009
Kent Overstreetc170bbb2013-11-24 16:32:22 -07002010 if (btrfsic_submit_bio_wait(WRITE_SYNC, bio)) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002011 /* try to remap that extent elsewhere? */
2012 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02002013 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002014 return -EIO;
2015 }
2016
Anand Jaind5b025d2012-07-02 22:05:21 -06002017 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04002018 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
2019 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002020
2021 bio_put(bio);
2022 return 0;
2023}
2024
Josef Bacikea466792012-03-26 21:57:36 -04002025int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
2026 int mirror_num)
2027{
Josef Bacikea466792012-03-26 21:57:36 -04002028 u64 start = eb->start;
2029 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04002030 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04002031
Ilya Dryomov908960c2013-11-03 19:06:39 +02002032 if (root->fs_info->sb->s_flags & MS_RDONLY)
2033 return -EROFS;
2034
Josef Bacikea466792012-03-26 21:57:36 -04002035 for (i = 0; i < num_pages; i++) {
2036 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002037 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04002038 start, p, mirror_num);
2039 if (ret)
2040 break;
2041 start += PAGE_CACHE_SIZE;
2042 }
2043
2044 return ret;
2045}
2046
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002047/*
2048 * each time an IO finishes, we do a fast check in the IO failure tree
2049 * to see if we need to process or clean up an io_failure_record
2050 */
2051static int clean_io_failure(u64 start, struct page *page)
2052{
2053 u64 private;
2054 u64 private_failure;
2055 struct io_failure_record *failrec;
Ilya Dryomov908960c2013-11-03 19:06:39 +02002056 struct inode *inode = page->mapping->host;
2057 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002058 struct extent_state *state;
2059 int num_copies;
2060 int did_repair = 0;
2061 int ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002062
2063 private = 0;
2064 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2065 (u64)-1, 1, EXTENT_DIRTY, 0);
2066 if (!ret)
2067 return 0;
2068
2069 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2070 &private_failure);
2071 if (ret)
2072 return 0;
2073
2074 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2075 BUG_ON(!failrec->this_mirror);
2076
2077 if (failrec->in_validation) {
2078 /* there was no real error, just free the record */
2079 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2080 failrec->start);
2081 did_repair = 1;
2082 goto out;
2083 }
Ilya Dryomov908960c2013-11-03 19:06:39 +02002084 if (fs_info->sb->s_flags & MS_RDONLY)
2085 goto out;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002086
2087 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2088 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2089 failrec->start,
2090 EXTENT_LOCKED);
2091 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2092
Miao Xie883d0de2013-07-25 19:22:35 +08002093 if (state && state->start <= failrec->start &&
2094 state->end >= failrec->start + failrec->len - 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002095 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2096 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002097 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002098 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002099 failrec->logical, page,
2100 failrec->failed_mirror);
2101 did_repair = !ret;
2102 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002103 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002104 }
2105
2106out:
2107 if (!ret)
2108 ret = free_io_failure(inode, failrec, did_repair);
2109
2110 return ret;
2111}
2112
2113/*
2114 * this is a generic handler for readpage errors (default
2115 * readpage_io_failed_hook). if other copies exist, read those and write back
2116 * good data to the failed position. does not investigate in remapping the
2117 * failed extent elsewhere, hoping the device will be smart enough to do this as
2118 * needed
2119 */
2120
Miao Xiefacc8a222013-07-25 19:22:34 +08002121static int bio_readpage_error(struct bio *failed_bio, u64 phy_offset,
2122 struct page *page, u64 start, u64 end,
2123 int failed_mirror)
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002124{
2125 struct io_failure_record *failrec = NULL;
2126 u64 private;
2127 struct extent_map *em;
2128 struct inode *inode = page->mapping->host;
2129 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2130 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2131 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2132 struct bio *bio;
Miao Xiefacc8a222013-07-25 19:22:34 +08002133 struct btrfs_io_bio *btrfs_failed_bio;
2134 struct btrfs_io_bio *btrfs_bio;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002135 int num_copies;
2136 int ret;
2137 int read_mode;
2138 u64 logical;
2139
2140 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2141
2142 ret = get_state_private(failure_tree, start, &private);
2143 if (ret) {
2144 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2145 if (!failrec)
2146 return -ENOMEM;
2147 failrec->start = start;
2148 failrec->len = end - start + 1;
2149 failrec->this_mirror = 0;
2150 failrec->bio_flags = 0;
2151 failrec->in_validation = 0;
2152
2153 read_lock(&em_tree->lock);
2154 em = lookup_extent_mapping(em_tree, start, failrec->len);
2155 if (!em) {
2156 read_unlock(&em_tree->lock);
2157 kfree(failrec);
2158 return -EIO;
2159 }
2160
Filipe David Borba Manana68ba9902013-11-25 03:22:07 +00002161 if (em->start > start || em->start + em->len <= start) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002162 free_extent_map(em);
2163 em = NULL;
2164 }
2165 read_unlock(&em_tree->lock);
2166
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002167 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002168 kfree(failrec);
2169 return -EIO;
2170 }
2171 logical = start - em->start;
2172 logical = em->block_start + logical;
2173 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2174 logical = em->block_start;
2175 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2176 extent_set_compress_type(&failrec->bio_flags,
2177 em->compress_type);
2178 }
2179 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2180 "len=%llu\n", logical, start, failrec->len);
2181 failrec->logical = logical;
2182 free_extent_map(em);
2183
2184 /* set the bits in the private failure tree */
2185 ret = set_extent_bits(failure_tree, start, end,
2186 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2187 if (ret >= 0)
2188 ret = set_state_private(failure_tree, start,
2189 (u64)(unsigned long)failrec);
2190 /* set the bits in the inode's tree */
2191 if (ret >= 0)
2192 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2193 GFP_NOFS);
2194 if (ret < 0) {
2195 kfree(failrec);
2196 return ret;
2197 }
2198 } else {
2199 failrec = (struct io_failure_record *)(unsigned long)private;
2200 pr_debug("bio_readpage_error: (found) logical=%llu, "
2201 "start=%llu, len=%llu, validation=%d\n",
2202 failrec->logical, failrec->start, failrec->len,
2203 failrec->in_validation);
2204 /*
2205 * when data can be on disk more than twice, add to failrec here
2206 * (e.g. with a list for failed_mirror) to make
2207 * clean_io_failure() clean all those errors at once.
2208 */
2209 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002210 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2211 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002212 if (num_copies == 1) {
2213 /*
2214 * we only have a single copy of the data, so don't bother with
2215 * all the retry and error correction code that follows. no
2216 * matter what the error is, it is very likely to persist.
2217 */
Miao Xie09a7f7a2013-07-25 19:22:32 +08002218 pr_debug("bio_readpage_error: cannot repair, num_copies=%d, next_mirror %d, failed_mirror %d\n",
2219 num_copies, failrec->this_mirror, failed_mirror);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002220 free_io_failure(inode, failrec, 0);
2221 return -EIO;
2222 }
2223
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002224 /*
2225 * there are two premises:
2226 * a) deliver good data to the caller
2227 * b) correct the bad sectors on disk
2228 */
2229 if (failed_bio->bi_vcnt > 1) {
2230 /*
2231 * to fulfill b), we need to know the exact failing sectors, as
2232 * we don't want to rewrite any more than the failed ones. thus,
2233 * we need separate read requests for the failed bio
2234 *
2235 * if the following BUG_ON triggers, our validation request got
2236 * merged. we need separate requests for our algorithm to work.
2237 */
2238 BUG_ON(failrec->in_validation);
2239 failrec->in_validation = 1;
2240 failrec->this_mirror = failed_mirror;
2241 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2242 } else {
2243 /*
2244 * we're ready to fulfill a) and b) alongside. get a good copy
2245 * of the failed sector and if we succeed, we have setup
2246 * everything for repair_io_failure to do the rest for us.
2247 */
2248 if (failrec->in_validation) {
2249 BUG_ON(failrec->this_mirror != failed_mirror);
2250 failrec->in_validation = 0;
2251 failrec->this_mirror = 0;
2252 }
2253 failrec->failed_mirror = failed_mirror;
2254 failrec->this_mirror++;
2255 if (failrec->this_mirror == failed_mirror)
2256 failrec->this_mirror++;
2257 read_mode = READ_SYNC;
2258 }
2259
Miao Xiefacc8a222013-07-25 19:22:34 +08002260 if (failrec->this_mirror > num_copies) {
2261 pr_debug("bio_readpage_error: (fail) num_copies=%d, next_mirror %d, failed_mirror %d\n",
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002262 num_copies, failrec->this_mirror, failed_mirror);
2263 free_io_failure(inode, failrec, 0);
2264 return -EIO;
2265 }
2266
Chris Mason9be33952013-05-17 18:30:14 -04002267 bio = btrfs_io_bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002268 if (!bio) {
2269 free_io_failure(inode, failrec, 0);
2270 return -EIO;
2271 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002272 bio->bi_end_io = failed_bio->bi_end_io;
2273 bio->bi_sector = failrec->logical >> 9;
2274 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2275 bio->bi_size = 0;
2276
Miao Xiefacc8a222013-07-25 19:22:34 +08002277 btrfs_failed_bio = btrfs_io_bio(failed_bio);
2278 if (btrfs_failed_bio->csum) {
2279 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2280 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
2281
2282 btrfs_bio = btrfs_io_bio(bio);
2283 btrfs_bio->csum = btrfs_bio->csum_inline;
2284 phy_offset >>= inode->i_sb->s_blocksize_bits;
2285 phy_offset *= csum_size;
2286 memcpy(btrfs_bio->csum, btrfs_failed_bio->csum + phy_offset,
2287 csum_size);
2288 }
2289
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002290 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2291
2292 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2293 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2294 failrec->this_mirror, num_copies, failrec->in_validation);
2295
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002296 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2297 failrec->this_mirror,
2298 failrec->bio_flags, 0);
2299 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002300}
2301
Chris Masond1310b22008-01-24 16:13:08 -05002302/* lots and lots of room for performance fixes in the end_bio funcs */
2303
Jeff Mahoney87826df2012-02-15 16:23:57 +01002304int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2305{
2306 int uptodate = (err == 0);
2307 struct extent_io_tree *tree;
2308 int ret;
2309
2310 tree = &BTRFS_I(page->mapping->host)->io_tree;
2311
2312 if (tree->ops && tree->ops->writepage_end_io_hook) {
2313 ret = tree->ops->writepage_end_io_hook(page, start,
2314 end, NULL, uptodate);
2315 if (ret)
2316 uptodate = 0;
2317 }
2318
Jeff Mahoney87826df2012-02-15 16:23:57 +01002319 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002320 ClearPageUptodate(page);
2321 SetPageError(page);
2322 }
2323 return 0;
2324}
2325
Chris Masond1310b22008-01-24 16:13:08 -05002326/*
2327 * after a writepage IO is done, we need to:
2328 * clear the uptodate bits on error
2329 * clear the writeback bits in the extent tree for this IO
2330 * end_page_writeback if the page has no more pending IO
2331 *
2332 * Scheduling is not allowed, so the extent state tree is expected
2333 * to have one and only one object corresponding to this IO.
2334 */
Chris Masond1310b22008-01-24 16:13:08 -05002335static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002336{
Chris Masond1310b22008-01-24 16:13:08 -05002337 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002338 u64 start;
2339 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -05002340
Chris Masond1310b22008-01-24 16:13:08 -05002341 do {
2342 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002343
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002344 /* We always issue full-page reads, but if some block
2345 * in a page fails to read, blk_update_request() will
2346 * advance bv_offset and adjust bv_len to compensate.
2347 * Print a warning for nonzero offsets, and an error
2348 * if they don't add up to a full page. */
2349 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2350 printk("%s page write in btrfs with offset %u and length %u\n",
2351 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2352 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2353 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002354
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002355 start = page_offset(page);
2356 end = start + bvec->bv_offset + bvec->bv_len - 1;
Chris Masond1310b22008-01-24 16:13:08 -05002357
2358 if (--bvec >= bio->bi_io_vec)
2359 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002360
Jeff Mahoney87826df2012-02-15 16:23:57 +01002361 if (end_extent_writepage(page, err, start, end))
2362 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002363
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002364 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002365 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002366
Chris Masond1310b22008-01-24 16:13:08 -05002367 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002368}
2369
Miao Xie883d0de2013-07-25 19:22:35 +08002370static void
2371endio_readpage_release_extent(struct extent_io_tree *tree, u64 start, u64 len,
2372 int uptodate)
2373{
2374 struct extent_state *cached = NULL;
2375 u64 end = start + len - 1;
2376
2377 if (uptodate && tree->track_uptodate)
2378 set_extent_uptodate(tree, start, end, &cached, GFP_ATOMIC);
2379 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
2380}
2381
Chris Masond1310b22008-01-24 16:13:08 -05002382/*
2383 * after a readpage IO is done, we need to:
2384 * clear the uptodate bits on error
2385 * set the uptodate bits if things worked
2386 * set the page up to date if all extents in the tree are uptodate
2387 * clear the lock bit in the extent tree
2388 * unlock the page if there are no other extents locked for it
2389 *
2390 * Scheduling is not allowed, so the extent state tree is expected
2391 * to have one and only one object corresponding to this IO.
2392 */
Chris Masond1310b22008-01-24 16:13:08 -05002393static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002394{
2395 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002396 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2397 struct bio_vec *bvec = bio->bi_io_vec;
Miao Xiefacc8a222013-07-25 19:22:34 +08002398 struct btrfs_io_bio *io_bio = btrfs_io_bio(bio);
David Woodhouse902b22f2008-08-20 08:51:49 -04002399 struct extent_io_tree *tree;
Miao Xiefacc8a222013-07-25 19:22:34 +08002400 u64 offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002401 u64 start;
2402 u64 end;
Miao Xiefacc8a222013-07-25 19:22:34 +08002403 u64 len;
Miao Xie883d0de2013-07-25 19:22:35 +08002404 u64 extent_start = 0;
2405 u64 extent_len = 0;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002406 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002407 int ret;
2408
Chris Masond20f7042008-12-08 16:58:54 -05002409 if (err)
2410 uptodate = 0;
2411
Chris Masond1310b22008-01-24 16:13:08 -05002412 do {
2413 struct page *page = bvec->bv_page;
Josef Bacika71754f2013-06-17 17:14:39 -04002414 struct inode *inode = page->mapping->host;
Arne Jansen507903b2011-04-06 10:02:20 +00002415
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002416 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
Chris Mason9be33952013-05-17 18:30:14 -04002417 "mirror=%lu\n", (u64)bio->bi_sector, err,
2418 io_bio->mirror_num);
Josef Bacika71754f2013-06-17 17:14:39 -04002419 tree = &BTRFS_I(inode)->io_tree;
David Woodhouse902b22f2008-08-20 08:51:49 -04002420
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002421 /* We always issue full-page reads, but if some block
2422 * in a page fails to read, blk_update_request() will
2423 * advance bv_offset and adjust bv_len to compensate.
2424 * Print a warning for nonzero offsets, and an error
2425 * if they don't add up to a full page. */
2426 if (bvec->bv_offset || bvec->bv_len != PAGE_CACHE_SIZE)
2427 printk("%s page read in btrfs with offset %u and length %u\n",
2428 bvec->bv_offset + bvec->bv_len != PAGE_CACHE_SIZE
2429 ? KERN_ERR "partial" : KERN_INFO "incomplete",
2430 bvec->bv_offset, bvec->bv_len);
Chris Masond1310b22008-01-24 16:13:08 -05002431
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002432 start = page_offset(page);
2433 end = start + bvec->bv_offset + bvec->bv_len - 1;
Miao Xiefacc8a222013-07-25 19:22:34 +08002434 len = bvec->bv_len;
Chris Masond1310b22008-01-24 16:13:08 -05002435
Chris Mason4125bf72010-02-03 18:18:45 +00002436 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002437 prefetchw(&bvec->bv_page->flags);
2438
Chris Mason9be33952013-05-17 18:30:14 -04002439 mirror = io_bio->mirror_num;
Miao Xief2a09da2013-07-25 19:22:33 +08002440 if (likely(uptodate && tree->ops &&
2441 tree->ops->readpage_end_io_hook)) {
Miao Xiefacc8a222013-07-25 19:22:34 +08002442 ret = tree->ops->readpage_end_io_hook(io_bio, offset,
2443 page, start, end,
2444 mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002445 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002446 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002447 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002448 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002449 }
Josef Bacikea466792012-03-26 21:57:36 -04002450
Miao Xief2a09da2013-07-25 19:22:33 +08002451 if (likely(uptodate))
2452 goto readpage_ok;
2453
2454 if (tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002455 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002456 if (!ret && !err &&
2457 test_bit(BIO_UPTODATE, &bio->bi_flags))
2458 uptodate = 1;
Miao Xief2a09da2013-07-25 19:22:33 +08002459 } else {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002460 /*
2461 * The generic bio_readpage_error handles errors the
2462 * following way: If possible, new read requests are
2463 * created and submitted and will end up in
2464 * end_bio_extent_readpage as well (if we're lucky, not
2465 * in the !uptodate case). In that case it returns 0 and
2466 * we just go on with the next page in our bio. If it
2467 * can't handle the error it will return -EIO and we
2468 * remain responsible for that page.
2469 */
Miao Xiefacc8a222013-07-25 19:22:34 +08002470 ret = bio_readpage_error(bio, offset, page, start, end,
2471 mirror);
Chris Mason7e383262008-04-09 16:28:12 -04002472 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002473 uptodate =
2474 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002475 if (err)
2476 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04002477 continue;
2478 }
2479 }
Miao Xief2a09da2013-07-25 19:22:33 +08002480readpage_ok:
Miao Xie883d0de2013-07-25 19:22:35 +08002481 if (likely(uptodate)) {
Josef Bacika71754f2013-06-17 17:14:39 -04002482 loff_t i_size = i_size_read(inode);
2483 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2484 unsigned offset;
2485
2486 /* Zero out the end if this page straddles i_size */
2487 offset = i_size & (PAGE_CACHE_SIZE-1);
2488 if (page->index == end_index && offset)
2489 zero_user_segment(page, offset, PAGE_CACHE_SIZE);
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002490 SetPageUptodate(page);
Chris Mason70dec802008-01-29 09:59:12 -05002491 } else {
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002492 ClearPageUptodate(page);
2493 SetPageError(page);
Chris Mason70dec802008-01-29 09:59:12 -05002494 }
Alexandre Oliva17a5adc2013-05-15 11:38:55 -04002495 unlock_page(page);
Miao Xiefacc8a222013-07-25 19:22:34 +08002496 offset += len;
Miao Xie883d0de2013-07-25 19:22:35 +08002497
2498 if (unlikely(!uptodate)) {
2499 if (extent_len) {
2500 endio_readpage_release_extent(tree,
2501 extent_start,
2502 extent_len, 1);
2503 extent_start = 0;
2504 extent_len = 0;
2505 }
2506 endio_readpage_release_extent(tree, start,
2507 end - start + 1, 0);
2508 } else if (!extent_len) {
2509 extent_start = start;
2510 extent_len = end + 1 - start;
2511 } else if (extent_start + extent_len == start) {
2512 extent_len += end + 1 - start;
2513 } else {
2514 endio_readpage_release_extent(tree, extent_start,
2515 extent_len, uptodate);
2516 extent_start = start;
2517 extent_len = end + 1 - start;
2518 }
Chris Mason4125bf72010-02-03 18:18:45 +00002519 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002520
Miao Xie883d0de2013-07-25 19:22:35 +08002521 if (extent_len)
2522 endio_readpage_release_extent(tree, extent_start, extent_len,
2523 uptodate);
Miao Xiefacc8a222013-07-25 19:22:34 +08002524 if (io_bio->end_io)
2525 io_bio->end_io(io_bio, err);
Chris Masond1310b22008-01-24 16:13:08 -05002526 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002527}
2528
Chris Mason9be33952013-05-17 18:30:14 -04002529/*
2530 * this allocates from the btrfs_bioset. We're returning a bio right now
2531 * but you can call btrfs_io_bio for the appropriate container_of magic
2532 */
Miao Xie88f794e2010-11-22 03:02:55 +00002533struct bio *
2534btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2535 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002536{
Miao Xiefacc8a222013-07-25 19:22:34 +08002537 struct btrfs_io_bio *btrfs_bio;
Chris Masond1310b22008-01-24 16:13:08 -05002538 struct bio *bio;
2539
Chris Mason9be33952013-05-17 18:30:14 -04002540 bio = bio_alloc_bioset(gfp_flags, nr_vecs, btrfs_bioset);
Chris Masond1310b22008-01-24 16:13:08 -05002541
2542 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
Chris Mason9be33952013-05-17 18:30:14 -04002543 while (!bio && (nr_vecs /= 2)) {
2544 bio = bio_alloc_bioset(gfp_flags,
2545 nr_vecs, btrfs_bioset);
2546 }
Chris Masond1310b22008-01-24 16:13:08 -05002547 }
2548
2549 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002550 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002551 bio->bi_bdev = bdev;
2552 bio->bi_sector = first_sector;
Miao Xiefacc8a222013-07-25 19:22:34 +08002553 btrfs_bio = btrfs_io_bio(bio);
2554 btrfs_bio->csum = NULL;
2555 btrfs_bio->csum_allocated = NULL;
2556 btrfs_bio->end_io = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002557 }
2558 return bio;
2559}
2560
Chris Mason9be33952013-05-17 18:30:14 -04002561struct bio *btrfs_bio_clone(struct bio *bio, gfp_t gfp_mask)
2562{
2563 return bio_clone_bioset(bio, gfp_mask, btrfs_bioset);
2564}
2565
2566
2567/* this also allocates from the btrfs_bioset */
2568struct bio *btrfs_io_bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
2569{
Miao Xiefacc8a222013-07-25 19:22:34 +08002570 struct btrfs_io_bio *btrfs_bio;
2571 struct bio *bio;
2572
2573 bio = bio_alloc_bioset(gfp_mask, nr_iovecs, btrfs_bioset);
2574 if (bio) {
2575 btrfs_bio = btrfs_io_bio(bio);
2576 btrfs_bio->csum = NULL;
2577 btrfs_bio->csum_allocated = NULL;
2578 btrfs_bio->end_io = NULL;
2579 }
2580 return bio;
Chris Mason9be33952013-05-17 18:30:14 -04002581}
2582
2583
Jeff Mahoney355808c2011-10-03 23:23:14 -04002584static int __must_check submit_one_bio(int rw, struct bio *bio,
2585 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002586{
Chris Masond1310b22008-01-24 16:13:08 -05002587 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002588 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2589 struct page *page = bvec->bv_page;
2590 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002591 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002592
Miao Xie4eee4fa2012-12-21 09:17:45 +00002593 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002594
David Woodhouse902b22f2008-08-20 08:51:49 -04002595 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002596
2597 bio_get(bio);
2598
Chris Mason065631f2008-02-20 12:07:25 -05002599 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002600 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002601 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002602 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002603 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002604
Chris Masond1310b22008-01-24 16:13:08 -05002605 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2606 ret = -EOPNOTSUPP;
2607 bio_put(bio);
2608 return ret;
2609}
2610
David Woodhouse64a16702009-07-15 23:29:37 +01002611static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002612 unsigned long offset, size_t size, struct bio *bio,
2613 unsigned long bio_flags)
2614{
2615 int ret = 0;
2616 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002617 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002618 bio_flags);
2619 BUG_ON(ret < 0);
2620 return ret;
2621
2622}
2623
Chris Masond1310b22008-01-24 16:13:08 -05002624static int submit_extent_page(int rw, struct extent_io_tree *tree,
2625 struct page *page, sector_t sector,
2626 size_t size, unsigned long offset,
2627 struct block_device *bdev,
2628 struct bio **bio_ret,
2629 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002630 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002631 int mirror_num,
2632 unsigned long prev_bio_flags,
2633 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002634{
2635 int ret = 0;
2636 struct bio *bio;
2637 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002638 int contig = 0;
2639 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2640 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002641 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002642
2643 if (bio_ret && *bio_ret) {
2644 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002645 if (old_compressed)
2646 contig = bio->bi_sector == sector;
2647 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002648 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002649
2650 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002651 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002652 bio_add_page(bio, page, page_size, offset) < page_size) {
2653 ret = submit_one_bio(rw, bio, mirror_num,
2654 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002655 if (ret < 0)
2656 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002657 bio = NULL;
2658 } else {
2659 return 0;
2660 }
2661 }
Chris Masonc8b97812008-10-29 14:49:59 -04002662 if (this_compressed)
2663 nr = BIO_MAX_PAGES;
2664 else
2665 nr = bio_get_nr_vecs(bdev);
2666
Miao Xie88f794e2010-11-22 03:02:55 +00002667 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002668 if (!bio)
2669 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002670
Chris Masonc8b97812008-10-29 14:49:59 -04002671 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002672 bio->bi_end_io = end_io_func;
2673 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002674
Chris Masond3977122009-01-05 21:25:51 -05002675 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002676 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002677 else
Chris Masonc8b97812008-10-29 14:49:59 -04002678 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002679
2680 return ret;
2681}
2682
Eric Sandeen48a3b632013-04-25 20:41:01 +00002683static void attach_extent_buffer_page(struct extent_buffer *eb,
2684 struct page *page)
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002685{
2686 if (!PagePrivate(page)) {
2687 SetPagePrivate(page);
2688 page_cache_get(page);
2689 set_page_private(page, (unsigned long)eb);
2690 } else {
2691 WARN_ON(page->private != (unsigned long)eb);
2692 }
2693}
2694
Chris Masond1310b22008-01-24 16:13:08 -05002695void set_page_extent_mapped(struct page *page)
2696{
2697 if (!PagePrivate(page)) {
2698 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002699 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002700 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002701 }
2702}
2703
Miao Xie125bac012013-07-25 19:22:37 +08002704static struct extent_map *
2705__get_extent_map(struct inode *inode, struct page *page, size_t pg_offset,
2706 u64 start, u64 len, get_extent_t *get_extent,
2707 struct extent_map **em_cached)
2708{
2709 struct extent_map *em;
2710
2711 if (em_cached && *em_cached) {
2712 em = *em_cached;
2713 if (em->in_tree && start >= em->start &&
2714 start < extent_map_end(em)) {
2715 atomic_inc(&em->refs);
2716 return em;
2717 }
2718
2719 free_extent_map(em);
2720 *em_cached = NULL;
2721 }
2722
2723 em = get_extent(inode, page, pg_offset, start, len, 0);
2724 if (em_cached && !IS_ERR_OR_NULL(em)) {
2725 BUG_ON(*em_cached);
2726 atomic_inc(&em->refs);
2727 *em_cached = em;
2728 }
2729 return em;
2730}
Chris Masond1310b22008-01-24 16:13:08 -05002731/*
2732 * basic readpage implementation. Locked extent state structs are inserted
2733 * into the tree that are removed when the IO is done (by the end_io
2734 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002735 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002736 */
Miao Xie99740902013-07-25 19:22:36 +08002737static int __do_readpage(struct extent_io_tree *tree,
2738 struct page *page,
2739 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002740 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002741 struct bio **bio, int mirror_num,
2742 unsigned long *bio_flags, int rw)
Chris Masond1310b22008-01-24 16:13:08 -05002743{
2744 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002745 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002746 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2747 u64 end;
2748 u64 cur = start;
2749 u64 extent_offset;
2750 u64 last_byte = i_size_read(inode);
2751 u64 block_start;
2752 u64 cur_end;
2753 sector_t sector;
2754 struct extent_map *em;
2755 struct block_device *bdev;
2756 int ret;
2757 int nr = 0;
Mark Fasheh4b384312013-08-06 11:42:50 -07002758 int parent_locked = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
David Sterba306e16c2011-04-19 14:29:38 +02002759 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002760 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002761 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002762 size_t blocksize = inode->i_sb->s_blocksize;
Mark Fasheh4b384312013-08-06 11:42:50 -07002763 unsigned long this_bio_flag = *bio_flags & EXTENT_BIO_PARENT_LOCKED;
Chris Masond1310b22008-01-24 16:13:08 -05002764
2765 set_page_extent_mapped(page);
2766
Miao Xie99740902013-07-25 19:22:36 +08002767 end = page_end;
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002768 if (!PageUptodate(page)) {
2769 if (cleancache_get_page(page) == 0) {
2770 BUG_ON(blocksize != PAGE_SIZE);
Miao Xie99740902013-07-25 19:22:36 +08002771 unlock_extent(tree, start, end);
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002772 goto out;
2773 }
2774 }
2775
Chris Masonc8b97812008-10-29 14:49:59 -04002776 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2777 char *userpage;
2778 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2779
2780 if (zero_offset) {
2781 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002782 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002783 memset(userpage + zero_offset, 0, iosize);
2784 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002785 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002786 }
2787 }
Chris Masond1310b22008-01-24 16:13:08 -05002788 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002789 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2790
Chris Masond1310b22008-01-24 16:13:08 -05002791 if (cur >= last_byte) {
2792 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002793 struct extent_state *cached = NULL;
2794
David Sterba306e16c2011-04-19 14:29:38 +02002795 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002796 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002797 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002798 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002799 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002800 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002801 &cached, GFP_NOFS);
Mark Fasheh4b384312013-08-06 11:42:50 -07002802 if (!parent_locked)
2803 unlock_extent_cached(tree, cur,
2804 cur + iosize - 1,
2805 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002806 break;
2807 }
Miao Xie125bac012013-07-25 19:22:37 +08002808 em = __get_extent_map(inode, page, pg_offset, cur,
2809 end - cur + 1, get_extent, em_cached);
David Sterbac7040052011-04-19 18:00:01 +02002810 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002811 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002812 if (!parent_locked)
2813 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002814 break;
2815 }
Chris Masond1310b22008-01-24 16:13:08 -05002816 extent_offset = cur - em->start;
2817 BUG_ON(extent_map_end(em) <= cur);
2818 BUG_ON(end < cur);
2819
Li Zefan261507a02010-12-17 14:21:50 +08002820 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Mark Fasheh4b384312013-08-06 11:42:50 -07002821 this_bio_flag |= EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002822 extent_set_compress_type(&this_bio_flag,
2823 em->compress_type);
2824 }
Chris Masonc8b97812008-10-29 14:49:59 -04002825
Chris Masond1310b22008-01-24 16:13:08 -05002826 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2827 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002828 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002829 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2830 disk_io_size = em->block_len;
2831 sector = em->block_start >> 9;
2832 } else {
2833 sector = (em->block_start + extent_offset) >> 9;
2834 disk_io_size = iosize;
2835 }
Chris Masond1310b22008-01-24 16:13:08 -05002836 bdev = em->bdev;
2837 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002838 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2839 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002840 free_extent_map(em);
2841 em = NULL;
2842
2843 /* we've found a hole, just zero and go on */
2844 if (block_start == EXTENT_MAP_HOLE) {
2845 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002846 struct extent_state *cached = NULL;
2847
Cong Wang7ac687d2011-11-25 23:14:28 +08002848 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002849 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002850 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002851 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002852
2853 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002854 &cached, GFP_NOFS);
2855 unlock_extent_cached(tree, cur, cur + iosize - 1,
2856 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002857 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002858 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002859 continue;
2860 }
2861 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002862 if (test_range_bit(tree, cur, cur_end,
2863 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002864 check_page_uptodate(tree, page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002865 if (!parent_locked)
2866 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002867 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002868 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002869 continue;
2870 }
Chris Mason70dec802008-01-29 09:59:12 -05002871 /* we have an inline extent but it didn't get marked up
2872 * to date. Error out
2873 */
2874 if (block_start == EXTENT_MAP_INLINE) {
2875 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002876 if (!parent_locked)
2877 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002878 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002879 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002880 continue;
2881 }
Chris Masond1310b22008-01-24 16:13:08 -05002882
Josef Bacikc8f2f242013-02-11 11:33:00 -05002883 pnr -= page->index;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04002884 ret = submit_extent_page(rw, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002885 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002886 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002887 end_bio_extent_readpage, mirror_num,
2888 *bio_flags,
2889 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002890 if (!ret) {
2891 nr++;
2892 *bio_flags = this_bio_flag;
2893 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002894 SetPageError(page);
Mark Fasheh4b384312013-08-06 11:42:50 -07002895 if (!parent_locked)
2896 unlock_extent(tree, cur, cur + iosize - 1);
Josef Bacikedd33c92012-10-05 16:40:32 -04002897 }
Chris Masond1310b22008-01-24 16:13:08 -05002898 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002899 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002900 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002901out:
Chris Masond1310b22008-01-24 16:13:08 -05002902 if (!nr) {
2903 if (!PageError(page))
2904 SetPageUptodate(page);
2905 unlock_page(page);
2906 }
2907 return 0;
2908}
2909
Miao Xie99740902013-07-25 19:22:36 +08002910static inline void __do_contiguous_readpages(struct extent_io_tree *tree,
2911 struct page *pages[], int nr_pages,
2912 u64 start, u64 end,
2913 get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002914 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002915 struct bio **bio, int mirror_num,
2916 unsigned long *bio_flags, int rw)
2917{
2918 struct inode *inode;
2919 struct btrfs_ordered_extent *ordered;
2920 int index;
2921
2922 inode = pages[0]->mapping->host;
2923 while (1) {
2924 lock_extent(tree, start, end);
2925 ordered = btrfs_lookup_ordered_range(inode, start,
2926 end - start + 1);
2927 if (!ordered)
2928 break;
2929 unlock_extent(tree, start, end);
2930 btrfs_start_ordered_extent(inode, ordered, 1);
2931 btrfs_put_ordered_extent(ordered);
2932 }
2933
2934 for (index = 0; index < nr_pages; index++) {
Miao Xie125bac012013-07-25 19:22:37 +08002935 __do_readpage(tree, pages[index], get_extent, em_cached, bio,
2936 mirror_num, bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08002937 page_cache_release(pages[index]);
2938 }
2939}
2940
2941static void __extent_readpages(struct extent_io_tree *tree,
2942 struct page *pages[],
2943 int nr_pages, get_extent_t *get_extent,
Miao Xie125bac012013-07-25 19:22:37 +08002944 struct extent_map **em_cached,
Miao Xie99740902013-07-25 19:22:36 +08002945 struct bio **bio, int mirror_num,
2946 unsigned long *bio_flags, int rw)
2947{
Stefan Behrens35a36212013-08-14 18:12:25 +02002948 u64 start = 0;
Miao Xie99740902013-07-25 19:22:36 +08002949 u64 end = 0;
2950 u64 page_start;
2951 int index;
Stefan Behrens35a36212013-08-14 18:12:25 +02002952 int first_index = 0;
Miao Xie99740902013-07-25 19:22:36 +08002953
2954 for (index = 0; index < nr_pages; index++) {
2955 page_start = page_offset(pages[index]);
2956 if (!end) {
2957 start = page_start;
2958 end = start + PAGE_CACHE_SIZE - 1;
2959 first_index = index;
2960 } else if (end + 1 == page_start) {
2961 end += PAGE_CACHE_SIZE;
2962 } else {
2963 __do_contiguous_readpages(tree, &pages[first_index],
2964 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002965 end, get_extent, em_cached,
2966 bio, mirror_num, bio_flags,
2967 rw);
Miao Xie99740902013-07-25 19:22:36 +08002968 start = page_start;
2969 end = start + PAGE_CACHE_SIZE - 1;
2970 first_index = index;
2971 }
2972 }
2973
2974 if (end)
2975 __do_contiguous_readpages(tree, &pages[first_index],
2976 index - first_index, start,
Miao Xie125bac012013-07-25 19:22:37 +08002977 end, get_extent, em_cached, bio,
Miao Xie99740902013-07-25 19:22:36 +08002978 mirror_num, bio_flags, rw);
2979}
2980
2981static int __extent_read_full_page(struct extent_io_tree *tree,
2982 struct page *page,
2983 get_extent_t *get_extent,
2984 struct bio **bio, int mirror_num,
2985 unsigned long *bio_flags, int rw)
2986{
2987 struct inode *inode = page->mapping->host;
2988 struct btrfs_ordered_extent *ordered;
2989 u64 start = page_offset(page);
2990 u64 end = start + PAGE_CACHE_SIZE - 1;
2991 int ret;
2992
2993 while (1) {
2994 lock_extent(tree, start, end);
2995 ordered = btrfs_lookup_ordered_extent(inode, start);
2996 if (!ordered)
2997 break;
2998 unlock_extent(tree, start, end);
2999 btrfs_start_ordered_extent(inode, ordered, 1);
3000 btrfs_put_ordered_extent(ordered);
3001 }
3002
Miao Xie125bac012013-07-25 19:22:37 +08003003 ret = __do_readpage(tree, page, get_extent, NULL, bio, mirror_num,
3004 bio_flags, rw);
Miao Xie99740902013-07-25 19:22:36 +08003005 return ret;
3006}
3007
Chris Masond1310b22008-01-24 16:13:08 -05003008int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003009 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003010{
3011 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003012 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003013 int ret;
3014
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003015 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003016 &bio_flags, READ);
Chris Masond1310b22008-01-24 16:13:08 -05003017 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02003018 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003019 return ret;
3020}
Chris Masond1310b22008-01-24 16:13:08 -05003021
Mark Fasheh4b384312013-08-06 11:42:50 -07003022int extent_read_full_page_nolock(struct extent_io_tree *tree, struct page *page,
3023 get_extent_t *get_extent, int mirror_num)
3024{
3025 struct bio *bio = NULL;
3026 unsigned long bio_flags = EXTENT_BIO_PARENT_LOCKED;
3027 int ret;
3028
3029 ret = __do_readpage(tree, page, get_extent, NULL, &bio, mirror_num,
3030 &bio_flags, READ);
3031 if (bio)
3032 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
3033 return ret;
3034}
3035
Chris Mason11c83492009-04-20 15:50:09 -04003036static noinline void update_nr_written(struct page *page,
3037 struct writeback_control *wbc,
3038 unsigned long nr_written)
3039{
3040 wbc->nr_to_write -= nr_written;
3041 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
3042 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
3043 page->mapping->writeback_index = page->index + nr_written;
3044}
3045
Chris Masond1310b22008-01-24 16:13:08 -05003046/*
3047 * the writepage semantics are similar to regular writepage. extent
3048 * records are inserted to lock ranges in the tree, and as dirty areas
3049 * are found, they are marked writeback. Then the lock bits are removed
3050 * and the end_io handler clears the writeback ranges
3051 */
3052static int __extent_writepage(struct page *page, struct writeback_control *wbc,
3053 void *data)
3054{
3055 struct inode *inode = page->mapping->host;
3056 struct extent_page_data *epd = data;
3057 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003058 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003059 u64 delalloc_start;
3060 u64 page_end = start + PAGE_CACHE_SIZE - 1;
3061 u64 end;
3062 u64 cur = start;
3063 u64 extent_offset;
3064 u64 last_byte = i_size_read(inode);
3065 u64 block_start;
3066 u64 iosize;
3067 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04003068 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003069 struct extent_map *em;
3070 struct block_device *bdev;
3071 int ret;
3072 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003073 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003074 size_t blocksize;
3075 loff_t i_size = i_size_read(inode);
3076 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
3077 u64 nr_delalloc;
3078 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04003079 int page_started;
3080 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04003081 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05003082 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003083 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05003084
Chris Masonffbd5172009-04-20 15:50:09 -04003085 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01003086 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04003087 else
3088 write_flags = WRITE;
3089
liubo1abe9b82011-03-24 11:18:59 +00003090 trace___extent_writepage(page, inode, wbc);
3091
Chris Masond1310b22008-01-24 16:13:08 -05003092 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04003093
3094 ClearPageError(page);
3095
Chris Mason7f3c74f2008-07-18 12:01:11 -04003096 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04003097 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04003098 (page->index == end_index && !pg_offset)) {
Lukas Czernerd47992f2013-05-21 23:17:23 -04003099 page->mapping->a_ops->invalidatepage(page, 0, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05003100 unlock_page(page);
3101 return 0;
3102 }
3103
3104 if (page->index == end_index) {
3105 char *userpage;
3106
Cong Wang7ac687d2011-11-25 23:14:28 +08003107 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04003108 memset(userpage + pg_offset, 0,
3109 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08003110 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04003111 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003112 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003113 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003114
3115 set_page_extent_mapped(page);
3116
Josef Bacik9e487102011-08-01 12:08:18 -04003117 if (!tree->ops || !tree->ops->fill_delalloc)
3118 fill_delalloc = false;
3119
Chris Masond1310b22008-01-24 16:13:08 -05003120 delalloc_start = start;
3121 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04003122 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04003123 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003124 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003125 /*
3126 * make sure the wbc mapping index is at least updated
3127 * to this page.
3128 */
3129 update_nr_written(page, wbc, 0);
3130
Chris Masond3977122009-01-05 21:25:51 -05003131 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05003132 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04003133 page,
3134 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05003135 &delalloc_end,
3136 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05003137 if (nr_delalloc == 0) {
3138 delalloc_start = delalloc_end + 1;
3139 continue;
3140 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09003141 ret = tree->ops->fill_delalloc(inode, page,
3142 delalloc_start,
3143 delalloc_end,
3144 &page_started,
3145 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003146 /* File system has been set read-only */
3147 if (ret) {
3148 SetPageError(page);
3149 goto done;
3150 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003151 /*
3152 * delalloc_end is already one less than the total
3153 * length, so we don't subtract one from
3154 * PAGE_CACHE_SIZE
3155 */
3156 delalloc_to_write += (delalloc_end - delalloc_start +
3157 PAGE_CACHE_SIZE) >>
3158 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003159 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05003160 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003161 if (wbc->nr_to_write < delalloc_to_write) {
3162 int thresh = 8192;
3163
3164 if (delalloc_to_write < thresh * 2)
3165 thresh = delalloc_to_write;
3166 wbc->nr_to_write = min_t(u64, delalloc_to_write,
3167 thresh);
3168 }
Chris Masonc8b97812008-10-29 14:49:59 -04003169
Chris Mason771ed682008-11-06 22:02:51 -05003170 /* did the fill delalloc function already unlock and start
3171 * the IO?
3172 */
3173 if (page_started) {
3174 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003175 /*
3176 * we've unlocked the page, so we can't update
3177 * the mapping's writeback index, just update
3178 * nr_to_write.
3179 */
3180 wbc->nr_to_write -= nr_written;
3181 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05003182 }
Chris Masonc8b97812008-10-29 14:49:59 -04003183 }
Chris Mason247e7432008-07-17 12:53:51 -04003184 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04003185 ret = tree->ops->writepage_start_hook(page, start,
3186 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01003187 if (ret) {
3188 /* Fixup worker will requeue */
3189 if (ret == -EBUSY)
3190 wbc->pages_skipped++;
3191 else
3192 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04003193 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04003194 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003195 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04003196 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04003197 }
3198 }
3199
Chris Mason11c83492009-04-20 15:50:09 -04003200 /*
3201 * we don't want to touch the inode after unlocking the page,
3202 * so we update the mapping writeback index now
3203 */
3204 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05003205
Chris Masond1310b22008-01-24 16:13:08 -05003206 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05003207 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003208 if (tree->ops && tree->ops->writepage_end_io_hook)
3209 tree->ops->writepage_end_io_hook(page, start,
3210 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003211 goto done;
3212 }
3213
Chris Masond1310b22008-01-24 16:13:08 -05003214 blocksize = inode->i_sb->s_blocksize;
3215
3216 while (cur <= end) {
3217 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04003218 if (tree->ops && tree->ops->writepage_end_io_hook)
3219 tree->ops->writepage_end_io_hook(page, cur,
3220 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05003221 break;
3222 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003223 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05003224 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02003225 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05003226 SetPageError(page);
3227 break;
3228 }
3229
3230 extent_offset = cur - em->start;
3231 BUG_ON(extent_map_end(em) <= cur);
3232 BUG_ON(end < cur);
3233 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00003234 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003235 sector = (em->block_start + extent_offset) >> 9;
3236 bdev = em->bdev;
3237 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04003238 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05003239 free_extent_map(em);
3240 em = NULL;
3241
Chris Masonc8b97812008-10-29 14:49:59 -04003242 /*
3243 * compressed and inline extents are written through other
3244 * paths in the FS
3245 */
3246 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05003247 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04003248 /*
3249 * end_io notification does not happen here for
3250 * compressed extents
3251 */
3252 if (!compressed && tree->ops &&
3253 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003254 tree->ops->writepage_end_io_hook(page, cur,
3255 cur + iosize - 1,
3256 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003257 else if (compressed) {
3258 /* we don't want to end_page_writeback on
3259 * a compressed extent. this happens
3260 * elsewhere
3261 */
3262 nr++;
3263 }
3264
3265 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003266 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003267 continue;
3268 }
Chris Masond1310b22008-01-24 16:13:08 -05003269 /* leave this out until we have a page_mkwrite call */
3270 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003271 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003272 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003273 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003274 continue;
3275 }
Chris Masonc8b97812008-10-29 14:49:59 -04003276
Chris Masond1310b22008-01-24 16:13:08 -05003277 if (tree->ops && tree->ops->writepage_io_hook) {
3278 ret = tree->ops->writepage_io_hook(page, cur,
3279 cur + iosize - 1);
3280 } else {
3281 ret = 0;
3282 }
Chris Mason1259ab72008-05-12 13:39:03 -04003283 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003284 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003285 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003286 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003287
Chris Masond1310b22008-01-24 16:13:08 -05003288 set_range_writeback(tree, cur, cur + iosize - 1);
3289 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003290 printk(KERN_ERR "btrfs warning page %lu not "
3291 "writeback, cur %llu end %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003292 page->index, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05003293 }
3294
Chris Masonffbd5172009-04-20 15:50:09 -04003295 ret = submit_extent_page(write_flags, tree, page,
3296 sector, iosize, pg_offset,
3297 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003298 end_bio_extent_writepage,
3299 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003300 if (ret)
3301 SetPageError(page);
3302 }
3303 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003304 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003305 nr++;
3306 }
3307done:
3308 if (nr == 0) {
3309 /* make sure the mapping tag for page dirty gets cleared */
3310 set_page_writeback(page);
3311 end_page_writeback(page);
3312 }
Chris Masond1310b22008-01-24 16:13:08 -05003313 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003314
Chris Mason11c83492009-04-20 15:50:09 -04003315done_unlocked:
3316
Chris Mason2c64c532009-09-02 15:04:12 -04003317 /* drop our reference on any cached states */
3318 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003319 return 0;
3320}
3321
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003322static int eb_wait(void *word)
3323{
3324 io_schedule();
3325 return 0;
3326}
3327
Josef Bacikfd8b2b62013-04-24 16:41:19 -04003328void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003329{
3330 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3331 TASK_UNINTERRUPTIBLE);
3332}
3333
3334static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3335 struct btrfs_fs_info *fs_info,
3336 struct extent_page_data *epd)
3337{
3338 unsigned long i, num_pages;
3339 int flush = 0;
3340 int ret = 0;
3341
3342 if (!btrfs_try_tree_write_lock(eb)) {
3343 flush = 1;
3344 flush_write_bio(epd);
3345 btrfs_tree_lock(eb);
3346 }
3347
3348 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3349 btrfs_tree_unlock(eb);
3350 if (!epd->sync_io)
3351 return 0;
3352 if (!flush) {
3353 flush_write_bio(epd);
3354 flush = 1;
3355 }
Chris Masona098d8e2012-03-21 12:09:56 -04003356 while (1) {
3357 wait_on_extent_buffer_writeback(eb);
3358 btrfs_tree_lock(eb);
3359 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3360 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003361 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003362 }
3363 }
3364
Josef Bacik51561ff2012-07-20 16:25:24 -04003365 /*
3366 * We need to do this to prevent races in people who check if the eb is
3367 * under IO since we can end up having no IO bits set for a short period
3368 * of time.
3369 */
3370 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003371 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3372 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003373 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003374 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003375 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3376 -eb->len,
3377 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003378 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003379 } else {
3380 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003381 }
3382
3383 btrfs_tree_unlock(eb);
3384
3385 if (!ret)
3386 return ret;
3387
3388 num_pages = num_extent_pages(eb->start, eb->len);
3389 for (i = 0; i < num_pages; i++) {
3390 struct page *p = extent_buffer_page(eb, i);
3391
3392 if (!trylock_page(p)) {
3393 if (!flush) {
3394 flush_write_bio(epd);
3395 flush = 1;
3396 }
3397 lock_page(p);
3398 }
3399 }
3400
3401 return ret;
3402}
3403
3404static void end_extent_buffer_writeback(struct extent_buffer *eb)
3405{
3406 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3407 smp_mb__after_clear_bit();
3408 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3409}
3410
3411static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3412{
3413 int uptodate = err == 0;
3414 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3415 struct extent_buffer *eb;
3416 int done;
3417
3418 do {
3419 struct page *page = bvec->bv_page;
3420
3421 bvec--;
3422 eb = (struct extent_buffer *)page->private;
3423 BUG_ON(!eb);
3424 done = atomic_dec_and_test(&eb->io_pages);
3425
3426 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3427 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3428 ClearPageUptodate(page);
3429 SetPageError(page);
3430 }
3431
3432 end_page_writeback(page);
3433
3434 if (!done)
3435 continue;
3436
3437 end_extent_buffer_writeback(eb);
3438 } while (bvec >= bio->bi_io_vec);
3439
3440 bio_put(bio);
3441
3442}
3443
3444static int write_one_eb(struct extent_buffer *eb,
3445 struct btrfs_fs_info *fs_info,
3446 struct writeback_control *wbc,
3447 struct extent_page_data *epd)
3448{
3449 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3450 u64 offset = eb->start;
3451 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003452 unsigned long bio_flags = 0;
Josef Bacikd4c7ca82013-04-19 19:49:09 -04003453 int rw = (epd->sync_io ? WRITE_SYNC : WRITE) | REQ_META;
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003454 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003455
3456 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3457 num_pages = num_extent_pages(eb->start, eb->len);
3458 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003459 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3460 bio_flags = EXTENT_BIO_TREE_LOG;
3461
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003462 for (i = 0; i < num_pages; i++) {
3463 struct page *p = extent_buffer_page(eb, i);
3464
3465 clear_page_dirty_for_io(p);
3466 set_page_writeback(p);
3467 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3468 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3469 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003470 0, epd->bio_flags, bio_flags);
3471 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003472 if (ret) {
3473 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3474 SetPageError(p);
3475 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3476 end_extent_buffer_writeback(eb);
3477 ret = -EIO;
3478 break;
3479 }
3480 offset += PAGE_CACHE_SIZE;
3481 update_nr_written(p, wbc, 1);
3482 unlock_page(p);
3483 }
3484
3485 if (unlikely(ret)) {
3486 for (; i < num_pages; i++) {
3487 struct page *p = extent_buffer_page(eb, i);
3488 unlock_page(p);
3489 }
3490 }
3491
3492 return ret;
3493}
3494
3495int btree_write_cache_pages(struct address_space *mapping,
3496 struct writeback_control *wbc)
3497{
3498 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3499 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3500 struct extent_buffer *eb, *prev_eb = NULL;
3501 struct extent_page_data epd = {
3502 .bio = NULL,
3503 .tree = tree,
3504 .extent_locked = 0,
3505 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003506 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003507 };
3508 int ret = 0;
3509 int done = 0;
3510 int nr_to_write_done = 0;
3511 struct pagevec pvec;
3512 int nr_pages;
3513 pgoff_t index;
3514 pgoff_t end; /* Inclusive */
3515 int scanned = 0;
3516 int tag;
3517
3518 pagevec_init(&pvec, 0);
3519 if (wbc->range_cyclic) {
3520 index = mapping->writeback_index; /* Start from prev offset */
3521 end = -1;
3522 } else {
3523 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3524 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3525 scanned = 1;
3526 }
3527 if (wbc->sync_mode == WB_SYNC_ALL)
3528 tag = PAGECACHE_TAG_TOWRITE;
3529 else
3530 tag = PAGECACHE_TAG_DIRTY;
3531retry:
3532 if (wbc->sync_mode == WB_SYNC_ALL)
3533 tag_pages_for_writeback(mapping, index, end);
3534 while (!done && !nr_to_write_done && (index <= end) &&
3535 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3536 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3537 unsigned i;
3538
3539 scanned = 1;
3540 for (i = 0; i < nr_pages; i++) {
3541 struct page *page = pvec.pages[i];
3542
3543 if (!PagePrivate(page))
3544 continue;
3545
3546 if (!wbc->range_cyclic && page->index > end) {
3547 done = 1;
3548 break;
3549 }
3550
Josef Bacikb5bae262012-09-14 13:43:01 -04003551 spin_lock(&mapping->private_lock);
3552 if (!PagePrivate(page)) {
3553 spin_unlock(&mapping->private_lock);
3554 continue;
3555 }
3556
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003557 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003558
3559 /*
3560 * Shouldn't happen and normally this would be a BUG_ON
3561 * but no sense in crashing the users box for something
3562 * we can survive anyway.
3563 */
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303564 if (WARN_ON(!eb)) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003565 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003566 continue;
3567 }
3568
Josef Bacikb5bae262012-09-14 13:43:01 -04003569 if (eb == prev_eb) {
3570 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003571 continue;
3572 }
3573
Josef Bacikb5bae262012-09-14 13:43:01 -04003574 ret = atomic_inc_not_zero(&eb->refs);
3575 spin_unlock(&mapping->private_lock);
3576 if (!ret)
3577 continue;
3578
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003579 prev_eb = eb;
3580 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3581 if (!ret) {
3582 free_extent_buffer(eb);
3583 continue;
3584 }
3585
3586 ret = write_one_eb(eb, fs_info, wbc, &epd);
3587 if (ret) {
3588 done = 1;
3589 free_extent_buffer(eb);
3590 break;
3591 }
3592 free_extent_buffer(eb);
3593
3594 /*
3595 * the filesystem may choose to bump up nr_to_write.
3596 * We have to make sure to honor the new nr_to_write
3597 * at any time
3598 */
3599 nr_to_write_done = wbc->nr_to_write <= 0;
3600 }
3601 pagevec_release(&pvec);
3602 cond_resched();
3603 }
3604 if (!scanned && !done) {
3605 /*
3606 * We hit the last page and there is more work to be done: wrap
3607 * back to the start of the file
3608 */
3609 scanned = 1;
3610 index = 0;
3611 goto retry;
3612 }
3613 flush_write_bio(&epd);
3614 return ret;
3615}
3616
Chris Masond1310b22008-01-24 16:13:08 -05003617/**
Chris Mason4bef0842008-09-08 11:18:08 -04003618 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
Chris Masond1310b22008-01-24 16:13:08 -05003619 * @mapping: address space structure to write
3620 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3621 * @writepage: function called for each page
3622 * @data: data passed to writepage function
3623 *
3624 * If a page is already under I/O, write_cache_pages() skips it, even
3625 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3626 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3627 * and msync() need to guarantee that all the data which was dirty at the time
3628 * the call was made get new I/O started against them. If wbc->sync_mode is
3629 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3630 * existing IO to complete.
3631 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003632static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003633 struct address_space *mapping,
3634 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003635 writepage_t writepage, void *data,
3636 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003637{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003638 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003639 int ret = 0;
3640 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003641 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003642 struct pagevec pvec;
3643 int nr_pages;
3644 pgoff_t index;
3645 pgoff_t end; /* Inclusive */
3646 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003647 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003648
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003649 /*
3650 * We have to hold onto the inode so that ordered extents can do their
3651 * work when the IO finishes. The alternative to this is failing to add
3652 * an ordered extent if the igrab() fails there and that is a huge pain
3653 * to deal with, so instead just hold onto the inode throughout the
3654 * writepages operation. If it fails here we are freeing up the inode
3655 * anyway and we'd rather not waste our time writing out stuff that is
3656 * going to be truncated anyway.
3657 */
3658 if (!igrab(inode))
3659 return 0;
3660
Chris Masond1310b22008-01-24 16:13:08 -05003661 pagevec_init(&pvec, 0);
3662 if (wbc->range_cyclic) {
3663 index = mapping->writeback_index; /* Start from prev offset */
3664 end = -1;
3665 } else {
3666 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3667 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003668 scanned = 1;
3669 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003670 if (wbc->sync_mode == WB_SYNC_ALL)
3671 tag = PAGECACHE_TAG_TOWRITE;
3672 else
3673 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003674retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003675 if (wbc->sync_mode == WB_SYNC_ALL)
3676 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003677 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003678 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3679 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003680 unsigned i;
3681
3682 scanned = 1;
3683 for (i = 0; i < nr_pages; i++) {
3684 struct page *page = pvec.pages[i];
3685
3686 /*
3687 * At this point we hold neither mapping->tree_lock nor
3688 * lock on the page itself: the page may be truncated or
3689 * invalidated (changing page->mapping to NULL), or even
3690 * swizzled back from swapper_space to tmpfs file
3691 * mapping
3692 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003693 if (!trylock_page(page)) {
3694 flush_fn(data);
3695 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003696 }
Chris Masond1310b22008-01-24 16:13:08 -05003697
3698 if (unlikely(page->mapping != mapping)) {
3699 unlock_page(page);
3700 continue;
3701 }
3702
3703 if (!wbc->range_cyclic && page->index > end) {
3704 done = 1;
3705 unlock_page(page);
3706 continue;
3707 }
3708
Chris Masond2c3f4f2008-11-19 12:44:22 -05003709 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003710 if (PageWriteback(page))
3711 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003712 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003713 }
Chris Masond1310b22008-01-24 16:13:08 -05003714
3715 if (PageWriteback(page) ||
3716 !clear_page_dirty_for_io(page)) {
3717 unlock_page(page);
3718 continue;
3719 }
3720
3721 ret = (*writepage)(page, wbc, data);
3722
3723 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3724 unlock_page(page);
3725 ret = 0;
3726 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003727 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003728 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003729
3730 /*
3731 * the filesystem may choose to bump up nr_to_write.
3732 * We have to make sure to honor the new nr_to_write
3733 * at any time
3734 */
3735 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003736 }
3737 pagevec_release(&pvec);
3738 cond_resched();
3739 }
3740 if (!scanned && !done) {
3741 /*
3742 * We hit the last page and there is more work to be done: wrap
3743 * back to the start of the file
3744 */
3745 scanned = 1;
3746 index = 0;
3747 goto retry;
3748 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003749 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003750 return ret;
3751}
Chris Masond1310b22008-01-24 16:13:08 -05003752
Chris Masonffbd5172009-04-20 15:50:09 -04003753static void flush_epd_write_bio(struct extent_page_data *epd)
3754{
3755 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003756 int rw = WRITE;
3757 int ret;
3758
Chris Masonffbd5172009-04-20 15:50:09 -04003759 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003760 rw = WRITE_SYNC;
3761
Josef Bacikde0022b2012-09-25 14:25:58 -04003762 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003763 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003764 epd->bio = NULL;
3765 }
3766}
3767
Chris Masond2c3f4f2008-11-19 12:44:22 -05003768static noinline void flush_write_bio(void *data)
3769{
3770 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003771 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003772}
3773
Chris Masond1310b22008-01-24 16:13:08 -05003774int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3775 get_extent_t *get_extent,
3776 struct writeback_control *wbc)
3777{
3778 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003779 struct extent_page_data epd = {
3780 .bio = NULL,
3781 .tree = tree,
3782 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003783 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003784 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003785 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003786 };
Chris Masond1310b22008-01-24 16:13:08 -05003787
Chris Masond1310b22008-01-24 16:13:08 -05003788 ret = __extent_writepage(page, wbc, &epd);
3789
Chris Masonffbd5172009-04-20 15:50:09 -04003790 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003791 return ret;
3792}
Chris Masond1310b22008-01-24 16:13:08 -05003793
Chris Mason771ed682008-11-06 22:02:51 -05003794int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3795 u64 start, u64 end, get_extent_t *get_extent,
3796 int mode)
3797{
3798 int ret = 0;
3799 struct address_space *mapping = inode->i_mapping;
3800 struct page *page;
3801 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3802 PAGE_CACHE_SHIFT;
3803
3804 struct extent_page_data epd = {
3805 .bio = NULL,
3806 .tree = tree,
3807 .get_extent = get_extent,
3808 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003809 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003810 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003811 };
3812 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003813 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003814 .nr_to_write = nr_pages * 2,
3815 .range_start = start,
3816 .range_end = end + 1,
3817 };
3818
Chris Masond3977122009-01-05 21:25:51 -05003819 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003820 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3821 if (clear_page_dirty_for_io(page))
3822 ret = __extent_writepage(page, &wbc_writepages, &epd);
3823 else {
3824 if (tree->ops && tree->ops->writepage_end_io_hook)
3825 tree->ops->writepage_end_io_hook(page, start,
3826 start + PAGE_CACHE_SIZE - 1,
3827 NULL, 1);
3828 unlock_page(page);
3829 }
3830 page_cache_release(page);
3831 start += PAGE_CACHE_SIZE;
3832 }
3833
Chris Masonffbd5172009-04-20 15:50:09 -04003834 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003835 return ret;
3836}
Chris Masond1310b22008-01-24 16:13:08 -05003837
3838int extent_writepages(struct extent_io_tree *tree,
3839 struct address_space *mapping,
3840 get_extent_t *get_extent,
3841 struct writeback_control *wbc)
3842{
3843 int ret = 0;
3844 struct extent_page_data epd = {
3845 .bio = NULL,
3846 .tree = tree,
3847 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003848 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003849 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003850 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003851 };
3852
Chris Mason4bef0842008-09-08 11:18:08 -04003853 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003854 __extent_writepage, &epd,
3855 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003856 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003857 return ret;
3858}
Chris Masond1310b22008-01-24 16:13:08 -05003859
3860int extent_readpages(struct extent_io_tree *tree,
3861 struct address_space *mapping,
3862 struct list_head *pages, unsigned nr_pages,
3863 get_extent_t get_extent)
3864{
3865 struct bio *bio = NULL;
3866 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003867 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003868 struct page *pagepool[16];
3869 struct page *page;
Miao Xie125bac012013-07-25 19:22:37 +08003870 struct extent_map *em_cached = NULL;
Liu Bo67c96842012-07-20 21:43:09 -06003871 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003872
Chris Masond1310b22008-01-24 16:13:08 -05003873 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003874 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003875
3876 prefetchw(&page->flags);
3877 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003878 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003879 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003880 page_cache_release(page);
3881 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003882 }
Liu Bo67c96842012-07-20 21:43:09 -06003883
3884 pagepool[nr++] = page;
3885 if (nr < ARRAY_SIZE(pagepool))
3886 continue;
Miao Xie125bac012013-07-25 19:22:37 +08003887 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003888 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003889 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003890 }
Miao Xie99740902013-07-25 19:22:36 +08003891 if (nr)
Miao Xie125bac012013-07-25 19:22:37 +08003892 __extent_readpages(tree, pagepool, nr, get_extent, &em_cached,
Miao Xie99740902013-07-25 19:22:36 +08003893 &bio, 0, &bio_flags, READ);
Liu Bo67c96842012-07-20 21:43:09 -06003894
Miao Xie125bac012013-07-25 19:22:37 +08003895 if (em_cached)
3896 free_extent_map(em_cached);
3897
Chris Masond1310b22008-01-24 16:13:08 -05003898 BUG_ON(!list_empty(pages));
3899 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003900 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003901 return 0;
3902}
Chris Masond1310b22008-01-24 16:13:08 -05003903
3904/*
3905 * basic invalidatepage code, this waits on any locked or writeback
3906 * ranges corresponding to the page, and then deletes any extent state
3907 * records from the tree
3908 */
3909int extent_invalidatepage(struct extent_io_tree *tree,
3910 struct page *page, unsigned long offset)
3911{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003912 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003913 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003914 u64 end = start + PAGE_CACHE_SIZE - 1;
3915 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3916
Qu Wenruofda28322013-02-26 08:10:22 +00003917 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003918 if (start > end)
3919 return 0;
3920
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003921 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003922 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003923 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003924 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3925 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003926 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003927 return 0;
3928}
Chris Masond1310b22008-01-24 16:13:08 -05003929
3930/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003931 * a helper for releasepage, this tests for areas of the page that
3932 * are locked or under IO and drops the related state bits if it is safe
3933 * to drop the page.
3934 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003935static int try_release_extent_state(struct extent_map_tree *map,
3936 struct extent_io_tree *tree,
3937 struct page *page, gfp_t mask)
Chris Mason7b13b7b2008-04-18 10:29:50 -04003938{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003939 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003940 u64 end = start + PAGE_CACHE_SIZE - 1;
3941 int ret = 1;
3942
Chris Mason211f90e2008-07-18 11:56:15 -04003943 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003944 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003945 ret = 0;
3946 else {
3947 if ((mask & GFP_NOFS) == GFP_NOFS)
3948 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003949 /*
3950 * at this point we can safely clear everything except the
3951 * locked bit and the nodatasum bit
3952 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003953 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003954 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3955 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003956
3957 /* if clear_extent_bit failed for enomem reasons,
3958 * we can't allow the release to continue.
3959 */
3960 if (ret < 0)
3961 ret = 0;
3962 else
3963 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003964 }
3965 return ret;
3966}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003967
3968/*
Chris Masond1310b22008-01-24 16:13:08 -05003969 * a helper for releasepage. As long as there are no locked extents
3970 * in the range corresponding to the page, both state records and extent
3971 * map records are removed
3972 */
3973int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003974 struct extent_io_tree *tree, struct page *page,
3975 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003976{
3977 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003978 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003979 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003980
Chris Mason70dec802008-01-29 09:59:12 -05003981 if ((mask & __GFP_WAIT) &&
3982 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003983 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003984 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003985 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003986 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003987 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003988 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003989 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003990 break;
3991 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003992 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3993 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003994 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003995 free_extent_map(em);
3996 break;
3997 }
3998 if (!test_range_bit(tree, em->start,
3999 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04004000 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04004001 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05004002 remove_extent_mapping(map, em);
4003 /* once for the rb tree */
4004 free_extent_map(em);
4005 }
4006 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04004007 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05004008
4009 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05004010 free_extent_map(em);
4011 }
Chris Masond1310b22008-01-24 16:13:08 -05004012 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04004013 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05004014}
Chris Masond1310b22008-01-24 16:13:08 -05004015
Chris Masonec29ed52011-02-23 16:23:20 -05004016/*
4017 * helper function for fiemap, which doesn't want to see any holes.
4018 * This maps until we find something past 'last'
4019 */
4020static struct extent_map *get_extent_skip_holes(struct inode *inode,
4021 u64 offset,
4022 u64 last,
4023 get_extent_t *get_extent)
4024{
4025 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
4026 struct extent_map *em;
4027 u64 len;
4028
4029 if (offset >= last)
4030 return NULL;
4031
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05304032 while (1) {
Chris Masonec29ed52011-02-23 16:23:20 -05004033 len = last - offset;
4034 if (len == 0)
4035 break;
Qu Wenruofda28322013-02-26 08:10:22 +00004036 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05004037 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02004038 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05004039 return em;
4040
4041 /* if this isn't a hole return it */
4042 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
4043 em->block_start != EXTENT_MAP_HOLE) {
4044 return em;
4045 }
4046
4047 /* this is a hole, advance to the next extent */
4048 offset = extent_map_end(em);
4049 free_extent_map(em);
4050 if (offset >= last)
4051 break;
4052 }
4053 return NULL;
4054}
4055
Liu Bofe09e162013-09-22 12:54:23 +08004056static noinline int count_ext_ref(u64 inum, u64 offset, u64 root_id, void *ctx)
4057{
4058 unsigned long cnt = *((unsigned long *)ctx);
4059
4060 cnt++;
4061 *((unsigned long *)ctx) = cnt;
4062
4063 /* Now we're sure that the extent is shared. */
4064 if (cnt > 1)
4065 return 1;
4066 return 0;
4067}
4068
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004069int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4070 __u64 start, __u64 len, get_extent_t *get_extent)
4071{
Josef Bacik975f84f2010-11-23 19:36:57 +00004072 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004073 u64 off = start;
4074 u64 max = start + len;
4075 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00004076 u32 found_type;
4077 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05004078 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004079 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004080 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00004081 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004082 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00004083 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00004084 struct btrfs_path *path;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004085 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05004086 u64 em_start = 0;
4087 u64 em_len = 0;
4088 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004089
4090 if (len == 0)
4091 return -EINVAL;
4092
Josef Bacik975f84f2010-11-23 19:36:57 +00004093 path = btrfs_alloc_path();
4094 if (!path)
4095 return -ENOMEM;
4096 path->leave_spinning = 1;
4097
Josef Bacik4d479cf2011-11-17 11:34:31 -05004098 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
4099 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
4100
Chris Masonec29ed52011-02-23 16:23:20 -05004101 /*
4102 * lookup the last file extent. We're not using i_size here
4103 * because there might be preallocation past i_size
4104 */
Josef Bacik975f84f2010-11-23 19:36:57 +00004105 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08004106 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00004107 if (ret < 0) {
4108 btrfs_free_path(path);
4109 return ret;
4110 }
4111 WARN_ON(!ret);
4112 path->slots[0]--;
Josef Bacik975f84f2010-11-23 19:36:57 +00004113 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
4114 found_type = btrfs_key_type(&found_key);
4115
Chris Masonec29ed52011-02-23 16:23:20 -05004116 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08004117 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00004118 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05004119 /* have to trust i_size as the end */
4120 last = (u64)-1;
4121 last_for_get_extent = isize;
4122 } else {
4123 /*
4124 * remember the start of the last extent. There are a
4125 * bunch of different factors that go into the length of the
4126 * extent, so its much less complex to remember where it started
4127 */
4128 last = found_key.offset;
4129 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00004130 }
Liu Bofe09e162013-09-22 12:54:23 +08004131 btrfs_release_path(path);
Josef Bacik975f84f2010-11-23 19:36:57 +00004132
Chris Masonec29ed52011-02-23 16:23:20 -05004133 /*
4134 * we might have some extents allocated but more delalloc past those
4135 * extents. so, we trust isize unless the start of the last extent is
4136 * beyond isize
4137 */
4138 if (last < isize) {
4139 last = (u64)-1;
4140 last_for_get_extent = isize;
4141 }
4142
Liu Boa52f4cd2013-05-01 16:23:41 +00004143 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len - 1, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01004144 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05004145
Josef Bacik4d479cf2011-11-17 11:34:31 -05004146 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05004147 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004148 if (!em)
4149 goto out;
4150 if (IS_ERR(em)) {
4151 ret = PTR_ERR(em);
4152 goto out;
4153 }
Josef Bacik975f84f2010-11-23 19:36:57 +00004154
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004155 while (!end) {
Josef Bacikb76bb702013-07-05 13:52:51 -04004156 u64 offset_in_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004157
Chris Masonea8efc72011-03-08 11:54:40 -05004158 /* break if the extent we found is outside the range */
4159 if (em->start >= max || extent_map_end(em) < off)
4160 break;
4161
4162 /*
4163 * get_extent may return an extent that starts before our
4164 * requested range. We have to make sure the ranges
4165 * we return to fiemap always move forward and don't
4166 * overlap, so adjust the offsets here
4167 */
4168 em_start = max(em->start, off);
4169
4170 /*
4171 * record the offset from the start of the extent
Josef Bacikb76bb702013-07-05 13:52:51 -04004172 * for adjusting the disk offset below. Only do this if the
4173 * extent isn't compressed since our in ram offset may be past
4174 * what we have actually allocated on disk.
Chris Masonea8efc72011-03-08 11:54:40 -05004175 */
Josef Bacikb76bb702013-07-05 13:52:51 -04004176 if (!test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4177 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05004178 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05004179 em_len = em_end - em_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004180 disko = 0;
4181 flags = 0;
4182
Chris Masonea8efc72011-03-08 11:54:40 -05004183 /*
4184 * bump off for our next call to get_extent
4185 */
4186 off = extent_map_end(em);
4187 if (off >= max)
4188 end = 1;
4189
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004190 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004191 end = 1;
4192 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004193 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004194 flags |= (FIEMAP_EXTENT_DATA_INLINE |
4195 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004196 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004197 flags |= (FIEMAP_EXTENT_DELALLOC |
4198 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04004199 } else {
Liu Bofe09e162013-09-22 12:54:23 +08004200 unsigned long ref_cnt = 0;
4201
Chris Masonea8efc72011-03-08 11:54:40 -05004202 disko = em->block_start + offset_in_extent;
Liu Bofe09e162013-09-22 12:54:23 +08004203
4204 /*
4205 * As btrfs supports shared space, this information
4206 * can be exported to userspace tools via
4207 * flag FIEMAP_EXTENT_SHARED.
4208 */
4209 ret = iterate_inodes_from_logical(
4210 em->block_start,
4211 BTRFS_I(inode)->root->fs_info,
4212 path, count_ext_ref, &ref_cnt);
4213 if (ret < 0 && ret != -ENOENT)
4214 goto out_free;
4215
4216 if (ref_cnt > 1)
4217 flags |= FIEMAP_EXTENT_SHARED;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004218 }
4219 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
4220 flags |= FIEMAP_EXTENT_ENCODED;
4221
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004222 free_extent_map(em);
4223 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05004224 if ((em_start >= last) || em_len == (u64)-1 ||
4225 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004226 flags |= FIEMAP_EXTENT_LAST;
4227 end = 1;
4228 }
4229
Chris Masonec29ed52011-02-23 16:23:20 -05004230 /* now scan forward to see if this is really the last extent. */
4231 em = get_extent_skip_holes(inode, off, last_for_get_extent,
4232 get_extent);
4233 if (IS_ERR(em)) {
4234 ret = PTR_ERR(em);
4235 goto out;
4236 }
4237 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00004238 flags |= FIEMAP_EXTENT_LAST;
4239 end = 1;
4240 }
Chris Masonec29ed52011-02-23 16:23:20 -05004241 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
4242 em_len, flags);
4243 if (ret)
4244 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004245 }
4246out_free:
4247 free_extent_map(em);
4248out:
Liu Bofe09e162013-09-22 12:54:23 +08004249 btrfs_free_path(path);
Liu Boa52f4cd2013-05-01 16:23:41 +00004250 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00004251 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05004252 return ret;
4253}
4254
Chris Mason727011e2010-08-06 13:21:20 -04004255static void __free_extent_buffer(struct extent_buffer *eb)
4256{
Eric Sandeen6d49ba12013-04-22 16:12:31 +00004257 btrfs_leak_debug_del(&eb->leak_list);
Chris Mason727011e2010-08-06 13:21:20 -04004258 kmem_cache_free(extent_buffer_cache, eb);
4259}
4260
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004261static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004262{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004263 return (atomic_read(&eb->io_pages) ||
4264 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4265 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004266}
4267
Miao Xie897ca6e2010-10-26 20:57:29 -04004268/*
4269 * Helper for releasing extent buffer page.
4270 */
4271static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4272 unsigned long start_idx)
4273{
4274 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004275 unsigned long num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004276 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004277 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e2010-10-26 20:57:29 -04004278
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004279 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e2010-10-26 20:57:29 -04004280
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004281 num_pages = num_extent_pages(eb->start, eb->len);
4282 index = start_idx + num_pages;
Miao Xie897ca6e2010-10-26 20:57:29 -04004283 if (start_idx >= index)
4284 return;
4285
4286 do {
4287 index--;
4288 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004289 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004290 spin_lock(&page->mapping->private_lock);
4291 /*
4292 * We do this since we'll remove the pages after we've
4293 * removed the eb from the radix tree, so we could race
4294 * and have this page now attached to the new eb. So
4295 * only clear page_private if it's still connected to
4296 * this eb.
4297 */
4298 if (PagePrivate(page) &&
4299 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004300 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004301 BUG_ON(PageDirty(page));
4302 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004303 /*
4304 * We need to make sure we haven't be attached
4305 * to a new eb.
4306 */
4307 ClearPagePrivate(page);
4308 set_page_private(page, 0);
4309 /* One for the page private */
4310 page_cache_release(page);
4311 }
4312 spin_unlock(&page->mapping->private_lock);
4313
Jan Schmidt815a51c2012-05-16 17:00:02 +02004314 }
4315 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004316 /* One for when we alloced the page */
Miao Xie897ca6e2010-10-26 20:57:29 -04004317 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004318 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004319 } while (index != start_idx);
4320}
4321
4322/*
4323 * Helper for releasing the extent buffer.
4324 */
4325static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4326{
4327 btrfs_release_extent_buffer_page(eb, 0);
4328 __free_extent_buffer(eb);
4329}
4330
Josef Bacikdb7f3432013-08-07 14:54:37 -04004331static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
4332 u64 start,
4333 unsigned long len,
4334 gfp_t mask)
4335{
4336 struct extent_buffer *eb = NULL;
4337
4338 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
4339 if (eb == NULL)
4340 return NULL;
4341 eb->start = start;
4342 eb->len = len;
4343 eb->tree = tree;
4344 eb->bflags = 0;
4345 rwlock_init(&eb->lock);
4346 atomic_set(&eb->write_locks, 0);
4347 atomic_set(&eb->read_locks, 0);
4348 atomic_set(&eb->blocking_readers, 0);
4349 atomic_set(&eb->blocking_writers, 0);
4350 atomic_set(&eb->spinning_readers, 0);
4351 atomic_set(&eb->spinning_writers, 0);
4352 eb->lock_nested = 0;
4353 init_waitqueue_head(&eb->write_lock_wq);
4354 init_waitqueue_head(&eb->read_lock_wq);
4355
4356 btrfs_leak_debug_add(&eb->leak_list, &buffers);
4357
4358 spin_lock_init(&eb->refs_lock);
4359 atomic_set(&eb->refs, 1);
4360 atomic_set(&eb->io_pages, 0);
4361
4362 /*
4363 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4364 */
4365 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4366 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4367 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
4368
4369 return eb;
4370}
4371
4372struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4373{
4374 unsigned long i;
4375 struct page *p;
4376 struct extent_buffer *new;
4377 unsigned long num_pages = num_extent_pages(src->start, src->len);
4378
Josef Bacik9ec72672013-08-07 16:57:23 -04004379 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004380 if (new == NULL)
4381 return NULL;
4382
4383 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004384 p = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004385 if (!p) {
4386 btrfs_release_extent_buffer(new);
4387 return NULL;
4388 }
4389 attach_extent_buffer_page(new, p);
4390 WARN_ON(PageDirty(p));
4391 SetPageUptodate(p);
4392 new->pages[i] = p;
4393 }
4394
4395 copy_extent_buffer(new, src, 0, 0, src->len);
4396 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4397 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4398
4399 return new;
4400}
4401
4402struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4403{
4404 struct extent_buffer *eb;
4405 unsigned long num_pages = num_extent_pages(0, len);
4406 unsigned long i;
4407
Josef Bacik9ec72672013-08-07 16:57:23 -04004408 eb = __alloc_extent_buffer(NULL, start, len, GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004409 if (!eb)
4410 return NULL;
4411
4412 for (i = 0; i < num_pages; i++) {
Josef Bacik9ec72672013-08-07 16:57:23 -04004413 eb->pages[i] = alloc_page(GFP_NOFS);
Josef Bacikdb7f3432013-08-07 14:54:37 -04004414 if (!eb->pages[i])
4415 goto err;
4416 }
4417 set_extent_buffer_uptodate(eb);
4418 btrfs_set_header_nritems(eb, 0);
4419 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4420
4421 return eb;
4422err:
4423 for (; i > 0; i--)
4424 __free_page(eb->pages[i - 1]);
4425 __free_extent_buffer(eb);
4426 return NULL;
4427}
4428
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004429static void check_buffer_tree_ref(struct extent_buffer *eb)
4430{
Chris Mason242e18c2013-01-29 17:49:37 -05004431 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004432 /* the ref bit is tricky. We have to make sure it is set
4433 * if we have the buffer dirty. Otherwise the
4434 * code to free a buffer can end up dropping a dirty
4435 * page
4436 *
4437 * Once the ref bit is set, it won't go away while the
4438 * buffer is dirty or in writeback, and it also won't
4439 * go away while we have the reference count on the
4440 * eb bumped.
4441 *
4442 * We can't just set the ref bit without bumping the
4443 * ref on the eb because free_extent_buffer might
4444 * see the ref bit and try to clear it. If this happens
4445 * free_extent_buffer might end up dropping our original
4446 * ref by mistake and freeing the page before we are able
4447 * to add one more ref.
4448 *
4449 * So bump the ref count first, then set the bit. If someone
4450 * beat us to it, drop the ref we added.
4451 */
Chris Mason242e18c2013-01-29 17:49:37 -05004452 refs = atomic_read(&eb->refs);
4453 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4454 return;
4455
Josef Bacik594831c2012-07-20 16:11:08 -04004456 spin_lock(&eb->refs_lock);
4457 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004458 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004459 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004460}
4461
Josef Bacik5df42352012-03-15 18:24:42 -04004462static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4463{
4464 unsigned long num_pages, i;
4465
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004466 check_buffer_tree_ref(eb);
4467
Josef Bacik5df42352012-03-15 18:24:42 -04004468 num_pages = num_extent_pages(eb->start, eb->len);
4469 for (i = 0; i < num_pages; i++) {
4470 struct page *p = extent_buffer_page(eb, i);
4471 mark_page_accessed(p);
4472 }
4473}
4474
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004475struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
4476 u64 start)
4477{
4478 struct extent_buffer *eb;
4479
4480 rcu_read_lock();
4481 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4482 if (eb && atomic_inc_not_zero(&eb->refs)) {
4483 rcu_read_unlock();
4484 mark_extent_buffer_accessed(eb);
4485 return eb;
4486 }
4487 rcu_read_unlock();
4488
4489 return NULL;
4490}
4491
Chris Masond1310b22008-01-24 16:13:08 -05004492struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004493 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004494{
4495 unsigned long num_pages = num_extent_pages(start, len);
4496 unsigned long i;
4497 unsigned long index = start >> PAGE_CACHE_SHIFT;
4498 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004499 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004500 struct page *p;
4501 struct address_space *mapping = tree->mapping;
4502 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004503 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004504
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004505
4506 eb = find_extent_buffer(tree, start);
4507 if (eb)
Chris Mason6af118ce2008-07-22 11:18:07 -04004508 return eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004509
David Sterbaba144192011-04-21 01:12:06 +02004510 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004511 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004512 return NULL;
4513
Chris Mason727011e2010-08-06 13:21:20 -04004514 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004515 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004516 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004517 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004518
4519 spin_lock(&mapping->private_lock);
4520 if (PagePrivate(p)) {
4521 /*
4522 * We could have already allocated an eb for this page
4523 * and attached one so lets see if we can get a ref on
4524 * the existing eb, and if we can we know it's good and
4525 * we can just return that one, else we know we can just
4526 * overwrite page->private.
4527 */
4528 exists = (struct extent_buffer *)p->private;
4529 if (atomic_inc_not_zero(&exists->refs)) {
4530 spin_unlock(&mapping->private_lock);
4531 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004532 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004533 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004534 goto free_eb;
4535 }
4536
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004537 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004538 * Do this so attach doesn't complain and we need to
4539 * drop the ref the old guy had.
4540 */
4541 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004542 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004543 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004544 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004545 attach_extent_buffer_page(eb, p);
4546 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004547 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004548 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004549 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004550 if (!PageUptodate(p))
4551 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004552
4553 /*
4554 * see below about how we avoid a nasty race with release page
4555 * and why we unlock later
4556 */
Chris Masond1310b22008-01-24 16:13:08 -05004557 }
4558 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004559 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004560again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004561 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4562 if (ret)
4563 goto free_eb;
4564
Chris Mason6af118ce2008-07-22 11:18:07 -04004565 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004566 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004567 spin_unlock(&tree->buffer_lock);
4568 radix_tree_preload_end();
Miao Xie19fe0a82010-10-26 20:57:29 -04004569 if (ret == -EEXIST) {
Chandra Seetharaman452c75c2013-10-07 10:45:25 -05004570 exists = find_extent_buffer(tree, start);
4571 if (exists)
4572 goto free_eb;
4573 else
Josef Bacik115391d2012-03-09 09:51:43 -05004574 goto again;
Chris Mason6af118ce2008-07-22 11:18:07 -04004575 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004576 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004577 check_buffer_tree_ref(eb);
Chris Masoneb14ab82011-02-10 12:35:00 -05004578
4579 /*
4580 * there is a race where release page may have
4581 * tried to find this extent buffer in the radix
4582 * but failed. It will tell the VM it is safe to
4583 * reclaim the, and it will clear the page private bit.
4584 * We must make sure to set the page private bit properly
4585 * after the extent buffer is in the radix tree so
4586 * it doesn't get lost
4587 */
Chris Mason727011e2010-08-06 13:21:20 -04004588 SetPageChecked(eb->pages[0]);
4589 for (i = 1; i < num_pages; i++) {
4590 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004591 ClearPageChecked(p);
4592 unlock_page(p);
4593 }
4594 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004595 return eb;
4596
Chris Mason6af118ce2008-07-22 11:18:07 -04004597free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004598 for (i = 0; i < num_pages; i++) {
4599 if (eb->pages[i])
4600 unlock_page(eb->pages[i]);
4601 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004602
Josef Bacik17de39a2012-05-04 15:16:06 -04004603 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e2010-10-26 20:57:29 -04004604 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004605 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004606}
Chris Masond1310b22008-01-24 16:13:08 -05004607
Josef Bacik3083ee22012-03-09 16:01:49 -05004608static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4609{
4610 struct extent_buffer *eb =
4611 container_of(head, struct extent_buffer, rcu_head);
4612
4613 __free_extent_buffer(eb);
4614}
4615
Josef Bacik3083ee22012-03-09 16:01:49 -05004616/* Expects to have eb->eb_lock already held */
David Sterbaf7a52a42013-04-26 14:56:29 +00004617static int release_extent_buffer(struct extent_buffer *eb)
Josef Bacik3083ee22012-03-09 16:01:49 -05004618{
4619 WARN_ON(atomic_read(&eb->refs) == 0);
4620 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004621 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4622 spin_unlock(&eb->refs_lock);
4623 } else {
4624 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004625
Jan Schmidt815a51c2012-05-16 17:00:02 +02004626 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004627
Jan Schmidt815a51c2012-05-16 17:00:02 +02004628 spin_lock(&tree->buffer_lock);
4629 radix_tree_delete(&tree->buffer,
4630 eb->start >> PAGE_CACHE_SHIFT);
4631 spin_unlock(&tree->buffer_lock);
4632 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004633
4634 /* Should be safe to release our pages at this point */
4635 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004636 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004637 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004638 }
4639 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004640
4641 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004642}
4643
Chris Masond1310b22008-01-24 16:13:08 -05004644void free_extent_buffer(struct extent_buffer *eb)
4645{
Chris Mason242e18c2013-01-29 17:49:37 -05004646 int refs;
4647 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004648 if (!eb)
4649 return;
4650
Chris Mason242e18c2013-01-29 17:49:37 -05004651 while (1) {
4652 refs = atomic_read(&eb->refs);
4653 if (refs <= 3)
4654 break;
4655 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4656 if (old == refs)
4657 return;
4658 }
4659
Josef Bacik3083ee22012-03-09 16:01:49 -05004660 spin_lock(&eb->refs_lock);
4661 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004662 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4663 atomic_dec(&eb->refs);
4664
4665 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004666 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004667 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004668 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4669 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004670
Josef Bacik3083ee22012-03-09 16:01:49 -05004671 /*
4672 * I know this is terrible, but it's temporary until we stop tracking
4673 * the uptodate bits and such for the extent buffers.
4674 */
David Sterbaf7a52a42013-04-26 14:56:29 +00004675 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004676}
Chris Masond1310b22008-01-24 16:13:08 -05004677
Josef Bacik3083ee22012-03-09 16:01:49 -05004678void free_extent_buffer_stale(struct extent_buffer *eb)
4679{
4680 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004681 return;
4682
Josef Bacik3083ee22012-03-09 16:01:49 -05004683 spin_lock(&eb->refs_lock);
4684 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4685
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004686 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004687 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4688 atomic_dec(&eb->refs);
David Sterbaf7a52a42013-04-26 14:56:29 +00004689 release_extent_buffer(eb);
Chris Masond1310b22008-01-24 16:13:08 -05004690}
4691
Chris Mason1d4284b2012-03-28 20:31:37 -04004692void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004693{
Chris Masond1310b22008-01-24 16:13:08 -05004694 unsigned long i;
4695 unsigned long num_pages;
4696 struct page *page;
4697
Chris Masond1310b22008-01-24 16:13:08 -05004698 num_pages = num_extent_pages(eb->start, eb->len);
4699
4700 for (i = 0; i < num_pages; i++) {
4701 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004702 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004703 continue;
4704
Chris Masona61e6f22008-07-22 11:18:08 -04004705 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004706 WARN_ON(!PagePrivate(page));
4707
Chris Masond1310b22008-01-24 16:13:08 -05004708 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004709 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004710 if (!PageDirty(page)) {
4711 radix_tree_tag_clear(&page->mapping->page_tree,
4712 page_index(page),
4713 PAGECACHE_TAG_DIRTY);
4714 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004715 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004716 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004717 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004718 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004719 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004720}
Chris Masond1310b22008-01-24 16:13:08 -05004721
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004722int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004723{
4724 unsigned long i;
4725 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004726 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004727
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004728 check_buffer_tree_ref(eb);
4729
Chris Masonb9473432009-03-13 11:00:37 -04004730 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004731
Chris Masond1310b22008-01-24 16:13:08 -05004732 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004733 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004734 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4735
Chris Masonb9473432009-03-13 11:00:37 -04004736 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004737 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004738 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004739}
Chris Masond1310b22008-01-24 16:13:08 -05004740
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004741int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004742{
4743 unsigned long i;
4744 struct page *page;
4745 unsigned long num_pages;
4746
Chris Masonb4ce94d2009-02-04 09:25:08 -05004747 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004748 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004749 for (i = 0; i < num_pages; i++) {
4750 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004751 if (page)
4752 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004753 }
4754 return 0;
4755}
4756
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004757int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004758{
4759 unsigned long i;
4760 struct page *page;
4761 unsigned long num_pages;
4762
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004763 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004764 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004765 for (i = 0; i < num_pages; i++) {
4766 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004767 SetPageUptodate(page);
4768 }
4769 return 0;
4770}
Chris Masond1310b22008-01-24 16:13:08 -05004771
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004772int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004773{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004774 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004775}
Chris Masond1310b22008-01-24 16:13:08 -05004776
4777int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004778 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004779 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004780{
4781 unsigned long i;
4782 unsigned long start_i;
4783 struct page *page;
4784 int err;
4785 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004786 int locked_pages = 0;
4787 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004788 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004789 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004790 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004791 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004792
Chris Masonb4ce94d2009-02-04 09:25:08 -05004793 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004794 return 0;
4795
Chris Masond1310b22008-01-24 16:13:08 -05004796 if (start) {
4797 WARN_ON(start < eb->start);
4798 start_i = (start >> PAGE_CACHE_SHIFT) -
4799 (eb->start >> PAGE_CACHE_SHIFT);
4800 } else {
4801 start_i = 0;
4802 }
4803
4804 num_pages = num_extent_pages(eb->start, eb->len);
4805 for (i = start_i; i < num_pages; i++) {
4806 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004807 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004808 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004809 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004810 } else {
4811 lock_page(page);
4812 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004813 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004814 if (!PageUptodate(page)) {
4815 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004816 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004817 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004818 }
4819 if (all_uptodate) {
4820 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004821 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004822 goto unlock_exit;
4823 }
4824
Josef Bacikea466792012-03-26 21:57:36 -04004825 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004826 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004827 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004828 for (i = start_i; i < num_pages; i++) {
4829 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004830 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004831 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004832 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004833 get_extent, &bio,
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004834 mirror_num, &bio_flags,
4835 READ | REQ_META);
Chris Masond3977122009-01-05 21:25:51 -05004836 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004837 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004838 } else {
4839 unlock_page(page);
4840 }
4841 }
4842
Jeff Mahoney355808c2011-10-03 23:23:14 -04004843 if (bio) {
Josef Bacikd4c7ca82013-04-19 19:49:09 -04004844 err = submit_one_bio(READ | REQ_META, bio, mirror_num,
4845 bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004846 if (err)
4847 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004848 }
Chris Masona86c12c2008-02-07 10:50:54 -05004849
Arne Jansenbb82ab82011-06-10 14:06:53 +02004850 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004851 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004852
Chris Masond1310b22008-01-24 16:13:08 -05004853 for (i = start_i; i < num_pages; i++) {
4854 page = extent_buffer_page(eb, i);
4855 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004856 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004857 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004858 }
Chris Masond3977122009-01-05 21:25:51 -05004859
Chris Masond1310b22008-01-24 16:13:08 -05004860 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004861
4862unlock_exit:
4863 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004864 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004865 page = extent_buffer_page(eb, i);
4866 i++;
4867 unlock_page(page);
4868 locked_pages--;
4869 }
4870 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004871}
Chris Masond1310b22008-01-24 16:13:08 -05004872
4873void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4874 unsigned long start,
4875 unsigned long len)
4876{
4877 size_t cur;
4878 size_t offset;
4879 struct page *page;
4880 char *kaddr;
4881 char *dst = (char *)dstv;
4882 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4883 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004884
4885 WARN_ON(start > eb->len);
4886 WARN_ON(start + len > eb->start + eb->len);
4887
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004888 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004889
Chris Masond3977122009-01-05 21:25:51 -05004890 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004891 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004892
4893 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004894 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004895 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004896
4897 dst += cur;
4898 len -= cur;
4899 offset = 0;
4900 i++;
4901 }
4902}
Chris Masond1310b22008-01-24 16:13:08 -05004903
4904int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004905 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004906 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004907 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004908{
4909 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4910 char *kaddr;
4911 struct page *p;
4912 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4913 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4914 unsigned long end_i = (start_offset + start + min_len - 1) >>
4915 PAGE_CACHE_SHIFT;
4916
4917 if (i != end_i)
4918 return -EINVAL;
4919
4920 if (i == 0) {
4921 offset = start_offset;
4922 *map_start = 0;
4923 } else {
4924 offset = 0;
4925 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4926 }
Chris Masond3977122009-01-05 21:25:51 -05004927
Chris Masond1310b22008-01-24 16:13:08 -05004928 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004929 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004930 "wanted %lu %lu\n",
4931 eb->start, eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004932 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004933 }
4934
4935 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004936 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004937 *map = kaddr + offset;
4938 *map_len = PAGE_CACHE_SIZE - offset;
4939 return 0;
4940}
Chris Masond1310b22008-01-24 16:13:08 -05004941
Chris Masond1310b22008-01-24 16:13:08 -05004942int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4943 unsigned long start,
4944 unsigned long len)
4945{
4946 size_t cur;
4947 size_t offset;
4948 struct page *page;
4949 char *kaddr;
4950 char *ptr = (char *)ptrv;
4951 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4952 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4953 int ret = 0;
4954
4955 WARN_ON(start > eb->len);
4956 WARN_ON(start + len > eb->start + eb->len);
4957
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004958 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004959
Chris Masond3977122009-01-05 21:25:51 -05004960 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004961 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004962
4963 cur = min(len, (PAGE_CACHE_SIZE - offset));
4964
Chris Masona6591712011-07-19 12:04:14 -04004965 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004966 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004967 if (ret)
4968 break;
4969
4970 ptr += cur;
4971 len -= cur;
4972 offset = 0;
4973 i++;
4974 }
4975 return ret;
4976}
Chris Masond1310b22008-01-24 16:13:08 -05004977
4978void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4979 unsigned long start, unsigned long len)
4980{
4981 size_t cur;
4982 size_t offset;
4983 struct page *page;
4984 char *kaddr;
4985 char *src = (char *)srcv;
4986 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4987 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4988
4989 WARN_ON(start > eb->len);
4990 WARN_ON(start + len > eb->start + eb->len);
4991
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02004992 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05004993
Chris Masond3977122009-01-05 21:25:51 -05004994 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004995 page = extent_buffer_page(eb, i);
4996 WARN_ON(!PageUptodate(page));
4997
4998 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004999 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005000 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005001
5002 src += cur;
5003 len -= cur;
5004 offset = 0;
5005 i++;
5006 }
5007}
Chris Masond1310b22008-01-24 16:13:08 -05005008
5009void memset_extent_buffer(struct extent_buffer *eb, char c,
5010 unsigned long start, unsigned long len)
5011{
5012 size_t cur;
5013 size_t offset;
5014 struct page *page;
5015 char *kaddr;
5016 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
5017 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
5018
5019 WARN_ON(start > eb->len);
5020 WARN_ON(start + len > eb->start + eb->len);
5021
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005022 offset = (start_offset + start) & (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005023
Chris Masond3977122009-01-05 21:25:51 -05005024 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005025 page = extent_buffer_page(eb, i);
5026 WARN_ON(!PageUptodate(page));
5027
5028 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04005029 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005030 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005031
5032 len -= cur;
5033 offset = 0;
5034 i++;
5035 }
5036}
Chris Masond1310b22008-01-24 16:13:08 -05005037
5038void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
5039 unsigned long dst_offset, unsigned long src_offset,
5040 unsigned long len)
5041{
5042 u64 dst_len = dst->len;
5043 size_t cur;
5044 size_t offset;
5045 struct page *page;
5046 char *kaddr;
5047 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5048 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5049
5050 WARN_ON(src->len != dst_len);
5051
5052 offset = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005053 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005054
Chris Masond3977122009-01-05 21:25:51 -05005055 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005056 page = extent_buffer_page(dst, i);
5057 WARN_ON(!PageUptodate(page));
5058
5059 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
5060
Chris Masona6591712011-07-19 12:04:14 -04005061 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05005062 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05005063
5064 src_offset += cur;
5065 len -= cur;
5066 offset = 0;
5067 i++;
5068 }
5069}
Chris Masond1310b22008-01-24 16:13:08 -05005070
Sergei Trofimovich33872062011-04-11 21:52:52 +00005071static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
5072{
5073 unsigned long distance = (src > dst) ? src - dst : dst - src;
5074 return distance < len;
5075}
5076
Chris Masond1310b22008-01-24 16:13:08 -05005077static void copy_pages(struct page *dst_page, struct page *src_page,
5078 unsigned long dst_off, unsigned long src_off,
5079 unsigned long len)
5080{
Chris Masona6591712011-07-19 12:04:14 -04005081 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05005082 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005083 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05005084
Sergei Trofimovich33872062011-04-11 21:52:52 +00005085 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04005086 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00005087 } else {
Chris Masond1310b22008-01-24 16:13:08 -05005088 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04005089 if (areas_overlap(src_off, dst_off, len))
5090 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00005091 }
Chris Masond1310b22008-01-24 16:13:08 -05005092
Chris Mason727011e2010-08-06 13:21:20 -04005093 if (must_memmove)
5094 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
5095 else
5096 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05005097}
5098
5099void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5100 unsigned long src_offset, unsigned long len)
5101{
5102 size_t cur;
5103 size_t dst_off_in_page;
5104 size_t src_off_in_page;
5105 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5106 unsigned long dst_i;
5107 unsigned long src_i;
5108
5109 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005110 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5111 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005112 BUG_ON(1);
5113 }
5114 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005115 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5116 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005117 BUG_ON(1);
5118 }
5119
Chris Masond3977122009-01-05 21:25:51 -05005120 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005121 dst_off_in_page = (start_offset + dst_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005122 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005123 src_off_in_page = (start_offset + src_offset) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005124 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005125
5126 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
5127 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
5128
5129 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
5130 src_off_in_page));
5131 cur = min_t(unsigned long, cur,
5132 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
5133
5134 copy_pages(extent_buffer_page(dst, dst_i),
5135 extent_buffer_page(dst, src_i),
5136 dst_off_in_page, src_off_in_page, cur);
5137
5138 src_offset += cur;
5139 dst_offset += cur;
5140 len -= cur;
5141 }
5142}
Chris Masond1310b22008-01-24 16:13:08 -05005143
5144void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
5145 unsigned long src_offset, unsigned long len)
5146{
5147 size_t cur;
5148 size_t dst_off_in_page;
5149 size_t src_off_in_page;
5150 unsigned long dst_end = dst_offset + len - 1;
5151 unsigned long src_end = src_offset + len - 1;
5152 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
5153 unsigned long dst_i;
5154 unsigned long src_i;
5155
5156 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005157 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
5158 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005159 BUG_ON(1);
5160 }
5161 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05005162 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
5163 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05005164 BUG_ON(1);
5165 }
Chris Mason727011e2010-08-06 13:21:20 -04005166 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05005167 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
5168 return;
5169 }
Chris Masond3977122009-01-05 21:25:51 -05005170 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05005171 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
5172 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
5173
5174 dst_off_in_page = (start_offset + dst_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005175 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005176 src_off_in_page = (start_offset + src_end) &
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02005177 (PAGE_CACHE_SIZE - 1);
Chris Masond1310b22008-01-24 16:13:08 -05005178
5179 cur = min_t(unsigned long, len, src_off_in_page + 1);
5180 cur = min(cur, dst_off_in_page + 1);
Zach Brown1877e1a2013-10-16 12:10:33 -07005181 copy_pages(extent_buffer_page(dst, dst_i),
Chris Masond1310b22008-01-24 16:13:08 -05005182 extent_buffer_page(dst, src_i),
5183 dst_off_in_page - cur + 1,
5184 src_off_in_page - cur + 1, cur);
5185
5186 dst_end -= cur;
5187 src_end -= cur;
5188 len -= cur;
5189 }
5190}
Chris Mason6af118ce2008-07-22 11:18:07 -04005191
David Sterbaf7a52a42013-04-26 14:56:29 +00005192int try_release_extent_buffer(struct page *page)
Miao Xie19fe0a82010-10-26 20:57:29 -04005193{
Chris Mason6af118ce2008-07-22 11:18:07 -04005194 struct extent_buffer *eb;
Miao Xie897ca6e2010-10-26 20:57:29 -04005195
Miao Xie19fe0a82010-10-26 20:57:29 -04005196 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005197 * We need to make sure noboody is attaching this page to an eb right
5198 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04005199 */
Josef Bacik3083ee22012-03-09 16:01:49 -05005200 spin_lock(&page->mapping->private_lock);
5201 if (!PagePrivate(page)) {
5202 spin_unlock(&page->mapping->private_lock);
5203 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04005204 }
5205
Josef Bacik3083ee22012-03-09 16:01:49 -05005206 eb = (struct extent_buffer *)page->private;
5207 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005208
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005209 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005210 * This is a little awful but should be ok, we need to make sure that
5211 * the eb doesn't disappear out from under us while we're looking at
5212 * this page.
5213 */
5214 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005215 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005216 spin_unlock(&eb->refs_lock);
5217 spin_unlock(&page->mapping->private_lock);
5218 return 0;
5219 }
5220 spin_unlock(&page->mapping->private_lock);
5221
Josef Bacik3083ee22012-03-09 16:01:49 -05005222 /*
5223 * If tree ref isn't set then we know the ref on this eb is a real ref,
5224 * so just return, this page will likely be freed soon anyway.
5225 */
5226 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5227 spin_unlock(&eb->refs_lock);
5228 return 0;
5229 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005230
David Sterbaf7a52a42013-04-26 14:56:29 +00005231 return release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04005232}