blob: bed072aa461f3089903987382de616bb143f43ef [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/spinlock.h>
8#include <linux/blkdev.h>
9#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050010#include <linux/writeback.h>
11#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070012#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060013#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050014#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse2db04962008-08-07 11:19:43 -040016#include "compat.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040017#include "ctree.h"
18#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020019#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010020#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040021#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040022#include "rcu-string.h"
Chris Masond1310b22008-01-24 16:13:08 -050023
Chris Masond1310b22008-01-24 16:13:08 -050024static struct kmem_cache *extent_state_cache;
25static struct kmem_cache *extent_buffer_cache;
26
27static LIST_HEAD(buffers);
28static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040029
Chris Masonb47eda82008-11-10 12:34:40 -050030#define LEAK_DEBUG 0
Chris Mason39351272009-02-04 09:24:05 -050031#if LEAK_DEBUG
Chris Masond3977122009-01-05 21:25:51 -050032static DEFINE_SPINLOCK(leak_lock);
Chris Mason4bef0842008-09-08 11:18:08 -040033#endif
Chris Masond1310b22008-01-24 16:13:08 -050034
Chris Masond1310b22008-01-24 16:13:08 -050035#define BUFFER_LRU_MAX 64
36
37struct tree_entry {
38 u64 start;
39 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -050040 struct rb_node rb_node;
41};
42
43struct extent_page_data {
44 struct bio *bio;
45 struct extent_io_tree *tree;
46 get_extent_t *get_extent;
Josef Bacikde0022b2012-09-25 14:25:58 -040047 unsigned long bio_flags;
Chris Mason771ed682008-11-06 22:02:51 -050048
49 /* tells writepage not to lock the state bits for this range
50 * it still does the unlocking
51 */
Chris Masonffbd5172009-04-20 15:50:09 -040052 unsigned int extent_locked:1;
53
54 /* tells the submit_bio code to use a WRITE_SYNC */
55 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -050056};
57
Josef Bacik0b32f4b2012-03-13 09:38:00 -040058static noinline void flush_write_bio(void *data);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -040059static inline struct btrfs_fs_info *
60tree_fs_info(struct extent_io_tree *tree)
61{
62 return btrfs_sb(tree->mapping->host->i_sb);
63}
Josef Bacik0b32f4b2012-03-13 09:38:00 -040064
Chris Masond1310b22008-01-24 16:13:08 -050065int __init extent_io_init(void)
66{
David Sterba837e1972012-09-07 03:00:48 -060067 extent_state_cache = kmem_cache_create("btrfs_extent_state",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020068 sizeof(struct extent_state), 0,
69 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -050070 if (!extent_state_cache)
71 return -ENOMEM;
72
David Sterba837e1972012-09-07 03:00:48 -060073 extent_buffer_cache = kmem_cache_create("btrfs_extent_buffer",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020074 sizeof(struct extent_buffer), 0,
75 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -050076 if (!extent_buffer_cache)
77 goto free_state_cache;
78 return 0;
79
80free_state_cache:
81 kmem_cache_destroy(extent_state_cache);
82 return -ENOMEM;
83}
84
85void extent_io_exit(void)
86{
87 struct extent_state *state;
Chris Mason2d2ae542008-03-26 16:24:23 -040088 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -050089
90 while (!list_empty(&states)) {
Chris Mason2d2ae542008-03-26 16:24:23 -040091 state = list_entry(states.next, struct extent_state, leak_list);
Chris Masond3977122009-01-05 21:25:51 -050092 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
93 "state %lu in tree %p refs %d\n",
94 (unsigned long long)state->start,
95 (unsigned long long)state->end,
96 state->state, state->tree, atomic_read(&state->refs));
Chris Mason2d2ae542008-03-26 16:24:23 -040097 list_del(&state->leak_list);
Chris Masond1310b22008-01-24 16:13:08 -050098 kmem_cache_free(extent_state_cache, state);
99
100 }
101
Chris Mason2d2ae542008-03-26 16:24:23 -0400102 while (!list_empty(&buffers)) {
103 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Chris Masond3977122009-01-05 21:25:51 -0500104 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
105 "refs %d\n", (unsigned long long)eb->start,
106 eb->len, atomic_read(&eb->refs));
Chris Mason2d2ae542008-03-26 16:24:23 -0400107 list_del(&eb->leak_list);
108 kmem_cache_free(extent_buffer_cache, eb);
109 }
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000110
111 /*
112 * Make sure all delayed rcu free are flushed before we
113 * destroy caches.
114 */
115 rcu_barrier();
Chris Masond1310b22008-01-24 16:13:08 -0500116 if (extent_state_cache)
117 kmem_cache_destroy(extent_state_cache);
118 if (extent_buffer_cache)
119 kmem_cache_destroy(extent_buffer_cache);
120}
121
122void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200123 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500124{
Eric Paris6bef4d32010-02-23 19:43:04 +0000125 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400126 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500127 tree->ops = NULL;
128 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500129 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400130 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500131 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500132}
Chris Masond1310b22008-01-24 16:13:08 -0500133
Christoph Hellwigb2950862008-12-02 09:54:17 -0500134static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500135{
136 struct extent_state *state;
Chris Mason39351272009-02-04 09:24:05 -0500137#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400138 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400139#endif
Chris Masond1310b22008-01-24 16:13:08 -0500140
141 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400142 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500143 return state;
144 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500145 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500146 state->tree = NULL;
Chris Mason39351272009-02-04 09:24:05 -0500147#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400148 spin_lock_irqsave(&leak_lock, flags);
149 list_add(&state->leak_list, &states);
150 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400151#endif
Chris Masond1310b22008-01-24 16:13:08 -0500152 atomic_set(&state->refs, 1);
153 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100154 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500155 return state;
156}
Chris Masond1310b22008-01-24 16:13:08 -0500157
Chris Mason4845e442010-05-25 20:56:50 -0400158void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500159{
Chris Masond1310b22008-01-24 16:13:08 -0500160 if (!state)
161 return;
162 if (atomic_dec_and_test(&state->refs)) {
Chris Mason39351272009-02-04 09:24:05 -0500163#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400164 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400165#endif
Chris Mason70dec802008-01-29 09:59:12 -0500166 WARN_ON(state->tree);
Chris Mason39351272009-02-04 09:24:05 -0500167#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400168 spin_lock_irqsave(&leak_lock, flags);
169 list_del(&state->leak_list);
170 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400171#endif
Jeff Mahoney143bede2012-03-01 14:56:26 +0100172 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500173 kmem_cache_free(extent_state_cache, state);
174 }
175}
Chris Masond1310b22008-01-24 16:13:08 -0500176
177static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
178 struct rb_node *node)
179{
Chris Masond3977122009-01-05 21:25:51 -0500180 struct rb_node **p = &root->rb_node;
181 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500182 struct tree_entry *entry;
183
Chris Masond3977122009-01-05 21:25:51 -0500184 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500185 parent = *p;
186 entry = rb_entry(parent, struct tree_entry, rb_node);
187
188 if (offset < entry->start)
189 p = &(*p)->rb_left;
190 else if (offset > entry->end)
191 p = &(*p)->rb_right;
192 else
193 return parent;
194 }
195
Chris Masond1310b22008-01-24 16:13:08 -0500196 rb_link_node(node, parent, p);
197 rb_insert_color(node, root);
198 return NULL;
199}
200
Chris Mason80ea96b2008-02-01 14:51:59 -0500201static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500202 struct rb_node **prev_ret,
203 struct rb_node **next_ret)
204{
Chris Mason80ea96b2008-02-01 14:51:59 -0500205 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500206 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500207 struct rb_node *prev = NULL;
208 struct rb_node *orig_prev = NULL;
209 struct tree_entry *entry;
210 struct tree_entry *prev_entry = NULL;
211
Chris Masond3977122009-01-05 21:25:51 -0500212 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500213 entry = rb_entry(n, struct tree_entry, rb_node);
214 prev = n;
215 prev_entry = entry;
216
217 if (offset < entry->start)
218 n = n->rb_left;
219 else if (offset > entry->end)
220 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500221 else
Chris Masond1310b22008-01-24 16:13:08 -0500222 return n;
223 }
224
225 if (prev_ret) {
226 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500227 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500228 prev = rb_next(prev);
229 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
230 }
231 *prev_ret = prev;
232 prev = orig_prev;
233 }
234
235 if (next_ret) {
236 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500237 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500238 prev = rb_prev(prev);
239 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
240 }
241 *next_ret = prev;
242 }
243 return NULL;
244}
245
Chris Mason80ea96b2008-02-01 14:51:59 -0500246static inline struct rb_node *tree_search(struct extent_io_tree *tree,
247 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500248{
Chris Mason70dec802008-01-29 09:59:12 -0500249 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500250 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500251
Chris Mason80ea96b2008-02-01 14:51:59 -0500252 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500253 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500254 return prev;
255 return ret;
256}
257
Josef Bacik9ed74f22009-09-11 16:12:44 -0400258static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
259 struct extent_state *other)
260{
261 if (tree->ops && tree->ops->merge_extent_hook)
262 tree->ops->merge_extent_hook(tree->mapping->host, new,
263 other);
264}
265
Chris Masond1310b22008-01-24 16:13:08 -0500266/*
267 * utility function to look for merge candidates inside a given range.
268 * Any extents with matching state are merged together into a single
269 * extent in the tree. Extents with EXTENT_IO in their state field
270 * are not merged because the end_io handlers need to be able to do
271 * operations on them without sleeping (or doing allocations/splits).
272 *
273 * This should be called with the tree lock held.
274 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000275static void merge_state(struct extent_io_tree *tree,
276 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500277{
278 struct extent_state *other;
279 struct rb_node *other_node;
280
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400281 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000282 return;
Chris Masond1310b22008-01-24 16:13:08 -0500283
284 other_node = rb_prev(&state->rb_node);
285 if (other_node) {
286 other = rb_entry(other_node, struct extent_state, rb_node);
287 if (other->end == state->start - 1 &&
288 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400289 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500290 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500291 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500292 rb_erase(&other->rb_node, &tree->state);
293 free_extent_state(other);
294 }
295 }
296 other_node = rb_next(&state->rb_node);
297 if (other_node) {
298 other = rb_entry(other_node, struct extent_state, rb_node);
299 if (other->start == state->end + 1 &&
300 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400301 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400302 state->end = other->end;
303 other->tree = NULL;
304 rb_erase(&other->rb_node, &tree->state);
305 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500306 }
307 }
Chris Masond1310b22008-01-24 16:13:08 -0500308}
309
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000310static void set_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400311 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500312{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000313 if (tree->ops && tree->ops->set_bit_hook)
314 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500315}
316
317static void clear_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400318 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500319{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400320 if (tree->ops && tree->ops->clear_bit_hook)
321 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500322}
323
Xiao Guangrong3150b692011-07-14 03:19:08 +0000324static void set_state_bits(struct extent_io_tree *tree,
325 struct extent_state *state, int *bits);
326
Chris Masond1310b22008-01-24 16:13:08 -0500327/*
328 * insert an extent_state struct into the tree. 'bits' are set on the
329 * struct before it is inserted.
330 *
331 * This may return -EEXIST if the extent is already there, in which case the
332 * state struct is freed.
333 *
334 * The tree lock is not taken internally. This is a utility function and
335 * probably isn't what you want to call (see set/clear_extent_bit).
336 */
337static int insert_state(struct extent_io_tree *tree,
338 struct extent_state *state, u64 start, u64 end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400339 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500340{
341 struct rb_node *node;
342
Julia Lawall31b1a2b2012-11-03 10:58:34 +0000343 if (end < start)
344 WARN(1, KERN_ERR "btrfs end < start %llu %llu\n",
Chris Masond3977122009-01-05 21:25:51 -0500345 (unsigned long long)end,
346 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500347 state->start = start;
348 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400349
Xiao Guangrong3150b692011-07-14 03:19:08 +0000350 set_state_bits(tree, state, bits);
351
Chris Masond1310b22008-01-24 16:13:08 -0500352 node = tree_insert(&tree->state, end, &state->rb_node);
353 if (node) {
354 struct extent_state *found;
355 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500356 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
357 "%llu %llu\n", (unsigned long long)found->start,
358 (unsigned long long)found->end,
359 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500360 return -EEXIST;
361 }
Chris Mason70dec802008-01-29 09:59:12 -0500362 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500363 merge_state(tree, state);
364 return 0;
365}
366
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000367static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400368 u64 split)
369{
370 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000371 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400372}
373
Chris Masond1310b22008-01-24 16:13:08 -0500374/*
375 * split a given extent state struct in two, inserting the preallocated
376 * struct 'prealloc' as the newly created second half. 'split' indicates an
377 * offset inside 'orig' where it should be split.
378 *
379 * Before calling,
380 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
381 * are two extent state structs in the tree:
382 * prealloc: [orig->start, split - 1]
383 * orig: [ split, orig->end ]
384 *
385 * The tree locks are not taken by this function. They need to be held
386 * by the caller.
387 */
388static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
389 struct extent_state *prealloc, u64 split)
390{
391 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400392
393 split_cb(tree, orig, split);
394
Chris Masond1310b22008-01-24 16:13:08 -0500395 prealloc->start = orig->start;
396 prealloc->end = split - 1;
397 prealloc->state = orig->state;
398 orig->start = split;
399
400 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
401 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500402 free_extent_state(prealloc);
403 return -EEXIST;
404 }
Chris Mason70dec802008-01-29 09:59:12 -0500405 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500406 return 0;
407}
408
Li Zefancdc6a392012-03-12 16:39:48 +0800409static struct extent_state *next_state(struct extent_state *state)
410{
411 struct rb_node *next = rb_next(&state->rb_node);
412 if (next)
413 return rb_entry(next, struct extent_state, rb_node);
414 else
415 return NULL;
416}
417
Chris Masond1310b22008-01-24 16:13:08 -0500418/*
419 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800420 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500421 *
422 * If no bits are set on the state struct after clearing things, the
423 * struct is freed and removed from the tree
424 */
Li Zefancdc6a392012-03-12 16:39:48 +0800425static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
426 struct extent_state *state,
427 int *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500428{
Li Zefancdc6a392012-03-12 16:39:48 +0800429 struct extent_state *next;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400430 int bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500431
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400432 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500433 u64 range = state->end - state->start + 1;
434 WARN_ON(range > tree->dirty_bytes);
435 tree->dirty_bytes -= range;
436 }
Chris Mason291d6732008-01-29 15:55:23 -0500437 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400438 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500439 if (wake)
440 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400441 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800442 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500443 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500444 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500445 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500446 free_extent_state(state);
447 } else {
448 WARN_ON(1);
449 }
450 } else {
451 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800452 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500453 }
Li Zefancdc6a392012-03-12 16:39:48 +0800454 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500455}
456
Xiao Guangrong82337672011-04-20 06:44:57 +0000457static struct extent_state *
458alloc_extent_state_atomic(struct extent_state *prealloc)
459{
460 if (!prealloc)
461 prealloc = alloc_extent_state(GFP_ATOMIC);
462
463 return prealloc;
464}
465
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400466void extent_io_tree_panic(struct extent_io_tree *tree, int err)
467{
468 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
469 "Extent tree was modified by another "
470 "thread while locked.");
471}
472
Chris Masond1310b22008-01-24 16:13:08 -0500473/*
474 * clear some bits on a range in the tree. This may require splitting
475 * or inserting elements in the tree, so the gfp mask is used to
476 * indicate which allocations or sleeping are allowed.
477 *
478 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
479 * the given range from the tree regardless of state (ie for truncate).
480 *
481 * the range [start, end] is inclusive.
482 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100483 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500484 */
485int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400486 int bits, int wake, int delete,
487 struct extent_state **cached_state,
488 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500489{
490 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400491 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500492 struct extent_state *prealloc = NULL;
493 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400494 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500495 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000496 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500497
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400498 if (delete)
499 bits |= ~EXTENT_CTLBITS;
500 bits |= EXTENT_FIRST_DELALLOC;
501
Josef Bacik2ac55d42010-02-03 19:33:23 +0000502 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
503 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500504again:
505 if (!prealloc && (mask & __GFP_WAIT)) {
506 prealloc = alloc_extent_state(mask);
507 if (!prealloc)
508 return -ENOMEM;
509 }
510
Chris Masoncad321a2008-12-17 14:51:42 -0500511 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400512 if (cached_state) {
513 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000514
515 if (clear) {
516 *cached_state = NULL;
517 cached_state = NULL;
518 }
519
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400520 if (cached && cached->tree && cached->start <= start &&
521 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000522 if (clear)
523 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400524 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400525 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400526 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000527 if (clear)
528 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400529 }
Chris Masond1310b22008-01-24 16:13:08 -0500530 /*
531 * this search will find the extents that end after
532 * our range starts
533 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500534 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500535 if (!node)
536 goto out;
537 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400538hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500539 if (state->start > end)
540 goto out;
541 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400542 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500543
Liu Bo04493142012-02-16 18:34:37 +0800544 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800545 if (!(state->state & bits)) {
546 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800547 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800548 }
Liu Bo04493142012-02-16 18:34:37 +0800549
Chris Masond1310b22008-01-24 16:13:08 -0500550 /*
551 * | ---- desired range ---- |
552 * | state | or
553 * | ------------- state -------------- |
554 *
555 * We need to split the extent we found, and may flip
556 * bits on second half.
557 *
558 * If the extent we found extends past our range, we
559 * just split and search again. It'll get split again
560 * the next time though.
561 *
562 * If the extent we found is inside our range, we clear
563 * the desired bit on it.
564 */
565
566 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000567 prealloc = alloc_extent_state_atomic(prealloc);
568 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500569 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400570 if (err)
571 extent_io_tree_panic(tree, err);
572
Chris Masond1310b22008-01-24 16:13:08 -0500573 prealloc = NULL;
574 if (err)
575 goto out;
576 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800577 state = clear_state_bit(tree, state, &bits, wake);
578 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500579 }
580 goto search_again;
581 }
582 /*
583 * | ---- desired range ---- |
584 * | state |
585 * We need to split the extent, and clear the bit
586 * on the first half
587 */
588 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000589 prealloc = alloc_extent_state_atomic(prealloc);
590 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500591 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400592 if (err)
593 extent_io_tree_panic(tree, err);
594
Chris Masond1310b22008-01-24 16:13:08 -0500595 if (wake)
596 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400597
Jeff Mahoney6763af82012-03-01 14:56:29 +0100598 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400599
Chris Masond1310b22008-01-24 16:13:08 -0500600 prealloc = NULL;
601 goto out;
602 }
Chris Mason42daec22009-09-23 19:51:09 -0400603
Li Zefancdc6a392012-03-12 16:39:48 +0800604 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800605next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400606 if (last_end == (u64)-1)
607 goto out;
608 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800609 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800610 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500611 goto search_again;
612
613out:
Chris Masoncad321a2008-12-17 14:51:42 -0500614 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500615 if (prealloc)
616 free_extent_state(prealloc);
617
Jeff Mahoney6763af82012-03-01 14:56:29 +0100618 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500619
620search_again:
621 if (start > end)
622 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500623 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500624 if (mask & __GFP_WAIT)
625 cond_resched();
626 goto again;
627}
Chris Masond1310b22008-01-24 16:13:08 -0500628
Jeff Mahoney143bede2012-03-01 14:56:26 +0100629static void wait_on_state(struct extent_io_tree *tree,
630 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500631 __releases(tree->lock)
632 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500633{
634 DEFINE_WAIT(wait);
635 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500636 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500637 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500638 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500639 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500640}
641
642/*
643 * waits for one or more bits to clear on a range in the state tree.
644 * The range [start, end] is inclusive.
645 * The tree lock is taken by this function
646 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100647void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
Chris Masond1310b22008-01-24 16:13:08 -0500648{
649 struct extent_state *state;
650 struct rb_node *node;
651
Chris Masoncad321a2008-12-17 14:51:42 -0500652 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500653again:
654 while (1) {
655 /*
656 * this search will find all the extents that end after
657 * our range starts
658 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500659 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500660 if (!node)
661 break;
662
663 state = rb_entry(node, struct extent_state, rb_node);
664
665 if (state->start > end)
666 goto out;
667
668 if (state->state & bits) {
669 start = state->start;
670 atomic_inc(&state->refs);
671 wait_on_state(tree, state);
672 free_extent_state(state);
673 goto again;
674 }
675 start = state->end + 1;
676
677 if (start > end)
678 break;
679
Xiao Guangrongded91f02011-07-14 03:19:27 +0000680 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500681 }
682out:
Chris Masoncad321a2008-12-17 14:51:42 -0500683 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500684}
Chris Masond1310b22008-01-24 16:13:08 -0500685
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000686static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500687 struct extent_state *state,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400688 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500689{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400690 int bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400691
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000692 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400693 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500694 u64 range = state->end - state->start + 1;
695 tree->dirty_bytes += range;
696 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400697 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500698}
699
Chris Mason2c64c532009-09-02 15:04:12 -0400700static void cache_state(struct extent_state *state,
701 struct extent_state **cached_ptr)
702{
703 if (cached_ptr && !(*cached_ptr)) {
704 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
705 *cached_ptr = state;
706 atomic_inc(&state->refs);
707 }
708 }
709}
710
Arne Jansen507903b2011-04-06 10:02:20 +0000711static void uncache_state(struct extent_state **cached_ptr)
712{
713 if (cached_ptr && (*cached_ptr)) {
714 struct extent_state *state = *cached_ptr;
Chris Mason109b36a2011-04-12 13:57:39 -0400715 *cached_ptr = NULL;
716 free_extent_state(state);
Arne Jansen507903b2011-04-06 10:02:20 +0000717 }
718}
719
Chris Masond1310b22008-01-24 16:13:08 -0500720/*
Chris Mason1edbb732009-09-02 13:24:36 -0400721 * set some bits on a range in the tree. This may require allocations or
722 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500723 *
Chris Mason1edbb732009-09-02 13:24:36 -0400724 * If any of the exclusive bits are set, this will fail with -EEXIST if some
725 * part of the range already has the desired bits set. The start of the
726 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500727 *
Chris Mason1edbb732009-09-02 13:24:36 -0400728 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500729 */
Chris Mason1edbb732009-09-02 13:24:36 -0400730
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100731static int __must_check
732__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
733 int bits, int exclusive_bits, u64 *failed_start,
734 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500735{
736 struct extent_state *state;
737 struct extent_state *prealloc = NULL;
738 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500739 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500740 u64 last_start;
741 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400742
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400743 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500744again:
745 if (!prealloc && (mask & __GFP_WAIT)) {
746 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000747 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500748 }
749
Chris Masoncad321a2008-12-17 14:51:42 -0500750 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400751 if (cached_state && *cached_state) {
752 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400753 if (state->start <= start && state->end > start &&
754 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400755 node = &state->rb_node;
756 goto hit_next;
757 }
758 }
Chris Masond1310b22008-01-24 16:13:08 -0500759 /*
760 * this search will find all the extents that end after
761 * our range starts.
762 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500763 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500764 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000765 prealloc = alloc_extent_state_atomic(prealloc);
766 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400767 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400768 if (err)
769 extent_io_tree_panic(tree, err);
770
Chris Masond1310b22008-01-24 16:13:08 -0500771 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500772 goto out;
773 }
Chris Masond1310b22008-01-24 16:13:08 -0500774 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400775hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500776 last_start = state->start;
777 last_end = state->end;
778
779 /*
780 * | ---- desired range ---- |
781 * | state |
782 *
783 * Just lock what we found and keep going
784 */
785 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400786 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500787 *failed_start = state->start;
788 err = -EEXIST;
789 goto out;
790 }
Chris Mason42daec22009-09-23 19:51:09 -0400791
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000792 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400793 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500794 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400795 if (last_end == (u64)-1)
796 goto out;
797 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800798 state = next_state(state);
799 if (start < end && state && state->start == start &&
800 !need_resched())
801 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500802 goto search_again;
803 }
804
805 /*
806 * | ---- desired range ---- |
807 * | state |
808 * or
809 * | ------------- state -------------- |
810 *
811 * We need to split the extent we found, and may flip bits on
812 * second half.
813 *
814 * If the extent we found extends past our
815 * range, we just split and search again. It'll get split
816 * again the next time though.
817 *
818 * If the extent we found is inside our range, we set the
819 * desired bit on it.
820 */
821 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400822 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500823 *failed_start = start;
824 err = -EEXIST;
825 goto out;
826 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000827
828 prealloc = alloc_extent_state_atomic(prealloc);
829 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500830 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400831 if (err)
832 extent_io_tree_panic(tree, err);
833
Chris Masond1310b22008-01-24 16:13:08 -0500834 prealloc = NULL;
835 if (err)
836 goto out;
837 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000838 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400839 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500840 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400841 if (last_end == (u64)-1)
842 goto out;
843 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800844 state = next_state(state);
845 if (start < end && state && state->start == start &&
846 !need_resched())
847 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500848 }
849 goto search_again;
850 }
851 /*
852 * | ---- desired range ---- |
853 * | state | or | state |
854 *
855 * There's a hole, we need to insert something in it and
856 * ignore the extent we found.
857 */
858 if (state->start > start) {
859 u64 this_end;
860 if (end < last_start)
861 this_end = end;
862 else
Chris Masond3977122009-01-05 21:25:51 -0500863 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000864
865 prealloc = alloc_extent_state_atomic(prealloc);
866 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000867
868 /*
869 * Avoid to free 'prealloc' if it can be merged with
870 * the later extent.
871 */
Chris Masond1310b22008-01-24 16:13:08 -0500872 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400873 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400874 if (err)
875 extent_io_tree_panic(tree, err);
876
Chris Mason2c64c532009-09-02 15:04:12 -0400877 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500878 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500879 start = this_end + 1;
880 goto search_again;
881 }
882 /*
883 * | ---- desired range ---- |
884 * | state |
885 * We need to split the extent, and set the bit
886 * on the first half
887 */
888 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400889 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500890 *failed_start = start;
891 err = -EEXIST;
892 goto out;
893 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000894
895 prealloc = alloc_extent_state_atomic(prealloc);
896 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500897 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400898 if (err)
899 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500900
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000901 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400902 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500903 merge_state(tree, prealloc);
904 prealloc = NULL;
905 goto out;
906 }
907
908 goto search_again;
909
910out:
Chris Masoncad321a2008-12-17 14:51:42 -0500911 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500912 if (prealloc)
913 free_extent_state(prealloc);
914
915 return err;
916
917search_again:
918 if (start > end)
919 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500920 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500921 if (mask & __GFP_WAIT)
922 cond_resched();
923 goto again;
924}
Chris Masond1310b22008-01-24 16:13:08 -0500925
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100926int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits,
927 u64 *failed_start, struct extent_state **cached_state,
928 gfp_t mask)
929{
930 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
931 cached_state, mask);
932}
933
934
Josef Bacik462d6fa2011-09-26 13:56:12 -0400935/**
Liu Bo10983f22012-07-11 15:26:19 +0800936 * convert_extent_bit - convert all bits in a given range from one bit to
937 * another
Josef Bacik462d6fa2011-09-26 13:56:12 -0400938 * @tree: the io tree to search
939 * @start: the start offset in bytes
940 * @end: the end offset in bytes (inclusive)
941 * @bits: the bits to set in this range
942 * @clear_bits: the bits to clear in this range
Josef Bacike6138872012-09-27 17:07:30 -0400943 * @cached_state: state that we're going to cache
Josef Bacik462d6fa2011-09-26 13:56:12 -0400944 * @mask: the allocation mask
945 *
946 * This will go through and set bits for the given range. If any states exist
947 * already in this range they are set with the given bit and cleared of the
948 * clear_bits. This is only meant to be used by things that are mergeable, ie
949 * converting from say DELALLOC to DIRTY. This is not meant to be used with
950 * boundary bits like LOCK.
951 */
952int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacike6138872012-09-27 17:07:30 -0400953 int bits, int clear_bits,
954 struct extent_state **cached_state, gfp_t mask)
Josef Bacik462d6fa2011-09-26 13:56:12 -0400955{
956 struct extent_state *state;
957 struct extent_state *prealloc = NULL;
958 struct rb_node *node;
959 int err = 0;
960 u64 last_start;
961 u64 last_end;
962
963again:
964 if (!prealloc && (mask & __GFP_WAIT)) {
965 prealloc = alloc_extent_state(mask);
966 if (!prealloc)
967 return -ENOMEM;
968 }
969
970 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -0400971 if (cached_state && *cached_state) {
972 state = *cached_state;
973 if (state->start <= start && state->end > start &&
974 state->tree) {
975 node = &state->rb_node;
976 goto hit_next;
977 }
978 }
979
Josef Bacik462d6fa2011-09-26 13:56:12 -0400980 /*
981 * this search will find all the extents that end after
982 * our range starts.
983 */
984 node = tree_search(tree, start);
985 if (!node) {
986 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -0500987 if (!prealloc) {
988 err = -ENOMEM;
989 goto out;
990 }
Josef Bacik462d6fa2011-09-26 13:56:12 -0400991 err = insert_state(tree, prealloc, start, end, &bits);
992 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400993 if (err)
994 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -0400995 goto out;
996 }
997 state = rb_entry(node, struct extent_state, rb_node);
998hit_next:
999 last_start = state->start;
1000 last_end = state->end;
1001
1002 /*
1003 * | ---- desired range ---- |
1004 * | state |
1005 *
1006 * Just lock what we found and keep going
1007 */
1008 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -04001009 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001010 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001011 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001012 if (last_end == (u64)-1)
1013 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001014 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001015 if (start < end && state && state->start == start &&
1016 !need_resched())
1017 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001018 goto search_again;
1019 }
1020
1021 /*
1022 * | ---- desired range ---- |
1023 * | state |
1024 * or
1025 * | ------------- state -------------- |
1026 *
1027 * We need to split the extent we found, and may flip bits on
1028 * second half.
1029 *
1030 * If the extent we found extends past our
1031 * range, we just split and search again. It'll get split
1032 * again the next time though.
1033 *
1034 * If the extent we found is inside our range, we set the
1035 * desired bit on it.
1036 */
1037 if (state->start < start) {
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 = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001044 if (err)
1045 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001046 prealloc = NULL;
1047 if (err)
1048 goto out;
1049 if (state->end <= end) {
1050 set_state_bits(tree, state, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001051 cache_state(state, cached_state);
Liu Bod1ac6e42012-05-10 18:10:39 +08001052 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001053 if (last_end == (u64)-1)
1054 goto out;
1055 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001056 if (start < end && state && state->start == start &&
1057 !need_resched())
1058 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001059 }
1060 goto search_again;
1061 }
1062 /*
1063 * | ---- desired range ---- |
1064 * | state | or | state |
1065 *
1066 * There's a hole, we need to insert something in it and
1067 * ignore the extent we found.
1068 */
1069 if (state->start > start) {
1070 u64 this_end;
1071 if (end < last_start)
1072 this_end = end;
1073 else
1074 this_end = last_start - 1;
1075
1076 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001077 if (!prealloc) {
1078 err = -ENOMEM;
1079 goto out;
1080 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001081
1082 /*
1083 * Avoid to free 'prealloc' if it can be merged with
1084 * the later extent.
1085 */
1086 err = insert_state(tree, prealloc, start, this_end,
1087 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001088 if (err)
1089 extent_io_tree_panic(tree, err);
Josef Bacike6138872012-09-27 17:07:30 -04001090 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001091 prealloc = NULL;
1092 start = this_end + 1;
1093 goto search_again;
1094 }
1095 /*
1096 * | ---- desired range ---- |
1097 * | state |
1098 * We need to split the extent, and set the bit
1099 * on the first half
1100 */
1101 if (state->start <= end && state->end > end) {
1102 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001103 if (!prealloc) {
1104 err = -ENOMEM;
1105 goto out;
1106 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001107
1108 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001109 if (err)
1110 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001111
1112 set_state_bits(tree, prealloc, &bits);
Josef Bacike6138872012-09-27 17:07:30 -04001113 cache_state(prealloc, cached_state);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001114 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001115 prealloc = NULL;
1116 goto out;
1117 }
1118
1119 goto search_again;
1120
1121out:
1122 spin_unlock(&tree->lock);
1123 if (prealloc)
1124 free_extent_state(prealloc);
1125
1126 return err;
1127
1128search_again:
1129 if (start > end)
1130 goto out;
1131 spin_unlock(&tree->lock);
1132 if (mask & __GFP_WAIT)
1133 cond_resched();
1134 goto again;
1135}
1136
Chris Masond1310b22008-01-24 16:13:08 -05001137/* wrappers around set/clear extent bit */
1138int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1139 gfp_t mask)
1140{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001141 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001142 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001143}
Chris Masond1310b22008-01-24 16:13:08 -05001144
1145int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1146 int bits, gfp_t mask)
1147{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001148 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001149 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001150}
Chris Masond1310b22008-01-24 16:13:08 -05001151
1152int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1153 int bits, gfp_t mask)
1154{
Chris Mason2c64c532009-09-02 15:04:12 -04001155 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001156}
Chris Masond1310b22008-01-24 16:13:08 -05001157
1158int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001159 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001160{
1161 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001162 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001163 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001164}
Chris Masond1310b22008-01-24 16:13:08 -05001165
Liu Bo9e8a4a82012-09-05 19:10:51 -06001166int set_extent_defrag(struct extent_io_tree *tree, u64 start, u64 end,
1167 struct extent_state **cached_state, gfp_t mask)
1168{
1169 return set_extent_bit(tree, start, end,
1170 EXTENT_DELALLOC | EXTENT_UPTODATE | EXTENT_DEFRAG,
1171 NULL, cached_state, mask);
1172}
1173
Chris Masond1310b22008-01-24 16:13:08 -05001174int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1175 gfp_t mask)
1176{
1177 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001178 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001179 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001180}
Chris Masond1310b22008-01-24 16:13:08 -05001181
1182int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1183 gfp_t mask)
1184{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001185 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001186 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001187}
Chris Masond1310b22008-01-24 16:13:08 -05001188
Chris Masond1310b22008-01-24 16:13:08 -05001189int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001190 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001191{
Arne Jansen507903b2011-04-06 10:02:20 +00001192 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001193 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001194}
Chris Masond1310b22008-01-24 16:13:08 -05001195
Josef Bacik5fd02042012-05-02 14:00:54 -04001196int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1197 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001198{
Chris Mason2c64c532009-09-02 15:04:12 -04001199 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001200 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001201}
Chris Masond1310b22008-01-24 16:13:08 -05001202
Chris Masond352ac62008-09-29 15:18:18 -04001203/*
1204 * either insert or lock state struct between start and end use mask to tell
1205 * us if waiting is desired.
1206 */
Chris Mason1edbb732009-09-02 13:24:36 -04001207int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001208 int bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001209{
1210 int err;
1211 u64 failed_start;
1212 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001213 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1214 EXTENT_LOCKED, &failed_start,
1215 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001216 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001217 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1218 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001219 } else
Chris Masond1310b22008-01-24 16:13:08 -05001220 break;
Chris Masond1310b22008-01-24 16:13:08 -05001221 WARN_ON(start > end);
1222 }
1223 return err;
1224}
Chris Masond1310b22008-01-24 16:13:08 -05001225
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001226int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001227{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001228 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001229}
1230
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001231int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001232{
1233 int err;
1234 u64 failed_start;
1235
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001236 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1237 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001238 if (err == -EEXIST) {
1239 if (failed_start > start)
1240 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001241 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001242 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001243 }
Josef Bacik25179202008-10-29 14:49:05 -04001244 return 1;
1245}
Josef Bacik25179202008-10-29 14:49:05 -04001246
Chris Mason2c64c532009-09-02 15:04:12 -04001247int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1248 struct extent_state **cached, gfp_t mask)
1249{
1250 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1251 mask);
1252}
1253
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001254int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001255{
Chris Mason2c64c532009-09-02 15:04:12 -04001256 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001257 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001258}
Chris Masond1310b22008-01-24 16:13:08 -05001259
1260/*
Chris Masond1310b22008-01-24 16:13:08 -05001261 * helper function to set both pages and extents in the tree writeback
1262 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001263static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001264{
1265 unsigned long index = start >> PAGE_CACHE_SHIFT;
1266 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1267 struct page *page;
1268
1269 while (index <= end_index) {
1270 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001271 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001272 set_page_writeback(page);
1273 page_cache_release(page);
1274 index++;
1275 }
Chris Masond1310b22008-01-24 16:13:08 -05001276 return 0;
1277}
Chris Masond1310b22008-01-24 16:13:08 -05001278
Chris Masond352ac62008-09-29 15:18:18 -04001279/* find the first state struct with 'bits' set after 'start', and
1280 * return it. tree->lock must be held. NULL will returned if
1281 * nothing was found after 'start'
1282 */
Chris Masond7fc6402008-02-18 12:12:38 -05001283struct extent_state *find_first_extent_bit_state(struct extent_io_tree *tree,
1284 u64 start, int bits)
1285{
1286 struct rb_node *node;
1287 struct extent_state *state;
1288
1289 /*
1290 * this search will find all the extents that end after
1291 * our range starts.
1292 */
1293 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001294 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001295 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001296
Chris Masond3977122009-01-05 21:25:51 -05001297 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001298 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001299 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001300 return state;
Chris Masond3977122009-01-05 21:25:51 -05001301
Chris Masond7fc6402008-02-18 12:12:38 -05001302 node = rb_next(node);
1303 if (!node)
1304 break;
1305 }
1306out:
1307 return NULL;
1308}
Chris Masond7fc6402008-02-18 12:12:38 -05001309
Chris Masond352ac62008-09-29 15:18:18 -04001310/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001311 * find the first offset in the io tree with 'bits' set. zero is
1312 * returned if we find something, and *start_ret and *end_ret are
1313 * set to reflect the state struct that was found.
1314 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001315 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001316 */
1317int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
Josef Bacike6138872012-09-27 17:07:30 -04001318 u64 *start_ret, u64 *end_ret, int bits,
1319 struct extent_state **cached_state)
Xiao Guangrong69261c42011-07-14 03:19:45 +00001320{
1321 struct extent_state *state;
Josef Bacike6138872012-09-27 17:07:30 -04001322 struct rb_node *n;
Xiao Guangrong69261c42011-07-14 03:19:45 +00001323 int ret = 1;
1324
1325 spin_lock(&tree->lock);
Josef Bacike6138872012-09-27 17:07:30 -04001326 if (cached_state && *cached_state) {
1327 state = *cached_state;
1328 if (state->end == start - 1 && state->tree) {
1329 n = rb_next(&state->rb_node);
1330 while (n) {
1331 state = rb_entry(n, struct extent_state,
1332 rb_node);
1333 if (state->state & bits)
1334 goto got_it;
1335 n = rb_next(n);
1336 }
1337 free_extent_state(*cached_state);
1338 *cached_state = NULL;
1339 goto out;
1340 }
1341 free_extent_state(*cached_state);
1342 *cached_state = NULL;
1343 }
1344
Xiao Guangrong69261c42011-07-14 03:19:45 +00001345 state = find_first_extent_bit_state(tree, start, bits);
Josef Bacike6138872012-09-27 17:07:30 -04001346got_it:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001347 if (state) {
Josef Bacike6138872012-09-27 17:07:30 -04001348 cache_state(state, cached_state);
Xiao Guangrong69261c42011-07-14 03:19:45 +00001349 *start_ret = state->start;
1350 *end_ret = state->end;
1351 ret = 0;
1352 }
Josef Bacike6138872012-09-27 17:07:30 -04001353out:
Xiao Guangrong69261c42011-07-14 03:19:45 +00001354 spin_unlock(&tree->lock);
1355 return ret;
1356}
1357
1358/*
Chris Masond352ac62008-09-29 15:18:18 -04001359 * find a contiguous range of bytes in the file marked as delalloc, not
1360 * more than 'max_bytes'. start and end are used to return the range,
1361 *
1362 * 1 is returned if we find something, 0 if nothing was in the tree
1363 */
Chris Masonc8b97812008-10-29 14:49:59 -04001364static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001365 u64 *start, u64 *end, u64 max_bytes,
1366 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001367{
1368 struct rb_node *node;
1369 struct extent_state *state;
1370 u64 cur_start = *start;
1371 u64 found = 0;
1372 u64 total_bytes = 0;
1373
Chris Masoncad321a2008-12-17 14:51:42 -05001374 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001375
Chris Masond1310b22008-01-24 16:13:08 -05001376 /*
1377 * this search will find all the extents that end after
1378 * our range starts.
1379 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001380 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001381 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001382 if (!found)
1383 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001384 goto out;
1385 }
1386
Chris Masond3977122009-01-05 21:25:51 -05001387 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001388 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001389 if (found && (state->start != cur_start ||
1390 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001391 goto out;
1392 }
1393 if (!(state->state & EXTENT_DELALLOC)) {
1394 if (!found)
1395 *end = state->end;
1396 goto out;
1397 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001398 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001399 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001400 *cached_state = state;
1401 atomic_inc(&state->refs);
1402 }
Chris Masond1310b22008-01-24 16:13:08 -05001403 found++;
1404 *end = state->end;
1405 cur_start = state->end + 1;
1406 node = rb_next(node);
1407 if (!node)
1408 break;
1409 total_bytes += state->end - state->start + 1;
1410 if (total_bytes >= max_bytes)
1411 break;
1412 }
1413out:
Chris Masoncad321a2008-12-17 14:51:42 -05001414 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001415 return found;
1416}
1417
Jeff Mahoney143bede2012-03-01 14:56:26 +01001418static noinline void __unlock_for_delalloc(struct inode *inode,
1419 struct page *locked_page,
1420 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001421{
1422 int ret;
1423 struct page *pages[16];
1424 unsigned long index = start >> PAGE_CACHE_SHIFT;
1425 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1426 unsigned long nr_pages = end_index - index + 1;
1427 int i;
1428
1429 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001430 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001431
Chris Masond3977122009-01-05 21:25:51 -05001432 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001433 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001434 min_t(unsigned long, nr_pages,
1435 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001436 for (i = 0; i < ret; i++) {
1437 if (pages[i] != locked_page)
1438 unlock_page(pages[i]);
1439 page_cache_release(pages[i]);
1440 }
1441 nr_pages -= ret;
1442 index += ret;
1443 cond_resched();
1444 }
Chris Masonc8b97812008-10-29 14:49:59 -04001445}
1446
1447static noinline int lock_delalloc_pages(struct inode *inode,
1448 struct page *locked_page,
1449 u64 delalloc_start,
1450 u64 delalloc_end)
1451{
1452 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1453 unsigned long start_index = index;
1454 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1455 unsigned long pages_locked = 0;
1456 struct page *pages[16];
1457 unsigned long nrpages;
1458 int ret;
1459 int i;
1460
1461 /* the caller is responsible for locking the start index */
1462 if (index == locked_page->index && index == end_index)
1463 return 0;
1464
1465 /* skip the page at the start index */
1466 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001467 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001468 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001469 min_t(unsigned long,
1470 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001471 if (ret == 0) {
1472 ret = -EAGAIN;
1473 goto done;
1474 }
1475 /* now we have an array of pages, lock them all */
1476 for (i = 0; i < ret; i++) {
1477 /*
1478 * the caller is taking responsibility for
1479 * locked_page
1480 */
Chris Mason771ed682008-11-06 22:02:51 -05001481 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001482 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001483 if (!PageDirty(pages[i]) ||
1484 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001485 ret = -EAGAIN;
1486 unlock_page(pages[i]);
1487 page_cache_release(pages[i]);
1488 goto done;
1489 }
1490 }
Chris Masonc8b97812008-10-29 14:49:59 -04001491 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001492 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001493 }
Chris Masonc8b97812008-10-29 14:49:59 -04001494 nrpages -= ret;
1495 index += ret;
1496 cond_resched();
1497 }
1498 ret = 0;
1499done:
1500 if (ret && pages_locked) {
1501 __unlock_for_delalloc(inode, locked_page,
1502 delalloc_start,
1503 ((u64)(start_index + pages_locked - 1)) <<
1504 PAGE_CACHE_SHIFT);
1505 }
1506 return ret;
1507}
1508
1509/*
1510 * find a contiguous range of bytes in the file marked as delalloc, not
1511 * more than 'max_bytes'. start and end are used to return the range,
1512 *
1513 * 1 is returned if we find something, 0 if nothing was in the tree
1514 */
1515static noinline u64 find_lock_delalloc_range(struct inode *inode,
1516 struct extent_io_tree *tree,
1517 struct page *locked_page,
1518 u64 *start, u64 *end,
1519 u64 max_bytes)
1520{
1521 u64 delalloc_start;
1522 u64 delalloc_end;
1523 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001524 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001525 int ret;
1526 int loops = 0;
1527
1528again:
1529 /* step one, find a bunch of delalloc bytes starting at start */
1530 delalloc_start = *start;
1531 delalloc_end = 0;
1532 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001533 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001534 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001535 *start = delalloc_start;
1536 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001537 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001538 return found;
1539 }
1540
1541 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001542 * start comes from the offset of locked_page. We have to lock
1543 * pages in order, so we can't process delalloc bytes before
1544 * locked_page
1545 */
Chris Masond3977122009-01-05 21:25:51 -05001546 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001547 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001548
1549 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001550 * make sure to limit the number of pages we try to lock down
1551 * if we're looping.
1552 */
Chris Masond3977122009-01-05 21:25:51 -05001553 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001554 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001555
Chris Masonc8b97812008-10-29 14:49:59 -04001556 /* step two, lock all the pages after the page that has start */
1557 ret = lock_delalloc_pages(inode, locked_page,
1558 delalloc_start, delalloc_end);
1559 if (ret == -EAGAIN) {
1560 /* some of the pages are gone, lets avoid looping by
1561 * shortening the size of the delalloc range we're searching
1562 */
Chris Mason9655d292009-09-02 15:22:30 -04001563 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001564 if (!loops) {
1565 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1566 max_bytes = PAGE_CACHE_SIZE - offset;
1567 loops = 1;
1568 goto again;
1569 } else {
1570 found = 0;
1571 goto out_failed;
1572 }
1573 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001574 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001575
1576 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001577 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001578
1579 /* then test to make sure it is all still delalloc */
1580 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001581 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001582 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001583 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1584 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001585 __unlock_for_delalloc(inode, locked_page,
1586 delalloc_start, delalloc_end);
1587 cond_resched();
1588 goto again;
1589 }
Chris Mason9655d292009-09-02 15:22:30 -04001590 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001591 *start = delalloc_start;
1592 *end = delalloc_end;
1593out_failed:
1594 return found;
1595}
1596
1597int extent_clear_unlock_delalloc(struct inode *inode,
1598 struct extent_io_tree *tree,
1599 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001600 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001601{
1602 int ret;
1603 struct page *pages[16];
1604 unsigned long index = start >> PAGE_CACHE_SHIFT;
1605 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1606 unsigned long nr_pages = end_index - index + 1;
1607 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001608 int clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001609
Chris Masona791e352009-10-08 11:27:10 -04001610 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001611 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001612 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001613 clear_bits |= EXTENT_DIRTY;
1614
Chris Masona791e352009-10-08 11:27:10 -04001615 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001616 clear_bits |= EXTENT_DELALLOC;
1617
Chris Mason2c64c532009-09-02 15:04:12 -04001618 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001619 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1620 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1621 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001622 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001623
Chris Masond3977122009-01-05 21:25:51 -05001624 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001625 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001626 min_t(unsigned long,
1627 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001628 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001629
Chris Masona791e352009-10-08 11:27:10 -04001630 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001631 SetPagePrivate2(pages[i]);
1632
Chris Masonc8b97812008-10-29 14:49:59 -04001633 if (pages[i] == locked_page) {
1634 page_cache_release(pages[i]);
1635 continue;
1636 }
Chris Masona791e352009-10-08 11:27:10 -04001637 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001638 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001639 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001640 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001641 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001642 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001643 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001644 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001645 page_cache_release(pages[i]);
1646 }
1647 nr_pages -= ret;
1648 index += ret;
1649 cond_resched();
1650 }
1651 return 0;
1652}
Chris Masonc8b97812008-10-29 14:49:59 -04001653
Chris Masond352ac62008-09-29 15:18:18 -04001654/*
1655 * count the number of bytes in the tree that have a given bit(s)
1656 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1657 * cached. The total number found is returned.
1658 */
Chris Masond1310b22008-01-24 16:13:08 -05001659u64 count_range_bits(struct extent_io_tree *tree,
1660 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001661 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001662{
1663 struct rb_node *node;
1664 struct extent_state *state;
1665 u64 cur_start = *start;
1666 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001667 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001668 int found = 0;
1669
1670 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001671 WARN_ON(1);
1672 return 0;
1673 }
1674
Chris Masoncad321a2008-12-17 14:51:42 -05001675 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001676 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1677 total_bytes = tree->dirty_bytes;
1678 goto out;
1679 }
1680 /*
1681 * this search will find all the extents that end after
1682 * our range starts.
1683 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001684 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001685 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001686 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001687
Chris Masond3977122009-01-05 21:25:51 -05001688 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001689 state = rb_entry(node, struct extent_state, rb_node);
1690 if (state->start > search_end)
1691 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001692 if (contig && found && state->start > last + 1)
1693 break;
1694 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001695 total_bytes += min(search_end, state->end) + 1 -
1696 max(cur_start, state->start);
1697 if (total_bytes >= max_bytes)
1698 break;
1699 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001700 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001701 found = 1;
1702 }
Chris Masonec29ed52011-02-23 16:23:20 -05001703 last = state->end;
1704 } else if (contig && found) {
1705 break;
Chris Masond1310b22008-01-24 16:13:08 -05001706 }
1707 node = rb_next(node);
1708 if (!node)
1709 break;
1710 }
1711out:
Chris Masoncad321a2008-12-17 14:51:42 -05001712 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001713 return total_bytes;
1714}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001715
Chris Masond352ac62008-09-29 15:18:18 -04001716/*
1717 * set the private field for a given byte offset in the tree. If there isn't
1718 * an extent_state there already, this does nothing.
1719 */
Chris Masond1310b22008-01-24 16:13:08 -05001720int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1721{
1722 struct rb_node *node;
1723 struct extent_state *state;
1724 int ret = 0;
1725
Chris Masoncad321a2008-12-17 14:51:42 -05001726 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001727 /*
1728 * this search will find all the extents that end after
1729 * our range starts.
1730 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001731 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001732 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001733 ret = -ENOENT;
1734 goto out;
1735 }
1736 state = rb_entry(node, struct extent_state, rb_node);
1737 if (state->start != start) {
1738 ret = -ENOENT;
1739 goto out;
1740 }
1741 state->private = private;
1742out:
Chris Masoncad321a2008-12-17 14:51:42 -05001743 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001744 return ret;
1745}
1746
1747int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1748{
1749 struct rb_node *node;
1750 struct extent_state *state;
1751 int ret = 0;
1752
Chris Masoncad321a2008-12-17 14:51:42 -05001753 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001754 /*
1755 * this search will find all the extents that end after
1756 * our range starts.
1757 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001758 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001759 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001760 ret = -ENOENT;
1761 goto out;
1762 }
1763 state = rb_entry(node, struct extent_state, rb_node);
1764 if (state->start != start) {
1765 ret = -ENOENT;
1766 goto out;
1767 }
1768 *private = state->private;
1769out:
Chris Masoncad321a2008-12-17 14:51:42 -05001770 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001771 return ret;
1772}
1773
1774/*
1775 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001776 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001777 * has the bits set. Otherwise, 1 is returned if any bit in the
1778 * range is found set.
1779 */
1780int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason9655d292009-09-02 15:22:30 -04001781 int bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001782{
1783 struct extent_state *state = NULL;
1784 struct rb_node *node;
1785 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001786
Chris Masoncad321a2008-12-17 14:51:42 -05001787 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001788 if (cached && cached->tree && cached->start <= start &&
1789 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001790 node = &cached->rb_node;
1791 else
1792 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001793 while (node && start <= end) {
1794 state = rb_entry(node, struct extent_state, rb_node);
1795
1796 if (filled && state->start > start) {
1797 bitset = 0;
1798 break;
1799 }
1800
1801 if (state->start > end)
1802 break;
1803
1804 if (state->state & bits) {
1805 bitset = 1;
1806 if (!filled)
1807 break;
1808 } else if (filled) {
1809 bitset = 0;
1810 break;
1811 }
Chris Mason46562ce2009-09-23 20:23:16 -04001812
1813 if (state->end == (u64)-1)
1814 break;
1815
Chris Masond1310b22008-01-24 16:13:08 -05001816 start = state->end + 1;
1817 if (start > end)
1818 break;
1819 node = rb_next(node);
1820 if (!node) {
1821 if (filled)
1822 bitset = 0;
1823 break;
1824 }
1825 }
Chris Masoncad321a2008-12-17 14:51:42 -05001826 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001827 return bitset;
1828}
Chris Masond1310b22008-01-24 16:13:08 -05001829
1830/*
1831 * helper function to set a given page up to date if all the
1832 * extents in the tree for that page are up to date
1833 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001834static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001835{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001836 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001837 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001838 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001839 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001840}
1841
1842/*
1843 * helper function to unlock a page if all the extents in the tree
1844 * for that page are unlocked
1845 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001846static void check_page_locked(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001847{
Miao Xie4eee4fa2012-12-21 09:17:45 +00001848 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05001849 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001850 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001851 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05001852}
1853
1854/*
1855 * helper function to end page writeback if all the extents
1856 * in the tree for that page are done with writeback
1857 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001858static void check_page_writeback(struct extent_io_tree *tree,
1859 struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001860{
Chris Mason1edbb732009-09-02 13:24:36 -04001861 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001862}
1863
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001864/*
1865 * When IO fails, either with EIO or csum verification fails, we
1866 * try other mirrors that might have a good copy of the data. This
1867 * io_failure_record is used to record state as we go through all the
1868 * mirrors. If another mirror has good data, the page is set up to date
1869 * and things continue. If a good mirror can't be found, the original
1870 * bio end_io callback is called to indicate things have failed.
1871 */
1872struct io_failure_record {
1873 struct page *page;
1874 u64 start;
1875 u64 len;
1876 u64 logical;
1877 unsigned long bio_flags;
1878 int this_mirror;
1879 int failed_mirror;
1880 int in_validation;
1881};
1882
1883static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1884 int did_repair)
1885{
1886 int ret;
1887 int err = 0;
1888 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1889
1890 set_state_private(failure_tree, rec->start, 0);
1891 ret = clear_extent_bits(failure_tree, rec->start,
1892 rec->start + rec->len - 1,
1893 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1894 if (ret)
1895 err = ret;
1896
David Woodhouse53b381b2013-01-29 18:40:14 -05001897 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1898 rec->start + rec->len - 1,
1899 EXTENT_DAMAGED, GFP_NOFS);
1900 if (ret && !err)
1901 err = ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001902
1903 kfree(rec);
1904 return err;
1905}
1906
1907static void repair_io_failure_callback(struct bio *bio, int err)
1908{
1909 complete(bio->bi_private);
1910}
1911
1912/*
1913 * this bypasses the standard btrfs submit functions deliberately, as
1914 * the standard behavior is to write all copies in a raid setup. here we only
1915 * want to write the one bad copy. so we do the mapping for ourselves and issue
1916 * submit_bio directly.
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001917 * to avoid any synchronization issues, wait for the data after writing, which
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001918 * actually prevents the read that triggered the error from finishing.
1919 * currently, there can be no more than two copies of every data bit. thus,
1920 * exactly one rewrite is required.
1921 */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001922int repair_io_failure(struct btrfs_fs_info *fs_info, u64 start,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001923 u64 length, u64 logical, struct page *page,
1924 int mirror_num)
1925{
1926 struct bio *bio;
1927 struct btrfs_device *dev;
1928 DECLARE_COMPLETION_ONSTACK(compl);
1929 u64 map_length = 0;
1930 u64 sector;
1931 struct btrfs_bio *bbio = NULL;
David Woodhouse53b381b2013-01-29 18:40:14 -05001932 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001933 int ret;
1934
1935 BUG_ON(!mirror_num);
1936
David Woodhouse53b381b2013-01-29 18:40:14 -05001937 /* we can't repair anything in raid56 yet */
1938 if (btrfs_is_parity_mirror(map_tree, logical, length, mirror_num))
1939 return 0;
1940
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001941 bio = bio_alloc(GFP_NOFS, 1);
1942 if (!bio)
1943 return -EIO;
1944 bio->bi_private = &compl;
1945 bio->bi_end_io = repair_io_failure_callback;
1946 bio->bi_size = 0;
1947 map_length = length;
1948
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001949 ret = btrfs_map_block(fs_info, WRITE, logical,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001950 &map_length, &bbio, mirror_num);
1951 if (ret) {
1952 bio_put(bio);
1953 return -EIO;
1954 }
1955 BUG_ON(mirror_num != bbio->mirror_num);
1956 sector = bbio->stripes[mirror_num-1].physical >> 9;
1957 bio->bi_sector = sector;
1958 dev = bbio->stripes[mirror_num-1].dev;
1959 kfree(bbio);
1960 if (!dev || !dev->bdev || !dev->writeable) {
1961 bio_put(bio);
1962 return -EIO;
1963 }
1964 bio->bi_bdev = dev->bdev;
Miao Xie4eee4fa2012-12-21 09:17:45 +00001965 bio_add_page(bio, page, length, start - page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01001966 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001967 wait_for_completion(&compl);
1968
1969 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
1970 /* try to remap that extent elsewhere? */
1971 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001972 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001973 return -EIO;
1974 }
1975
Anand Jaind5b025d2012-07-02 22:05:21 -06001976 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04001977 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
1978 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001979
1980 bio_put(bio);
1981 return 0;
1982}
1983
Josef Bacikea466792012-03-26 21:57:36 -04001984int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
1985 int mirror_num)
1986{
Josef Bacikea466792012-03-26 21:57:36 -04001987 u64 start = eb->start;
1988 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04001989 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04001990
1991 for (i = 0; i < num_pages; i++) {
1992 struct page *p = extent_buffer_page(eb, i);
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001993 ret = repair_io_failure(root->fs_info, start, PAGE_CACHE_SIZE,
Josef Bacikea466792012-03-26 21:57:36 -04001994 start, p, mirror_num);
1995 if (ret)
1996 break;
1997 start += PAGE_CACHE_SIZE;
1998 }
1999
2000 return ret;
2001}
2002
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002003/*
2004 * each time an IO finishes, we do a fast check in the IO failure tree
2005 * to see if we need to process or clean up an io_failure_record
2006 */
2007static int clean_io_failure(u64 start, struct page *page)
2008{
2009 u64 private;
2010 u64 private_failure;
2011 struct io_failure_record *failrec;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002012 struct btrfs_fs_info *fs_info;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002013 struct extent_state *state;
2014 int num_copies;
2015 int did_repair = 0;
2016 int ret;
2017 struct inode *inode = page->mapping->host;
2018
2019 private = 0;
2020 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
2021 (u64)-1, 1, EXTENT_DIRTY, 0);
2022 if (!ret)
2023 return 0;
2024
2025 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
2026 &private_failure);
2027 if (ret)
2028 return 0;
2029
2030 failrec = (struct io_failure_record *)(unsigned long) private_failure;
2031 BUG_ON(!failrec->this_mirror);
2032
2033 if (failrec->in_validation) {
2034 /* there was no real error, just free the record */
2035 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
2036 failrec->start);
2037 did_repair = 1;
2038 goto out;
2039 }
2040
2041 spin_lock(&BTRFS_I(inode)->io_tree.lock);
2042 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
2043 failrec->start,
2044 EXTENT_LOCKED);
2045 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
2046
2047 if (state && state->start == failrec->start) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002048 fs_info = BTRFS_I(inode)->root->fs_info;
2049 num_copies = btrfs_num_copies(fs_info, failrec->logical,
2050 failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002051 if (num_copies > 1) {
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002052 ret = repair_io_failure(fs_info, start, failrec->len,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002053 failrec->logical, page,
2054 failrec->failed_mirror);
2055 did_repair = !ret;
2056 }
David Woodhouse53b381b2013-01-29 18:40:14 -05002057 ret = 0;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002058 }
2059
2060out:
2061 if (!ret)
2062 ret = free_io_failure(inode, failrec, did_repair);
2063
2064 return ret;
2065}
2066
2067/*
2068 * this is a generic handler for readpage errors (default
2069 * readpage_io_failed_hook). if other copies exist, read those and write back
2070 * good data to the failed position. does not investigate in remapping the
2071 * failed extent elsewhere, hoping the device will be smart enough to do this as
2072 * needed
2073 */
2074
2075static int bio_readpage_error(struct bio *failed_bio, struct page *page,
2076 u64 start, u64 end, int failed_mirror,
2077 struct extent_state *state)
2078{
2079 struct io_failure_record *failrec = NULL;
2080 u64 private;
2081 struct extent_map *em;
2082 struct inode *inode = page->mapping->host;
2083 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2084 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2085 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2086 struct bio *bio;
2087 int num_copies;
2088 int ret;
2089 int read_mode;
2090 u64 logical;
2091
2092 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2093
2094 ret = get_state_private(failure_tree, start, &private);
2095 if (ret) {
2096 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2097 if (!failrec)
2098 return -ENOMEM;
2099 failrec->start = start;
2100 failrec->len = end - start + 1;
2101 failrec->this_mirror = 0;
2102 failrec->bio_flags = 0;
2103 failrec->in_validation = 0;
2104
2105 read_lock(&em_tree->lock);
2106 em = lookup_extent_mapping(em_tree, start, failrec->len);
2107 if (!em) {
2108 read_unlock(&em_tree->lock);
2109 kfree(failrec);
2110 return -EIO;
2111 }
2112
2113 if (em->start > start || em->start + em->len < start) {
2114 free_extent_map(em);
2115 em = NULL;
2116 }
2117 read_unlock(&em_tree->lock);
2118
Tsutomu Itoh7a2d6a62012-10-01 03:07:15 -06002119 if (!em) {
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002120 kfree(failrec);
2121 return -EIO;
2122 }
2123 logical = start - em->start;
2124 logical = em->block_start + logical;
2125 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2126 logical = em->block_start;
2127 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2128 extent_set_compress_type(&failrec->bio_flags,
2129 em->compress_type);
2130 }
2131 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2132 "len=%llu\n", logical, start, failrec->len);
2133 failrec->logical = logical;
2134 free_extent_map(em);
2135
2136 /* set the bits in the private failure tree */
2137 ret = set_extent_bits(failure_tree, start, end,
2138 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2139 if (ret >= 0)
2140 ret = set_state_private(failure_tree, start,
2141 (u64)(unsigned long)failrec);
2142 /* set the bits in the inode's tree */
2143 if (ret >= 0)
2144 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2145 GFP_NOFS);
2146 if (ret < 0) {
2147 kfree(failrec);
2148 return ret;
2149 }
2150 } else {
2151 failrec = (struct io_failure_record *)(unsigned long)private;
2152 pr_debug("bio_readpage_error: (found) logical=%llu, "
2153 "start=%llu, len=%llu, validation=%d\n",
2154 failrec->logical, failrec->start, failrec->len,
2155 failrec->in_validation);
2156 /*
2157 * when data can be on disk more than twice, add to failrec here
2158 * (e.g. with a list for failed_mirror) to make
2159 * clean_io_failure() clean all those errors at once.
2160 */
2161 }
Stefan Behrens5d964052012-11-05 14:59:07 +01002162 num_copies = btrfs_num_copies(BTRFS_I(inode)->root->fs_info,
2163 failrec->logical, failrec->len);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002164 if (num_copies == 1) {
2165 /*
2166 * we only have a single copy of the data, so don't bother with
2167 * all the retry and error correction code that follows. no
2168 * matter what the error is, it is very likely to persist.
2169 */
2170 pr_debug("bio_readpage_error: cannot repair, num_copies == 1. "
2171 "state=%p, num_copies=%d, next_mirror %d, "
2172 "failed_mirror %d\n", state, num_copies,
2173 failrec->this_mirror, failed_mirror);
2174 free_io_failure(inode, failrec, 0);
2175 return -EIO;
2176 }
2177
2178 if (!state) {
2179 spin_lock(&tree->lock);
2180 state = find_first_extent_bit_state(tree, failrec->start,
2181 EXTENT_LOCKED);
2182 if (state && state->start != failrec->start)
2183 state = NULL;
2184 spin_unlock(&tree->lock);
2185 }
2186
2187 /*
2188 * there are two premises:
2189 * a) deliver good data to the caller
2190 * b) correct the bad sectors on disk
2191 */
2192 if (failed_bio->bi_vcnt > 1) {
2193 /*
2194 * to fulfill b), we need to know the exact failing sectors, as
2195 * we don't want to rewrite any more than the failed ones. thus,
2196 * we need separate read requests for the failed bio
2197 *
2198 * if the following BUG_ON triggers, our validation request got
2199 * merged. we need separate requests for our algorithm to work.
2200 */
2201 BUG_ON(failrec->in_validation);
2202 failrec->in_validation = 1;
2203 failrec->this_mirror = failed_mirror;
2204 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2205 } else {
2206 /*
2207 * we're ready to fulfill a) and b) alongside. get a good copy
2208 * of the failed sector and if we succeed, we have setup
2209 * everything for repair_io_failure to do the rest for us.
2210 */
2211 if (failrec->in_validation) {
2212 BUG_ON(failrec->this_mirror != failed_mirror);
2213 failrec->in_validation = 0;
2214 failrec->this_mirror = 0;
2215 }
2216 failrec->failed_mirror = failed_mirror;
2217 failrec->this_mirror++;
2218 if (failrec->this_mirror == failed_mirror)
2219 failrec->this_mirror++;
2220 read_mode = READ_SYNC;
2221 }
2222
2223 if (!state || failrec->this_mirror > num_copies) {
2224 pr_debug("bio_readpage_error: (fail) state=%p, num_copies=%d, "
2225 "next_mirror %d, failed_mirror %d\n", state,
2226 num_copies, failrec->this_mirror, failed_mirror);
2227 free_io_failure(inode, failrec, 0);
2228 return -EIO;
2229 }
2230
2231 bio = bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002232 if (!bio) {
2233 free_io_failure(inode, failrec, 0);
2234 return -EIO;
2235 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002236 bio->bi_private = state;
2237 bio->bi_end_io = failed_bio->bi_end_io;
2238 bio->bi_sector = failrec->logical >> 9;
2239 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2240 bio->bi_size = 0;
2241
2242 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2243
2244 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2245 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2246 failrec->this_mirror, num_copies, failrec->in_validation);
2247
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002248 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2249 failrec->this_mirror,
2250 failrec->bio_flags, 0);
2251 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002252}
2253
Chris Masond1310b22008-01-24 16:13:08 -05002254/* lots and lots of room for performance fixes in the end_bio funcs */
2255
Jeff Mahoney87826df2012-02-15 16:23:57 +01002256int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2257{
2258 int uptodate = (err == 0);
2259 struct extent_io_tree *tree;
2260 int ret;
2261
2262 tree = &BTRFS_I(page->mapping->host)->io_tree;
2263
2264 if (tree->ops && tree->ops->writepage_end_io_hook) {
2265 ret = tree->ops->writepage_end_io_hook(page, start,
2266 end, NULL, uptodate);
2267 if (ret)
2268 uptodate = 0;
2269 }
2270
Jeff Mahoney87826df2012-02-15 16:23:57 +01002271 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002272 ClearPageUptodate(page);
2273 SetPageError(page);
2274 }
2275 return 0;
2276}
2277
Chris Masond1310b22008-01-24 16:13:08 -05002278/*
2279 * after a writepage IO is done, we need to:
2280 * clear the uptodate bits on error
2281 * clear the writeback bits in the extent tree for this IO
2282 * end_page_writeback if the page has no more pending IO
2283 *
2284 * Scheduling is not allowed, so the extent state tree is expected
2285 * to have one and only one object corresponding to this IO.
2286 */
Chris Masond1310b22008-01-24 16:13:08 -05002287static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002288{
Chris Masond1310b22008-01-24 16:13:08 -05002289 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002290 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002291 u64 start;
2292 u64 end;
2293 int whole_page;
2294
Chris Masond1310b22008-01-24 16:13:08 -05002295 do {
2296 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002297 tree = &BTRFS_I(page->mapping->host)->io_tree;
2298
Miao Xie4eee4fa2012-12-21 09:17:45 +00002299 start = page_offset(page) + bvec->bv_offset;
Chris Masond1310b22008-01-24 16:13:08 -05002300 end = start + bvec->bv_len - 1;
2301
2302 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
2303 whole_page = 1;
2304 else
2305 whole_page = 0;
2306
2307 if (--bvec >= bio->bi_io_vec)
2308 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002309
Jeff Mahoney87826df2012-02-15 16:23:57 +01002310 if (end_extent_writepage(page, err, start, end))
2311 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002312
Chris Masond1310b22008-01-24 16:13:08 -05002313 if (whole_page)
2314 end_page_writeback(page);
2315 else
2316 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002317 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002318
Chris Masond1310b22008-01-24 16:13:08 -05002319 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002320}
2321
2322/*
2323 * after a readpage IO is done, we need to:
2324 * clear the uptodate bits on error
2325 * set the uptodate bits if things worked
2326 * set the page up to date if all extents in the tree are uptodate
2327 * clear the lock bit in the extent tree
2328 * unlock the page if there are no other extents locked for it
2329 *
2330 * Scheduling is not allowed, so the extent state tree is expected
2331 * to have one and only one object corresponding to this IO.
2332 */
Chris Masond1310b22008-01-24 16:13:08 -05002333static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002334{
2335 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002336 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2337 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04002338 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002339 u64 start;
2340 u64 end;
2341 int whole_page;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002342 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002343 int ret;
2344
Chris Masond20f7042008-12-08 16:58:54 -05002345 if (err)
2346 uptodate = 0;
2347
Chris Masond1310b22008-01-24 16:13:08 -05002348 do {
2349 struct page *page = bvec->bv_page;
Arne Jansen507903b2011-04-06 10:02:20 +00002350 struct extent_state *cached = NULL;
2351 struct extent_state *state;
2352
Kent Overstreetbe3940c2012-09-11 14:23:05 -06002353 pr_debug("end_bio_extent_readpage: bi_sector=%llu, err=%d, "
2354 "mirror=%ld\n", (u64)bio->bi_sector, err,
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002355 (long int)bio->bi_bdev);
David Woodhouse902b22f2008-08-20 08:51:49 -04002356 tree = &BTRFS_I(page->mapping->host)->io_tree;
2357
Miao Xie4eee4fa2012-12-21 09:17:45 +00002358 start = page_offset(page) + bvec->bv_offset;
Chris Masond1310b22008-01-24 16:13:08 -05002359 end = start + bvec->bv_len - 1;
2360
2361 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
2362 whole_page = 1;
2363 else
2364 whole_page = 0;
2365
Chris Mason4125bf72010-02-03 18:18:45 +00002366 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002367 prefetchw(&bvec->bv_page->flags);
2368
Arne Jansen507903b2011-04-06 10:02:20 +00002369 spin_lock(&tree->lock);
Chris Mason0d399202011-04-16 06:55:39 -04002370 state = find_first_extent_bit_state(tree, start, EXTENT_LOCKED);
Chris Mason109b36a2011-04-12 13:57:39 -04002371 if (state && state->start == start) {
Arne Jansen507903b2011-04-06 10:02:20 +00002372 /*
2373 * take a reference on the state, unlock will drop
2374 * the ref
2375 */
2376 cache_state(state, &cached);
2377 }
2378 spin_unlock(&tree->lock);
2379
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002380 mirror = (int)(unsigned long)bio->bi_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002381 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05002382 ret = tree->ops->readpage_end_io_hook(page, start, end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002383 state, mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002384 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002385 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002386 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002387 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002388 }
Josef Bacikea466792012-03-26 21:57:36 -04002389
Josef Bacikea466792012-03-26 21:57:36 -04002390 if (!uptodate && tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002391 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002392 if (!ret && !err &&
2393 test_bit(BIO_UPTODATE, &bio->bi_flags))
2394 uptodate = 1;
2395 } else if (!uptodate) {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002396 /*
2397 * The generic bio_readpage_error handles errors the
2398 * following way: If possible, new read requests are
2399 * created and submitted and will end up in
2400 * end_bio_extent_readpage as well (if we're lucky, not
2401 * in the !uptodate case). In that case it returns 0 and
2402 * we just go on with the next page in our bio. If it
2403 * can't handle the error it will return -EIO and we
2404 * remain responsible for that page.
2405 */
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002406 ret = bio_readpage_error(bio, page, start, end, mirror, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04002407 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002408 uptodate =
2409 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002410 if (err)
2411 uptodate = 0;
Arne Jansen507903b2011-04-06 10:02:20 +00002412 uncache_state(&cached);
Chris Mason7e383262008-04-09 16:28:12 -04002413 continue;
2414 }
2415 }
Chris Mason70dec802008-01-29 09:59:12 -05002416
Josef Bacik0b32f4b2012-03-13 09:38:00 -04002417 if (uptodate && tree->track_uptodate) {
Arne Jansen507903b2011-04-06 10:02:20 +00002418 set_extent_uptodate(tree, start, end, &cached,
David Woodhouse902b22f2008-08-20 08:51:49 -04002419 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05002420 }
Arne Jansen507903b2011-04-06 10:02:20 +00002421 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05002422
Chris Mason70dec802008-01-29 09:59:12 -05002423 if (whole_page) {
2424 if (uptodate) {
2425 SetPageUptodate(page);
2426 } else {
2427 ClearPageUptodate(page);
2428 SetPageError(page);
2429 }
Chris Masond1310b22008-01-24 16:13:08 -05002430 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05002431 } else {
2432 if (uptodate) {
2433 check_page_uptodate(tree, page);
2434 } else {
2435 ClearPageUptodate(page);
2436 SetPageError(page);
2437 }
Chris Masond1310b22008-01-24 16:13:08 -05002438 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05002439 }
Chris Mason4125bf72010-02-03 18:18:45 +00002440 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002441
2442 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002443}
2444
Miao Xie88f794e2010-11-22 03:02:55 +00002445struct bio *
2446btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2447 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002448{
2449 struct bio *bio;
2450
2451 bio = bio_alloc(gfp_flags, nr_vecs);
2452
2453 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
2454 while (!bio && (nr_vecs /= 2))
2455 bio = bio_alloc(gfp_flags, nr_vecs);
2456 }
2457
2458 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002459 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002460 bio->bi_bdev = bdev;
2461 bio->bi_sector = first_sector;
2462 }
2463 return bio;
2464}
2465
Jeff Mahoney355808c2011-10-03 23:23:14 -04002466static int __must_check submit_one_bio(int rw, struct bio *bio,
2467 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002468{
Chris Masond1310b22008-01-24 16:13:08 -05002469 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002470 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2471 struct page *page = bvec->bv_page;
2472 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002473 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002474
Miao Xie4eee4fa2012-12-21 09:17:45 +00002475 start = page_offset(page) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002476
David Woodhouse902b22f2008-08-20 08:51:49 -04002477 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002478
2479 bio_get(bio);
2480
Chris Mason065631f2008-02-20 12:07:25 -05002481 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002482 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002483 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002484 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002485 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002486
Chris Masond1310b22008-01-24 16:13:08 -05002487 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2488 ret = -EOPNOTSUPP;
2489 bio_put(bio);
2490 return ret;
2491}
2492
David Woodhouse64a16702009-07-15 23:29:37 +01002493static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002494 unsigned long offset, size_t size, struct bio *bio,
2495 unsigned long bio_flags)
2496{
2497 int ret = 0;
2498 if (tree->ops && tree->ops->merge_bio_hook)
David Woodhouse64a16702009-07-15 23:29:37 +01002499 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
Jeff Mahoney3444a972011-10-03 23:23:13 -04002500 bio_flags);
2501 BUG_ON(ret < 0);
2502 return ret;
2503
2504}
2505
Chris Masond1310b22008-01-24 16:13:08 -05002506static int submit_extent_page(int rw, struct extent_io_tree *tree,
2507 struct page *page, sector_t sector,
2508 size_t size, unsigned long offset,
2509 struct block_device *bdev,
2510 struct bio **bio_ret,
2511 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002512 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002513 int mirror_num,
2514 unsigned long prev_bio_flags,
2515 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002516{
2517 int ret = 0;
2518 struct bio *bio;
2519 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002520 int contig = 0;
2521 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2522 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002523 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002524
2525 if (bio_ret && *bio_ret) {
2526 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002527 if (old_compressed)
2528 contig = bio->bi_sector == sector;
2529 else
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002530 contig = bio_end_sector(bio) == sector;
Chris Masonc8b97812008-10-29 14:49:59 -04002531
2532 if (prev_bio_flags != bio_flags || !contig ||
David Woodhouse64a16702009-07-15 23:29:37 +01002533 merge_bio(rw, tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002534 bio_add_page(bio, page, page_size, offset) < page_size) {
2535 ret = submit_one_bio(rw, bio, mirror_num,
2536 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002537 if (ret < 0)
2538 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002539 bio = NULL;
2540 } else {
2541 return 0;
2542 }
2543 }
Chris Masonc8b97812008-10-29 14:49:59 -04002544 if (this_compressed)
2545 nr = BIO_MAX_PAGES;
2546 else
2547 nr = bio_get_nr_vecs(bdev);
2548
Miao Xie88f794e2010-11-22 03:02:55 +00002549 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002550 if (!bio)
2551 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002552
Chris Masonc8b97812008-10-29 14:49:59 -04002553 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002554 bio->bi_end_io = end_io_func;
2555 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002556
Chris Masond3977122009-01-05 21:25:51 -05002557 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002558 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002559 else
Chris Masonc8b97812008-10-29 14:49:59 -04002560 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002561
2562 return ret;
2563}
2564
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002565void attach_extent_buffer_page(struct extent_buffer *eb, struct page *page)
2566{
2567 if (!PagePrivate(page)) {
2568 SetPagePrivate(page);
2569 page_cache_get(page);
2570 set_page_private(page, (unsigned long)eb);
2571 } else {
2572 WARN_ON(page->private != (unsigned long)eb);
2573 }
2574}
2575
Chris Masond1310b22008-01-24 16:13:08 -05002576void set_page_extent_mapped(struct page *page)
2577{
2578 if (!PagePrivate(page)) {
2579 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002580 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002581 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002582 }
2583}
2584
Chris Masond1310b22008-01-24 16:13:08 -05002585/*
2586 * basic readpage implementation. Locked extent state structs are inserted
2587 * into the tree that are removed when the IO is done (by the end_io
2588 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002589 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002590 */
2591static int __extent_read_full_page(struct extent_io_tree *tree,
2592 struct page *page,
2593 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002594 struct bio **bio, int mirror_num,
2595 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002596{
2597 struct inode *inode = page->mapping->host;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002598 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002599 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2600 u64 end;
2601 u64 cur = start;
2602 u64 extent_offset;
2603 u64 last_byte = i_size_read(inode);
2604 u64 block_start;
2605 u64 cur_end;
2606 sector_t sector;
2607 struct extent_map *em;
2608 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002609 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05002610 int ret;
2611 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002612 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002613 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002614 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002615 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04002616 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002617
2618 set_page_extent_mapped(page);
2619
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002620 if (!PageUptodate(page)) {
2621 if (cleancache_get_page(page) == 0) {
2622 BUG_ON(blocksize != PAGE_SIZE);
2623 goto out;
2624 }
2625 }
2626
Chris Masond1310b22008-01-24 16:13:08 -05002627 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002628 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002629 lock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002630 ordered = btrfs_lookup_ordered_extent(inode, start);
2631 if (!ordered)
2632 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002633 unlock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002634 btrfs_start_ordered_extent(inode, ordered, 1);
2635 btrfs_put_ordered_extent(ordered);
2636 }
Chris Masond1310b22008-01-24 16:13:08 -05002637
Chris Masonc8b97812008-10-29 14:49:59 -04002638 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2639 char *userpage;
2640 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2641
2642 if (zero_offset) {
2643 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002644 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002645 memset(userpage + zero_offset, 0, iosize);
2646 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002647 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002648 }
2649 }
Chris Masond1310b22008-01-24 16:13:08 -05002650 while (cur <= end) {
Josef Bacikc8f2f242013-02-11 11:33:00 -05002651 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2652
Chris Masond1310b22008-01-24 16:13:08 -05002653 if (cur >= last_byte) {
2654 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002655 struct extent_state *cached = NULL;
2656
David Sterba306e16c2011-04-19 14:29:38 +02002657 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002658 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002659 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002660 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002661 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002662 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002663 &cached, GFP_NOFS);
2664 unlock_extent_cached(tree, cur, cur + iosize - 1,
2665 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002666 break;
2667 }
David Sterba306e16c2011-04-19 14:29:38 +02002668 em = get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002669 end - cur + 1, 0);
David Sterbac7040052011-04-19 18:00:01 +02002670 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002671 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002672 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002673 break;
2674 }
Chris Masond1310b22008-01-24 16:13:08 -05002675 extent_offset = cur - em->start;
2676 BUG_ON(extent_map_end(em) <= cur);
2677 BUG_ON(end < cur);
2678
Li Zefan261507a02010-12-17 14:21:50 +08002679 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002680 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002681 extent_set_compress_type(&this_bio_flag,
2682 em->compress_type);
2683 }
Chris Masonc8b97812008-10-29 14:49:59 -04002684
Chris Masond1310b22008-01-24 16:13:08 -05002685 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2686 cur_end = min(extent_map_end(em) - 1, end);
Qu Wenruofda28322013-02-26 08:10:22 +00002687 iosize = ALIGN(iosize, blocksize);
Chris Masonc8b97812008-10-29 14:49:59 -04002688 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2689 disk_io_size = em->block_len;
2690 sector = em->block_start >> 9;
2691 } else {
2692 sector = (em->block_start + extent_offset) >> 9;
2693 disk_io_size = iosize;
2694 }
Chris Masond1310b22008-01-24 16:13:08 -05002695 bdev = em->bdev;
2696 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002697 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2698 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002699 free_extent_map(em);
2700 em = NULL;
2701
2702 /* we've found a hole, just zero and go on */
2703 if (block_start == EXTENT_MAP_HOLE) {
2704 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002705 struct extent_state *cached = NULL;
2706
Cong Wang7ac687d2011-11-25 23:14:28 +08002707 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002708 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002709 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002710 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002711
2712 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002713 &cached, GFP_NOFS);
2714 unlock_extent_cached(tree, cur, cur + iosize - 1,
2715 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002716 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002717 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002718 continue;
2719 }
2720 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002721 if (test_range_bit(tree, cur, cur_end,
2722 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002723 check_page_uptodate(tree, page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002724 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002725 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002726 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002727 continue;
2728 }
Chris Mason70dec802008-01-29 09:59:12 -05002729 /* we have an inline extent but it didn't get marked up
2730 * to date. Error out
2731 */
2732 if (block_start == EXTENT_MAP_INLINE) {
2733 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002734 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002735 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002736 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002737 continue;
2738 }
Chris Masond1310b22008-01-24 16:13:08 -05002739
Josef Bacikc8f2f242013-02-11 11:33:00 -05002740 pnr -= page->index;
2741 ret = submit_extent_page(READ, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002742 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002743 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002744 end_bio_extent_readpage, mirror_num,
2745 *bio_flags,
2746 this_bio_flag);
Josef Bacikc8f2f242013-02-11 11:33:00 -05002747 if (!ret) {
2748 nr++;
2749 *bio_flags = this_bio_flag;
2750 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002751 SetPageError(page);
Josef Bacikedd33c92012-10-05 16:40:32 -04002752 unlock_extent(tree, cur, cur + iosize - 1);
2753 }
Chris Masond1310b22008-01-24 16:13:08 -05002754 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002755 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002756 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002757out:
Chris Masond1310b22008-01-24 16:13:08 -05002758 if (!nr) {
2759 if (!PageError(page))
2760 SetPageUptodate(page);
2761 unlock_page(page);
2762 }
2763 return 0;
2764}
2765
2766int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002767 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05002768{
2769 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002770 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002771 int ret;
2772
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002773 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Chris Masonc8b97812008-10-29 14:49:59 -04002774 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002775 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002776 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002777 return ret;
2778}
Chris Masond1310b22008-01-24 16:13:08 -05002779
Chris Mason11c83492009-04-20 15:50:09 -04002780static noinline void update_nr_written(struct page *page,
2781 struct writeback_control *wbc,
2782 unsigned long nr_written)
2783{
2784 wbc->nr_to_write -= nr_written;
2785 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2786 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2787 page->mapping->writeback_index = page->index + nr_written;
2788}
2789
Chris Masond1310b22008-01-24 16:13:08 -05002790/*
2791 * the writepage semantics are similar to regular writepage. extent
2792 * records are inserted to lock ranges in the tree, and as dirty areas
2793 * are found, they are marked writeback. Then the lock bits are removed
2794 * and the end_io handler clears the writeback ranges
2795 */
2796static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2797 void *data)
2798{
2799 struct inode *inode = page->mapping->host;
2800 struct extent_page_data *epd = data;
2801 struct extent_io_tree *tree = epd->tree;
Miao Xie4eee4fa2012-12-21 09:17:45 +00002802 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05002803 u64 delalloc_start;
2804 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2805 u64 end;
2806 u64 cur = start;
2807 u64 extent_offset;
2808 u64 last_byte = i_size_read(inode);
2809 u64 block_start;
2810 u64 iosize;
2811 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002812 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002813 struct extent_map *em;
2814 struct block_device *bdev;
2815 int ret;
2816 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002817 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002818 size_t blocksize;
2819 loff_t i_size = i_size_read(inode);
2820 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2821 u64 nr_delalloc;
2822 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002823 int page_started;
2824 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002825 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002826 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002827 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05002828
Chris Masonffbd5172009-04-20 15:50:09 -04002829 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01002830 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04002831 else
2832 write_flags = WRITE;
2833
liubo1abe9b82011-03-24 11:18:59 +00002834 trace___extent_writepage(page, inode, wbc);
2835
Chris Masond1310b22008-01-24 16:13:08 -05002836 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04002837
2838 ClearPageError(page);
2839
Chris Mason7f3c74f2008-07-18 12:01:11 -04002840 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002841 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002842 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002843 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002844 unlock_page(page);
2845 return 0;
2846 }
2847
2848 if (page->index == end_index) {
2849 char *userpage;
2850
Cong Wang7ac687d2011-11-25 23:14:28 +08002851 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002852 memset(userpage + pg_offset, 0,
2853 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08002854 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04002855 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002856 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002857 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002858
2859 set_page_extent_mapped(page);
2860
Josef Bacik9e487102011-08-01 12:08:18 -04002861 if (!tree->ops || !tree->ops->fill_delalloc)
2862 fill_delalloc = false;
2863
Chris Masond1310b22008-01-24 16:13:08 -05002864 delalloc_start = start;
2865 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002866 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002867 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002868 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002869 /*
2870 * make sure the wbc mapping index is at least updated
2871 * to this page.
2872 */
2873 update_nr_written(page, wbc, 0);
2874
Chris Masond3977122009-01-05 21:25:51 -05002875 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002876 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002877 page,
2878 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002879 &delalloc_end,
2880 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002881 if (nr_delalloc == 0) {
2882 delalloc_start = delalloc_end + 1;
2883 continue;
2884 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002885 ret = tree->ops->fill_delalloc(inode, page,
2886 delalloc_start,
2887 delalloc_end,
2888 &page_started,
2889 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002890 /* File system has been set read-only */
2891 if (ret) {
2892 SetPageError(page);
2893 goto done;
2894 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002895 /*
2896 * delalloc_end is already one less than the total
2897 * length, so we don't subtract one from
2898 * PAGE_CACHE_SIZE
2899 */
2900 delalloc_to_write += (delalloc_end - delalloc_start +
2901 PAGE_CACHE_SIZE) >>
2902 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002903 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002904 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002905 if (wbc->nr_to_write < delalloc_to_write) {
2906 int thresh = 8192;
2907
2908 if (delalloc_to_write < thresh * 2)
2909 thresh = delalloc_to_write;
2910 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2911 thresh);
2912 }
Chris Masonc8b97812008-10-29 14:49:59 -04002913
Chris Mason771ed682008-11-06 22:02:51 -05002914 /* did the fill delalloc function already unlock and start
2915 * the IO?
2916 */
2917 if (page_started) {
2918 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002919 /*
2920 * we've unlocked the page, so we can't update
2921 * the mapping's writeback index, just update
2922 * nr_to_write.
2923 */
2924 wbc->nr_to_write -= nr_written;
2925 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002926 }
Chris Masonc8b97812008-10-29 14:49:59 -04002927 }
Chris Mason247e7432008-07-17 12:53:51 -04002928 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002929 ret = tree->ops->writepage_start_hook(page, start,
2930 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002931 if (ret) {
2932 /* Fixup worker will requeue */
2933 if (ret == -EBUSY)
2934 wbc->pages_skipped++;
2935 else
2936 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002937 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002938 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002939 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002940 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002941 }
2942 }
2943
Chris Mason11c83492009-04-20 15:50:09 -04002944 /*
2945 * we don't want to touch the inode after unlocking the page,
2946 * so we update the mapping writeback index now
2947 */
2948 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002949
Chris Masond1310b22008-01-24 16:13:08 -05002950 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002951 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002952 if (tree->ops && tree->ops->writepage_end_io_hook)
2953 tree->ops->writepage_end_io_hook(page, start,
2954 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002955 goto done;
2956 }
2957
Chris Masond1310b22008-01-24 16:13:08 -05002958 blocksize = inode->i_sb->s_blocksize;
2959
2960 while (cur <= end) {
2961 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002962 if (tree->ops && tree->ops->writepage_end_io_hook)
2963 tree->ops->writepage_end_io_hook(page, cur,
2964 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002965 break;
2966 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002967 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002968 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02002969 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002970 SetPageError(page);
2971 break;
2972 }
2973
2974 extent_offset = cur - em->start;
2975 BUG_ON(extent_map_end(em) <= cur);
2976 BUG_ON(end < cur);
2977 iosize = min(extent_map_end(em) - cur, end - cur + 1);
Qu Wenruofda28322013-02-26 08:10:22 +00002978 iosize = ALIGN(iosize, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05002979 sector = (em->block_start + extent_offset) >> 9;
2980 bdev = em->bdev;
2981 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002982 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002983 free_extent_map(em);
2984 em = NULL;
2985
Chris Masonc8b97812008-10-29 14:49:59 -04002986 /*
2987 * compressed and inline extents are written through other
2988 * paths in the FS
2989 */
2990 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002991 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002992 /*
2993 * end_io notification does not happen here for
2994 * compressed extents
2995 */
2996 if (!compressed && tree->ops &&
2997 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002998 tree->ops->writepage_end_io_hook(page, cur,
2999 cur + iosize - 1,
3000 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04003001 else if (compressed) {
3002 /* we don't want to end_page_writeback on
3003 * a compressed extent. this happens
3004 * elsewhere
3005 */
3006 nr++;
3007 }
3008
3009 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003010 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003011 continue;
3012 }
Chris Masond1310b22008-01-24 16:13:08 -05003013 /* leave this out until we have a page_mkwrite call */
3014 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003015 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003016 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003017 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003018 continue;
3019 }
Chris Masonc8b97812008-10-29 14:49:59 -04003020
Chris Masond1310b22008-01-24 16:13:08 -05003021 if (tree->ops && tree->ops->writepage_io_hook) {
3022 ret = tree->ops->writepage_io_hook(page, cur,
3023 cur + iosize - 1);
3024 } else {
3025 ret = 0;
3026 }
Chris Mason1259ab72008-05-12 13:39:03 -04003027 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05003028 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003029 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003030 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003031
Chris Masond1310b22008-01-24 16:13:08 -05003032 set_range_writeback(tree, cur, cur + iosize - 1);
3033 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05003034 printk(KERN_ERR "btrfs warning page %lu not "
3035 "writeback, cur %llu end %llu\n",
3036 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05003037 (unsigned long long)end);
3038 }
3039
Chris Masonffbd5172009-04-20 15:50:09 -04003040 ret = submit_extent_page(write_flags, tree, page,
3041 sector, iosize, pg_offset,
3042 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003043 end_bio_extent_writepage,
3044 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003045 if (ret)
3046 SetPageError(page);
3047 }
3048 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003049 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003050 nr++;
3051 }
3052done:
3053 if (nr == 0) {
3054 /* make sure the mapping tag for page dirty gets cleared */
3055 set_page_writeback(page);
3056 end_page_writeback(page);
3057 }
Chris Masond1310b22008-01-24 16:13:08 -05003058 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003059
Chris Mason11c83492009-04-20 15:50:09 -04003060done_unlocked:
3061
Chris Mason2c64c532009-09-02 15:04:12 -04003062 /* drop our reference on any cached states */
3063 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003064 return 0;
3065}
3066
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003067static int eb_wait(void *word)
3068{
3069 io_schedule();
3070 return 0;
3071}
3072
3073static void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
3074{
3075 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3076 TASK_UNINTERRUPTIBLE);
3077}
3078
3079static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3080 struct btrfs_fs_info *fs_info,
3081 struct extent_page_data *epd)
3082{
3083 unsigned long i, num_pages;
3084 int flush = 0;
3085 int ret = 0;
3086
3087 if (!btrfs_try_tree_write_lock(eb)) {
3088 flush = 1;
3089 flush_write_bio(epd);
3090 btrfs_tree_lock(eb);
3091 }
3092
3093 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3094 btrfs_tree_unlock(eb);
3095 if (!epd->sync_io)
3096 return 0;
3097 if (!flush) {
3098 flush_write_bio(epd);
3099 flush = 1;
3100 }
Chris Masona098d8e2012-03-21 12:09:56 -04003101 while (1) {
3102 wait_on_extent_buffer_writeback(eb);
3103 btrfs_tree_lock(eb);
3104 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3105 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003106 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003107 }
3108 }
3109
Josef Bacik51561ff2012-07-20 16:25:24 -04003110 /*
3111 * We need to do this to prevent races in people who check if the eb is
3112 * under IO since we can end up having no IO bits set for a short period
3113 * of time.
3114 */
3115 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003116 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3117 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003118 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003119 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
Miao Xiee2d84522013-01-29 10:09:20 +00003120 __percpu_counter_add(&fs_info->dirty_metadata_bytes,
3121 -eb->len,
3122 fs_info->dirty_metadata_batch);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003123 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003124 } else {
3125 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003126 }
3127
3128 btrfs_tree_unlock(eb);
3129
3130 if (!ret)
3131 return ret;
3132
3133 num_pages = num_extent_pages(eb->start, eb->len);
3134 for (i = 0; i < num_pages; i++) {
3135 struct page *p = extent_buffer_page(eb, i);
3136
3137 if (!trylock_page(p)) {
3138 if (!flush) {
3139 flush_write_bio(epd);
3140 flush = 1;
3141 }
3142 lock_page(p);
3143 }
3144 }
3145
3146 return ret;
3147}
3148
3149static void end_extent_buffer_writeback(struct extent_buffer *eb)
3150{
3151 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3152 smp_mb__after_clear_bit();
3153 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3154}
3155
3156static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3157{
3158 int uptodate = err == 0;
3159 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3160 struct extent_buffer *eb;
3161 int done;
3162
3163 do {
3164 struct page *page = bvec->bv_page;
3165
3166 bvec--;
3167 eb = (struct extent_buffer *)page->private;
3168 BUG_ON(!eb);
3169 done = atomic_dec_and_test(&eb->io_pages);
3170
3171 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3172 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3173 ClearPageUptodate(page);
3174 SetPageError(page);
3175 }
3176
3177 end_page_writeback(page);
3178
3179 if (!done)
3180 continue;
3181
3182 end_extent_buffer_writeback(eb);
3183 } while (bvec >= bio->bi_io_vec);
3184
3185 bio_put(bio);
3186
3187}
3188
3189static int write_one_eb(struct extent_buffer *eb,
3190 struct btrfs_fs_info *fs_info,
3191 struct writeback_control *wbc,
3192 struct extent_page_data *epd)
3193{
3194 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3195 u64 offset = eb->start;
3196 unsigned long i, num_pages;
Josef Bacikde0022b2012-09-25 14:25:58 -04003197 unsigned long bio_flags = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003198 int rw = (epd->sync_io ? WRITE_SYNC : WRITE);
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003199 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003200
3201 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3202 num_pages = num_extent_pages(eb->start, eb->len);
3203 atomic_set(&eb->io_pages, num_pages);
Josef Bacikde0022b2012-09-25 14:25:58 -04003204 if (btrfs_header_owner(eb) == BTRFS_TREE_LOG_OBJECTID)
3205 bio_flags = EXTENT_BIO_TREE_LOG;
3206
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003207 for (i = 0; i < num_pages; i++) {
3208 struct page *p = extent_buffer_page(eb, i);
3209
3210 clear_page_dirty_for_io(p);
3211 set_page_writeback(p);
3212 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3213 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3214 -1, end_bio_extent_buffer_writepage,
Josef Bacikde0022b2012-09-25 14:25:58 -04003215 0, epd->bio_flags, bio_flags);
3216 epd->bio_flags = bio_flags;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003217 if (ret) {
3218 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3219 SetPageError(p);
3220 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3221 end_extent_buffer_writeback(eb);
3222 ret = -EIO;
3223 break;
3224 }
3225 offset += PAGE_CACHE_SIZE;
3226 update_nr_written(p, wbc, 1);
3227 unlock_page(p);
3228 }
3229
3230 if (unlikely(ret)) {
3231 for (; i < num_pages; i++) {
3232 struct page *p = extent_buffer_page(eb, i);
3233 unlock_page(p);
3234 }
3235 }
3236
3237 return ret;
3238}
3239
3240int btree_write_cache_pages(struct address_space *mapping,
3241 struct writeback_control *wbc)
3242{
3243 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3244 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3245 struct extent_buffer *eb, *prev_eb = NULL;
3246 struct extent_page_data epd = {
3247 .bio = NULL,
3248 .tree = tree,
3249 .extent_locked = 0,
3250 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003251 .bio_flags = 0,
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003252 };
3253 int ret = 0;
3254 int done = 0;
3255 int nr_to_write_done = 0;
3256 struct pagevec pvec;
3257 int nr_pages;
3258 pgoff_t index;
3259 pgoff_t end; /* Inclusive */
3260 int scanned = 0;
3261 int tag;
3262
3263 pagevec_init(&pvec, 0);
3264 if (wbc->range_cyclic) {
3265 index = mapping->writeback_index; /* Start from prev offset */
3266 end = -1;
3267 } else {
3268 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3269 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3270 scanned = 1;
3271 }
3272 if (wbc->sync_mode == WB_SYNC_ALL)
3273 tag = PAGECACHE_TAG_TOWRITE;
3274 else
3275 tag = PAGECACHE_TAG_DIRTY;
3276retry:
3277 if (wbc->sync_mode == WB_SYNC_ALL)
3278 tag_pages_for_writeback(mapping, index, end);
3279 while (!done && !nr_to_write_done && (index <= end) &&
3280 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3281 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3282 unsigned i;
3283
3284 scanned = 1;
3285 for (i = 0; i < nr_pages; i++) {
3286 struct page *page = pvec.pages[i];
3287
3288 if (!PagePrivate(page))
3289 continue;
3290
3291 if (!wbc->range_cyclic && page->index > end) {
3292 done = 1;
3293 break;
3294 }
3295
Josef Bacikb5bae262012-09-14 13:43:01 -04003296 spin_lock(&mapping->private_lock);
3297 if (!PagePrivate(page)) {
3298 spin_unlock(&mapping->private_lock);
3299 continue;
3300 }
3301
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003302 eb = (struct extent_buffer *)page->private;
Josef Bacikb5bae262012-09-14 13:43:01 -04003303
3304 /*
3305 * Shouldn't happen and normally this would be a BUG_ON
3306 * but no sense in crashing the users box for something
3307 * we can survive anyway.
3308 */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003309 if (!eb) {
Josef Bacikb5bae262012-09-14 13:43:01 -04003310 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003311 WARN_ON(1);
3312 continue;
3313 }
3314
Josef Bacikb5bae262012-09-14 13:43:01 -04003315 if (eb == prev_eb) {
3316 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003317 continue;
3318 }
3319
Josef Bacikb5bae262012-09-14 13:43:01 -04003320 ret = atomic_inc_not_zero(&eb->refs);
3321 spin_unlock(&mapping->private_lock);
3322 if (!ret)
3323 continue;
3324
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003325 prev_eb = eb;
3326 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3327 if (!ret) {
3328 free_extent_buffer(eb);
3329 continue;
3330 }
3331
3332 ret = write_one_eb(eb, fs_info, wbc, &epd);
3333 if (ret) {
3334 done = 1;
3335 free_extent_buffer(eb);
3336 break;
3337 }
3338 free_extent_buffer(eb);
3339
3340 /*
3341 * the filesystem may choose to bump up nr_to_write.
3342 * We have to make sure to honor the new nr_to_write
3343 * at any time
3344 */
3345 nr_to_write_done = wbc->nr_to_write <= 0;
3346 }
3347 pagevec_release(&pvec);
3348 cond_resched();
3349 }
3350 if (!scanned && !done) {
3351 /*
3352 * We hit the last page and there is more work to be done: wrap
3353 * back to the start of the file
3354 */
3355 scanned = 1;
3356 index = 0;
3357 goto retry;
3358 }
3359 flush_write_bio(&epd);
3360 return ret;
3361}
3362
Chris Masond1310b22008-01-24 16:13:08 -05003363/**
Chris Mason4bef0842008-09-08 11:18:08 -04003364 * 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 -05003365 * @mapping: address space structure to write
3366 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3367 * @writepage: function called for each page
3368 * @data: data passed to writepage function
3369 *
3370 * If a page is already under I/O, write_cache_pages() skips it, even
3371 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3372 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3373 * and msync() need to guarantee that all the data which was dirty at the time
3374 * the call was made get new I/O started against them. If wbc->sync_mode is
3375 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3376 * existing IO to complete.
3377 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003378static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003379 struct address_space *mapping,
3380 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003381 writepage_t writepage, void *data,
3382 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003383{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003384 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003385 int ret = 0;
3386 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003387 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003388 struct pagevec pvec;
3389 int nr_pages;
3390 pgoff_t index;
3391 pgoff_t end; /* Inclusive */
3392 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003393 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003394
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003395 /*
3396 * We have to hold onto the inode so that ordered extents can do their
3397 * work when the IO finishes. The alternative to this is failing to add
3398 * an ordered extent if the igrab() fails there and that is a huge pain
3399 * to deal with, so instead just hold onto the inode throughout the
3400 * writepages operation. If it fails here we are freeing up the inode
3401 * anyway and we'd rather not waste our time writing out stuff that is
3402 * going to be truncated anyway.
3403 */
3404 if (!igrab(inode))
3405 return 0;
3406
Chris Masond1310b22008-01-24 16:13:08 -05003407 pagevec_init(&pvec, 0);
3408 if (wbc->range_cyclic) {
3409 index = mapping->writeback_index; /* Start from prev offset */
3410 end = -1;
3411 } else {
3412 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3413 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003414 scanned = 1;
3415 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003416 if (wbc->sync_mode == WB_SYNC_ALL)
3417 tag = PAGECACHE_TAG_TOWRITE;
3418 else
3419 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003420retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003421 if (wbc->sync_mode == WB_SYNC_ALL)
3422 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003423 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003424 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3425 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003426 unsigned i;
3427
3428 scanned = 1;
3429 for (i = 0; i < nr_pages; i++) {
3430 struct page *page = pvec.pages[i];
3431
3432 /*
3433 * At this point we hold neither mapping->tree_lock nor
3434 * lock on the page itself: the page may be truncated or
3435 * invalidated (changing page->mapping to NULL), or even
3436 * swizzled back from swapper_space to tmpfs file
3437 * mapping
3438 */
Josef Bacikc8f2f242013-02-11 11:33:00 -05003439 if (!trylock_page(page)) {
3440 flush_fn(data);
3441 lock_page(page);
Chris Mason01d658f2011-11-01 10:08:06 -04003442 }
Chris Masond1310b22008-01-24 16:13:08 -05003443
3444 if (unlikely(page->mapping != mapping)) {
3445 unlock_page(page);
3446 continue;
3447 }
3448
3449 if (!wbc->range_cyclic && page->index > end) {
3450 done = 1;
3451 unlock_page(page);
3452 continue;
3453 }
3454
Chris Masond2c3f4f2008-11-19 12:44:22 -05003455 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003456 if (PageWriteback(page))
3457 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003458 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003459 }
Chris Masond1310b22008-01-24 16:13:08 -05003460
3461 if (PageWriteback(page) ||
3462 !clear_page_dirty_for_io(page)) {
3463 unlock_page(page);
3464 continue;
3465 }
3466
3467 ret = (*writepage)(page, wbc, data);
3468
3469 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3470 unlock_page(page);
3471 ret = 0;
3472 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003473 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003474 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003475
3476 /*
3477 * the filesystem may choose to bump up nr_to_write.
3478 * We have to make sure to honor the new nr_to_write
3479 * at any time
3480 */
3481 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003482 }
3483 pagevec_release(&pvec);
3484 cond_resched();
3485 }
3486 if (!scanned && !done) {
3487 /*
3488 * We hit the last page and there is more work to be done: wrap
3489 * back to the start of the file
3490 */
3491 scanned = 1;
3492 index = 0;
3493 goto retry;
3494 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003495 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003496 return ret;
3497}
Chris Masond1310b22008-01-24 16:13:08 -05003498
Chris Masonffbd5172009-04-20 15:50:09 -04003499static void flush_epd_write_bio(struct extent_page_data *epd)
3500{
3501 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003502 int rw = WRITE;
3503 int ret;
3504
Chris Masonffbd5172009-04-20 15:50:09 -04003505 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003506 rw = WRITE_SYNC;
3507
Josef Bacikde0022b2012-09-25 14:25:58 -04003508 ret = submit_one_bio(rw, epd->bio, 0, epd->bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003509 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003510 epd->bio = NULL;
3511 }
3512}
3513
Chris Masond2c3f4f2008-11-19 12:44:22 -05003514static noinline void flush_write_bio(void *data)
3515{
3516 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003517 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003518}
3519
Chris Masond1310b22008-01-24 16:13:08 -05003520int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3521 get_extent_t *get_extent,
3522 struct writeback_control *wbc)
3523{
3524 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003525 struct extent_page_data epd = {
3526 .bio = NULL,
3527 .tree = tree,
3528 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003529 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003530 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003531 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003532 };
Chris Masond1310b22008-01-24 16:13:08 -05003533
Chris Masond1310b22008-01-24 16:13:08 -05003534 ret = __extent_writepage(page, wbc, &epd);
3535
Chris Masonffbd5172009-04-20 15:50:09 -04003536 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003537 return ret;
3538}
Chris Masond1310b22008-01-24 16:13:08 -05003539
Chris Mason771ed682008-11-06 22:02:51 -05003540int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3541 u64 start, u64 end, get_extent_t *get_extent,
3542 int mode)
3543{
3544 int ret = 0;
3545 struct address_space *mapping = inode->i_mapping;
3546 struct page *page;
3547 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3548 PAGE_CACHE_SHIFT;
3549
3550 struct extent_page_data epd = {
3551 .bio = NULL,
3552 .tree = tree,
3553 .get_extent = get_extent,
3554 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003555 .sync_io = mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003556 .bio_flags = 0,
Chris Mason771ed682008-11-06 22:02:51 -05003557 };
3558 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003559 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003560 .nr_to_write = nr_pages * 2,
3561 .range_start = start,
3562 .range_end = end + 1,
3563 };
3564
Chris Masond3977122009-01-05 21:25:51 -05003565 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003566 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3567 if (clear_page_dirty_for_io(page))
3568 ret = __extent_writepage(page, &wbc_writepages, &epd);
3569 else {
3570 if (tree->ops && tree->ops->writepage_end_io_hook)
3571 tree->ops->writepage_end_io_hook(page, start,
3572 start + PAGE_CACHE_SIZE - 1,
3573 NULL, 1);
3574 unlock_page(page);
3575 }
3576 page_cache_release(page);
3577 start += PAGE_CACHE_SIZE;
3578 }
3579
Chris Masonffbd5172009-04-20 15:50:09 -04003580 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003581 return ret;
3582}
Chris Masond1310b22008-01-24 16:13:08 -05003583
3584int extent_writepages(struct extent_io_tree *tree,
3585 struct address_space *mapping,
3586 get_extent_t *get_extent,
3587 struct writeback_control *wbc)
3588{
3589 int ret = 0;
3590 struct extent_page_data epd = {
3591 .bio = NULL,
3592 .tree = tree,
3593 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003594 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003595 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Josef Bacikde0022b2012-09-25 14:25:58 -04003596 .bio_flags = 0,
Chris Masond1310b22008-01-24 16:13:08 -05003597 };
3598
Chris Mason4bef0842008-09-08 11:18:08 -04003599 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003600 __extent_writepage, &epd,
3601 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003602 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003603 return ret;
3604}
Chris Masond1310b22008-01-24 16:13:08 -05003605
3606int extent_readpages(struct extent_io_tree *tree,
3607 struct address_space *mapping,
3608 struct list_head *pages, unsigned nr_pages,
3609 get_extent_t get_extent)
3610{
3611 struct bio *bio = NULL;
3612 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003613 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003614 struct page *pagepool[16];
3615 struct page *page;
3616 int i = 0;
3617 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003618
Chris Masond1310b22008-01-24 16:13:08 -05003619 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003620 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003621
3622 prefetchw(&page->flags);
3623 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003624 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003625 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003626 page_cache_release(page);
3627 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003628 }
Liu Bo67c96842012-07-20 21:43:09 -06003629
3630 pagepool[nr++] = page;
3631 if (nr < ARRAY_SIZE(pagepool))
3632 continue;
3633 for (i = 0; i < nr; i++) {
3634 __extent_read_full_page(tree, pagepool[i], get_extent,
3635 &bio, 0, &bio_flags);
3636 page_cache_release(pagepool[i]);
3637 }
3638 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003639 }
Liu Bo67c96842012-07-20 21:43:09 -06003640 for (i = 0; i < nr; i++) {
3641 __extent_read_full_page(tree, pagepool[i], get_extent,
3642 &bio, 0, &bio_flags);
3643 page_cache_release(pagepool[i]);
3644 }
3645
Chris Masond1310b22008-01-24 16:13:08 -05003646 BUG_ON(!list_empty(pages));
3647 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003648 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003649 return 0;
3650}
Chris Masond1310b22008-01-24 16:13:08 -05003651
3652/*
3653 * basic invalidatepage code, this waits on any locked or writeback
3654 * ranges corresponding to the page, and then deletes any extent state
3655 * records from the tree
3656 */
3657int extent_invalidatepage(struct extent_io_tree *tree,
3658 struct page *page, unsigned long offset)
3659{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003660 struct extent_state *cached_state = NULL;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003661 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003662 u64 end = start + PAGE_CACHE_SIZE - 1;
3663 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3664
Qu Wenruofda28322013-02-26 08:10:22 +00003665 start += ALIGN(offset, blocksize);
Chris Masond1310b22008-01-24 16:13:08 -05003666 if (start > end)
3667 return 0;
3668
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003669 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003670 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003671 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003672 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3673 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003674 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003675 return 0;
3676}
Chris Masond1310b22008-01-24 16:13:08 -05003677
3678/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003679 * a helper for releasepage, this tests for areas of the page that
3680 * are locked or under IO and drops the related state bits if it is safe
3681 * to drop the page.
3682 */
3683int try_release_extent_state(struct extent_map_tree *map,
3684 struct extent_io_tree *tree, struct page *page,
3685 gfp_t mask)
3686{
Miao Xie4eee4fa2012-12-21 09:17:45 +00003687 u64 start = page_offset(page);
Chris Mason7b13b7b2008-04-18 10:29:50 -04003688 u64 end = start + PAGE_CACHE_SIZE - 1;
3689 int ret = 1;
3690
Chris Mason211f90e2008-07-18 11:56:15 -04003691 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003692 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003693 ret = 0;
3694 else {
3695 if ((mask & GFP_NOFS) == GFP_NOFS)
3696 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003697 /*
3698 * at this point we can safely clear everything except the
3699 * locked bit and the nodatasum bit
3700 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003701 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003702 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3703 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003704
3705 /* if clear_extent_bit failed for enomem reasons,
3706 * we can't allow the release to continue.
3707 */
3708 if (ret < 0)
3709 ret = 0;
3710 else
3711 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003712 }
3713 return ret;
3714}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003715
3716/*
Chris Masond1310b22008-01-24 16:13:08 -05003717 * a helper for releasepage. As long as there are no locked extents
3718 * in the range corresponding to the page, both state records and extent
3719 * map records are removed
3720 */
3721int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003722 struct extent_io_tree *tree, struct page *page,
3723 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003724{
3725 struct extent_map *em;
Miao Xie4eee4fa2012-12-21 09:17:45 +00003726 u64 start = page_offset(page);
Chris Masond1310b22008-01-24 16:13:08 -05003727 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003728
Chris Mason70dec802008-01-29 09:59:12 -05003729 if ((mask & __GFP_WAIT) &&
3730 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003731 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003732 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003733 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003734 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003735 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003736 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003737 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003738 break;
3739 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003740 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3741 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003742 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003743 free_extent_map(em);
3744 break;
3745 }
3746 if (!test_range_bit(tree, em->start,
3747 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04003748 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04003749 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05003750 remove_extent_mapping(map, em);
3751 /* once for the rb tree */
3752 free_extent_map(em);
3753 }
3754 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04003755 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003756
3757 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05003758 free_extent_map(em);
3759 }
Chris Masond1310b22008-01-24 16:13:08 -05003760 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04003761 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05003762}
Chris Masond1310b22008-01-24 16:13:08 -05003763
Chris Masonec29ed52011-02-23 16:23:20 -05003764/*
3765 * helper function for fiemap, which doesn't want to see any holes.
3766 * This maps until we find something past 'last'
3767 */
3768static struct extent_map *get_extent_skip_holes(struct inode *inode,
3769 u64 offset,
3770 u64 last,
3771 get_extent_t *get_extent)
3772{
3773 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
3774 struct extent_map *em;
3775 u64 len;
3776
3777 if (offset >= last)
3778 return NULL;
3779
3780 while(1) {
3781 len = last - offset;
3782 if (len == 0)
3783 break;
Qu Wenruofda28322013-02-26 08:10:22 +00003784 len = ALIGN(len, sectorsize);
Chris Masonec29ed52011-02-23 16:23:20 -05003785 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02003786 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05003787 return em;
3788
3789 /* if this isn't a hole return it */
3790 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
3791 em->block_start != EXTENT_MAP_HOLE) {
3792 return em;
3793 }
3794
3795 /* this is a hole, advance to the next extent */
3796 offset = extent_map_end(em);
3797 free_extent_map(em);
3798 if (offset >= last)
3799 break;
3800 }
3801 return NULL;
3802}
3803
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003804int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3805 __u64 start, __u64 len, get_extent_t *get_extent)
3806{
Josef Bacik975f84f2010-11-23 19:36:57 +00003807 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003808 u64 off = start;
3809 u64 max = start + len;
3810 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00003811 u32 found_type;
3812 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05003813 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003814 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003815 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00003816 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003817 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003818 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00003819 struct btrfs_path *path;
3820 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003821 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003822 u64 em_start = 0;
3823 u64 em_len = 0;
3824 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003825 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003826
3827 if (len == 0)
3828 return -EINVAL;
3829
Josef Bacik975f84f2010-11-23 19:36:57 +00003830 path = btrfs_alloc_path();
3831 if (!path)
3832 return -ENOMEM;
3833 path->leave_spinning = 1;
3834
Josef Bacik4d479cf2011-11-17 11:34:31 -05003835 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
3836 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
3837
Chris Masonec29ed52011-02-23 16:23:20 -05003838 /*
3839 * lookup the last file extent. We're not using i_size here
3840 * because there might be preallocation past i_size
3841 */
Josef Bacik975f84f2010-11-23 19:36:57 +00003842 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08003843 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00003844 if (ret < 0) {
3845 btrfs_free_path(path);
3846 return ret;
3847 }
3848 WARN_ON(!ret);
3849 path->slots[0]--;
3850 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3851 struct btrfs_file_extent_item);
3852 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
3853 found_type = btrfs_key_type(&found_key);
3854
Chris Masonec29ed52011-02-23 16:23:20 -05003855 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08003856 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00003857 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05003858 /* have to trust i_size as the end */
3859 last = (u64)-1;
3860 last_for_get_extent = isize;
3861 } else {
3862 /*
3863 * remember the start of the last extent. There are a
3864 * bunch of different factors that go into the length of the
3865 * extent, so its much less complex to remember where it started
3866 */
3867 last = found_key.offset;
3868 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00003869 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003870 btrfs_free_path(path);
3871
Chris Masonec29ed52011-02-23 16:23:20 -05003872 /*
3873 * we might have some extents allocated but more delalloc past those
3874 * extents. so, we trust isize unless the start of the last extent is
3875 * beyond isize
3876 */
3877 if (last < isize) {
3878 last = (u64)-1;
3879 last_for_get_extent = isize;
3880 }
3881
Josef Bacik2ac55d42010-02-03 19:33:23 +00003882 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003883 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05003884
Josef Bacik4d479cf2011-11-17 11:34:31 -05003885 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05003886 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003887 if (!em)
3888 goto out;
3889 if (IS_ERR(em)) {
3890 ret = PTR_ERR(em);
3891 goto out;
3892 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003893
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003894 while (!end) {
Chris Masonea8efc72011-03-08 11:54:40 -05003895 u64 offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003896
Chris Masonea8efc72011-03-08 11:54:40 -05003897 /* break if the extent we found is outside the range */
3898 if (em->start >= max || extent_map_end(em) < off)
3899 break;
3900
3901 /*
3902 * get_extent may return an extent that starts before our
3903 * requested range. We have to make sure the ranges
3904 * we return to fiemap always move forward and don't
3905 * overlap, so adjust the offsets here
3906 */
3907 em_start = max(em->start, off);
3908
3909 /*
3910 * record the offset from the start of the extent
3911 * for adjusting the disk offset below
3912 */
3913 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05003914 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05003915 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05003916 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003917 disko = 0;
3918 flags = 0;
3919
Chris Masonea8efc72011-03-08 11:54:40 -05003920 /*
3921 * bump off for our next call to get_extent
3922 */
3923 off = extent_map_end(em);
3924 if (off >= max)
3925 end = 1;
3926
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003927 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003928 end = 1;
3929 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003930 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003931 flags |= (FIEMAP_EXTENT_DATA_INLINE |
3932 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003933 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003934 flags |= (FIEMAP_EXTENT_DELALLOC |
3935 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003936 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05003937 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003938 }
3939 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
3940 flags |= FIEMAP_EXTENT_ENCODED;
3941
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003942 free_extent_map(em);
3943 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05003944 if ((em_start >= last) || em_len == (u64)-1 ||
3945 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003946 flags |= FIEMAP_EXTENT_LAST;
3947 end = 1;
3948 }
3949
Chris Masonec29ed52011-02-23 16:23:20 -05003950 /* now scan forward to see if this is really the last extent. */
3951 em = get_extent_skip_holes(inode, off, last_for_get_extent,
3952 get_extent);
3953 if (IS_ERR(em)) {
3954 ret = PTR_ERR(em);
3955 goto out;
3956 }
3957 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00003958 flags |= FIEMAP_EXTENT_LAST;
3959 end = 1;
3960 }
Chris Masonec29ed52011-02-23 16:23:20 -05003961 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
3962 em_len, flags);
3963 if (ret)
3964 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003965 }
3966out_free:
3967 free_extent_map(em);
3968out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00003969 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
3970 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003971 return ret;
3972}
3973
Chris Mason727011e2010-08-06 13:21:20 -04003974static void __free_extent_buffer(struct extent_buffer *eb)
3975{
3976#if LEAK_DEBUG
3977 unsigned long flags;
3978 spin_lock_irqsave(&leak_lock, flags);
3979 list_del(&eb->leak_list);
3980 spin_unlock_irqrestore(&leak_lock, flags);
3981#endif
Chris Mason727011e2010-08-06 13:21:20 -04003982 kmem_cache_free(extent_buffer_cache, eb);
3983}
3984
Chris Masond1310b22008-01-24 16:13:08 -05003985static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3986 u64 start,
3987 unsigned long len,
3988 gfp_t mask)
3989{
3990 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003991#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003992 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003993#endif
Chris Masond1310b22008-01-24 16:13:08 -05003994
Chris Masond1310b22008-01-24 16:13:08 -05003995 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003996 if (eb == NULL)
3997 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003998 eb->start = start;
3999 eb->len = len;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004000 eb->tree = tree;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004001 eb->bflags = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004002 rwlock_init(&eb->lock);
4003 atomic_set(&eb->write_locks, 0);
4004 atomic_set(&eb->read_locks, 0);
4005 atomic_set(&eb->blocking_readers, 0);
4006 atomic_set(&eb->blocking_writers, 0);
4007 atomic_set(&eb->spinning_readers, 0);
4008 atomic_set(&eb->spinning_writers, 0);
Arne Jansen5b25f702011-09-13 10:55:48 +02004009 eb->lock_nested = 0;
Chris Masonbd681512011-07-16 15:23:14 -04004010 init_waitqueue_head(&eb->write_lock_wq);
4011 init_waitqueue_head(&eb->read_lock_wq);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004012
Chris Mason39351272009-02-04 09:24:05 -05004013#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04004014 spin_lock_irqsave(&leak_lock, flags);
4015 list_add(&eb->leak_list, &buffers);
4016 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04004017#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05004018 spin_lock_init(&eb->refs_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004019 atomic_set(&eb->refs, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004020 atomic_set(&eb->io_pages, 0);
Chris Mason727011e2010-08-06 13:21:20 -04004021
David Sterbab8dae312013-02-28 14:54:18 +00004022 /*
4023 * Sanity checks, currently the maximum is 64k covered by 16x 4k pages
4024 */
4025 BUILD_BUG_ON(BTRFS_MAX_METADATA_BLOCKSIZE
4026 > MAX_INLINE_EXTENT_BUFFER_SIZE);
4027 BUG_ON(len > MAX_INLINE_EXTENT_BUFFER_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05004028
4029 return eb;
4030}
4031
Jan Schmidt815a51c2012-05-16 17:00:02 +02004032struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
4033{
4034 unsigned long i;
4035 struct page *p;
4036 struct extent_buffer *new;
4037 unsigned long num_pages = num_extent_pages(src->start, src->len);
4038
4039 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_ATOMIC);
4040 if (new == NULL)
4041 return NULL;
4042
4043 for (i = 0; i < num_pages; i++) {
4044 p = alloc_page(GFP_ATOMIC);
4045 BUG_ON(!p);
4046 attach_extent_buffer_page(new, p);
4047 WARN_ON(PageDirty(p));
4048 SetPageUptodate(p);
4049 new->pages[i] = p;
4050 }
4051
4052 copy_extent_buffer(new, src, 0, 0, src->len);
4053 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4054 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4055
4056 return new;
4057}
4058
4059struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4060{
4061 struct extent_buffer *eb;
4062 unsigned long num_pages = num_extent_pages(0, len);
4063 unsigned long i;
4064
4065 eb = __alloc_extent_buffer(NULL, start, len, GFP_ATOMIC);
4066 if (!eb)
4067 return NULL;
4068
4069 for (i = 0; i < num_pages; i++) {
4070 eb->pages[i] = alloc_page(GFP_ATOMIC);
4071 if (!eb->pages[i])
4072 goto err;
4073 }
4074 set_extent_buffer_uptodate(eb);
4075 btrfs_set_header_nritems(eb, 0);
4076 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4077
4078 return eb;
4079err:
Stefan Behrens84167d12012-10-11 07:25:16 -06004080 for (; i > 0; i--)
4081 __free_page(eb->pages[i - 1]);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004082 __free_extent_buffer(eb);
4083 return NULL;
4084}
4085
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004086static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004087{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004088 return (atomic_read(&eb->io_pages) ||
4089 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4090 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004091}
4092
Miao Xie897ca6e92010-10-26 20:57:29 -04004093/*
4094 * Helper for releasing extent buffer page.
4095 */
4096static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4097 unsigned long start_idx)
4098{
4099 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004100 unsigned long num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004101 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004102 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004103
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004104 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004105
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004106 num_pages = num_extent_pages(eb->start, eb->len);
4107 index = start_idx + num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004108 if (start_idx >= index)
4109 return;
4110
4111 do {
4112 index--;
4113 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004114 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004115 spin_lock(&page->mapping->private_lock);
4116 /*
4117 * We do this since we'll remove the pages after we've
4118 * removed the eb from the radix tree, so we could race
4119 * and have this page now attached to the new eb. So
4120 * only clear page_private if it's still connected to
4121 * this eb.
4122 */
4123 if (PagePrivate(page) &&
4124 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004125 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004126 BUG_ON(PageDirty(page));
4127 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004128 /*
4129 * We need to make sure we haven't be attached
4130 * to a new eb.
4131 */
4132 ClearPagePrivate(page);
4133 set_page_private(page, 0);
4134 /* One for the page private */
4135 page_cache_release(page);
4136 }
4137 spin_unlock(&page->mapping->private_lock);
4138
Jan Schmidt815a51c2012-05-16 17:00:02 +02004139 }
4140 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004141 /* One for when we alloced the page */
Miao Xie897ca6e92010-10-26 20:57:29 -04004142 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004143 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004144 } while (index != start_idx);
4145}
4146
4147/*
4148 * Helper for releasing the extent buffer.
4149 */
4150static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4151{
4152 btrfs_release_extent_buffer_page(eb, 0);
4153 __free_extent_buffer(eb);
4154}
4155
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004156static void check_buffer_tree_ref(struct extent_buffer *eb)
4157{
Chris Mason242e18c2013-01-29 17:49:37 -05004158 int refs;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004159 /* the ref bit is tricky. We have to make sure it is set
4160 * if we have the buffer dirty. Otherwise the
4161 * code to free a buffer can end up dropping a dirty
4162 * page
4163 *
4164 * Once the ref bit is set, it won't go away while the
4165 * buffer is dirty or in writeback, and it also won't
4166 * go away while we have the reference count on the
4167 * eb bumped.
4168 *
4169 * We can't just set the ref bit without bumping the
4170 * ref on the eb because free_extent_buffer might
4171 * see the ref bit and try to clear it. If this happens
4172 * free_extent_buffer might end up dropping our original
4173 * ref by mistake and freeing the page before we are able
4174 * to add one more ref.
4175 *
4176 * So bump the ref count first, then set the bit. If someone
4177 * beat us to it, drop the ref we added.
4178 */
Chris Mason242e18c2013-01-29 17:49:37 -05004179 refs = atomic_read(&eb->refs);
4180 if (refs >= 2 && test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4181 return;
4182
Josef Bacik594831c2012-07-20 16:11:08 -04004183 spin_lock(&eb->refs_lock);
4184 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004185 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004186 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004187}
4188
Josef Bacik5df42352012-03-15 18:24:42 -04004189static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4190{
4191 unsigned long num_pages, i;
4192
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004193 check_buffer_tree_ref(eb);
4194
Josef Bacik5df42352012-03-15 18:24:42 -04004195 num_pages = num_extent_pages(eb->start, eb->len);
4196 for (i = 0; i < num_pages; i++) {
4197 struct page *p = extent_buffer_page(eb, i);
4198 mark_page_accessed(p);
4199 }
4200}
4201
Chris Masond1310b22008-01-24 16:13:08 -05004202struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004203 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004204{
4205 unsigned long num_pages = num_extent_pages(start, len);
4206 unsigned long i;
4207 unsigned long index = start >> PAGE_CACHE_SHIFT;
4208 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004209 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004210 struct page *p;
4211 struct address_space *mapping = tree->mapping;
4212 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004213 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004214
Miao Xie19fe0a82010-10-26 20:57:29 -04004215 rcu_read_lock();
4216 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4217 if (eb && atomic_inc_not_zero(&eb->refs)) {
4218 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004219 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004220 return eb;
4221 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004222 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004223
David Sterbaba144192011-04-21 01:12:06 +02004224 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004225 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004226 return NULL;
4227
Chris Mason727011e2010-08-06 13:21:20 -04004228 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004229 p = find_or_create_page(mapping, index, GFP_NOFS);
Josef Bacik4804b382012-10-05 16:43:45 -04004230 if (!p)
Chris Mason6af118ce2008-07-22 11:18:07 -04004231 goto free_eb;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004232
4233 spin_lock(&mapping->private_lock);
4234 if (PagePrivate(p)) {
4235 /*
4236 * We could have already allocated an eb for this page
4237 * and attached one so lets see if we can get a ref on
4238 * the existing eb, and if we can we know it's good and
4239 * we can just return that one, else we know we can just
4240 * overwrite page->private.
4241 */
4242 exists = (struct extent_buffer *)p->private;
4243 if (atomic_inc_not_zero(&exists->refs)) {
4244 spin_unlock(&mapping->private_lock);
4245 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004246 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004247 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004248 goto free_eb;
4249 }
4250
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004251 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004252 * Do this so attach doesn't complain and we need to
4253 * drop the ref the old guy had.
4254 */
4255 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004256 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004257 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004258 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004259 attach_extent_buffer_page(eb, p);
4260 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004261 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004262 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004263 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004264 if (!PageUptodate(p))
4265 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004266
4267 /*
4268 * see below about how we avoid a nasty race with release page
4269 * and why we unlock later
4270 */
Chris Masond1310b22008-01-24 16:13:08 -05004271 }
4272 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004273 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004274again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004275 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4276 if (ret)
4277 goto free_eb;
4278
Chris Mason6af118ce2008-07-22 11:18:07 -04004279 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004280 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4281 if (ret == -EEXIST) {
4282 exists = radix_tree_lookup(&tree->buffer,
4283 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004284 if (!atomic_inc_not_zero(&exists->refs)) {
4285 spin_unlock(&tree->buffer_lock);
4286 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004287 exists = NULL;
4288 goto again;
4289 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004290 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004291 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004292 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004293 goto free_eb;
4294 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004295 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004296 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004297 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004298 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004299
4300 /*
4301 * there is a race where release page may have
4302 * tried to find this extent buffer in the radix
4303 * but failed. It will tell the VM it is safe to
4304 * reclaim the, and it will clear the page private bit.
4305 * We must make sure to set the page private bit properly
4306 * after the extent buffer is in the radix tree so
4307 * it doesn't get lost
4308 */
Chris Mason727011e2010-08-06 13:21:20 -04004309 SetPageChecked(eb->pages[0]);
4310 for (i = 1; i < num_pages; i++) {
4311 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004312 ClearPageChecked(p);
4313 unlock_page(p);
4314 }
4315 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004316 return eb;
4317
Chris Mason6af118ce2008-07-22 11:18:07 -04004318free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004319 for (i = 0; i < num_pages; i++) {
4320 if (eb->pages[i])
4321 unlock_page(eb->pages[i]);
4322 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004323
Josef Bacik17de39a2012-05-04 15:16:06 -04004324 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e92010-10-26 20:57:29 -04004325 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004326 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004327}
Chris Masond1310b22008-01-24 16:13:08 -05004328
4329struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004330 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004331{
Chris Masond1310b22008-01-24 16:13:08 -05004332 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004333
Miao Xie19fe0a82010-10-26 20:57:29 -04004334 rcu_read_lock();
4335 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4336 if (eb && atomic_inc_not_zero(&eb->refs)) {
4337 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004338 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004339 return eb;
4340 }
4341 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004342
Miao Xie19fe0a82010-10-26 20:57:29 -04004343 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004344}
Chris Masond1310b22008-01-24 16:13:08 -05004345
Josef Bacik3083ee22012-03-09 16:01:49 -05004346static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4347{
4348 struct extent_buffer *eb =
4349 container_of(head, struct extent_buffer, rcu_head);
4350
4351 __free_extent_buffer(eb);
4352}
4353
Josef Bacik3083ee22012-03-09 16:01:49 -05004354/* Expects to have eb->eb_lock already held */
Josef Bacike64860a2012-07-20 16:05:36 -04004355static int release_extent_buffer(struct extent_buffer *eb, gfp_t mask)
Josef Bacik3083ee22012-03-09 16:01:49 -05004356{
4357 WARN_ON(atomic_read(&eb->refs) == 0);
4358 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004359 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4360 spin_unlock(&eb->refs_lock);
4361 } else {
4362 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004363
Jan Schmidt815a51c2012-05-16 17:00:02 +02004364 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004365
Jan Schmidt815a51c2012-05-16 17:00:02 +02004366 spin_lock(&tree->buffer_lock);
4367 radix_tree_delete(&tree->buffer,
4368 eb->start >> PAGE_CACHE_SHIFT);
4369 spin_unlock(&tree->buffer_lock);
4370 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004371
4372 /* Should be safe to release our pages at this point */
4373 btrfs_release_extent_buffer_page(eb, 0);
Josef Bacik3083ee22012-03-09 16:01:49 -05004374 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004375 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004376 }
4377 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004378
4379 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004380}
4381
Chris Masond1310b22008-01-24 16:13:08 -05004382void free_extent_buffer(struct extent_buffer *eb)
4383{
Chris Mason242e18c2013-01-29 17:49:37 -05004384 int refs;
4385 int old;
Chris Masond1310b22008-01-24 16:13:08 -05004386 if (!eb)
4387 return;
4388
Chris Mason242e18c2013-01-29 17:49:37 -05004389 while (1) {
4390 refs = atomic_read(&eb->refs);
4391 if (refs <= 3)
4392 break;
4393 old = atomic_cmpxchg(&eb->refs, refs, refs - 1);
4394 if (old == refs)
4395 return;
4396 }
4397
Josef Bacik3083ee22012-03-09 16:01:49 -05004398 spin_lock(&eb->refs_lock);
4399 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004400 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4401 atomic_dec(&eb->refs);
4402
4403 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004404 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004405 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004406 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4407 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004408
Josef Bacik3083ee22012-03-09 16:01:49 -05004409 /*
4410 * I know this is terrible, but it's temporary until we stop tracking
4411 * the uptodate bits and such for the extent buffers.
4412 */
4413 release_extent_buffer(eb, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05004414}
Chris Masond1310b22008-01-24 16:13:08 -05004415
Josef Bacik3083ee22012-03-09 16:01:49 -05004416void free_extent_buffer_stale(struct extent_buffer *eb)
4417{
4418 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004419 return;
4420
Josef Bacik3083ee22012-03-09 16:01:49 -05004421 spin_lock(&eb->refs_lock);
4422 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4423
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004424 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004425 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4426 atomic_dec(&eb->refs);
4427 release_extent_buffer(eb, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004428}
4429
Chris Mason1d4284b2012-03-28 20:31:37 -04004430void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004431{
Chris Masond1310b22008-01-24 16:13:08 -05004432 unsigned long i;
4433 unsigned long num_pages;
4434 struct page *page;
4435
Chris Masond1310b22008-01-24 16:13:08 -05004436 num_pages = num_extent_pages(eb->start, eb->len);
4437
4438 for (i = 0; i < num_pages; i++) {
4439 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004440 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004441 continue;
4442
Chris Masona61e6f22008-07-22 11:18:08 -04004443 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004444 WARN_ON(!PagePrivate(page));
4445
Chris Masond1310b22008-01-24 16:13:08 -05004446 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004447 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004448 if (!PageDirty(page)) {
4449 radix_tree_tag_clear(&page->mapping->page_tree,
4450 page_index(page),
4451 PAGECACHE_TAG_DIRTY);
4452 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004453 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004454 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004455 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004456 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004457 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004458}
Chris Masond1310b22008-01-24 16:13:08 -05004459
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004460int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004461{
4462 unsigned long i;
4463 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004464 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004465
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004466 check_buffer_tree_ref(eb);
4467
Chris Masonb9473432009-03-13 11:00:37 -04004468 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004469
Chris Masond1310b22008-01-24 16:13:08 -05004470 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004471 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004472 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4473
Chris Masonb9473432009-03-13 11:00:37 -04004474 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004475 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004476 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004477}
Chris Masond1310b22008-01-24 16:13:08 -05004478
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004479static int range_straddles_pages(u64 start, u64 len)
Chris Mason19b6caf2011-07-25 06:50:50 -04004480{
4481 if (len < PAGE_CACHE_SIZE)
4482 return 1;
4483 if (start & (PAGE_CACHE_SIZE - 1))
4484 return 1;
4485 if ((start + len) & (PAGE_CACHE_SIZE - 1))
4486 return 1;
4487 return 0;
4488}
4489
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004490int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004491{
4492 unsigned long i;
4493 struct page *page;
4494 unsigned long num_pages;
4495
Chris Masonb4ce94d2009-02-04 09:25:08 -05004496 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004497 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004498 for (i = 0; i < num_pages; i++) {
4499 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004500 if (page)
4501 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004502 }
4503 return 0;
4504}
4505
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004506int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004507{
4508 unsigned long i;
4509 struct page *page;
4510 unsigned long num_pages;
4511
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004512 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004513 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004514 for (i = 0; i < num_pages; i++) {
4515 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004516 SetPageUptodate(page);
4517 }
4518 return 0;
4519}
Chris Masond1310b22008-01-24 16:13:08 -05004520
Chris Masonce9adaa2008-04-09 16:28:12 -04004521int extent_range_uptodate(struct extent_io_tree *tree,
4522 u64 start, u64 end)
4523{
4524 struct page *page;
4525 int ret;
4526 int pg_uptodate = 1;
4527 int uptodate;
4528 unsigned long index;
4529
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004530 if (range_straddles_pages(start, end - start + 1)) {
Chris Mason19b6caf2011-07-25 06:50:50 -04004531 ret = test_range_bit(tree, start, end,
4532 EXTENT_UPTODATE, 1, NULL);
4533 if (ret)
4534 return 1;
4535 }
Chris Masond3977122009-01-05 21:25:51 -05004536 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004537 index = start >> PAGE_CACHE_SHIFT;
4538 page = find_get_page(tree->mapping, index);
Mitch Harder8bedd512012-01-26 15:01:11 -05004539 if (!page)
4540 return 1;
Chris Masonce9adaa2008-04-09 16:28:12 -04004541 uptodate = PageUptodate(page);
4542 page_cache_release(page);
4543 if (!uptodate) {
4544 pg_uptodate = 0;
4545 break;
4546 }
4547 start += PAGE_CACHE_SIZE;
4548 }
4549 return pg_uptodate;
4550}
4551
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004552int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004553{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004554 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004555}
Chris Masond1310b22008-01-24 16:13:08 -05004556
4557int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004558 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004559 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004560{
4561 unsigned long i;
4562 unsigned long start_i;
4563 struct page *page;
4564 int err;
4565 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004566 int locked_pages = 0;
4567 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004568 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004569 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004570 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004571 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004572
Chris Masonb4ce94d2009-02-04 09:25:08 -05004573 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004574 return 0;
4575
Chris Masond1310b22008-01-24 16:13:08 -05004576 if (start) {
4577 WARN_ON(start < eb->start);
4578 start_i = (start >> PAGE_CACHE_SHIFT) -
4579 (eb->start >> PAGE_CACHE_SHIFT);
4580 } else {
4581 start_i = 0;
4582 }
4583
4584 num_pages = num_extent_pages(eb->start, eb->len);
4585 for (i = start_i; i < num_pages; i++) {
4586 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004587 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004588 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004589 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004590 } else {
4591 lock_page(page);
4592 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004593 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004594 if (!PageUptodate(page)) {
4595 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004596 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004597 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004598 }
4599 if (all_uptodate) {
4600 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004601 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004602 goto unlock_exit;
4603 }
4604
Josef Bacikea466792012-03-26 21:57:36 -04004605 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004606 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004607 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004608 for (i = start_i; i < num_pages; i++) {
4609 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004610 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004611 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004612 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004613 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04004614 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05004615 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004616 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004617 } else {
4618 unlock_page(page);
4619 }
4620 }
4621
Jeff Mahoney355808c2011-10-03 23:23:14 -04004622 if (bio) {
4623 err = submit_one_bio(READ, bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004624 if (err)
4625 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004626 }
Chris Masona86c12c2008-02-07 10:50:54 -05004627
Arne Jansenbb82ab82011-06-10 14:06:53 +02004628 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004629 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004630
Chris Masond1310b22008-01-24 16:13:08 -05004631 for (i = start_i; i < num_pages; i++) {
4632 page = extent_buffer_page(eb, i);
4633 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004634 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004635 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004636 }
Chris Masond3977122009-01-05 21:25:51 -05004637
Chris Masond1310b22008-01-24 16:13:08 -05004638 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004639
4640unlock_exit:
4641 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004642 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004643 page = extent_buffer_page(eb, i);
4644 i++;
4645 unlock_page(page);
4646 locked_pages--;
4647 }
4648 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004649}
Chris Masond1310b22008-01-24 16:13:08 -05004650
4651void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4652 unsigned long start,
4653 unsigned long len)
4654{
4655 size_t cur;
4656 size_t offset;
4657 struct page *page;
4658 char *kaddr;
4659 char *dst = (char *)dstv;
4660 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4661 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004662
4663 WARN_ON(start > eb->len);
4664 WARN_ON(start + len > eb->start + eb->len);
4665
4666 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4667
Chris Masond3977122009-01-05 21:25:51 -05004668 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004669 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004670
4671 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004672 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004673 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004674
4675 dst += cur;
4676 len -= cur;
4677 offset = 0;
4678 i++;
4679 }
4680}
Chris Masond1310b22008-01-24 16:13:08 -05004681
4682int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004683 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004684 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004685 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004686{
4687 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4688 char *kaddr;
4689 struct page *p;
4690 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4691 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4692 unsigned long end_i = (start_offset + start + min_len - 1) >>
4693 PAGE_CACHE_SHIFT;
4694
4695 if (i != end_i)
4696 return -EINVAL;
4697
4698 if (i == 0) {
4699 offset = start_offset;
4700 *map_start = 0;
4701 } else {
4702 offset = 0;
4703 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4704 }
Chris Masond3977122009-01-05 21:25:51 -05004705
Chris Masond1310b22008-01-24 16:13:08 -05004706 if (start + min_len > eb->len) {
Julia Lawall31b1a2b2012-11-03 10:58:34 +00004707 WARN(1, KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
Chris Masond3977122009-01-05 21:25:51 -05004708 "wanted %lu %lu\n", (unsigned long long)eb->start,
4709 eb->len, start, min_len);
Josef Bacik850265332011-03-15 14:52:12 -04004710 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004711 }
4712
4713 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004714 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004715 *map = kaddr + offset;
4716 *map_len = PAGE_CACHE_SIZE - offset;
4717 return 0;
4718}
Chris Masond1310b22008-01-24 16:13:08 -05004719
Chris Masond1310b22008-01-24 16:13:08 -05004720int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4721 unsigned long start,
4722 unsigned long len)
4723{
4724 size_t cur;
4725 size_t offset;
4726 struct page *page;
4727 char *kaddr;
4728 char *ptr = (char *)ptrv;
4729 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4730 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4731 int ret = 0;
4732
4733 WARN_ON(start > eb->len);
4734 WARN_ON(start + len > eb->start + eb->len);
4735
4736 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4737
Chris Masond3977122009-01-05 21:25:51 -05004738 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004739 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004740
4741 cur = min(len, (PAGE_CACHE_SIZE - offset));
4742
Chris Masona6591712011-07-19 12:04:14 -04004743 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004744 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004745 if (ret)
4746 break;
4747
4748 ptr += cur;
4749 len -= cur;
4750 offset = 0;
4751 i++;
4752 }
4753 return ret;
4754}
Chris Masond1310b22008-01-24 16:13:08 -05004755
4756void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4757 unsigned long start, unsigned long len)
4758{
4759 size_t cur;
4760 size_t offset;
4761 struct page *page;
4762 char *kaddr;
4763 char *src = (char *)srcv;
4764 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4765 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4766
4767 WARN_ON(start > eb->len);
4768 WARN_ON(start + len > eb->start + eb->len);
4769
4770 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4771
Chris Masond3977122009-01-05 21:25:51 -05004772 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004773 page = extent_buffer_page(eb, i);
4774 WARN_ON(!PageUptodate(page));
4775
4776 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004777 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004778 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004779
4780 src += cur;
4781 len -= cur;
4782 offset = 0;
4783 i++;
4784 }
4785}
Chris Masond1310b22008-01-24 16:13:08 -05004786
4787void memset_extent_buffer(struct extent_buffer *eb, char c,
4788 unsigned long start, unsigned long len)
4789{
4790 size_t cur;
4791 size_t offset;
4792 struct page *page;
4793 char *kaddr;
4794 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4795 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4796
4797 WARN_ON(start > eb->len);
4798 WARN_ON(start + len > eb->start + eb->len);
4799
4800 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4801
Chris Masond3977122009-01-05 21:25:51 -05004802 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004803 page = extent_buffer_page(eb, i);
4804 WARN_ON(!PageUptodate(page));
4805
4806 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004807 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004808 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004809
4810 len -= cur;
4811 offset = 0;
4812 i++;
4813 }
4814}
Chris Masond1310b22008-01-24 16:13:08 -05004815
4816void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
4817 unsigned long dst_offset, unsigned long src_offset,
4818 unsigned long len)
4819{
4820 u64 dst_len = dst->len;
4821 size_t cur;
4822 size_t offset;
4823 struct page *page;
4824 char *kaddr;
4825 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4826 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4827
4828 WARN_ON(src->len != dst_len);
4829
4830 offset = (start_offset + dst_offset) &
4831 ((unsigned long)PAGE_CACHE_SIZE - 1);
4832
Chris Masond3977122009-01-05 21:25:51 -05004833 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004834 page = extent_buffer_page(dst, i);
4835 WARN_ON(!PageUptodate(page));
4836
4837 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
4838
Chris Masona6591712011-07-19 12:04:14 -04004839 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004840 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004841
4842 src_offset += cur;
4843 len -= cur;
4844 offset = 0;
4845 i++;
4846 }
4847}
Chris Masond1310b22008-01-24 16:13:08 -05004848
4849static void move_pages(struct page *dst_page, struct page *src_page,
4850 unsigned long dst_off, unsigned long src_off,
4851 unsigned long len)
4852{
Chris Masona6591712011-07-19 12:04:14 -04004853 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004854 if (dst_page == src_page) {
4855 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
4856 } else {
Chris Masona6591712011-07-19 12:04:14 -04004857 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05004858 char *p = dst_kaddr + dst_off + len;
4859 char *s = src_kaddr + src_off + len;
4860
4861 while (len--)
4862 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05004863 }
Chris Masond1310b22008-01-24 16:13:08 -05004864}
4865
Sergei Trofimovich33872062011-04-11 21:52:52 +00004866static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
4867{
4868 unsigned long distance = (src > dst) ? src - dst : dst - src;
4869 return distance < len;
4870}
4871
Chris Masond1310b22008-01-24 16:13:08 -05004872static void copy_pages(struct page *dst_page, struct page *src_page,
4873 unsigned long dst_off, unsigned long src_off,
4874 unsigned long len)
4875{
Chris Masona6591712011-07-19 12:04:14 -04004876 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004877 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004878 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004879
Sergei Trofimovich33872062011-04-11 21:52:52 +00004880 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04004881 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00004882 } else {
Chris Masond1310b22008-01-24 16:13:08 -05004883 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004884 if (areas_overlap(src_off, dst_off, len))
4885 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00004886 }
Chris Masond1310b22008-01-24 16:13:08 -05004887
Chris Mason727011e2010-08-06 13:21:20 -04004888 if (must_memmove)
4889 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
4890 else
4891 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05004892}
4893
4894void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4895 unsigned long src_offset, unsigned long len)
4896{
4897 size_t cur;
4898 size_t dst_off_in_page;
4899 size_t src_off_in_page;
4900 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4901 unsigned long dst_i;
4902 unsigned long src_i;
4903
4904 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004905 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4906 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004907 BUG_ON(1);
4908 }
4909 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004910 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4911 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004912 BUG_ON(1);
4913 }
4914
Chris Masond3977122009-01-05 21:25:51 -05004915 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004916 dst_off_in_page = (start_offset + dst_offset) &
4917 ((unsigned long)PAGE_CACHE_SIZE - 1);
4918 src_off_in_page = (start_offset + src_offset) &
4919 ((unsigned long)PAGE_CACHE_SIZE - 1);
4920
4921 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4922 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
4923
4924 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
4925 src_off_in_page));
4926 cur = min_t(unsigned long, cur,
4927 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
4928
4929 copy_pages(extent_buffer_page(dst, dst_i),
4930 extent_buffer_page(dst, src_i),
4931 dst_off_in_page, src_off_in_page, cur);
4932
4933 src_offset += cur;
4934 dst_offset += cur;
4935 len -= cur;
4936 }
4937}
Chris Masond1310b22008-01-24 16:13:08 -05004938
4939void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4940 unsigned long src_offset, unsigned long len)
4941{
4942 size_t cur;
4943 size_t dst_off_in_page;
4944 size_t src_off_in_page;
4945 unsigned long dst_end = dst_offset + len - 1;
4946 unsigned long src_end = src_offset + len - 1;
4947 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4948 unsigned long dst_i;
4949 unsigned long src_i;
4950
4951 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004952 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4953 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004954 BUG_ON(1);
4955 }
4956 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004957 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4958 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004959 BUG_ON(1);
4960 }
Chris Mason727011e2010-08-06 13:21:20 -04004961 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05004962 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
4963 return;
4964 }
Chris Masond3977122009-01-05 21:25:51 -05004965 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004966 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
4967 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
4968
4969 dst_off_in_page = (start_offset + dst_end) &
4970 ((unsigned long)PAGE_CACHE_SIZE - 1);
4971 src_off_in_page = (start_offset + src_end) &
4972 ((unsigned long)PAGE_CACHE_SIZE - 1);
4973
4974 cur = min_t(unsigned long, len, src_off_in_page + 1);
4975 cur = min(cur, dst_off_in_page + 1);
4976 move_pages(extent_buffer_page(dst, dst_i),
4977 extent_buffer_page(dst, src_i),
4978 dst_off_in_page - cur + 1,
4979 src_off_in_page - cur + 1, cur);
4980
4981 dst_end -= cur;
4982 src_end -= cur;
4983 len -= cur;
4984 }
4985}
Chris Mason6af118ce2008-07-22 11:18:07 -04004986
Josef Bacik3083ee22012-03-09 16:01:49 -05004987int try_release_extent_buffer(struct page *page, gfp_t mask)
Miao Xie19fe0a82010-10-26 20:57:29 -04004988{
Chris Mason6af118ce2008-07-22 11:18:07 -04004989 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04004990
Miao Xie19fe0a82010-10-26 20:57:29 -04004991 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05004992 * We need to make sure noboody is attaching this page to an eb right
4993 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04004994 */
Josef Bacik3083ee22012-03-09 16:01:49 -05004995 spin_lock(&page->mapping->private_lock);
4996 if (!PagePrivate(page)) {
4997 spin_unlock(&page->mapping->private_lock);
4998 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004999 }
5000
Josef Bacik3083ee22012-03-09 16:01:49 -05005001 eb = (struct extent_buffer *)page->private;
5002 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04005003
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005004 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05005005 * This is a little awful but should be ok, we need to make sure that
5006 * the eb doesn't disappear out from under us while we're looking at
5007 * this page.
5008 */
5009 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04005010 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05005011 spin_unlock(&eb->refs_lock);
5012 spin_unlock(&page->mapping->private_lock);
5013 return 0;
5014 }
5015 spin_unlock(&page->mapping->private_lock);
5016
5017 if ((mask & GFP_NOFS) == GFP_NOFS)
5018 mask = GFP_NOFS;
5019
5020 /*
5021 * If tree ref isn't set then we know the ref on this eb is a real ref,
5022 * so just return, this page will likely be freed soon anyway.
5023 */
5024 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
5025 spin_unlock(&eb->refs_lock);
5026 return 0;
5027 }
Josef Bacik3083ee22012-03-09 16:01:49 -05005028
Josef Bacike64860a2012-07-20 16:05:36 -04005029 return release_extent_buffer(eb, mask);
Chris Mason6af118ce2008-07-22 11:18:07 -04005030}