blob: 49085f2336d2669c2fbfcbdb4ec1b532ab67868e [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>
7#include <linux/module.h>
8#include <linux/spinlock.h>
9#include <linux/blkdev.h>
10#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050011#include <linux/writeback.h>
12#include <linux/pagevec.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070013#include <linux/prefetch.h>
Dan Magenheimer90a887c2011-05-26 10:01:56 -060014#include <linux/cleancache.h>
Chris Masond1310b22008-01-24 16:13:08 -050015#include "extent_io.h"
16#include "extent_map.h"
David Woodhouse2db04962008-08-07 11:19:43 -040017#include "compat.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040018#include "ctree.h"
19#include "btrfs_inode.h"
Jan Schmidt4a54c8c2011-07-22 15:41:52 +020020#include "volumes.h"
Stefan Behrens21adbd52011-11-09 13:44:05 +010021#include "check-integrity.h"
Josef Bacik0b32f4b2012-03-13 09:38:00 -040022#include "locking.h"
Josef Bacik606686e2012-06-04 14:03:51 -040023#include "rcu-string.h"
Chris Masond1310b22008-01-24 16:13:08 -050024
Chris Masond1310b22008-01-24 16:13:08 -050025static struct kmem_cache *extent_state_cache;
26static struct kmem_cache *extent_buffer_cache;
27
28static LIST_HEAD(buffers);
29static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040030
Chris Masonb47eda82008-11-10 12:34:40 -050031#define LEAK_DEBUG 0
Chris Mason39351272009-02-04 09:24:05 -050032#if LEAK_DEBUG
Chris Masond3977122009-01-05 21:25:51 -050033static DEFINE_SPINLOCK(leak_lock);
Chris Mason4bef0842008-09-08 11:18:08 -040034#endif
Chris Masond1310b22008-01-24 16:13:08 -050035
Chris Masond1310b22008-01-24 16:13:08 -050036#define BUFFER_LRU_MAX 64
37
38struct tree_entry {
39 u64 start;
40 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -050041 struct rb_node rb_node;
42};
43
44struct extent_page_data {
45 struct bio *bio;
46 struct extent_io_tree *tree;
47 get_extent_t *get_extent;
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{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020067 extent_state_cache = kmem_cache_create("extent_state",
68 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
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020073 extent_buffer_cache = kmem_cache_create("extent_buffers",
74 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 }
Chris Masond1310b22008-01-24 16:13:08 -0500110 if (extent_state_cache)
111 kmem_cache_destroy(extent_state_cache);
112 if (extent_buffer_cache)
113 kmem_cache_destroy(extent_buffer_cache);
114}
115
116void extent_io_tree_init(struct extent_io_tree *tree,
David Sterbaf993c882011-04-20 23:35:57 +0200117 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500118{
Eric Paris6bef4d32010-02-23 19:43:04 +0000119 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400120 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500121 tree->ops = NULL;
122 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500123 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400124 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500125 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500126}
Chris Masond1310b22008-01-24 16:13:08 -0500127
Christoph Hellwigb2950862008-12-02 09:54:17 -0500128static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500129{
130 struct extent_state *state;
Chris Mason39351272009-02-04 09:24:05 -0500131#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400132 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400133#endif
Chris Masond1310b22008-01-24 16:13:08 -0500134
135 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400136 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500137 return state;
138 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500139 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500140 state->tree = NULL;
Chris Mason39351272009-02-04 09:24:05 -0500141#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400142 spin_lock_irqsave(&leak_lock, flags);
143 list_add(&state->leak_list, &states);
144 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400145#endif
Chris Masond1310b22008-01-24 16:13:08 -0500146 atomic_set(&state->refs, 1);
147 init_waitqueue_head(&state->wq);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100148 trace_alloc_extent_state(state, mask, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500149 return state;
150}
Chris Masond1310b22008-01-24 16:13:08 -0500151
Chris Mason4845e442010-05-25 20:56:50 -0400152void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500153{
Chris Masond1310b22008-01-24 16:13:08 -0500154 if (!state)
155 return;
156 if (atomic_dec_and_test(&state->refs)) {
Chris Mason39351272009-02-04 09:24:05 -0500157#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400158 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400159#endif
Chris Mason70dec802008-01-29 09:59:12 -0500160 WARN_ON(state->tree);
Chris Mason39351272009-02-04 09:24:05 -0500161#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400162 spin_lock_irqsave(&leak_lock, flags);
163 list_del(&state->leak_list);
164 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400165#endif
Jeff Mahoney143bede2012-03-01 14:56:26 +0100166 trace_free_extent_state(state, _RET_IP_);
Chris Masond1310b22008-01-24 16:13:08 -0500167 kmem_cache_free(extent_state_cache, state);
168 }
169}
Chris Masond1310b22008-01-24 16:13:08 -0500170
171static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
172 struct rb_node *node)
173{
Chris Masond3977122009-01-05 21:25:51 -0500174 struct rb_node **p = &root->rb_node;
175 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500176 struct tree_entry *entry;
177
Chris Masond3977122009-01-05 21:25:51 -0500178 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500179 parent = *p;
180 entry = rb_entry(parent, struct tree_entry, rb_node);
181
182 if (offset < entry->start)
183 p = &(*p)->rb_left;
184 else if (offset > entry->end)
185 p = &(*p)->rb_right;
186 else
187 return parent;
188 }
189
Chris Masond1310b22008-01-24 16:13:08 -0500190 rb_link_node(node, parent, p);
191 rb_insert_color(node, root);
192 return NULL;
193}
194
Chris Mason80ea96b2008-02-01 14:51:59 -0500195static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500196 struct rb_node **prev_ret,
197 struct rb_node **next_ret)
198{
Chris Mason80ea96b2008-02-01 14:51:59 -0500199 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500200 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500201 struct rb_node *prev = NULL;
202 struct rb_node *orig_prev = NULL;
203 struct tree_entry *entry;
204 struct tree_entry *prev_entry = NULL;
205
Chris Masond3977122009-01-05 21:25:51 -0500206 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500207 entry = rb_entry(n, struct tree_entry, rb_node);
208 prev = n;
209 prev_entry = entry;
210
211 if (offset < entry->start)
212 n = n->rb_left;
213 else if (offset > entry->end)
214 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500215 else
Chris Masond1310b22008-01-24 16:13:08 -0500216 return n;
217 }
218
219 if (prev_ret) {
220 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500221 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500222 prev = rb_next(prev);
223 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
224 }
225 *prev_ret = prev;
226 prev = orig_prev;
227 }
228
229 if (next_ret) {
230 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500231 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500232 prev = rb_prev(prev);
233 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
234 }
235 *next_ret = prev;
236 }
237 return NULL;
238}
239
Chris Mason80ea96b2008-02-01 14:51:59 -0500240static inline struct rb_node *tree_search(struct extent_io_tree *tree,
241 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500242{
Chris Mason70dec802008-01-29 09:59:12 -0500243 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500244 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500245
Chris Mason80ea96b2008-02-01 14:51:59 -0500246 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500247 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500248 return prev;
249 return ret;
250}
251
Josef Bacik9ed74f22009-09-11 16:12:44 -0400252static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
253 struct extent_state *other)
254{
255 if (tree->ops && tree->ops->merge_extent_hook)
256 tree->ops->merge_extent_hook(tree->mapping->host, new,
257 other);
258}
259
Chris Masond1310b22008-01-24 16:13:08 -0500260/*
261 * utility function to look for merge candidates inside a given range.
262 * Any extents with matching state are merged together into a single
263 * extent in the tree. Extents with EXTENT_IO in their state field
264 * are not merged because the end_io handlers need to be able to do
265 * operations on them without sleeping (or doing allocations/splits).
266 *
267 * This should be called with the tree lock held.
268 */
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000269static void merge_state(struct extent_io_tree *tree,
270 struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500271{
272 struct extent_state *other;
273 struct rb_node *other_node;
274
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400275 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000276 return;
Chris Masond1310b22008-01-24 16:13:08 -0500277
278 other_node = rb_prev(&state->rb_node);
279 if (other_node) {
280 other = rb_entry(other_node, struct extent_state, rb_node);
281 if (other->end == state->start - 1 &&
282 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400283 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500284 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500285 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500286 rb_erase(&other->rb_node, &tree->state);
287 free_extent_state(other);
288 }
289 }
290 other_node = rb_next(&state->rb_node);
291 if (other_node) {
292 other = rb_entry(other_node, struct extent_state, rb_node);
293 if (other->start == state->end + 1 &&
294 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400295 merge_cb(tree, state, other);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400296 state->end = other->end;
297 other->tree = NULL;
298 rb_erase(&other->rb_node, &tree->state);
299 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500300 }
301 }
Chris Masond1310b22008-01-24 16:13:08 -0500302}
303
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000304static void set_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400305 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500306{
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000307 if (tree->ops && tree->ops->set_bit_hook)
308 tree->ops->set_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500309}
310
311static void clear_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400312 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500313{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400314 if (tree->ops && tree->ops->clear_bit_hook)
315 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500316}
317
Xiao Guangrong3150b692011-07-14 03:19:08 +0000318static void set_state_bits(struct extent_io_tree *tree,
319 struct extent_state *state, int *bits);
320
Chris Masond1310b22008-01-24 16:13:08 -0500321/*
322 * insert an extent_state struct into the tree. 'bits' are set on the
323 * struct before it is inserted.
324 *
325 * This may return -EEXIST if the extent is already there, in which case the
326 * state struct is freed.
327 *
328 * The tree lock is not taken internally. This is a utility function and
329 * probably isn't what you want to call (see set/clear_extent_bit).
330 */
331static int insert_state(struct extent_io_tree *tree,
332 struct extent_state *state, u64 start, u64 end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400333 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500334{
335 struct rb_node *node;
336
337 if (end < start) {
Chris Masond3977122009-01-05 21:25:51 -0500338 printk(KERN_ERR "btrfs end < start %llu %llu\n",
339 (unsigned long long)end,
340 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500341 WARN_ON(1);
342 }
Chris Masond1310b22008-01-24 16:13:08 -0500343 state->start = start;
344 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400345
Xiao Guangrong3150b692011-07-14 03:19:08 +0000346 set_state_bits(tree, state, bits);
347
Chris Masond1310b22008-01-24 16:13:08 -0500348 node = tree_insert(&tree->state, end, &state->rb_node);
349 if (node) {
350 struct extent_state *found;
351 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500352 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
353 "%llu %llu\n", (unsigned long long)found->start,
354 (unsigned long long)found->end,
355 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500356 return -EEXIST;
357 }
Chris Mason70dec802008-01-29 09:59:12 -0500358 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500359 merge_state(tree, state);
360 return 0;
361}
362
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000363static void split_cb(struct extent_io_tree *tree, struct extent_state *orig,
Josef Bacik9ed74f22009-09-11 16:12:44 -0400364 u64 split)
365{
366 if (tree->ops && tree->ops->split_extent_hook)
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000367 tree->ops->split_extent_hook(tree->mapping->host, orig, split);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400368}
369
Chris Masond1310b22008-01-24 16:13:08 -0500370/*
371 * split a given extent state struct in two, inserting the preallocated
372 * struct 'prealloc' as the newly created second half. 'split' indicates an
373 * offset inside 'orig' where it should be split.
374 *
375 * Before calling,
376 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
377 * are two extent state structs in the tree:
378 * prealloc: [orig->start, split - 1]
379 * orig: [ split, orig->end ]
380 *
381 * The tree locks are not taken by this function. They need to be held
382 * by the caller.
383 */
384static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
385 struct extent_state *prealloc, u64 split)
386{
387 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400388
389 split_cb(tree, orig, split);
390
Chris Masond1310b22008-01-24 16:13:08 -0500391 prealloc->start = orig->start;
392 prealloc->end = split - 1;
393 prealloc->state = orig->state;
394 orig->start = split;
395
396 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
397 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500398 free_extent_state(prealloc);
399 return -EEXIST;
400 }
Chris Mason70dec802008-01-29 09:59:12 -0500401 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500402 return 0;
403}
404
Li Zefancdc6a392012-03-12 16:39:48 +0800405static struct extent_state *next_state(struct extent_state *state)
406{
407 struct rb_node *next = rb_next(&state->rb_node);
408 if (next)
409 return rb_entry(next, struct extent_state, rb_node);
410 else
411 return NULL;
412}
413
Chris Masond1310b22008-01-24 16:13:08 -0500414/*
415 * utility function to clear some bits in an extent state struct.
Wang Sheng-Hui1b303fc2012-04-06 14:35:18 +0800416 * it will optionally wake up any one waiting on this state (wake == 1).
Chris Masond1310b22008-01-24 16:13:08 -0500417 *
418 * If no bits are set on the state struct after clearing things, the
419 * struct is freed and removed from the tree
420 */
Li Zefancdc6a392012-03-12 16:39:48 +0800421static struct extent_state *clear_state_bit(struct extent_io_tree *tree,
422 struct extent_state *state,
423 int *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500424{
Li Zefancdc6a392012-03-12 16:39:48 +0800425 struct extent_state *next;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400426 int bits_to_clear = *bits & ~EXTENT_CTLBITS;
Chris Masond1310b22008-01-24 16:13:08 -0500427
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400428 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500429 u64 range = state->end - state->start + 1;
430 WARN_ON(range > tree->dirty_bytes);
431 tree->dirty_bytes -= range;
432 }
Chris Mason291d6732008-01-29 15:55:23 -0500433 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400434 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500435 if (wake)
436 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400437 if (state->state == 0) {
Li Zefancdc6a392012-03-12 16:39:48 +0800438 next = next_state(state);
Chris Mason70dec802008-01-29 09:59:12 -0500439 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500440 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500441 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500442 free_extent_state(state);
443 } else {
444 WARN_ON(1);
445 }
446 } else {
447 merge_state(tree, state);
Li Zefancdc6a392012-03-12 16:39:48 +0800448 next = next_state(state);
Chris Masond1310b22008-01-24 16:13:08 -0500449 }
Li Zefancdc6a392012-03-12 16:39:48 +0800450 return next;
Chris Masond1310b22008-01-24 16:13:08 -0500451}
452
Xiao Guangrong82337672011-04-20 06:44:57 +0000453static struct extent_state *
454alloc_extent_state_atomic(struct extent_state *prealloc)
455{
456 if (!prealloc)
457 prealloc = alloc_extent_state(GFP_ATOMIC);
458
459 return prealloc;
460}
461
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400462void extent_io_tree_panic(struct extent_io_tree *tree, int err)
463{
464 btrfs_panic(tree_fs_info(tree), err, "Locking error: "
465 "Extent tree was modified by another "
466 "thread while locked.");
467}
468
Chris Masond1310b22008-01-24 16:13:08 -0500469/*
470 * clear some bits on a range in the tree. This may require splitting
471 * or inserting elements in the tree, so the gfp mask is used to
472 * indicate which allocations or sleeping are allowed.
473 *
474 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
475 * the given range from the tree regardless of state (ie for truncate).
476 *
477 * the range [start, end] is inclusive.
478 *
Jeff Mahoney6763af82012-03-01 14:56:29 +0100479 * This takes the tree lock, and returns 0 on success and < 0 on error.
Chris Masond1310b22008-01-24 16:13:08 -0500480 */
481int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400482 int bits, int wake, int delete,
483 struct extent_state **cached_state,
484 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500485{
486 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400487 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500488 struct extent_state *prealloc = NULL;
489 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400490 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500491 int err;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000492 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500493
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400494 if (delete)
495 bits |= ~EXTENT_CTLBITS;
496 bits |= EXTENT_FIRST_DELALLOC;
497
Josef Bacik2ac55d42010-02-03 19:33:23 +0000498 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
499 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500500again:
501 if (!prealloc && (mask & __GFP_WAIT)) {
502 prealloc = alloc_extent_state(mask);
503 if (!prealloc)
504 return -ENOMEM;
505 }
506
Chris Masoncad321a2008-12-17 14:51:42 -0500507 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400508 if (cached_state) {
509 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000510
511 if (clear) {
512 *cached_state = NULL;
513 cached_state = NULL;
514 }
515
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400516 if (cached && cached->tree && cached->start <= start &&
517 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000518 if (clear)
519 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400520 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400521 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400522 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000523 if (clear)
524 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400525 }
Chris Masond1310b22008-01-24 16:13:08 -0500526 /*
527 * this search will find the extents that end after
528 * our range starts
529 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500530 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500531 if (!node)
532 goto out;
533 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400534hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500535 if (state->start > end)
536 goto out;
537 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400538 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500539
Liu Bo04493142012-02-16 18:34:37 +0800540 /* the state doesn't have the wanted bits, go ahead */
Li Zefancdc6a392012-03-12 16:39:48 +0800541 if (!(state->state & bits)) {
542 state = next_state(state);
Liu Bo04493142012-02-16 18:34:37 +0800543 goto next;
Li Zefancdc6a392012-03-12 16:39:48 +0800544 }
Liu Bo04493142012-02-16 18:34:37 +0800545
Chris Masond1310b22008-01-24 16:13:08 -0500546 /*
547 * | ---- desired range ---- |
548 * | state | or
549 * | ------------- state -------------- |
550 *
551 * We need to split the extent we found, and may flip
552 * bits on second half.
553 *
554 * If the extent we found extends past our range, we
555 * just split and search again. It'll get split again
556 * the next time though.
557 *
558 * If the extent we found is inside our range, we clear
559 * the desired bit on it.
560 */
561
562 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000563 prealloc = alloc_extent_state_atomic(prealloc);
564 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500565 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400566 if (err)
567 extent_io_tree_panic(tree, err);
568
Chris Masond1310b22008-01-24 16:13:08 -0500569 prealloc = NULL;
570 if (err)
571 goto out;
572 if (state->end <= end) {
Liu Bod1ac6e42012-05-10 18:10:39 +0800573 state = clear_state_bit(tree, state, &bits, wake);
574 goto next;
Chris Masond1310b22008-01-24 16:13:08 -0500575 }
576 goto search_again;
577 }
578 /*
579 * | ---- desired range ---- |
580 * | state |
581 * We need to split the extent, and clear the bit
582 * on the first half
583 */
584 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000585 prealloc = alloc_extent_state_atomic(prealloc);
586 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500587 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400588 if (err)
589 extent_io_tree_panic(tree, err);
590
Chris Masond1310b22008-01-24 16:13:08 -0500591 if (wake)
592 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400593
Jeff Mahoney6763af82012-03-01 14:56:29 +0100594 clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400595
Chris Masond1310b22008-01-24 16:13:08 -0500596 prealloc = NULL;
597 goto out;
598 }
Chris Mason42daec22009-09-23 19:51:09 -0400599
Li Zefancdc6a392012-03-12 16:39:48 +0800600 state = clear_state_bit(tree, state, &bits, wake);
Liu Bo04493142012-02-16 18:34:37 +0800601next:
Yan Zheng5c939df2009-05-27 09:16:03 -0400602 if (last_end == (u64)-1)
603 goto out;
604 start = last_end + 1;
Li Zefancdc6a392012-03-12 16:39:48 +0800605 if (start <= end && state && !need_resched())
Liu Bo692e5752012-02-16 18:34:36 +0800606 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500607 goto search_again;
608
609out:
Chris Masoncad321a2008-12-17 14:51:42 -0500610 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500611 if (prealloc)
612 free_extent_state(prealloc);
613
Jeff Mahoney6763af82012-03-01 14:56:29 +0100614 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500615
616search_again:
617 if (start > end)
618 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500619 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500620 if (mask & __GFP_WAIT)
621 cond_resched();
622 goto again;
623}
Chris Masond1310b22008-01-24 16:13:08 -0500624
Jeff Mahoney143bede2012-03-01 14:56:26 +0100625static void wait_on_state(struct extent_io_tree *tree,
626 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500627 __releases(tree->lock)
628 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500629{
630 DEFINE_WAIT(wait);
631 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500632 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500633 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500634 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500635 finish_wait(&state->wq, &wait);
Chris Masond1310b22008-01-24 16:13:08 -0500636}
637
638/*
639 * waits for one or more bits to clear on a range in the state tree.
640 * The range [start, end] is inclusive.
641 * The tree lock is taken by this function
642 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100643void wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
Chris Masond1310b22008-01-24 16:13:08 -0500644{
645 struct extent_state *state;
646 struct rb_node *node;
647
Chris Masoncad321a2008-12-17 14:51:42 -0500648 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500649again:
650 while (1) {
651 /*
652 * this search will find all the extents that end after
653 * our range starts
654 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500655 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500656 if (!node)
657 break;
658
659 state = rb_entry(node, struct extent_state, rb_node);
660
661 if (state->start > end)
662 goto out;
663
664 if (state->state & bits) {
665 start = state->start;
666 atomic_inc(&state->refs);
667 wait_on_state(tree, state);
668 free_extent_state(state);
669 goto again;
670 }
671 start = state->end + 1;
672
673 if (start > end)
674 break;
675
Xiao Guangrongded91f02011-07-14 03:19:27 +0000676 cond_resched_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500677 }
678out:
Chris Masoncad321a2008-12-17 14:51:42 -0500679 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500680}
Chris Masond1310b22008-01-24 16:13:08 -0500681
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000682static void set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500683 struct extent_state *state,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400684 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500685{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400686 int bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400687
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000688 set_state_cb(tree, state, bits);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400689 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500690 u64 range = state->end - state->start + 1;
691 tree->dirty_bytes += range;
692 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400693 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500694}
695
Chris Mason2c64c532009-09-02 15:04:12 -0400696static void cache_state(struct extent_state *state,
697 struct extent_state **cached_ptr)
698{
699 if (cached_ptr && !(*cached_ptr)) {
700 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
701 *cached_ptr = state;
702 atomic_inc(&state->refs);
703 }
704 }
705}
706
Arne Jansen507903b2011-04-06 10:02:20 +0000707static void uncache_state(struct extent_state **cached_ptr)
708{
709 if (cached_ptr && (*cached_ptr)) {
710 struct extent_state *state = *cached_ptr;
Chris Mason109b36a2011-04-12 13:57:39 -0400711 *cached_ptr = NULL;
712 free_extent_state(state);
Arne Jansen507903b2011-04-06 10:02:20 +0000713 }
714}
715
Chris Masond1310b22008-01-24 16:13:08 -0500716/*
Chris Mason1edbb732009-09-02 13:24:36 -0400717 * set some bits on a range in the tree. This may require allocations or
718 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500719 *
Chris Mason1edbb732009-09-02 13:24:36 -0400720 * If any of the exclusive bits are set, this will fail with -EEXIST if some
721 * part of the range already has the desired bits set. The start of the
722 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500723 *
Chris Mason1edbb732009-09-02 13:24:36 -0400724 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500725 */
Chris Mason1edbb732009-09-02 13:24:36 -0400726
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100727static int __must_check
728__set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
729 int bits, int exclusive_bits, u64 *failed_start,
730 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500731{
732 struct extent_state *state;
733 struct extent_state *prealloc = NULL;
734 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500735 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500736 u64 last_start;
737 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400738
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400739 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500740again:
741 if (!prealloc && (mask & __GFP_WAIT)) {
742 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000743 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500744 }
745
Chris Masoncad321a2008-12-17 14:51:42 -0500746 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400747 if (cached_state && *cached_state) {
748 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400749 if (state->start <= start && state->end > start &&
750 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400751 node = &state->rb_node;
752 goto hit_next;
753 }
754 }
Chris Masond1310b22008-01-24 16:13:08 -0500755 /*
756 * this search will find all the extents that end after
757 * our range starts.
758 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500759 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500760 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000761 prealloc = alloc_extent_state_atomic(prealloc);
762 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400763 err = insert_state(tree, prealloc, start, end, &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400764 if (err)
765 extent_io_tree_panic(tree, err);
766
Chris Masond1310b22008-01-24 16:13:08 -0500767 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500768 goto out;
769 }
Chris Masond1310b22008-01-24 16:13:08 -0500770 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400771hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500772 last_start = state->start;
773 last_end = state->end;
774
775 /*
776 * | ---- desired range ---- |
777 * | state |
778 *
779 * Just lock what we found and keep going
780 */
781 if (state->start == start && state->end <= end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400782 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500783 *failed_start = state->start;
784 err = -EEXIST;
785 goto out;
786 }
Chris Mason42daec22009-09-23 19:51:09 -0400787
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000788 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400789 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500790 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400791 if (last_end == (u64)-1)
792 goto out;
793 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800794 state = next_state(state);
795 if (start < end && state && state->start == start &&
796 !need_resched())
797 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500798 goto search_again;
799 }
800
801 /*
802 * | ---- desired range ---- |
803 * | state |
804 * or
805 * | ------------- state -------------- |
806 *
807 * We need to split the extent we found, and may flip bits on
808 * second half.
809 *
810 * If the extent we found extends past our
811 * range, we just split and search again. It'll get split
812 * again the next time though.
813 *
814 * If the extent we found is inside our range, we set the
815 * desired bit on it.
816 */
817 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400818 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500819 *failed_start = start;
820 err = -EEXIST;
821 goto out;
822 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000823
824 prealloc = alloc_extent_state_atomic(prealloc);
825 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500826 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400827 if (err)
828 extent_io_tree_panic(tree, err);
829
Chris Masond1310b22008-01-24 16:13:08 -0500830 prealloc = NULL;
831 if (err)
832 goto out;
833 if (state->end <= end) {
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000834 set_state_bits(tree, state, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400835 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500836 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400837 if (last_end == (u64)-1)
838 goto out;
839 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800840 state = next_state(state);
841 if (start < end && state && state->start == start &&
842 !need_resched())
843 goto hit_next;
Chris Masond1310b22008-01-24 16:13:08 -0500844 }
845 goto search_again;
846 }
847 /*
848 * | ---- desired range ---- |
849 * | state | or | state |
850 *
851 * There's a hole, we need to insert something in it and
852 * ignore the extent we found.
853 */
854 if (state->start > start) {
855 u64 this_end;
856 if (end < last_start)
857 this_end = end;
858 else
Chris Masond3977122009-01-05 21:25:51 -0500859 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000860
861 prealloc = alloc_extent_state_atomic(prealloc);
862 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000863
864 /*
865 * Avoid to free 'prealloc' if it can be merged with
866 * the later extent.
867 */
Chris Masond1310b22008-01-24 16:13:08 -0500868 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400869 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400870 if (err)
871 extent_io_tree_panic(tree, err);
872
Chris Mason2c64c532009-09-02 15:04:12 -0400873 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500874 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500875 start = this_end + 1;
876 goto search_again;
877 }
878 /*
879 * | ---- desired range ---- |
880 * | state |
881 * We need to split the extent, and set the bit
882 * on the first half
883 */
884 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400885 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500886 *failed_start = start;
887 err = -EEXIST;
888 goto out;
889 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000890
891 prealloc = alloc_extent_state_atomic(prealloc);
892 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500893 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400894 if (err)
895 extent_io_tree_panic(tree, err);
Chris Masond1310b22008-01-24 16:13:08 -0500896
Jeff Mahoney1bf85042011-07-21 16:56:09 +0000897 set_state_bits(tree, prealloc, &bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400898 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500899 merge_state(tree, prealloc);
900 prealloc = NULL;
901 goto out;
902 }
903
904 goto search_again;
905
906out:
Chris Masoncad321a2008-12-17 14:51:42 -0500907 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500908 if (prealloc)
909 free_extent_state(prealloc);
910
911 return err;
912
913search_again:
914 if (start > end)
915 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500916 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500917 if (mask & __GFP_WAIT)
918 cond_resched();
919 goto again;
920}
Chris Masond1310b22008-01-24 16:13:08 -0500921
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +0100922int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits,
923 u64 *failed_start, struct extent_state **cached_state,
924 gfp_t mask)
925{
926 return __set_extent_bit(tree, start, end, bits, 0, failed_start,
927 cached_state, mask);
928}
929
930
Josef Bacik462d6fa2011-09-26 13:56:12 -0400931/**
932 * convert_extent - convert all bits in a given range from one bit to another
933 * @tree: the io tree to search
934 * @start: the start offset in bytes
935 * @end: the end offset in bytes (inclusive)
936 * @bits: the bits to set in this range
937 * @clear_bits: the bits to clear in this range
938 * @mask: the allocation mask
939 *
940 * This will go through and set bits for the given range. If any states exist
941 * already in this range they are set with the given bit and cleared of the
942 * clear_bits. This is only meant to be used by things that are mergeable, ie
943 * converting from say DELALLOC to DIRTY. This is not meant to be used with
944 * boundary bits like LOCK.
945 */
946int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
947 int bits, int clear_bits, gfp_t mask)
948{
949 struct extent_state *state;
950 struct extent_state *prealloc = NULL;
951 struct rb_node *node;
952 int err = 0;
953 u64 last_start;
954 u64 last_end;
955
956again:
957 if (!prealloc && (mask & __GFP_WAIT)) {
958 prealloc = alloc_extent_state(mask);
959 if (!prealloc)
960 return -ENOMEM;
961 }
962
963 spin_lock(&tree->lock);
964 /*
965 * this search will find all the extents that end after
966 * our range starts.
967 */
968 node = tree_search(tree, start);
969 if (!node) {
970 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -0500971 if (!prealloc) {
972 err = -ENOMEM;
973 goto out;
974 }
Josef Bacik462d6fa2011-09-26 13:56:12 -0400975 err = insert_state(tree, prealloc, start, end, &bits);
976 prealloc = NULL;
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -0400977 if (err)
978 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -0400979 goto out;
980 }
981 state = rb_entry(node, struct extent_state, rb_node);
982hit_next:
983 last_start = state->start;
984 last_end = state->end;
985
986 /*
987 * | ---- desired range ---- |
988 * | state |
989 *
990 * Just lock what we found and keep going
991 */
992 if (state->start == start && state->end <= end) {
Josef Bacik462d6fa2011-09-26 13:56:12 -0400993 set_state_bits(tree, state, &bits);
Liu Bod1ac6e42012-05-10 18:10:39 +0800994 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -0400995 if (last_end == (u64)-1)
996 goto out;
Josef Bacik462d6fa2011-09-26 13:56:12 -0400997 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +0800998 if (start < end && state && state->start == start &&
999 !need_resched())
1000 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001001 goto search_again;
1002 }
1003
1004 /*
1005 * | ---- desired range ---- |
1006 * | state |
1007 * or
1008 * | ------------- state -------------- |
1009 *
1010 * We need to split the extent we found, and may flip bits on
1011 * second half.
1012 *
1013 * If the extent we found extends past our
1014 * range, we just split and search again. It'll get split
1015 * again the next time though.
1016 *
1017 * If the extent we found is inside our range, we set the
1018 * desired bit on it.
1019 */
1020 if (state->start < start) {
1021 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001022 if (!prealloc) {
1023 err = -ENOMEM;
1024 goto out;
1025 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001026 err = split_state(tree, state, prealloc, start);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001027 if (err)
1028 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001029 prealloc = NULL;
1030 if (err)
1031 goto out;
1032 if (state->end <= end) {
1033 set_state_bits(tree, state, &bits);
Liu Bod1ac6e42012-05-10 18:10:39 +08001034 state = clear_state_bit(tree, state, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001035 if (last_end == (u64)-1)
1036 goto out;
1037 start = last_end + 1;
Liu Bod1ac6e42012-05-10 18:10:39 +08001038 if (start < end && state && state->start == start &&
1039 !need_resched())
1040 goto hit_next;
Josef Bacik462d6fa2011-09-26 13:56:12 -04001041 }
1042 goto search_again;
1043 }
1044 /*
1045 * | ---- desired range ---- |
1046 * | state | or | state |
1047 *
1048 * There's a hole, we need to insert something in it and
1049 * ignore the extent we found.
1050 */
1051 if (state->start > start) {
1052 u64 this_end;
1053 if (end < last_start)
1054 this_end = end;
1055 else
1056 this_end = last_start - 1;
1057
1058 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001059 if (!prealloc) {
1060 err = -ENOMEM;
1061 goto out;
1062 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001063
1064 /*
1065 * Avoid to free 'prealloc' if it can be merged with
1066 * the later extent.
1067 */
1068 err = insert_state(tree, prealloc, start, this_end,
1069 &bits);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001070 if (err)
1071 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001072 prealloc = NULL;
1073 start = this_end + 1;
1074 goto search_again;
1075 }
1076 /*
1077 * | ---- desired range ---- |
1078 * | state |
1079 * We need to split the extent, and set the bit
1080 * on the first half
1081 */
1082 if (state->start <= end && state->end > end) {
1083 prealloc = alloc_extent_state_atomic(prealloc);
Liu Bo1cf4ffd2011-12-07 20:08:40 -05001084 if (!prealloc) {
1085 err = -ENOMEM;
1086 goto out;
1087 }
Josef Bacik462d6fa2011-09-26 13:56:12 -04001088
1089 err = split_state(tree, state, prealloc, end + 1);
Jeff Mahoneyc2d904e2011-10-03 23:22:32 -04001090 if (err)
1091 extent_io_tree_panic(tree, err);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001092
1093 set_state_bits(tree, prealloc, &bits);
1094 clear_state_bit(tree, prealloc, &clear_bits, 0);
Josef Bacik462d6fa2011-09-26 13:56:12 -04001095 prealloc = NULL;
1096 goto out;
1097 }
1098
1099 goto search_again;
1100
1101out:
1102 spin_unlock(&tree->lock);
1103 if (prealloc)
1104 free_extent_state(prealloc);
1105
1106 return err;
1107
1108search_again:
1109 if (start > end)
1110 goto out;
1111 spin_unlock(&tree->lock);
1112 if (mask & __GFP_WAIT)
1113 cond_resched();
1114 goto again;
1115}
1116
Chris Masond1310b22008-01-24 16:13:08 -05001117/* wrappers around set/clear extent bit */
1118int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1119 gfp_t mask)
1120{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001121 return set_extent_bit(tree, start, end, EXTENT_DIRTY, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001122 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001123}
Chris Masond1310b22008-01-24 16:13:08 -05001124
1125int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1126 int bits, gfp_t mask)
1127{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001128 return set_extent_bit(tree, start, end, bits, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001129 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001130}
Chris Masond1310b22008-01-24 16:13:08 -05001131
1132int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
1133 int bits, gfp_t mask)
1134{
Chris Mason2c64c532009-09-02 15:04:12 -04001135 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001136}
Chris Masond1310b22008-01-24 16:13:08 -05001137
1138int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001139 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001140{
1141 return set_extent_bit(tree, start, end,
Liu Bofee187d2011-09-29 15:55:28 +08001142 EXTENT_DELALLOC | EXTENT_UPTODATE,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001143 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001144}
Chris Masond1310b22008-01-24 16:13:08 -05001145
1146int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
1147 gfp_t mask)
1148{
1149 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04001150 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04001151 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001152}
Chris Masond1310b22008-01-24 16:13:08 -05001153
1154int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
1155 gfp_t mask)
1156{
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001157 return set_extent_bit(tree, start, end, EXTENT_NEW, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -04001158 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001159}
Chris Masond1310b22008-01-24 16:13:08 -05001160
Chris Masond1310b22008-01-24 16:13:08 -05001161int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +00001162 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001163{
Arne Jansen507903b2011-04-06 10:02:20 +00001164 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0,
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001165 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001166}
Chris Masond1310b22008-01-24 16:13:08 -05001167
Josef Bacik5fd02042012-05-02 14:00:54 -04001168int clear_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
1169 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001170{
Chris Mason2c64c532009-09-02 15:04:12 -04001171 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001172 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001173}
Chris Masond1310b22008-01-24 16:13:08 -05001174
Chris Masond352ac62008-09-29 15:18:18 -04001175/*
1176 * either insert or lock state struct between start and end use mask to tell
1177 * us if waiting is desired.
1178 */
Chris Mason1edbb732009-09-02 13:24:36 -04001179int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001180 int bits, struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001181{
1182 int err;
1183 u64 failed_start;
1184 while (1) {
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001185 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
1186 EXTENT_LOCKED, &failed_start,
1187 cached_state, GFP_NOFS);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001188 if (err == -EEXIST) {
Chris Masond1310b22008-01-24 16:13:08 -05001189 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1190 start = failed_start;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001191 } else
Chris Masond1310b22008-01-24 16:13:08 -05001192 break;
Chris Masond1310b22008-01-24 16:13:08 -05001193 WARN_ON(start > end);
1194 }
1195 return err;
1196}
Chris Masond1310b22008-01-24 16:13:08 -05001197
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001198int lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Mason1edbb732009-09-02 13:24:36 -04001199{
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001200 return lock_extent_bits(tree, start, end, 0, NULL);
Chris Mason1edbb732009-09-02 13:24:36 -04001201}
1202
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001203int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Josef Bacik25179202008-10-29 14:49:05 -04001204{
1205 int err;
1206 u64 failed_start;
1207
Jeff Mahoney3fbe5c02012-03-01 14:57:19 +01001208 err = __set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1209 &failed_start, NULL, GFP_NOFS);
Yan Zheng66435582008-10-30 14:19:50 -04001210 if (err == -EEXIST) {
1211 if (failed_start > start)
1212 clear_extent_bit(tree, start, failed_start - 1,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001213 EXTENT_LOCKED, 1, 0, NULL, GFP_NOFS);
Josef Bacik25179202008-10-29 14:49:05 -04001214 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001215 }
Josef Bacik25179202008-10-29 14:49:05 -04001216 return 1;
1217}
Josef Bacik25179202008-10-29 14:49:05 -04001218
Chris Mason2c64c532009-09-02 15:04:12 -04001219int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1220 struct extent_state **cached, gfp_t mask)
1221{
1222 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1223 mask);
1224}
1225
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001226int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001227{
Chris Mason2c64c532009-09-02 15:04:12 -04001228 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001229 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001230}
Chris Masond1310b22008-01-24 16:13:08 -05001231
1232/*
Chris Masond1310b22008-01-24 16:13:08 -05001233 * helper function to set both pages and extents in the tree writeback
1234 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001235static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001236{
1237 unsigned long index = start >> PAGE_CACHE_SHIFT;
1238 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1239 struct page *page;
1240
1241 while (index <= end_index) {
1242 page = find_get_page(tree->mapping, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001243 BUG_ON(!page); /* Pages should be in the extent_io_tree */
Chris Masond1310b22008-01-24 16:13:08 -05001244 set_page_writeback(page);
1245 page_cache_release(page);
1246 index++;
1247 }
Chris Masond1310b22008-01-24 16:13:08 -05001248 return 0;
1249}
Chris Masond1310b22008-01-24 16:13:08 -05001250
Chris Masond352ac62008-09-29 15:18:18 -04001251/* find the first state struct with 'bits' set after 'start', and
1252 * return it. tree->lock must be held. NULL will returned if
1253 * nothing was found after 'start'
1254 */
Chris Masond7fc6402008-02-18 12:12:38 -05001255struct extent_state *find_first_extent_bit_state(struct extent_io_tree *tree,
1256 u64 start, int bits)
1257{
1258 struct rb_node *node;
1259 struct extent_state *state;
1260
1261 /*
1262 * this search will find all the extents that end after
1263 * our range starts.
1264 */
1265 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001266 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001267 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001268
Chris Masond3977122009-01-05 21:25:51 -05001269 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001270 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001271 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001272 return state;
Chris Masond3977122009-01-05 21:25:51 -05001273
Chris Masond7fc6402008-02-18 12:12:38 -05001274 node = rb_next(node);
1275 if (!node)
1276 break;
1277 }
1278out:
1279 return NULL;
1280}
Chris Masond7fc6402008-02-18 12:12:38 -05001281
Chris Masond352ac62008-09-29 15:18:18 -04001282/*
Xiao Guangrong69261c42011-07-14 03:19:45 +00001283 * find the first offset in the io tree with 'bits' set. zero is
1284 * returned if we find something, and *start_ret and *end_ret are
1285 * set to reflect the state struct that was found.
1286 *
Wang Sheng-Hui477d7ea2012-04-06 14:35:47 +08001287 * If nothing was found, 1 is returned. If found something, return 0.
Xiao Guangrong69261c42011-07-14 03:19:45 +00001288 */
1289int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1290 u64 *start_ret, u64 *end_ret, int bits)
1291{
1292 struct extent_state *state;
1293 int ret = 1;
1294
1295 spin_lock(&tree->lock);
1296 state = find_first_extent_bit_state(tree, start, bits);
1297 if (state) {
1298 *start_ret = state->start;
1299 *end_ret = state->end;
1300 ret = 0;
1301 }
1302 spin_unlock(&tree->lock);
1303 return ret;
1304}
1305
1306/*
Chris Masond352ac62008-09-29 15:18:18 -04001307 * find a contiguous range of bytes in the file marked as delalloc, not
1308 * more than 'max_bytes'. start and end are used to return the range,
1309 *
1310 * 1 is returned if we find something, 0 if nothing was in the tree
1311 */
Chris Masonc8b97812008-10-29 14:49:59 -04001312static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001313 u64 *start, u64 *end, u64 max_bytes,
1314 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001315{
1316 struct rb_node *node;
1317 struct extent_state *state;
1318 u64 cur_start = *start;
1319 u64 found = 0;
1320 u64 total_bytes = 0;
1321
Chris Masoncad321a2008-12-17 14:51:42 -05001322 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001323
Chris Masond1310b22008-01-24 16:13:08 -05001324 /*
1325 * this search will find all the extents that end after
1326 * our range starts.
1327 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001328 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001329 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001330 if (!found)
1331 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001332 goto out;
1333 }
1334
Chris Masond3977122009-01-05 21:25:51 -05001335 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001336 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001337 if (found && (state->start != cur_start ||
1338 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001339 goto out;
1340 }
1341 if (!(state->state & EXTENT_DELALLOC)) {
1342 if (!found)
1343 *end = state->end;
1344 goto out;
1345 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001346 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001347 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001348 *cached_state = state;
1349 atomic_inc(&state->refs);
1350 }
Chris Masond1310b22008-01-24 16:13:08 -05001351 found++;
1352 *end = state->end;
1353 cur_start = state->end + 1;
1354 node = rb_next(node);
1355 if (!node)
1356 break;
1357 total_bytes += state->end - state->start + 1;
1358 if (total_bytes >= max_bytes)
1359 break;
1360 }
1361out:
Chris Masoncad321a2008-12-17 14:51:42 -05001362 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001363 return found;
1364}
1365
Jeff Mahoney143bede2012-03-01 14:56:26 +01001366static noinline void __unlock_for_delalloc(struct inode *inode,
1367 struct page *locked_page,
1368 u64 start, u64 end)
Chris Masonc8b97812008-10-29 14:49:59 -04001369{
1370 int ret;
1371 struct page *pages[16];
1372 unsigned long index = start >> PAGE_CACHE_SHIFT;
1373 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1374 unsigned long nr_pages = end_index - index + 1;
1375 int i;
1376
1377 if (index == locked_page->index && end_index == index)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001378 return;
Chris Masonc8b97812008-10-29 14:49:59 -04001379
Chris Masond3977122009-01-05 21:25:51 -05001380 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001381 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001382 min_t(unsigned long, nr_pages,
1383 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001384 for (i = 0; i < ret; i++) {
1385 if (pages[i] != locked_page)
1386 unlock_page(pages[i]);
1387 page_cache_release(pages[i]);
1388 }
1389 nr_pages -= ret;
1390 index += ret;
1391 cond_resched();
1392 }
Chris Masonc8b97812008-10-29 14:49:59 -04001393}
1394
1395static noinline int lock_delalloc_pages(struct inode *inode,
1396 struct page *locked_page,
1397 u64 delalloc_start,
1398 u64 delalloc_end)
1399{
1400 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1401 unsigned long start_index = index;
1402 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1403 unsigned long pages_locked = 0;
1404 struct page *pages[16];
1405 unsigned long nrpages;
1406 int ret;
1407 int i;
1408
1409 /* the caller is responsible for locking the start index */
1410 if (index == locked_page->index && index == end_index)
1411 return 0;
1412
1413 /* skip the page at the start index */
1414 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001415 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001416 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001417 min_t(unsigned long,
1418 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001419 if (ret == 0) {
1420 ret = -EAGAIN;
1421 goto done;
1422 }
1423 /* now we have an array of pages, lock them all */
1424 for (i = 0; i < ret; i++) {
1425 /*
1426 * the caller is taking responsibility for
1427 * locked_page
1428 */
Chris Mason771ed682008-11-06 22:02:51 -05001429 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001430 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001431 if (!PageDirty(pages[i]) ||
1432 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001433 ret = -EAGAIN;
1434 unlock_page(pages[i]);
1435 page_cache_release(pages[i]);
1436 goto done;
1437 }
1438 }
Chris Masonc8b97812008-10-29 14:49:59 -04001439 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001440 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001441 }
Chris Masonc8b97812008-10-29 14:49:59 -04001442 nrpages -= ret;
1443 index += ret;
1444 cond_resched();
1445 }
1446 ret = 0;
1447done:
1448 if (ret && pages_locked) {
1449 __unlock_for_delalloc(inode, locked_page,
1450 delalloc_start,
1451 ((u64)(start_index + pages_locked - 1)) <<
1452 PAGE_CACHE_SHIFT);
1453 }
1454 return ret;
1455}
1456
1457/*
1458 * find a contiguous range of bytes in the file marked as delalloc, not
1459 * more than 'max_bytes'. start and end are used to return the range,
1460 *
1461 * 1 is returned if we find something, 0 if nothing was in the tree
1462 */
1463static noinline u64 find_lock_delalloc_range(struct inode *inode,
1464 struct extent_io_tree *tree,
1465 struct page *locked_page,
1466 u64 *start, u64 *end,
1467 u64 max_bytes)
1468{
1469 u64 delalloc_start;
1470 u64 delalloc_end;
1471 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001472 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001473 int ret;
1474 int loops = 0;
1475
1476again:
1477 /* step one, find a bunch of delalloc bytes starting at start */
1478 delalloc_start = *start;
1479 delalloc_end = 0;
1480 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001481 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001482 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001483 *start = delalloc_start;
1484 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001485 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001486 return found;
1487 }
1488
1489 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001490 * start comes from the offset of locked_page. We have to lock
1491 * pages in order, so we can't process delalloc bytes before
1492 * locked_page
1493 */
Chris Masond3977122009-01-05 21:25:51 -05001494 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001495 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001496
1497 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001498 * make sure to limit the number of pages we try to lock down
1499 * if we're looping.
1500 */
Chris Masond3977122009-01-05 21:25:51 -05001501 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001502 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001503
Chris Masonc8b97812008-10-29 14:49:59 -04001504 /* step two, lock all the pages after the page that has start */
1505 ret = lock_delalloc_pages(inode, locked_page,
1506 delalloc_start, delalloc_end);
1507 if (ret == -EAGAIN) {
1508 /* some of the pages are gone, lets avoid looping by
1509 * shortening the size of the delalloc range we're searching
1510 */
Chris Mason9655d292009-09-02 15:22:30 -04001511 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001512 if (!loops) {
1513 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1514 max_bytes = PAGE_CACHE_SIZE - offset;
1515 loops = 1;
1516 goto again;
1517 } else {
1518 found = 0;
1519 goto out_failed;
1520 }
1521 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001522 BUG_ON(ret); /* Only valid values are 0 and -EAGAIN */
Chris Masonc8b97812008-10-29 14:49:59 -04001523
1524 /* step three, lock the state bits for the whole range */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001525 lock_extent_bits(tree, delalloc_start, delalloc_end, 0, &cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001526
1527 /* then test to make sure it is all still delalloc */
1528 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001529 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001530 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001531 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1532 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001533 __unlock_for_delalloc(inode, locked_page,
1534 delalloc_start, delalloc_end);
1535 cond_resched();
1536 goto again;
1537 }
Chris Mason9655d292009-09-02 15:22:30 -04001538 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001539 *start = delalloc_start;
1540 *end = delalloc_end;
1541out_failed:
1542 return found;
1543}
1544
1545int extent_clear_unlock_delalloc(struct inode *inode,
1546 struct extent_io_tree *tree,
1547 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001548 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001549{
1550 int ret;
1551 struct page *pages[16];
1552 unsigned long index = start >> PAGE_CACHE_SHIFT;
1553 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1554 unsigned long nr_pages = end_index - index + 1;
1555 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001556 int clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001557
Chris Masona791e352009-10-08 11:27:10 -04001558 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001559 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001560 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001561 clear_bits |= EXTENT_DIRTY;
1562
Chris Masona791e352009-10-08 11:27:10 -04001563 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001564 clear_bits |= EXTENT_DELALLOC;
1565
Chris Mason2c64c532009-09-02 15:04:12 -04001566 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001567 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1568 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1569 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001570 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001571
Chris Masond3977122009-01-05 21:25:51 -05001572 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001573 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001574 min_t(unsigned long,
1575 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001576 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001577
Chris Masona791e352009-10-08 11:27:10 -04001578 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001579 SetPagePrivate2(pages[i]);
1580
Chris Masonc8b97812008-10-29 14:49:59 -04001581 if (pages[i] == locked_page) {
1582 page_cache_release(pages[i]);
1583 continue;
1584 }
Chris Masona791e352009-10-08 11:27:10 -04001585 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001586 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001587 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001588 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001589 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001590 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001591 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001592 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001593 page_cache_release(pages[i]);
1594 }
1595 nr_pages -= ret;
1596 index += ret;
1597 cond_resched();
1598 }
1599 return 0;
1600}
Chris Masonc8b97812008-10-29 14:49:59 -04001601
Chris Masond352ac62008-09-29 15:18:18 -04001602/*
1603 * count the number of bytes in the tree that have a given bit(s)
1604 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1605 * cached. The total number found is returned.
1606 */
Chris Masond1310b22008-01-24 16:13:08 -05001607u64 count_range_bits(struct extent_io_tree *tree,
1608 u64 *start, u64 search_end, u64 max_bytes,
Chris Masonec29ed52011-02-23 16:23:20 -05001609 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001610{
1611 struct rb_node *node;
1612 struct extent_state *state;
1613 u64 cur_start = *start;
1614 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001615 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001616 int found = 0;
1617
1618 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001619 WARN_ON(1);
1620 return 0;
1621 }
1622
Chris Masoncad321a2008-12-17 14:51:42 -05001623 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001624 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1625 total_bytes = tree->dirty_bytes;
1626 goto out;
1627 }
1628 /*
1629 * this search will find all the extents that end after
1630 * our range starts.
1631 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001632 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001633 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001634 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001635
Chris Masond3977122009-01-05 21:25:51 -05001636 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001637 state = rb_entry(node, struct extent_state, rb_node);
1638 if (state->start > search_end)
1639 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001640 if (contig && found && state->start > last + 1)
1641 break;
1642 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001643 total_bytes += min(search_end, state->end) + 1 -
1644 max(cur_start, state->start);
1645 if (total_bytes >= max_bytes)
1646 break;
1647 if (!found) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001648 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001649 found = 1;
1650 }
Chris Masonec29ed52011-02-23 16:23:20 -05001651 last = state->end;
1652 } else if (contig && found) {
1653 break;
Chris Masond1310b22008-01-24 16:13:08 -05001654 }
1655 node = rb_next(node);
1656 if (!node)
1657 break;
1658 }
1659out:
Chris Masoncad321a2008-12-17 14:51:42 -05001660 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001661 return total_bytes;
1662}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001663
Chris Masond352ac62008-09-29 15:18:18 -04001664/*
1665 * set the private field for a given byte offset in the tree. If there isn't
1666 * an extent_state there already, this does nothing.
1667 */
Chris Masond1310b22008-01-24 16:13:08 -05001668int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1669{
1670 struct rb_node *node;
1671 struct extent_state *state;
1672 int ret = 0;
1673
Chris Masoncad321a2008-12-17 14:51:42 -05001674 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001675 /*
1676 * this search will find all the extents that end after
1677 * our range starts.
1678 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001679 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001680 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001681 ret = -ENOENT;
1682 goto out;
1683 }
1684 state = rb_entry(node, struct extent_state, rb_node);
1685 if (state->start != start) {
1686 ret = -ENOENT;
1687 goto out;
1688 }
1689 state->private = private;
1690out:
Chris Masoncad321a2008-12-17 14:51:42 -05001691 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001692 return ret;
1693}
1694
1695int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1696{
1697 struct rb_node *node;
1698 struct extent_state *state;
1699 int ret = 0;
1700
Chris Masoncad321a2008-12-17 14:51:42 -05001701 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001702 /*
1703 * this search will find all the extents that end after
1704 * our range starts.
1705 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001706 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001707 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001708 ret = -ENOENT;
1709 goto out;
1710 }
1711 state = rb_entry(node, struct extent_state, rb_node);
1712 if (state->start != start) {
1713 ret = -ENOENT;
1714 goto out;
1715 }
1716 *private = state->private;
1717out:
Chris Masoncad321a2008-12-17 14:51:42 -05001718 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001719 return ret;
1720}
1721
1722/*
1723 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001724 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001725 * has the bits set. Otherwise, 1 is returned if any bit in the
1726 * range is found set.
1727 */
1728int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason9655d292009-09-02 15:22:30 -04001729 int bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001730{
1731 struct extent_state *state = NULL;
1732 struct rb_node *node;
1733 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001734
Chris Masoncad321a2008-12-17 14:51:42 -05001735 spin_lock(&tree->lock);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001736 if (cached && cached->tree && cached->start <= start &&
1737 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001738 node = &cached->rb_node;
1739 else
1740 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001741 while (node && start <= end) {
1742 state = rb_entry(node, struct extent_state, rb_node);
1743
1744 if (filled && state->start > start) {
1745 bitset = 0;
1746 break;
1747 }
1748
1749 if (state->start > end)
1750 break;
1751
1752 if (state->state & bits) {
1753 bitset = 1;
1754 if (!filled)
1755 break;
1756 } else if (filled) {
1757 bitset = 0;
1758 break;
1759 }
Chris Mason46562ce2009-09-23 20:23:16 -04001760
1761 if (state->end == (u64)-1)
1762 break;
1763
Chris Masond1310b22008-01-24 16:13:08 -05001764 start = state->end + 1;
1765 if (start > end)
1766 break;
1767 node = rb_next(node);
1768 if (!node) {
1769 if (filled)
1770 bitset = 0;
1771 break;
1772 }
1773 }
Chris Masoncad321a2008-12-17 14:51:42 -05001774 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001775 return bitset;
1776}
Chris Masond1310b22008-01-24 16:13:08 -05001777
1778/*
1779 * helper function to set a given page up to date if all the
1780 * extents in the tree for that page are up to date
1781 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001782static void check_page_uptodate(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001783{
1784 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1785 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001786 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001787 SetPageUptodate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001788}
1789
1790/*
1791 * helper function to unlock a page if all the extents in the tree
1792 * for that page are unlocked
1793 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001794static void check_page_locked(struct extent_io_tree *tree, struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001795{
1796 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1797 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001798 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001799 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05001800}
1801
1802/*
1803 * helper function to end page writeback if all the extents
1804 * in the tree for that page are done with writeback
1805 */
Jeff Mahoney143bede2012-03-01 14:56:26 +01001806static void check_page_writeback(struct extent_io_tree *tree,
1807 struct page *page)
Chris Masond1310b22008-01-24 16:13:08 -05001808{
Chris Mason1edbb732009-09-02 13:24:36 -04001809 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001810}
1811
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001812/*
1813 * When IO fails, either with EIO or csum verification fails, we
1814 * try other mirrors that might have a good copy of the data. This
1815 * io_failure_record is used to record state as we go through all the
1816 * mirrors. If another mirror has good data, the page is set up to date
1817 * and things continue. If a good mirror can't be found, the original
1818 * bio end_io callback is called to indicate things have failed.
1819 */
1820struct io_failure_record {
1821 struct page *page;
1822 u64 start;
1823 u64 len;
1824 u64 logical;
1825 unsigned long bio_flags;
1826 int this_mirror;
1827 int failed_mirror;
1828 int in_validation;
1829};
1830
1831static int free_io_failure(struct inode *inode, struct io_failure_record *rec,
1832 int did_repair)
1833{
1834 int ret;
1835 int err = 0;
1836 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
1837
1838 set_state_private(failure_tree, rec->start, 0);
1839 ret = clear_extent_bits(failure_tree, rec->start,
1840 rec->start + rec->len - 1,
1841 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1842 if (ret)
1843 err = ret;
1844
1845 if (did_repair) {
1846 ret = clear_extent_bits(&BTRFS_I(inode)->io_tree, rec->start,
1847 rec->start + rec->len - 1,
1848 EXTENT_DAMAGED, GFP_NOFS);
1849 if (ret && !err)
1850 err = ret;
1851 }
1852
1853 kfree(rec);
1854 return err;
1855}
1856
1857static void repair_io_failure_callback(struct bio *bio, int err)
1858{
1859 complete(bio->bi_private);
1860}
1861
1862/*
1863 * this bypasses the standard btrfs submit functions deliberately, as
1864 * the standard behavior is to write all copies in a raid setup. here we only
1865 * want to write the one bad copy. so we do the mapping for ourselves and issue
1866 * submit_bio directly.
1867 * to avoid any synchonization issues, wait for the data after writing, which
1868 * actually prevents the read that triggered the error from finishing.
1869 * currently, there can be no more than two copies of every data bit. thus,
1870 * exactly one rewrite is required.
1871 */
1872int repair_io_failure(struct btrfs_mapping_tree *map_tree, u64 start,
1873 u64 length, u64 logical, struct page *page,
1874 int mirror_num)
1875{
1876 struct bio *bio;
1877 struct btrfs_device *dev;
1878 DECLARE_COMPLETION_ONSTACK(compl);
1879 u64 map_length = 0;
1880 u64 sector;
1881 struct btrfs_bio *bbio = NULL;
1882 int ret;
1883
1884 BUG_ON(!mirror_num);
1885
1886 bio = bio_alloc(GFP_NOFS, 1);
1887 if (!bio)
1888 return -EIO;
1889 bio->bi_private = &compl;
1890 bio->bi_end_io = repair_io_failure_callback;
1891 bio->bi_size = 0;
1892 map_length = length;
1893
1894 ret = btrfs_map_block(map_tree, WRITE, logical,
1895 &map_length, &bbio, mirror_num);
1896 if (ret) {
1897 bio_put(bio);
1898 return -EIO;
1899 }
1900 BUG_ON(mirror_num != bbio->mirror_num);
1901 sector = bbio->stripes[mirror_num-1].physical >> 9;
1902 bio->bi_sector = sector;
1903 dev = bbio->stripes[mirror_num-1].dev;
1904 kfree(bbio);
1905 if (!dev || !dev->bdev || !dev->writeable) {
1906 bio_put(bio);
1907 return -EIO;
1908 }
1909 bio->bi_bdev = dev->bdev;
1910 bio_add_page(bio, page, length, start-page_offset(page));
Stefan Behrens21adbd52011-11-09 13:44:05 +01001911 btrfsic_submit_bio(WRITE_SYNC, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001912 wait_for_completion(&compl);
1913
1914 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
1915 /* try to remap that extent elsewhere? */
1916 bio_put(bio);
Stefan Behrens442a4f62012-05-25 16:06:08 +02001917 btrfs_dev_stat_inc_and_print(dev, BTRFS_DEV_STAT_WRITE_ERRS);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001918 return -EIO;
1919 }
1920
Anand Jaind5b025d2012-07-02 22:05:21 -06001921 printk_ratelimited_in_rcu(KERN_INFO "btrfs read error corrected: ino %lu off %llu "
Josef Bacik606686e2012-06-04 14:03:51 -04001922 "(dev %s sector %llu)\n", page->mapping->host->i_ino,
1923 start, rcu_str_deref(dev->name), sector);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001924
1925 bio_put(bio);
1926 return 0;
1927}
1928
Josef Bacikea466792012-03-26 21:57:36 -04001929int repair_eb_io_failure(struct btrfs_root *root, struct extent_buffer *eb,
1930 int mirror_num)
1931{
1932 struct btrfs_mapping_tree *map_tree = &root->fs_info->mapping_tree;
1933 u64 start = eb->start;
1934 unsigned long i, num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond95603b2012-04-12 15:55:15 -04001935 int ret = 0;
Josef Bacikea466792012-03-26 21:57:36 -04001936
1937 for (i = 0; i < num_pages; i++) {
1938 struct page *p = extent_buffer_page(eb, i);
1939 ret = repair_io_failure(map_tree, start, PAGE_CACHE_SIZE,
1940 start, p, mirror_num);
1941 if (ret)
1942 break;
1943 start += PAGE_CACHE_SIZE;
1944 }
1945
1946 return ret;
1947}
1948
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02001949/*
1950 * each time an IO finishes, we do a fast check in the IO failure tree
1951 * to see if we need to process or clean up an io_failure_record
1952 */
1953static int clean_io_failure(u64 start, struct page *page)
1954{
1955 u64 private;
1956 u64 private_failure;
1957 struct io_failure_record *failrec;
1958 struct btrfs_mapping_tree *map_tree;
1959 struct extent_state *state;
1960 int num_copies;
1961 int did_repair = 0;
1962 int ret;
1963 struct inode *inode = page->mapping->host;
1964
1965 private = 0;
1966 ret = count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1967 (u64)-1, 1, EXTENT_DIRTY, 0);
1968 if (!ret)
1969 return 0;
1970
1971 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree, start,
1972 &private_failure);
1973 if (ret)
1974 return 0;
1975
1976 failrec = (struct io_failure_record *)(unsigned long) private_failure;
1977 BUG_ON(!failrec->this_mirror);
1978
1979 if (failrec->in_validation) {
1980 /* there was no real error, just free the record */
1981 pr_debug("clean_io_failure: freeing dummy error at %llu\n",
1982 failrec->start);
1983 did_repair = 1;
1984 goto out;
1985 }
1986
1987 spin_lock(&BTRFS_I(inode)->io_tree.lock);
1988 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1989 failrec->start,
1990 EXTENT_LOCKED);
1991 spin_unlock(&BTRFS_I(inode)->io_tree.lock);
1992
1993 if (state && state->start == failrec->start) {
1994 map_tree = &BTRFS_I(inode)->root->fs_info->mapping_tree;
1995 num_copies = btrfs_num_copies(map_tree, failrec->logical,
1996 failrec->len);
1997 if (num_copies > 1) {
1998 ret = repair_io_failure(map_tree, start, failrec->len,
1999 failrec->logical, page,
2000 failrec->failed_mirror);
2001 did_repair = !ret;
2002 }
2003 }
2004
2005out:
2006 if (!ret)
2007 ret = free_io_failure(inode, failrec, did_repair);
2008
2009 return ret;
2010}
2011
2012/*
2013 * this is a generic handler for readpage errors (default
2014 * readpage_io_failed_hook). if other copies exist, read those and write back
2015 * good data to the failed position. does not investigate in remapping the
2016 * failed extent elsewhere, hoping the device will be smart enough to do this as
2017 * needed
2018 */
2019
2020static int bio_readpage_error(struct bio *failed_bio, struct page *page,
2021 u64 start, u64 end, int failed_mirror,
2022 struct extent_state *state)
2023{
2024 struct io_failure_record *failrec = NULL;
2025 u64 private;
2026 struct extent_map *em;
2027 struct inode *inode = page->mapping->host;
2028 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
2029 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2030 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2031 struct bio *bio;
2032 int num_copies;
2033 int ret;
2034 int read_mode;
2035 u64 logical;
2036
2037 BUG_ON(failed_bio->bi_rw & REQ_WRITE);
2038
2039 ret = get_state_private(failure_tree, start, &private);
2040 if (ret) {
2041 failrec = kzalloc(sizeof(*failrec), GFP_NOFS);
2042 if (!failrec)
2043 return -ENOMEM;
2044 failrec->start = start;
2045 failrec->len = end - start + 1;
2046 failrec->this_mirror = 0;
2047 failrec->bio_flags = 0;
2048 failrec->in_validation = 0;
2049
2050 read_lock(&em_tree->lock);
2051 em = lookup_extent_mapping(em_tree, start, failrec->len);
2052 if (!em) {
2053 read_unlock(&em_tree->lock);
2054 kfree(failrec);
2055 return -EIO;
2056 }
2057
2058 if (em->start > start || em->start + em->len < start) {
2059 free_extent_map(em);
2060 em = NULL;
2061 }
2062 read_unlock(&em_tree->lock);
2063
2064 if (!em || IS_ERR(em)) {
2065 kfree(failrec);
2066 return -EIO;
2067 }
2068 logical = start - em->start;
2069 logical = em->block_start + logical;
2070 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
2071 logical = em->block_start;
2072 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
2073 extent_set_compress_type(&failrec->bio_flags,
2074 em->compress_type);
2075 }
2076 pr_debug("bio_readpage_error: (new) logical=%llu, start=%llu, "
2077 "len=%llu\n", logical, start, failrec->len);
2078 failrec->logical = logical;
2079 free_extent_map(em);
2080
2081 /* set the bits in the private failure tree */
2082 ret = set_extent_bits(failure_tree, start, end,
2083 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
2084 if (ret >= 0)
2085 ret = set_state_private(failure_tree, start,
2086 (u64)(unsigned long)failrec);
2087 /* set the bits in the inode's tree */
2088 if (ret >= 0)
2089 ret = set_extent_bits(tree, start, end, EXTENT_DAMAGED,
2090 GFP_NOFS);
2091 if (ret < 0) {
2092 kfree(failrec);
2093 return ret;
2094 }
2095 } else {
2096 failrec = (struct io_failure_record *)(unsigned long)private;
2097 pr_debug("bio_readpage_error: (found) logical=%llu, "
2098 "start=%llu, len=%llu, validation=%d\n",
2099 failrec->logical, failrec->start, failrec->len,
2100 failrec->in_validation);
2101 /*
2102 * when data can be on disk more than twice, add to failrec here
2103 * (e.g. with a list for failed_mirror) to make
2104 * clean_io_failure() clean all those errors at once.
2105 */
2106 }
2107 num_copies = btrfs_num_copies(
2108 &BTRFS_I(inode)->root->fs_info->mapping_tree,
2109 failrec->logical, failrec->len);
2110 if (num_copies == 1) {
2111 /*
2112 * we only have a single copy of the data, so don't bother with
2113 * all the retry and error correction code that follows. no
2114 * matter what the error is, it is very likely to persist.
2115 */
2116 pr_debug("bio_readpage_error: cannot repair, num_copies == 1. "
2117 "state=%p, num_copies=%d, next_mirror %d, "
2118 "failed_mirror %d\n", state, num_copies,
2119 failrec->this_mirror, failed_mirror);
2120 free_io_failure(inode, failrec, 0);
2121 return -EIO;
2122 }
2123
2124 if (!state) {
2125 spin_lock(&tree->lock);
2126 state = find_first_extent_bit_state(tree, failrec->start,
2127 EXTENT_LOCKED);
2128 if (state && state->start != failrec->start)
2129 state = NULL;
2130 spin_unlock(&tree->lock);
2131 }
2132
2133 /*
2134 * there are two premises:
2135 * a) deliver good data to the caller
2136 * b) correct the bad sectors on disk
2137 */
2138 if (failed_bio->bi_vcnt > 1) {
2139 /*
2140 * to fulfill b), we need to know the exact failing sectors, as
2141 * we don't want to rewrite any more than the failed ones. thus,
2142 * we need separate read requests for the failed bio
2143 *
2144 * if the following BUG_ON triggers, our validation request got
2145 * merged. we need separate requests for our algorithm to work.
2146 */
2147 BUG_ON(failrec->in_validation);
2148 failrec->in_validation = 1;
2149 failrec->this_mirror = failed_mirror;
2150 read_mode = READ_SYNC | REQ_FAILFAST_DEV;
2151 } else {
2152 /*
2153 * we're ready to fulfill a) and b) alongside. get a good copy
2154 * of the failed sector and if we succeed, we have setup
2155 * everything for repair_io_failure to do the rest for us.
2156 */
2157 if (failrec->in_validation) {
2158 BUG_ON(failrec->this_mirror != failed_mirror);
2159 failrec->in_validation = 0;
2160 failrec->this_mirror = 0;
2161 }
2162 failrec->failed_mirror = failed_mirror;
2163 failrec->this_mirror++;
2164 if (failrec->this_mirror == failed_mirror)
2165 failrec->this_mirror++;
2166 read_mode = READ_SYNC;
2167 }
2168
2169 if (!state || failrec->this_mirror > num_copies) {
2170 pr_debug("bio_readpage_error: (fail) state=%p, num_copies=%d, "
2171 "next_mirror %d, failed_mirror %d\n", state,
2172 num_copies, failrec->this_mirror, failed_mirror);
2173 free_io_failure(inode, failrec, 0);
2174 return -EIO;
2175 }
2176
2177 bio = bio_alloc(GFP_NOFS, 1);
Tsutomu Itohe627ee72012-04-12 16:03:56 -04002178 if (!bio) {
2179 free_io_failure(inode, failrec, 0);
2180 return -EIO;
2181 }
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002182 bio->bi_private = state;
2183 bio->bi_end_io = failed_bio->bi_end_io;
2184 bio->bi_sector = failrec->logical >> 9;
2185 bio->bi_bdev = BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev;
2186 bio->bi_size = 0;
2187
2188 bio_add_page(bio, page, failrec->len, start - page_offset(page));
2189
2190 pr_debug("bio_readpage_error: submitting new read[%#x] to "
2191 "this_mirror=%d, num_copies=%d, in_validation=%d\n", read_mode,
2192 failrec->this_mirror, num_copies, failrec->in_validation);
2193
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002194 ret = tree->ops->submit_bio_hook(inode, read_mode, bio,
2195 failrec->this_mirror,
2196 failrec->bio_flags, 0);
2197 return ret;
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002198}
2199
Chris Masond1310b22008-01-24 16:13:08 -05002200/* lots and lots of room for performance fixes in the end_bio funcs */
2201
Jeff Mahoney87826df2012-02-15 16:23:57 +01002202int end_extent_writepage(struct page *page, int err, u64 start, u64 end)
2203{
2204 int uptodate = (err == 0);
2205 struct extent_io_tree *tree;
2206 int ret;
2207
2208 tree = &BTRFS_I(page->mapping->host)->io_tree;
2209
2210 if (tree->ops && tree->ops->writepage_end_io_hook) {
2211 ret = tree->ops->writepage_end_io_hook(page, start,
2212 end, NULL, uptodate);
2213 if (ret)
2214 uptodate = 0;
2215 }
2216
Jeff Mahoney87826df2012-02-15 16:23:57 +01002217 if (!uptodate) {
Jeff Mahoney87826df2012-02-15 16:23:57 +01002218 ClearPageUptodate(page);
2219 SetPageError(page);
2220 }
2221 return 0;
2222}
2223
Chris Masond1310b22008-01-24 16:13:08 -05002224/*
2225 * after a writepage IO is done, we need to:
2226 * clear the uptodate bits on error
2227 * clear the writeback bits in the extent tree for this IO
2228 * end_page_writeback if the page has no more pending IO
2229 *
2230 * Scheduling is not allowed, so the extent state tree is expected
2231 * to have one and only one object corresponding to this IO.
2232 */
Chris Masond1310b22008-01-24 16:13:08 -05002233static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002234{
Chris Masond1310b22008-01-24 16:13:08 -05002235 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04002236 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002237 u64 start;
2238 u64 end;
2239 int whole_page;
2240
Chris Masond1310b22008-01-24 16:13:08 -05002241 do {
2242 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04002243 tree = &BTRFS_I(page->mapping->host)->io_tree;
2244
Chris Masond1310b22008-01-24 16:13:08 -05002245 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
2246 bvec->bv_offset;
2247 end = start + bvec->bv_len - 1;
2248
2249 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
2250 whole_page = 1;
2251 else
2252 whole_page = 0;
2253
2254 if (--bvec >= bio->bi_io_vec)
2255 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04002256
Jeff Mahoney87826df2012-02-15 16:23:57 +01002257 if (end_extent_writepage(page, err, start, end))
2258 continue;
Chris Mason70dec802008-01-29 09:59:12 -05002259
Chris Masond1310b22008-01-24 16:13:08 -05002260 if (whole_page)
2261 end_page_writeback(page);
2262 else
2263 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002264 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04002265
Chris Masond1310b22008-01-24 16:13:08 -05002266 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002267}
2268
2269/*
2270 * after a readpage IO is done, we need to:
2271 * clear the uptodate bits on error
2272 * set the uptodate bits if things worked
2273 * set the page up to date if all extents in the tree are uptodate
2274 * clear the lock bit in the extent tree
2275 * unlock the page if there are no other extents locked for it
2276 *
2277 * Scheduling is not allowed, so the extent state tree is expected
2278 * to have one and only one object corresponding to this IO.
2279 */
Chris Masond1310b22008-01-24 16:13:08 -05002280static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05002281{
2282 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00002283 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
2284 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04002285 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05002286 u64 start;
2287 u64 end;
2288 int whole_page;
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002289 int mirror;
Chris Masond1310b22008-01-24 16:13:08 -05002290 int ret;
2291
Chris Masond20f7042008-12-08 16:58:54 -05002292 if (err)
2293 uptodate = 0;
2294
Chris Masond1310b22008-01-24 16:13:08 -05002295 do {
2296 struct page *page = bvec->bv_page;
Arne Jansen507903b2011-04-06 10:02:20 +00002297 struct extent_state *cached = NULL;
2298 struct extent_state *state;
2299
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002300 pr_debug("end_bio_extent_readpage: bi_vcnt=%d, idx=%d, err=%d, "
2301 "mirror=%ld\n", bio->bi_vcnt, bio->bi_idx, err,
2302 (long int)bio->bi_bdev);
David Woodhouse902b22f2008-08-20 08:51:49 -04002303 tree = &BTRFS_I(page->mapping->host)->io_tree;
2304
Chris Masond1310b22008-01-24 16:13:08 -05002305 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
2306 bvec->bv_offset;
2307 end = start + bvec->bv_len - 1;
2308
2309 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
2310 whole_page = 1;
2311 else
2312 whole_page = 0;
2313
Chris Mason4125bf72010-02-03 18:18:45 +00002314 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05002315 prefetchw(&bvec->bv_page->flags);
2316
Arne Jansen507903b2011-04-06 10:02:20 +00002317 spin_lock(&tree->lock);
Chris Mason0d399202011-04-16 06:55:39 -04002318 state = find_first_extent_bit_state(tree, start, EXTENT_LOCKED);
Chris Mason109b36a2011-04-12 13:57:39 -04002319 if (state && state->start == start) {
Arne Jansen507903b2011-04-06 10:02:20 +00002320 /*
2321 * take a reference on the state, unlock will drop
2322 * the ref
2323 */
2324 cache_state(state, &cached);
2325 }
2326 spin_unlock(&tree->lock);
2327
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002328 mirror = (int)(unsigned long)bio->bi_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002329 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05002330 ret = tree->ops->readpage_end_io_hook(page, start, end,
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002331 state, mirror);
Stefan Behrens5ee08442012-08-27 08:30:03 -06002332 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002333 uptodate = 0;
Stefan Behrens5ee08442012-08-27 08:30:03 -06002334 else
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002335 clean_io_failure(start, page);
Chris Masond1310b22008-01-24 16:13:08 -05002336 }
Josef Bacikea466792012-03-26 21:57:36 -04002337
Josef Bacikea466792012-03-26 21:57:36 -04002338 if (!uptodate && tree->ops && tree->ops->readpage_io_failed_hook) {
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002339 ret = tree->ops->readpage_io_failed_hook(page, mirror);
Josef Bacikea466792012-03-26 21:57:36 -04002340 if (!ret && !err &&
2341 test_bit(BIO_UPTODATE, &bio->bi_flags))
2342 uptodate = 1;
2343 } else if (!uptodate) {
Jan Schmidtf4a8e652011-12-01 09:30:36 -05002344 /*
2345 * The generic bio_readpage_error handles errors the
2346 * following way: If possible, new read requests are
2347 * created and submitted and will end up in
2348 * end_bio_extent_readpage as well (if we're lucky, not
2349 * in the !uptodate case). In that case it returns 0 and
2350 * we just go on with the next page in our bio. If it
2351 * can't handle the error it will return -EIO and we
2352 * remain responsible for that page.
2353 */
Josef Bacik5cf1ab52012-04-16 09:42:26 -04002354 ret = bio_readpage_error(bio, page, start, end, mirror, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04002355 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04002356 uptodate =
2357 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05002358 if (err)
2359 uptodate = 0;
Arne Jansen507903b2011-04-06 10:02:20 +00002360 uncache_state(&cached);
Chris Mason7e383262008-04-09 16:28:12 -04002361 continue;
2362 }
2363 }
Chris Mason70dec802008-01-29 09:59:12 -05002364
Josef Bacik0b32f4b2012-03-13 09:38:00 -04002365 if (uptodate && tree->track_uptodate) {
Arne Jansen507903b2011-04-06 10:02:20 +00002366 set_extent_uptodate(tree, start, end, &cached,
David Woodhouse902b22f2008-08-20 08:51:49 -04002367 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05002368 }
Arne Jansen507903b2011-04-06 10:02:20 +00002369 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05002370
Chris Mason70dec802008-01-29 09:59:12 -05002371 if (whole_page) {
2372 if (uptodate) {
2373 SetPageUptodate(page);
2374 } else {
2375 ClearPageUptodate(page);
2376 SetPageError(page);
2377 }
Chris Masond1310b22008-01-24 16:13:08 -05002378 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05002379 } else {
2380 if (uptodate) {
2381 check_page_uptodate(tree, page);
2382 } else {
2383 ClearPageUptodate(page);
2384 SetPageError(page);
2385 }
Chris Masond1310b22008-01-24 16:13:08 -05002386 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05002387 }
Chris Mason4125bf72010-02-03 18:18:45 +00002388 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05002389
2390 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05002391}
2392
Miao Xie88f794e2010-11-22 03:02:55 +00002393struct bio *
2394btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
2395 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002396{
2397 struct bio *bio;
2398
2399 bio = bio_alloc(gfp_flags, nr_vecs);
2400
2401 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
2402 while (!bio && (nr_vecs /= 2))
2403 bio = bio_alloc(gfp_flags, nr_vecs);
2404 }
2405
2406 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04002407 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002408 bio->bi_bdev = bdev;
2409 bio->bi_sector = first_sector;
2410 }
2411 return bio;
2412}
2413
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002414/*
2415 * Since writes are async, they will only return -ENOMEM.
2416 * Reads can return the full range of I/O error conditions.
2417 */
Jeff Mahoney355808c2011-10-03 23:23:14 -04002418static int __must_check submit_one_bio(int rw, struct bio *bio,
2419 int mirror_num, unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002420{
Chris Masond1310b22008-01-24 16:13:08 -05002421 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05002422 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
2423 struct page *page = bvec->bv_page;
2424 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05002425 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05002426
2427 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002428
David Woodhouse902b22f2008-08-20 08:51:49 -04002429 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002430
2431 bio_get(bio);
2432
Chris Mason065631f2008-02-20 12:07:25 -05002433 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00002434 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04002435 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04002436 else
Stefan Behrens21adbd52011-11-09 13:44:05 +01002437 btrfsic_submit_bio(rw, bio);
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02002438
Chris Masond1310b22008-01-24 16:13:08 -05002439 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2440 ret = -EOPNOTSUPP;
2441 bio_put(bio);
2442 return ret;
2443}
2444
Jeff Mahoney3444a972011-10-03 23:23:13 -04002445static int merge_bio(struct extent_io_tree *tree, struct page *page,
2446 unsigned long offset, size_t size, struct bio *bio,
2447 unsigned long bio_flags)
2448{
2449 int ret = 0;
2450 if (tree->ops && tree->ops->merge_bio_hook)
2451 ret = tree->ops->merge_bio_hook(page, offset, size, bio,
2452 bio_flags);
2453 BUG_ON(ret < 0);
2454 return ret;
2455
2456}
2457
Chris Masond1310b22008-01-24 16:13:08 -05002458static int submit_extent_page(int rw, struct extent_io_tree *tree,
2459 struct page *page, sector_t sector,
2460 size_t size, unsigned long offset,
2461 struct block_device *bdev,
2462 struct bio **bio_ret,
2463 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04002464 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04002465 int mirror_num,
2466 unsigned long prev_bio_flags,
2467 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002468{
2469 int ret = 0;
2470 struct bio *bio;
2471 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04002472 int contig = 0;
2473 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
2474 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05002475 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05002476
2477 if (bio_ret && *bio_ret) {
2478 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04002479 if (old_compressed)
2480 contig = bio->bi_sector == sector;
2481 else
2482 contig = bio->bi_sector + (bio->bi_size >> 9) ==
2483 sector;
2484
2485 if (prev_bio_flags != bio_flags || !contig ||
Jeff Mahoney3444a972011-10-03 23:23:13 -04002486 merge_bio(tree, page, offset, page_size, bio, bio_flags) ||
Chris Masonc8b97812008-10-29 14:49:59 -04002487 bio_add_page(bio, page, page_size, offset) < page_size) {
2488 ret = submit_one_bio(rw, bio, mirror_num,
2489 prev_bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002490 if (ret < 0)
2491 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05002492 bio = NULL;
2493 } else {
2494 return 0;
2495 }
2496 }
Chris Masonc8b97812008-10-29 14:49:59 -04002497 if (this_compressed)
2498 nr = BIO_MAX_PAGES;
2499 else
2500 nr = bio_get_nr_vecs(bdev);
2501
Miao Xie88f794e2010-11-22 03:02:55 +00002502 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00002503 if (!bio)
2504 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05002505
Chris Masonc8b97812008-10-29 14:49:59 -04002506 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05002507 bio->bi_end_io = end_io_func;
2508 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05002509
Chris Masond3977122009-01-05 21:25:51 -05002510 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05002511 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05002512 else
Chris Masonc8b97812008-10-29 14:49:59 -04002513 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002514
2515 return ret;
2516}
2517
Josef Bacik4f2de97a2012-03-07 16:20:05 -05002518void attach_extent_buffer_page(struct extent_buffer *eb, struct page *page)
2519{
2520 if (!PagePrivate(page)) {
2521 SetPagePrivate(page);
2522 page_cache_get(page);
2523 set_page_private(page, (unsigned long)eb);
2524 } else {
2525 WARN_ON(page->private != (unsigned long)eb);
2526 }
2527}
2528
Chris Masond1310b22008-01-24 16:13:08 -05002529void set_page_extent_mapped(struct page *page)
2530{
2531 if (!PagePrivate(page)) {
2532 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05002533 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04002534 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05002535 }
2536}
2537
Chris Masond1310b22008-01-24 16:13:08 -05002538/*
2539 * basic readpage implementation. Locked extent state structs are inserted
2540 * into the tree that are removed when the IO is done (by the end_io
2541 * handlers)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002542 * XXX JDM: This needs looking at to ensure proper page locking
Chris Masond1310b22008-01-24 16:13:08 -05002543 */
2544static int __extent_read_full_page(struct extent_io_tree *tree,
2545 struct page *page,
2546 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002547 struct bio **bio, int mirror_num,
2548 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002549{
2550 struct inode *inode = page->mapping->host;
2551 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2552 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2553 u64 end;
2554 u64 cur = start;
2555 u64 extent_offset;
2556 u64 last_byte = i_size_read(inode);
2557 u64 block_start;
2558 u64 cur_end;
2559 sector_t sector;
2560 struct extent_map *em;
2561 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002562 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05002563 int ret;
2564 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02002565 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002566 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002567 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002568 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04002569 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002570
2571 set_page_extent_mapped(page);
2572
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002573 if (!PageUptodate(page)) {
2574 if (cleancache_get_page(page) == 0) {
2575 BUG_ON(blocksize != PAGE_SIZE);
2576 goto out;
2577 }
2578 }
2579
Chris Masond1310b22008-01-24 16:13:08 -05002580 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04002581 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002582 lock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002583 ordered = btrfs_lookup_ordered_extent(inode, start);
2584 if (!ordered)
2585 break;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002586 unlock_extent(tree, start, end);
Josef Bacik11c65dc2010-05-23 11:07:21 -04002587 btrfs_start_ordered_extent(inode, ordered, 1);
2588 btrfs_put_ordered_extent(ordered);
2589 }
Chris Masond1310b22008-01-24 16:13:08 -05002590
Chris Masonc8b97812008-10-29 14:49:59 -04002591 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2592 char *userpage;
2593 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2594
2595 if (zero_offset) {
2596 iosize = PAGE_CACHE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002597 userpage = kmap_atomic(page);
Chris Masonc8b97812008-10-29 14:49:59 -04002598 memset(userpage + zero_offset, 0, iosize);
2599 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002600 kunmap_atomic(userpage);
Chris Masonc8b97812008-10-29 14:49:59 -04002601 }
2602 }
Chris Masond1310b22008-01-24 16:13:08 -05002603 while (cur <= end) {
2604 if (cur >= last_byte) {
2605 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002606 struct extent_state *cached = NULL;
2607
David Sterba306e16c2011-04-19 14:29:38 +02002608 iosize = PAGE_CACHE_SIZE - pg_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +08002609 userpage = kmap_atomic(page);
David Sterba306e16c2011-04-19 14:29:38 +02002610 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002611 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +08002612 kunmap_atomic(userpage);
Chris Masond1310b22008-01-24 16:13:08 -05002613 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002614 &cached, GFP_NOFS);
2615 unlock_extent_cached(tree, cur, cur + iosize - 1,
2616 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002617 break;
2618 }
David Sterba306e16c2011-04-19 14:29:38 +02002619 em = get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002620 end - cur + 1, 0);
David Sterbac7040052011-04-19 18:00:01 +02002621 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002622 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002623 unlock_extent(tree, cur, end);
Chris Masond1310b22008-01-24 16:13:08 -05002624 break;
2625 }
Chris Masond1310b22008-01-24 16:13:08 -05002626 extent_offset = cur - em->start;
2627 BUG_ON(extent_map_end(em) <= cur);
2628 BUG_ON(end < cur);
2629
Li Zefan261507a02010-12-17 14:21:50 +08002630 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002631 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002632 extent_set_compress_type(&this_bio_flag,
2633 em->compress_type);
2634 }
Chris Masonc8b97812008-10-29 14:49:59 -04002635
Chris Masond1310b22008-01-24 16:13:08 -05002636 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2637 cur_end = min(extent_map_end(em) - 1, end);
2638 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002639 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2640 disk_io_size = em->block_len;
2641 sector = em->block_start >> 9;
2642 } else {
2643 sector = (em->block_start + extent_offset) >> 9;
2644 disk_io_size = iosize;
2645 }
Chris Masond1310b22008-01-24 16:13:08 -05002646 bdev = em->bdev;
2647 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002648 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2649 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002650 free_extent_map(em);
2651 em = NULL;
2652
2653 /* we've found a hole, just zero and go on */
2654 if (block_start == EXTENT_MAP_HOLE) {
2655 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002656 struct extent_state *cached = NULL;
2657
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
2663 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002664 &cached, GFP_NOFS);
2665 unlock_extent_cached(tree, cur, cur + iosize - 1,
2666 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002667 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002668 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002669 continue;
2670 }
2671 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002672 if (test_range_bit(tree, cur, cur_end,
2673 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002674 check_page_uptodate(tree, page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002675 unlock_extent(tree, cur, cur + iosize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002676 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002677 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002678 continue;
2679 }
Chris Mason70dec802008-01-29 09:59:12 -05002680 /* we have an inline extent but it didn't get marked up
2681 * to date. Error out
2682 */
2683 if (block_start == EXTENT_MAP_INLINE) {
2684 SetPageError(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002685 unlock_extent(tree, cur, cur + iosize - 1);
Chris Mason70dec802008-01-29 09:59:12 -05002686 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002687 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002688 continue;
2689 }
Chris Masond1310b22008-01-24 16:13:08 -05002690
2691 ret = 0;
2692 if (tree->ops && tree->ops->readpage_io_hook) {
2693 ret = tree->ops->readpage_io_hook(page, cur,
2694 cur + iosize - 1);
2695 }
2696 if (!ret) {
Chris Mason89642222008-07-24 09:41:53 -04002697 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2698 pnr -= page->index;
Chris Masond1310b22008-01-24 16:13:08 -05002699 ret = submit_extent_page(READ, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002700 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002701 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002702 end_bio_extent_readpage, mirror_num,
2703 *bio_flags,
2704 this_bio_flag);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002705 BUG_ON(ret == -ENOMEM);
Chris Mason89642222008-07-24 09:41:53 -04002706 nr++;
Chris Masonc8b97812008-10-29 14:49:59 -04002707 *bio_flags = this_bio_flag;
Chris Masond1310b22008-01-24 16:13:08 -05002708 }
2709 if (ret)
2710 SetPageError(page);
2711 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002712 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002713 }
Dan Magenheimer90a887c2011-05-26 10:01:56 -06002714out:
Chris Masond1310b22008-01-24 16:13:08 -05002715 if (!nr) {
2716 if (!PageError(page))
2717 SetPageUptodate(page);
2718 unlock_page(page);
2719 }
2720 return 0;
2721}
2722
2723int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002724 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05002725{
2726 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002727 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002728 int ret;
2729
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002730 ret = __extent_read_full_page(tree, page, get_extent, &bio, mirror_num,
Chris Masonc8b97812008-10-29 14:49:59 -04002731 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002732 if (bio)
Jan Schmidt8ddc7d92011-06-13 20:02:58 +02002733 ret = submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002734 return ret;
2735}
Chris Masond1310b22008-01-24 16:13:08 -05002736
Chris Mason11c83492009-04-20 15:50:09 -04002737static noinline void update_nr_written(struct page *page,
2738 struct writeback_control *wbc,
2739 unsigned long nr_written)
2740{
2741 wbc->nr_to_write -= nr_written;
2742 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2743 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2744 page->mapping->writeback_index = page->index + nr_written;
2745}
2746
Chris Masond1310b22008-01-24 16:13:08 -05002747/*
2748 * the writepage semantics are similar to regular writepage. extent
2749 * records are inserted to lock ranges in the tree, and as dirty areas
2750 * are found, they are marked writeback. Then the lock bits are removed
2751 * and the end_io handler clears the writeback ranges
2752 */
2753static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2754 void *data)
2755{
2756 struct inode *inode = page->mapping->host;
2757 struct extent_page_data *epd = data;
2758 struct extent_io_tree *tree = epd->tree;
2759 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2760 u64 delalloc_start;
2761 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2762 u64 end;
2763 u64 cur = start;
2764 u64 extent_offset;
2765 u64 last_byte = i_size_read(inode);
2766 u64 block_start;
2767 u64 iosize;
2768 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002769 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002770 struct extent_map *em;
2771 struct block_device *bdev;
2772 int ret;
2773 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002774 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002775 size_t blocksize;
2776 loff_t i_size = i_size_read(inode);
2777 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2778 u64 nr_delalloc;
2779 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002780 int page_started;
2781 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002782 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002783 unsigned long nr_written = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002784 bool fill_delalloc = true;
Chris Masond1310b22008-01-24 16:13:08 -05002785
Chris Masonffbd5172009-04-20 15:50:09 -04002786 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01002787 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04002788 else
2789 write_flags = WRITE;
2790
liubo1abe9b82011-03-24 11:18:59 +00002791 trace___extent_writepage(page, inode, wbc);
2792
Chris Masond1310b22008-01-24 16:13:08 -05002793 WARN_ON(!PageLocked(page));
Chris Masonbf0da8c2011-11-04 12:29:37 -04002794
2795 ClearPageError(page);
2796
Chris Mason7f3c74f2008-07-18 12:01:11 -04002797 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002798 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002799 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002800 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002801 unlock_page(page);
2802 return 0;
2803 }
2804
2805 if (page->index == end_index) {
2806 char *userpage;
2807
Cong Wang7ac687d2011-11-25 23:14:28 +08002808 userpage = kmap_atomic(page);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002809 memset(userpage + pg_offset, 0,
2810 PAGE_CACHE_SIZE - pg_offset);
Cong Wang7ac687d2011-11-25 23:14:28 +08002811 kunmap_atomic(userpage);
Chris Mason211c17f2008-05-15 09:13:45 -04002812 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002813 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002814 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002815
2816 set_page_extent_mapped(page);
2817
Josef Bacik9e487102011-08-01 12:08:18 -04002818 if (!tree->ops || !tree->ops->fill_delalloc)
2819 fill_delalloc = false;
2820
Chris Masond1310b22008-01-24 16:13:08 -05002821 delalloc_start = start;
2822 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002823 page_started = 0;
Josef Bacik9e487102011-08-01 12:08:18 -04002824 if (!epd->extent_locked && fill_delalloc) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002825 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002826 /*
2827 * make sure the wbc mapping index is at least updated
2828 * to this page.
2829 */
2830 update_nr_written(page, wbc, 0);
2831
Chris Masond3977122009-01-05 21:25:51 -05002832 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002833 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002834 page,
2835 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002836 &delalloc_end,
2837 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002838 if (nr_delalloc == 0) {
2839 delalloc_start = delalloc_end + 1;
2840 continue;
2841 }
Tsutomu Itoh013bd4c2012-02-16 10:11:40 +09002842 ret = tree->ops->fill_delalloc(inode, page,
2843 delalloc_start,
2844 delalloc_end,
2845 &page_started,
2846 &nr_written);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002847 /* File system has been set read-only */
2848 if (ret) {
2849 SetPageError(page);
2850 goto done;
2851 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002852 /*
2853 * delalloc_end is already one less than the total
2854 * length, so we don't subtract one from
2855 * PAGE_CACHE_SIZE
2856 */
2857 delalloc_to_write += (delalloc_end - delalloc_start +
2858 PAGE_CACHE_SIZE) >>
2859 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002860 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002861 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002862 if (wbc->nr_to_write < delalloc_to_write) {
2863 int thresh = 8192;
2864
2865 if (delalloc_to_write < thresh * 2)
2866 thresh = delalloc_to_write;
2867 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2868 thresh);
2869 }
Chris Masonc8b97812008-10-29 14:49:59 -04002870
Chris Mason771ed682008-11-06 22:02:51 -05002871 /* did the fill delalloc function already unlock and start
2872 * the IO?
2873 */
2874 if (page_started) {
2875 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002876 /*
2877 * we've unlocked the page, so we can't update
2878 * the mapping's writeback index, just update
2879 * nr_to_write.
2880 */
2881 wbc->nr_to_write -= nr_written;
2882 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002883 }
Chris Masonc8b97812008-10-29 14:49:59 -04002884 }
Chris Mason247e7432008-07-17 12:53:51 -04002885 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002886 ret = tree->ops->writepage_start_hook(page, start,
2887 page_end);
Jeff Mahoney87826df2012-02-15 16:23:57 +01002888 if (ret) {
2889 /* Fixup worker will requeue */
2890 if (ret == -EBUSY)
2891 wbc->pages_skipped++;
2892 else
2893 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002894 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002895 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002896 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002897 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002898 }
2899 }
2900
Chris Mason11c83492009-04-20 15:50:09 -04002901 /*
2902 * we don't want to touch the inode after unlocking the page,
2903 * so we update the mapping writeback index now
2904 */
2905 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002906
Chris Masond1310b22008-01-24 16:13:08 -05002907 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002908 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002909 if (tree->ops && tree->ops->writepage_end_io_hook)
2910 tree->ops->writepage_end_io_hook(page, start,
2911 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002912 goto done;
2913 }
2914
Chris Masond1310b22008-01-24 16:13:08 -05002915 blocksize = inode->i_sb->s_blocksize;
2916
2917 while (cur <= end) {
2918 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002919 if (tree->ops && tree->ops->writepage_end_io_hook)
2920 tree->ops->writepage_end_io_hook(page, cur,
2921 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002922 break;
2923 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002924 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002925 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02002926 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002927 SetPageError(page);
2928 break;
2929 }
2930
2931 extent_offset = cur - em->start;
2932 BUG_ON(extent_map_end(em) <= cur);
2933 BUG_ON(end < cur);
2934 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2935 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2936 sector = (em->block_start + extent_offset) >> 9;
2937 bdev = em->bdev;
2938 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002939 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002940 free_extent_map(em);
2941 em = NULL;
2942
Chris Masonc8b97812008-10-29 14:49:59 -04002943 /*
2944 * compressed and inline extents are written through other
2945 * paths in the FS
2946 */
2947 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002948 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002949 /*
2950 * end_io notification does not happen here for
2951 * compressed extents
2952 */
2953 if (!compressed && tree->ops &&
2954 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002955 tree->ops->writepage_end_io_hook(page, cur,
2956 cur + iosize - 1,
2957 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002958 else if (compressed) {
2959 /* we don't want to end_page_writeback on
2960 * a compressed extent. this happens
2961 * elsewhere
2962 */
2963 nr++;
2964 }
2965
2966 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002967 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002968 continue;
2969 }
Chris Masond1310b22008-01-24 16:13:08 -05002970 /* leave this out until we have a page_mkwrite call */
2971 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04002972 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002973 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002974 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002975 continue;
2976 }
Chris Masonc8b97812008-10-29 14:49:59 -04002977
Chris Masond1310b22008-01-24 16:13:08 -05002978 if (tree->ops && tree->ops->writepage_io_hook) {
2979 ret = tree->ops->writepage_io_hook(page, cur,
2980 cur + iosize - 1);
2981 } else {
2982 ret = 0;
2983 }
Chris Mason1259ab72008-05-12 13:39:03 -04002984 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05002985 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04002986 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002987 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002988
Chris Masond1310b22008-01-24 16:13:08 -05002989 set_range_writeback(tree, cur, cur + iosize - 1);
2990 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05002991 printk(KERN_ERR "btrfs warning page %lu not "
2992 "writeback, cur %llu end %llu\n",
2993 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05002994 (unsigned long long)end);
2995 }
2996
Chris Masonffbd5172009-04-20 15:50:09 -04002997 ret = submit_extent_page(write_flags, tree, page,
2998 sector, iosize, pg_offset,
2999 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04003000 end_bio_extent_writepage,
3001 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003002 if (ret)
3003 SetPageError(page);
3004 }
3005 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04003006 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05003007 nr++;
3008 }
3009done:
3010 if (nr == 0) {
3011 /* make sure the mapping tag for page dirty gets cleared */
3012 set_page_writeback(page);
3013 end_page_writeback(page);
3014 }
Chris Masond1310b22008-01-24 16:13:08 -05003015 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05003016
Chris Mason11c83492009-04-20 15:50:09 -04003017done_unlocked:
3018
Chris Mason2c64c532009-09-02 15:04:12 -04003019 /* drop our reference on any cached states */
3020 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05003021 return 0;
3022}
3023
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003024static int eb_wait(void *word)
3025{
3026 io_schedule();
3027 return 0;
3028}
3029
3030static void wait_on_extent_buffer_writeback(struct extent_buffer *eb)
3031{
3032 wait_on_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK, eb_wait,
3033 TASK_UNINTERRUPTIBLE);
3034}
3035
3036static int lock_extent_buffer_for_io(struct extent_buffer *eb,
3037 struct btrfs_fs_info *fs_info,
3038 struct extent_page_data *epd)
3039{
3040 unsigned long i, num_pages;
3041 int flush = 0;
3042 int ret = 0;
3043
3044 if (!btrfs_try_tree_write_lock(eb)) {
3045 flush = 1;
3046 flush_write_bio(epd);
3047 btrfs_tree_lock(eb);
3048 }
3049
3050 if (test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags)) {
3051 btrfs_tree_unlock(eb);
3052 if (!epd->sync_io)
3053 return 0;
3054 if (!flush) {
3055 flush_write_bio(epd);
3056 flush = 1;
3057 }
Chris Masona098d8e2012-03-21 12:09:56 -04003058 while (1) {
3059 wait_on_extent_buffer_writeback(eb);
3060 btrfs_tree_lock(eb);
3061 if (!test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags))
3062 break;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003063 btrfs_tree_unlock(eb);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003064 }
3065 }
3066
Josef Bacik51561ff2012-07-20 16:25:24 -04003067 /*
3068 * We need to do this to prevent races in people who check if the eb is
3069 * under IO since we can end up having no IO bits set for a short period
3070 * of time.
3071 */
3072 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003073 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3074 set_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
Josef Bacik51561ff2012-07-20 16:25:24 -04003075 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003076 btrfs_set_header_flag(eb, BTRFS_HEADER_FLAG_WRITTEN);
3077 spin_lock(&fs_info->delalloc_lock);
3078 if (fs_info->dirty_metadata_bytes >= eb->len)
3079 fs_info->dirty_metadata_bytes -= eb->len;
3080 else
3081 WARN_ON(1);
3082 spin_unlock(&fs_info->delalloc_lock);
3083 ret = 1;
Josef Bacik51561ff2012-07-20 16:25:24 -04003084 } else {
3085 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003086 }
3087
3088 btrfs_tree_unlock(eb);
3089
3090 if (!ret)
3091 return ret;
3092
3093 num_pages = num_extent_pages(eb->start, eb->len);
3094 for (i = 0; i < num_pages; i++) {
3095 struct page *p = extent_buffer_page(eb, i);
3096
3097 if (!trylock_page(p)) {
3098 if (!flush) {
3099 flush_write_bio(epd);
3100 flush = 1;
3101 }
3102 lock_page(p);
3103 }
3104 }
3105
3106 return ret;
3107}
3108
3109static void end_extent_buffer_writeback(struct extent_buffer *eb)
3110{
3111 clear_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags);
3112 smp_mb__after_clear_bit();
3113 wake_up_bit(&eb->bflags, EXTENT_BUFFER_WRITEBACK);
3114}
3115
3116static void end_bio_extent_buffer_writepage(struct bio *bio, int err)
3117{
3118 int uptodate = err == 0;
3119 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
3120 struct extent_buffer *eb;
3121 int done;
3122
3123 do {
3124 struct page *page = bvec->bv_page;
3125
3126 bvec--;
3127 eb = (struct extent_buffer *)page->private;
3128 BUG_ON(!eb);
3129 done = atomic_dec_and_test(&eb->io_pages);
3130
3131 if (!uptodate || test_bit(EXTENT_BUFFER_IOERR, &eb->bflags)) {
3132 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3133 ClearPageUptodate(page);
3134 SetPageError(page);
3135 }
3136
3137 end_page_writeback(page);
3138
3139 if (!done)
3140 continue;
3141
3142 end_extent_buffer_writeback(eb);
3143 } while (bvec >= bio->bi_io_vec);
3144
3145 bio_put(bio);
3146
3147}
3148
3149static int write_one_eb(struct extent_buffer *eb,
3150 struct btrfs_fs_info *fs_info,
3151 struct writeback_control *wbc,
3152 struct extent_page_data *epd)
3153{
3154 struct block_device *bdev = fs_info->fs_devices->latest_bdev;
3155 u64 offset = eb->start;
3156 unsigned long i, num_pages;
3157 int rw = (epd->sync_io ? WRITE_SYNC : WRITE);
Josef Bacikd7dbe9e2012-04-23 14:00:51 -04003158 int ret = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003159
3160 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3161 num_pages = num_extent_pages(eb->start, eb->len);
3162 atomic_set(&eb->io_pages, num_pages);
3163 for (i = 0; i < num_pages; i++) {
3164 struct page *p = extent_buffer_page(eb, i);
3165
3166 clear_page_dirty_for_io(p);
3167 set_page_writeback(p);
3168 ret = submit_extent_page(rw, eb->tree, p, offset >> 9,
3169 PAGE_CACHE_SIZE, 0, bdev, &epd->bio,
3170 -1, end_bio_extent_buffer_writepage,
3171 0, 0, 0);
3172 if (ret) {
3173 set_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
3174 SetPageError(p);
3175 if (atomic_sub_and_test(num_pages - i, &eb->io_pages))
3176 end_extent_buffer_writeback(eb);
3177 ret = -EIO;
3178 break;
3179 }
3180 offset += PAGE_CACHE_SIZE;
3181 update_nr_written(p, wbc, 1);
3182 unlock_page(p);
3183 }
3184
3185 if (unlikely(ret)) {
3186 for (; i < num_pages; i++) {
3187 struct page *p = extent_buffer_page(eb, i);
3188 unlock_page(p);
3189 }
3190 }
3191
3192 return ret;
3193}
3194
3195int btree_write_cache_pages(struct address_space *mapping,
3196 struct writeback_control *wbc)
3197{
3198 struct extent_io_tree *tree = &BTRFS_I(mapping->host)->io_tree;
3199 struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info;
3200 struct extent_buffer *eb, *prev_eb = NULL;
3201 struct extent_page_data epd = {
3202 .bio = NULL,
3203 .tree = tree,
3204 .extent_locked = 0,
3205 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
3206 };
3207 int ret = 0;
3208 int done = 0;
3209 int nr_to_write_done = 0;
3210 struct pagevec pvec;
3211 int nr_pages;
3212 pgoff_t index;
3213 pgoff_t end; /* Inclusive */
3214 int scanned = 0;
3215 int tag;
3216
3217 pagevec_init(&pvec, 0);
3218 if (wbc->range_cyclic) {
3219 index = mapping->writeback_index; /* Start from prev offset */
3220 end = -1;
3221 } else {
3222 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3223 end = wbc->range_end >> PAGE_CACHE_SHIFT;
3224 scanned = 1;
3225 }
3226 if (wbc->sync_mode == WB_SYNC_ALL)
3227 tag = PAGECACHE_TAG_TOWRITE;
3228 else
3229 tag = PAGECACHE_TAG_DIRTY;
3230retry:
3231 if (wbc->sync_mode == WB_SYNC_ALL)
3232 tag_pages_for_writeback(mapping, index, end);
3233 while (!done && !nr_to_write_done && (index <= end) &&
3234 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3235 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
3236 unsigned i;
3237
3238 scanned = 1;
3239 for (i = 0; i < nr_pages; i++) {
3240 struct page *page = pvec.pages[i];
3241
3242 if (!PagePrivate(page))
3243 continue;
3244
3245 if (!wbc->range_cyclic && page->index > end) {
3246 done = 1;
3247 break;
3248 }
3249
3250 eb = (struct extent_buffer *)page->private;
3251 if (!eb) {
3252 WARN_ON(1);
3253 continue;
3254 }
3255
3256 if (eb == prev_eb)
3257 continue;
3258
3259 if (!atomic_inc_not_zero(&eb->refs)) {
3260 WARN_ON(1);
3261 continue;
3262 }
3263
3264 prev_eb = eb;
3265 ret = lock_extent_buffer_for_io(eb, fs_info, &epd);
3266 if (!ret) {
3267 free_extent_buffer(eb);
3268 continue;
3269 }
3270
3271 ret = write_one_eb(eb, fs_info, wbc, &epd);
3272 if (ret) {
3273 done = 1;
3274 free_extent_buffer(eb);
3275 break;
3276 }
3277 free_extent_buffer(eb);
3278
3279 /*
3280 * the filesystem may choose to bump up nr_to_write.
3281 * We have to make sure to honor the new nr_to_write
3282 * at any time
3283 */
3284 nr_to_write_done = wbc->nr_to_write <= 0;
3285 }
3286 pagevec_release(&pvec);
3287 cond_resched();
3288 }
3289 if (!scanned && !done) {
3290 /*
3291 * We hit the last page and there is more work to be done: wrap
3292 * back to the start of the file
3293 */
3294 scanned = 1;
3295 index = 0;
3296 goto retry;
3297 }
3298 flush_write_bio(&epd);
3299 return ret;
3300}
3301
Chris Masond1310b22008-01-24 16:13:08 -05003302/**
Chris Mason4bef0842008-09-08 11:18:08 -04003303 * 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 -05003304 * @mapping: address space structure to write
3305 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
3306 * @writepage: function called for each page
3307 * @data: data passed to writepage function
3308 *
3309 * If a page is already under I/O, write_cache_pages() skips it, even
3310 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
3311 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
3312 * and msync() need to guarantee that all the data which was dirty at the time
3313 * the call was made get new I/O started against them. If wbc->sync_mode is
3314 * WB_SYNC_ALL then we were called for data integrity and we must wait for
3315 * existing IO to complete.
3316 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003317static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04003318 struct address_space *mapping,
3319 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003320 writepage_t writepage, void *data,
3321 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05003322{
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003323 struct inode *inode = mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -05003324 int ret = 0;
3325 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003326 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003327 struct pagevec pvec;
3328 int nr_pages;
3329 pgoff_t index;
3330 pgoff_t end; /* Inclusive */
3331 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00003332 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05003333
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003334 /*
3335 * We have to hold onto the inode so that ordered extents can do their
3336 * work when the IO finishes. The alternative to this is failing to add
3337 * an ordered extent if the igrab() fails there and that is a huge pain
3338 * to deal with, so instead just hold onto the inode throughout the
3339 * writepages operation. If it fails here we are freeing up the inode
3340 * anyway and we'd rather not waste our time writing out stuff that is
3341 * going to be truncated anyway.
3342 */
3343 if (!igrab(inode))
3344 return 0;
3345
Chris Masond1310b22008-01-24 16:13:08 -05003346 pagevec_init(&pvec, 0);
3347 if (wbc->range_cyclic) {
3348 index = mapping->writeback_index; /* Start from prev offset */
3349 end = -1;
3350 } else {
3351 index = wbc->range_start >> PAGE_CACHE_SHIFT;
3352 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003353 scanned = 1;
3354 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00003355 if (wbc->sync_mode == WB_SYNC_ALL)
3356 tag = PAGECACHE_TAG_TOWRITE;
3357 else
3358 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05003359retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00003360 if (wbc->sync_mode == WB_SYNC_ALL)
3361 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003362 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00003363 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
3364 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05003365 unsigned i;
3366
3367 scanned = 1;
3368 for (i = 0; i < nr_pages; i++) {
3369 struct page *page = pvec.pages[i];
3370
3371 /*
3372 * At this point we hold neither mapping->tree_lock nor
3373 * lock on the page itself: the page may be truncated or
3374 * invalidated (changing page->mapping to NULL), or even
3375 * swizzled back from swapper_space to tmpfs file
3376 * mapping
3377 */
Chris Mason01d658f2011-11-01 10:08:06 -04003378 if (tree->ops &&
3379 tree->ops->write_cache_pages_lock_hook) {
3380 tree->ops->write_cache_pages_lock_hook(page,
3381 data, flush_fn);
3382 } else {
3383 if (!trylock_page(page)) {
3384 flush_fn(data);
3385 lock_page(page);
3386 }
3387 }
Chris Masond1310b22008-01-24 16:13:08 -05003388
3389 if (unlikely(page->mapping != mapping)) {
3390 unlock_page(page);
3391 continue;
3392 }
3393
3394 if (!wbc->range_cyclic && page->index > end) {
3395 done = 1;
3396 unlock_page(page);
3397 continue;
3398 }
3399
Chris Masond2c3f4f2008-11-19 12:44:22 -05003400 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05003401 if (PageWriteback(page))
3402 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05003403 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003404 }
Chris Masond1310b22008-01-24 16:13:08 -05003405
3406 if (PageWriteback(page) ||
3407 !clear_page_dirty_for_io(page)) {
3408 unlock_page(page);
3409 continue;
3410 }
3411
3412 ret = (*writepage)(page, wbc, data);
3413
3414 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
3415 unlock_page(page);
3416 ret = 0;
3417 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003418 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05003419 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04003420
3421 /*
3422 * the filesystem may choose to bump up nr_to_write.
3423 * We have to make sure to honor the new nr_to_write
3424 * at any time
3425 */
3426 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05003427 }
3428 pagevec_release(&pvec);
3429 cond_resched();
3430 }
3431 if (!scanned && !done) {
3432 /*
3433 * We hit the last page and there is more work to be done: wrap
3434 * back to the start of the file
3435 */
3436 scanned = 1;
3437 index = 0;
3438 goto retry;
3439 }
Josef Bacik7fd1a3f2012-06-27 17:18:41 -04003440 btrfs_add_delayed_iput(inode);
Chris Masond1310b22008-01-24 16:13:08 -05003441 return ret;
3442}
Chris Masond1310b22008-01-24 16:13:08 -05003443
Chris Masonffbd5172009-04-20 15:50:09 -04003444static void flush_epd_write_bio(struct extent_page_data *epd)
3445{
3446 if (epd->bio) {
Jeff Mahoney355808c2011-10-03 23:23:14 -04003447 int rw = WRITE;
3448 int ret;
3449
Chris Masonffbd5172009-04-20 15:50:09 -04003450 if (epd->sync_io)
Jeff Mahoney355808c2011-10-03 23:23:14 -04003451 rw = WRITE_SYNC;
3452
3453 ret = submit_one_bio(rw, epd->bio, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003454 BUG_ON(ret < 0); /* -ENOMEM */
Chris Masonffbd5172009-04-20 15:50:09 -04003455 epd->bio = NULL;
3456 }
3457}
3458
Chris Masond2c3f4f2008-11-19 12:44:22 -05003459static noinline void flush_write_bio(void *data)
3460{
3461 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04003462 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05003463}
3464
Chris Masond1310b22008-01-24 16:13:08 -05003465int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
3466 get_extent_t *get_extent,
3467 struct writeback_control *wbc)
3468{
3469 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003470 struct extent_page_data epd = {
3471 .bio = NULL,
3472 .tree = tree,
3473 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003474 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003475 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05003476 };
Chris Masond1310b22008-01-24 16:13:08 -05003477
Chris Masond1310b22008-01-24 16:13:08 -05003478 ret = __extent_writepage(page, wbc, &epd);
3479
Chris Masonffbd5172009-04-20 15:50:09 -04003480 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003481 return ret;
3482}
Chris Masond1310b22008-01-24 16:13:08 -05003483
Chris Mason771ed682008-11-06 22:02:51 -05003484int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
3485 u64 start, u64 end, get_extent_t *get_extent,
3486 int mode)
3487{
3488 int ret = 0;
3489 struct address_space *mapping = inode->i_mapping;
3490 struct page *page;
3491 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
3492 PAGE_CACHE_SHIFT;
3493
3494 struct extent_page_data epd = {
3495 .bio = NULL,
3496 .tree = tree,
3497 .get_extent = get_extent,
3498 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04003499 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05003500 };
3501 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05003502 .sync_mode = mode,
Chris Mason771ed682008-11-06 22:02:51 -05003503 .nr_to_write = nr_pages * 2,
3504 .range_start = start,
3505 .range_end = end + 1,
3506 };
3507
Chris Masond3977122009-01-05 21:25:51 -05003508 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05003509 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
3510 if (clear_page_dirty_for_io(page))
3511 ret = __extent_writepage(page, &wbc_writepages, &epd);
3512 else {
3513 if (tree->ops && tree->ops->writepage_end_io_hook)
3514 tree->ops->writepage_end_io_hook(page, start,
3515 start + PAGE_CACHE_SIZE - 1,
3516 NULL, 1);
3517 unlock_page(page);
3518 }
3519 page_cache_release(page);
3520 start += PAGE_CACHE_SIZE;
3521 }
3522
Chris Masonffbd5172009-04-20 15:50:09 -04003523 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05003524 return ret;
3525}
Chris Masond1310b22008-01-24 16:13:08 -05003526
3527int extent_writepages(struct extent_io_tree *tree,
3528 struct address_space *mapping,
3529 get_extent_t *get_extent,
3530 struct writeback_control *wbc)
3531{
3532 int ret = 0;
3533 struct extent_page_data epd = {
3534 .bio = NULL,
3535 .tree = tree,
3536 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05003537 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04003538 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05003539 };
3540
Chris Mason4bef0842008-09-08 11:18:08 -04003541 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05003542 __extent_writepage, &epd,
3543 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04003544 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05003545 return ret;
3546}
Chris Masond1310b22008-01-24 16:13:08 -05003547
3548int extent_readpages(struct extent_io_tree *tree,
3549 struct address_space *mapping,
3550 struct list_head *pages, unsigned nr_pages,
3551 get_extent_t get_extent)
3552{
3553 struct bio *bio = NULL;
3554 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04003555 unsigned long bio_flags = 0;
Liu Bo67c96842012-07-20 21:43:09 -06003556 struct page *pagepool[16];
3557 struct page *page;
3558 int i = 0;
3559 int nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003560
Chris Masond1310b22008-01-24 16:13:08 -05003561 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Liu Bo67c96842012-07-20 21:43:09 -06003562 page = list_entry(pages->prev, struct page, lru);
Chris Masond1310b22008-01-24 16:13:08 -05003563
3564 prefetchw(&page->flags);
3565 list_del(&page->lru);
Liu Bo67c96842012-07-20 21:43:09 -06003566 if (add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04003567 page->index, GFP_NOFS)) {
Liu Bo67c96842012-07-20 21:43:09 -06003568 page_cache_release(page);
3569 continue;
Chris Masond1310b22008-01-24 16:13:08 -05003570 }
Liu Bo67c96842012-07-20 21:43:09 -06003571
3572 pagepool[nr++] = page;
3573 if (nr < ARRAY_SIZE(pagepool))
3574 continue;
3575 for (i = 0; i < nr; i++) {
3576 __extent_read_full_page(tree, pagepool[i], get_extent,
3577 &bio, 0, &bio_flags);
3578 page_cache_release(pagepool[i]);
3579 }
3580 nr = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003581 }
Liu Bo67c96842012-07-20 21:43:09 -06003582 for (i = 0; i < nr; i++) {
3583 __extent_read_full_page(tree, pagepool[i], get_extent,
3584 &bio, 0, &bio_flags);
3585 page_cache_release(pagepool[i]);
3586 }
3587
Chris Masond1310b22008-01-24 16:13:08 -05003588 BUG_ON(!list_empty(pages));
3589 if (bio)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003590 return submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05003591 return 0;
3592}
Chris Masond1310b22008-01-24 16:13:08 -05003593
3594/*
3595 * basic invalidatepage code, this waits on any locked or writeback
3596 * ranges corresponding to the page, and then deletes any extent state
3597 * records from the tree
3598 */
3599int extent_invalidatepage(struct extent_io_tree *tree,
3600 struct page *page, unsigned long offset)
3601{
Josef Bacik2ac55d42010-02-03 19:33:23 +00003602 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003603 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
3604 u64 end = start + PAGE_CACHE_SIZE - 1;
3605 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
3606
Chris Masond3977122009-01-05 21:25:51 -05003607 start += (offset + blocksize - 1) & ~(blocksize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05003608 if (start > end)
3609 return 0;
3610
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003611 lock_extent_bits(tree, start, end, 0, &cached_state);
Chris Mason1edbb732009-09-02 13:24:36 -04003612 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003613 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04003614 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3615 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003616 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003617 return 0;
3618}
Chris Masond1310b22008-01-24 16:13:08 -05003619
3620/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04003621 * a helper for releasepage, this tests for areas of the page that
3622 * are locked or under IO and drops the related state bits if it is safe
3623 * to drop the page.
3624 */
3625int try_release_extent_state(struct extent_map_tree *map,
3626 struct extent_io_tree *tree, struct page *page,
3627 gfp_t mask)
3628{
3629 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
3630 u64 end = start + PAGE_CACHE_SIZE - 1;
3631 int ret = 1;
3632
Chris Mason211f90e2008-07-18 11:56:15 -04003633 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04003634 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04003635 ret = 0;
3636 else {
3637 if ((mask & GFP_NOFS) == GFP_NOFS)
3638 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04003639 /*
3640 * at this point we can safely clear everything except the
3641 * locked bit and the nodatasum bit
3642 */
Chris Masone3f24cc2011-02-14 12:52:08 -05003643 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04003644 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
3645 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05003646
3647 /* if clear_extent_bit failed for enomem reasons,
3648 * we can't allow the release to continue.
3649 */
3650 if (ret < 0)
3651 ret = 0;
3652 else
3653 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003654 }
3655 return ret;
3656}
Chris Mason7b13b7b2008-04-18 10:29:50 -04003657
3658/*
Chris Masond1310b22008-01-24 16:13:08 -05003659 * a helper for releasepage. As long as there are no locked extents
3660 * in the range corresponding to the page, both state records and extent
3661 * map records are removed
3662 */
3663int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05003664 struct extent_io_tree *tree, struct page *page,
3665 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05003666{
3667 struct extent_map *em;
3668 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
3669 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04003670
Chris Mason70dec802008-01-29 09:59:12 -05003671 if ((mask & __GFP_WAIT) &&
3672 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05003673 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05003674 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05003675 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04003676 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05003677 em = lookup_extent_mapping(map, start, len);
Tsutomu Itoh285190d2012-02-16 16:23:58 +09003678 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -04003679 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003680 break;
3681 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04003682 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
3683 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04003684 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003685 free_extent_map(em);
3686 break;
3687 }
3688 if (!test_range_bit(tree, em->start,
3689 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04003690 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04003691 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05003692 remove_extent_mapping(map, em);
3693 /* once for the rb tree */
3694 free_extent_map(em);
3695 }
3696 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04003697 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05003698
3699 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05003700 free_extent_map(em);
3701 }
Chris Masond1310b22008-01-24 16:13:08 -05003702 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04003703 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05003704}
Chris Masond1310b22008-01-24 16:13:08 -05003705
Chris Masonec29ed52011-02-23 16:23:20 -05003706/*
3707 * helper function for fiemap, which doesn't want to see any holes.
3708 * This maps until we find something past 'last'
3709 */
3710static struct extent_map *get_extent_skip_holes(struct inode *inode,
3711 u64 offset,
3712 u64 last,
3713 get_extent_t *get_extent)
3714{
3715 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
3716 struct extent_map *em;
3717 u64 len;
3718
3719 if (offset >= last)
3720 return NULL;
3721
3722 while(1) {
3723 len = last - offset;
3724 if (len == 0)
3725 break;
3726 len = (len + sectorsize - 1) & ~(sectorsize - 1);
3727 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02003728 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05003729 return em;
3730
3731 /* if this isn't a hole return it */
3732 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
3733 em->block_start != EXTENT_MAP_HOLE) {
3734 return em;
3735 }
3736
3737 /* this is a hole, advance to the next extent */
3738 offset = extent_map_end(em);
3739 free_extent_map(em);
3740 if (offset >= last)
3741 break;
3742 }
3743 return NULL;
3744}
3745
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003746int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3747 __u64 start, __u64 len, get_extent_t *get_extent)
3748{
Josef Bacik975f84f2010-11-23 19:36:57 +00003749 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003750 u64 off = start;
3751 u64 max = start + len;
3752 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00003753 u32 found_type;
3754 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05003755 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003756 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003757 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00003758 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003759 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00003760 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00003761 struct btrfs_path *path;
3762 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003763 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05003764 u64 em_start = 0;
3765 u64 em_len = 0;
3766 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003767 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003768
3769 if (len == 0)
3770 return -EINVAL;
3771
Josef Bacik975f84f2010-11-23 19:36:57 +00003772 path = btrfs_alloc_path();
3773 if (!path)
3774 return -ENOMEM;
3775 path->leave_spinning = 1;
3776
Josef Bacik4d479cf2011-11-17 11:34:31 -05003777 start = ALIGN(start, BTRFS_I(inode)->root->sectorsize);
3778 len = ALIGN(len, BTRFS_I(inode)->root->sectorsize);
3779
Chris Masonec29ed52011-02-23 16:23:20 -05003780 /*
3781 * lookup the last file extent. We're not using i_size here
3782 * because there might be preallocation past i_size
3783 */
Josef Bacik975f84f2010-11-23 19:36:57 +00003784 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08003785 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00003786 if (ret < 0) {
3787 btrfs_free_path(path);
3788 return ret;
3789 }
3790 WARN_ON(!ret);
3791 path->slots[0]--;
3792 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3793 struct btrfs_file_extent_item);
3794 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
3795 found_type = btrfs_key_type(&found_key);
3796
Chris Masonec29ed52011-02-23 16:23:20 -05003797 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08003798 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00003799 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05003800 /* have to trust i_size as the end */
3801 last = (u64)-1;
3802 last_for_get_extent = isize;
3803 } else {
3804 /*
3805 * remember the start of the last extent. There are a
3806 * bunch of different factors that go into the length of the
3807 * extent, so its much less complex to remember where it started
3808 */
3809 last = found_key.offset;
3810 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00003811 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003812 btrfs_free_path(path);
3813
Chris Masonec29ed52011-02-23 16:23:20 -05003814 /*
3815 * we might have some extents allocated but more delalloc past those
3816 * extents. so, we trust isize unless the start of the last extent is
3817 * beyond isize
3818 */
3819 if (last < isize) {
3820 last = (u64)-1;
3821 last_for_get_extent = isize;
3822 }
3823
Josef Bacik2ac55d42010-02-03 19:33:23 +00003824 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003825 &cached_state);
Chris Masonec29ed52011-02-23 16:23:20 -05003826
Josef Bacik4d479cf2011-11-17 11:34:31 -05003827 em = get_extent_skip_holes(inode, start, last_for_get_extent,
Chris Masonec29ed52011-02-23 16:23:20 -05003828 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003829 if (!em)
3830 goto out;
3831 if (IS_ERR(em)) {
3832 ret = PTR_ERR(em);
3833 goto out;
3834 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003835
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003836 while (!end) {
Chris Masonea8efc72011-03-08 11:54:40 -05003837 u64 offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003838
Chris Masonea8efc72011-03-08 11:54:40 -05003839 /* break if the extent we found is outside the range */
3840 if (em->start >= max || extent_map_end(em) < off)
3841 break;
3842
3843 /*
3844 * get_extent may return an extent that starts before our
3845 * requested range. We have to make sure the ranges
3846 * we return to fiemap always move forward and don't
3847 * overlap, so adjust the offsets here
3848 */
3849 em_start = max(em->start, off);
3850
3851 /*
3852 * record the offset from the start of the extent
3853 * for adjusting the disk offset below
3854 */
3855 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05003856 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05003857 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05003858 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003859 disko = 0;
3860 flags = 0;
3861
Chris Masonea8efc72011-03-08 11:54:40 -05003862 /*
3863 * bump off for our next call to get_extent
3864 */
3865 off = extent_map_end(em);
3866 if (off >= max)
3867 end = 1;
3868
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003869 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003870 end = 1;
3871 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003872 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003873 flags |= (FIEMAP_EXTENT_DATA_INLINE |
3874 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003875 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003876 flags |= (FIEMAP_EXTENT_DELALLOC |
3877 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003878 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05003879 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003880 }
3881 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
3882 flags |= FIEMAP_EXTENT_ENCODED;
3883
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003884 free_extent_map(em);
3885 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05003886 if ((em_start >= last) || em_len == (u64)-1 ||
3887 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003888 flags |= FIEMAP_EXTENT_LAST;
3889 end = 1;
3890 }
3891
Chris Masonec29ed52011-02-23 16:23:20 -05003892 /* now scan forward to see if this is really the last extent. */
3893 em = get_extent_skip_holes(inode, off, last_for_get_extent,
3894 get_extent);
3895 if (IS_ERR(em)) {
3896 ret = PTR_ERR(em);
3897 goto out;
3898 }
3899 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00003900 flags |= FIEMAP_EXTENT_LAST;
3901 end = 1;
3902 }
Chris Masonec29ed52011-02-23 16:23:20 -05003903 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
3904 em_len, flags);
3905 if (ret)
3906 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003907 }
3908out_free:
3909 free_extent_map(em);
3910out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00003911 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
3912 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003913 return ret;
3914}
3915
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003916inline struct page *extent_buffer_page(struct extent_buffer *eb,
Chris Masond1310b22008-01-24 16:13:08 -05003917 unsigned long i)
3918{
Chris Mason727011e2010-08-06 13:21:20 -04003919 return eb->pages[i];
Chris Masond1310b22008-01-24 16:13:08 -05003920}
3921
Jan Schmidt4a54c8c2011-07-22 15:41:52 +02003922inline unsigned long num_extent_pages(u64 start, u64 len)
Chris Masonce9adaa2008-04-09 16:28:12 -04003923{
Chris Mason6af118ce2008-07-22 11:18:07 -04003924 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3925 (start >> PAGE_CACHE_SHIFT);
Chris Mason728131d2008-04-09 16:28:12 -04003926}
3927
Chris Mason727011e2010-08-06 13:21:20 -04003928static void __free_extent_buffer(struct extent_buffer *eb)
3929{
3930#if LEAK_DEBUG
3931 unsigned long flags;
3932 spin_lock_irqsave(&leak_lock, flags);
3933 list_del(&eb->leak_list);
3934 spin_unlock_irqrestore(&leak_lock, flags);
3935#endif
3936 if (eb->pages && eb->pages != eb->inline_pages)
3937 kfree(eb->pages);
3938 kmem_cache_free(extent_buffer_cache, eb);
3939}
3940
Chris Masond1310b22008-01-24 16:13:08 -05003941static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3942 u64 start,
3943 unsigned long len,
3944 gfp_t mask)
3945{
3946 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003947#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003948 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003949#endif
Chris Masond1310b22008-01-24 16:13:08 -05003950
Chris Masond1310b22008-01-24 16:13:08 -05003951 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003952 if (eb == NULL)
3953 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003954 eb->start = start;
3955 eb->len = len;
Josef Bacik4f2de97a2012-03-07 16:20:05 -05003956 eb->tree = tree;
Jan Schmidt815a51c2012-05-16 17:00:02 +02003957 eb->bflags = 0;
Chris Masonbd681512011-07-16 15:23:14 -04003958 rwlock_init(&eb->lock);
3959 atomic_set(&eb->write_locks, 0);
3960 atomic_set(&eb->read_locks, 0);
3961 atomic_set(&eb->blocking_readers, 0);
3962 atomic_set(&eb->blocking_writers, 0);
3963 atomic_set(&eb->spinning_readers, 0);
3964 atomic_set(&eb->spinning_writers, 0);
Arne Jansen5b25f702011-09-13 10:55:48 +02003965 eb->lock_nested = 0;
Chris Masonbd681512011-07-16 15:23:14 -04003966 init_waitqueue_head(&eb->write_lock_wq);
3967 init_waitqueue_head(&eb->read_lock_wq);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003968
Chris Mason39351272009-02-04 09:24:05 -05003969#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003970 spin_lock_irqsave(&leak_lock, flags);
3971 list_add(&eb->leak_list, &buffers);
3972 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003973#endif
Josef Bacik3083ee22012-03-09 16:01:49 -05003974 spin_lock_init(&eb->refs_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003975 atomic_set(&eb->refs, 1);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04003976 atomic_set(&eb->io_pages, 0);
Chris Mason727011e2010-08-06 13:21:20 -04003977
3978 if (len > MAX_INLINE_EXTENT_BUFFER_SIZE) {
3979 struct page **pages;
3980 int num_pages = (len + PAGE_CACHE_SIZE - 1) >>
3981 PAGE_CACHE_SHIFT;
3982 pages = kzalloc(num_pages, mask);
3983 if (!pages) {
3984 __free_extent_buffer(eb);
3985 return NULL;
3986 }
3987 eb->pages = pages;
3988 } else {
3989 eb->pages = eb->inline_pages;
3990 }
Chris Masond1310b22008-01-24 16:13:08 -05003991
3992 return eb;
3993}
3994
Jan Schmidt815a51c2012-05-16 17:00:02 +02003995struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
3996{
3997 unsigned long i;
3998 struct page *p;
3999 struct extent_buffer *new;
4000 unsigned long num_pages = num_extent_pages(src->start, src->len);
4001
4002 new = __alloc_extent_buffer(NULL, src->start, src->len, GFP_ATOMIC);
4003 if (new == NULL)
4004 return NULL;
4005
4006 for (i = 0; i < num_pages; i++) {
4007 p = alloc_page(GFP_ATOMIC);
4008 BUG_ON(!p);
4009 attach_extent_buffer_page(new, p);
4010 WARN_ON(PageDirty(p));
4011 SetPageUptodate(p);
4012 new->pages[i] = p;
4013 }
4014
4015 copy_extent_buffer(new, src, 0, 0, src->len);
4016 set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
4017 set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);
4018
4019 return new;
4020}
4021
4022struct extent_buffer *alloc_dummy_extent_buffer(u64 start, unsigned long len)
4023{
4024 struct extent_buffer *eb;
4025 unsigned long num_pages = num_extent_pages(0, len);
4026 unsigned long i;
4027
4028 eb = __alloc_extent_buffer(NULL, start, len, GFP_ATOMIC);
4029 if (!eb)
4030 return NULL;
4031
4032 for (i = 0; i < num_pages; i++) {
4033 eb->pages[i] = alloc_page(GFP_ATOMIC);
4034 if (!eb->pages[i])
4035 goto err;
4036 }
4037 set_extent_buffer_uptodate(eb);
4038 btrfs_set_header_nritems(eb, 0);
4039 set_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
4040
4041 return eb;
4042err:
4043 for (i--; i > 0; i--)
4044 __free_page(eb->pages[i]);
4045 __free_extent_buffer(eb);
4046 return NULL;
4047}
4048
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004049static int extent_buffer_under_io(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004050{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004051 return (atomic_read(&eb->io_pages) ||
4052 test_bit(EXTENT_BUFFER_WRITEBACK, &eb->bflags) ||
4053 test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Chris Masond1310b22008-01-24 16:13:08 -05004054}
4055
Miao Xie897ca6e92010-10-26 20:57:29 -04004056/*
4057 * Helper for releasing extent buffer page.
4058 */
4059static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
4060 unsigned long start_idx)
4061{
4062 unsigned long index;
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004063 unsigned long num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004064 struct page *page;
Jan Schmidt815a51c2012-05-16 17:00:02 +02004065 int mapped = !test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags);
Miao Xie897ca6e92010-10-26 20:57:29 -04004066
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004067 BUG_ON(extent_buffer_under_io(eb));
Miao Xie897ca6e92010-10-26 20:57:29 -04004068
Wang Sheng-Hui39bab872012-04-06 14:35:31 +08004069 num_pages = num_extent_pages(eb->start, eb->len);
4070 index = start_idx + num_pages;
Miao Xie897ca6e92010-10-26 20:57:29 -04004071 if (start_idx >= index)
4072 return;
4073
4074 do {
4075 index--;
4076 page = extent_buffer_page(eb, index);
Jan Schmidt815a51c2012-05-16 17:00:02 +02004077 if (page && mapped) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004078 spin_lock(&page->mapping->private_lock);
4079 /*
4080 * We do this since we'll remove the pages after we've
4081 * removed the eb from the radix tree, so we could race
4082 * and have this page now attached to the new eb. So
4083 * only clear page_private if it's still connected to
4084 * this eb.
4085 */
4086 if (PagePrivate(page) &&
4087 page->private == (unsigned long)eb) {
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004088 BUG_ON(test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags));
Josef Bacik3083ee22012-03-09 16:01:49 -05004089 BUG_ON(PageDirty(page));
4090 BUG_ON(PageWriteback(page));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004091 /*
4092 * We need to make sure we haven't be attached
4093 * to a new eb.
4094 */
4095 ClearPagePrivate(page);
4096 set_page_private(page, 0);
4097 /* One for the page private */
4098 page_cache_release(page);
4099 }
4100 spin_unlock(&page->mapping->private_lock);
4101
Jan Schmidt815a51c2012-05-16 17:00:02 +02004102 }
4103 if (page) {
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004104 /* One for when we alloced the page */
Miao Xie897ca6e92010-10-26 20:57:29 -04004105 page_cache_release(page);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004106 }
Miao Xie897ca6e92010-10-26 20:57:29 -04004107 } while (index != start_idx);
4108}
4109
4110/*
4111 * Helper for releasing the extent buffer.
4112 */
4113static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
4114{
4115 btrfs_release_extent_buffer_page(eb, 0);
4116 __free_extent_buffer(eb);
4117}
4118
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004119static void check_buffer_tree_ref(struct extent_buffer *eb)
4120{
4121 /* the ref bit is tricky. We have to make sure it is set
4122 * if we have the buffer dirty. Otherwise the
4123 * code to free a buffer can end up dropping a dirty
4124 * page
4125 *
4126 * Once the ref bit is set, it won't go away while the
4127 * buffer is dirty or in writeback, and it also won't
4128 * go away while we have the reference count on the
4129 * eb bumped.
4130 *
4131 * We can't just set the ref bit without bumping the
4132 * ref on the eb because free_extent_buffer might
4133 * see the ref bit and try to clear it. If this happens
4134 * free_extent_buffer might end up dropping our original
4135 * ref by mistake and freeing the page before we are able
4136 * to add one more ref.
4137 *
4138 * So bump the ref count first, then set the bit. If someone
4139 * beat us to it, drop the ref we added.
4140 */
Josef Bacik594831c2012-07-20 16:11:08 -04004141 spin_lock(&eb->refs_lock);
4142 if (!test_and_set_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004143 atomic_inc(&eb->refs);
Josef Bacik594831c2012-07-20 16:11:08 -04004144 spin_unlock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004145}
4146
Josef Bacik5df42352012-03-15 18:24:42 -04004147static void mark_extent_buffer_accessed(struct extent_buffer *eb)
4148{
4149 unsigned long num_pages, i;
4150
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004151 check_buffer_tree_ref(eb);
4152
Josef Bacik5df42352012-03-15 18:24:42 -04004153 num_pages = num_extent_pages(eb->start, eb->len);
4154 for (i = 0; i < num_pages; i++) {
4155 struct page *p = extent_buffer_page(eb, i);
4156 mark_page_accessed(p);
4157 }
4158}
4159
Chris Masond1310b22008-01-24 16:13:08 -05004160struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
Chris Mason727011e2010-08-06 13:21:20 -04004161 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004162{
4163 unsigned long num_pages = num_extent_pages(start, len);
4164 unsigned long i;
4165 unsigned long index = start >> PAGE_CACHE_SHIFT;
4166 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04004167 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004168 struct page *p;
4169 struct address_space *mapping = tree->mapping;
4170 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004171 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05004172
Miao Xie19fe0a82010-10-26 20:57:29 -04004173 rcu_read_lock();
4174 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4175 if (eb && atomic_inc_not_zero(&eb->refs)) {
4176 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004177 mark_extent_buffer_accessed(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004178 return eb;
4179 }
Miao Xie19fe0a82010-10-26 20:57:29 -04004180 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04004181
David Sterbaba144192011-04-21 01:12:06 +02004182 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04004183 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004184 return NULL;
4185
Chris Mason727011e2010-08-06 13:21:20 -04004186 for (i = 0; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04004187 p = find_or_create_page(mapping, index, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004188 if (!p) {
4189 WARN_ON(1);
Chris Mason6af118ce2008-07-22 11:18:07 -04004190 goto free_eb;
Chris Masond1310b22008-01-24 16:13:08 -05004191 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004192
4193 spin_lock(&mapping->private_lock);
4194 if (PagePrivate(p)) {
4195 /*
4196 * We could have already allocated an eb for this page
4197 * and attached one so lets see if we can get a ref on
4198 * the existing eb, and if we can we know it's good and
4199 * we can just return that one, else we know we can just
4200 * overwrite page->private.
4201 */
4202 exists = (struct extent_buffer *)p->private;
4203 if (atomic_inc_not_zero(&exists->refs)) {
4204 spin_unlock(&mapping->private_lock);
4205 unlock_page(p);
Josef Bacik17de39a2012-05-04 15:16:06 -04004206 page_cache_release(p);
Josef Bacik5df42352012-03-15 18:24:42 -04004207 mark_extent_buffer_accessed(exists);
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004208 goto free_eb;
4209 }
4210
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004211 /*
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004212 * Do this so attach doesn't complain and we need to
4213 * drop the ref the old guy had.
4214 */
4215 ClearPagePrivate(p);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004216 WARN_ON(PageDirty(p));
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004217 page_cache_release(p);
Chris Masond1310b22008-01-24 16:13:08 -05004218 }
Josef Bacik4f2de97a2012-03-07 16:20:05 -05004219 attach_extent_buffer_page(eb, p);
4220 spin_unlock(&mapping->private_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004221 WARN_ON(PageDirty(p));
Chris Masond1310b22008-01-24 16:13:08 -05004222 mark_page_accessed(p);
Chris Mason727011e2010-08-06 13:21:20 -04004223 eb->pages[i] = p;
Chris Masond1310b22008-01-24 16:13:08 -05004224 if (!PageUptodate(p))
4225 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05004226
4227 /*
4228 * see below about how we avoid a nasty race with release page
4229 * and why we unlock later
4230 */
Chris Masond1310b22008-01-24 16:13:08 -05004231 }
4232 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004233 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik115391d2012-03-09 09:51:43 -05004234again:
Miao Xie19fe0a82010-10-26 20:57:29 -04004235 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
4236 if (ret)
4237 goto free_eb;
4238
Chris Mason6af118ce2008-07-22 11:18:07 -04004239 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004240 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
4241 if (ret == -EEXIST) {
4242 exists = radix_tree_lookup(&tree->buffer,
4243 start >> PAGE_CACHE_SHIFT);
Josef Bacik115391d2012-03-09 09:51:43 -05004244 if (!atomic_inc_not_zero(&exists->refs)) {
4245 spin_unlock(&tree->buffer_lock);
4246 radix_tree_preload_end();
Josef Bacik115391d2012-03-09 09:51:43 -05004247 exists = NULL;
4248 goto again;
4249 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004250 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004251 radix_tree_preload_end();
Josef Bacik5df42352012-03-15 18:24:42 -04004252 mark_extent_buffer_accessed(exists);
Chris Mason6af118ce2008-07-22 11:18:07 -04004253 goto free_eb;
4254 }
Chris Mason6af118ce2008-07-22 11:18:07 -04004255 /* add one reference for the tree */
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004256 check_buffer_tree_ref(eb);
Yan, Zhengf044ba72010-02-04 08:46:56 +00004257 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004258 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05004259
4260 /*
4261 * there is a race where release page may have
4262 * tried to find this extent buffer in the radix
4263 * but failed. It will tell the VM it is safe to
4264 * reclaim the, and it will clear the page private bit.
4265 * We must make sure to set the page private bit properly
4266 * after the extent buffer is in the radix tree so
4267 * it doesn't get lost
4268 */
Chris Mason727011e2010-08-06 13:21:20 -04004269 SetPageChecked(eb->pages[0]);
4270 for (i = 1; i < num_pages; i++) {
4271 p = extent_buffer_page(eb, i);
Chris Mason727011e2010-08-06 13:21:20 -04004272 ClearPageChecked(p);
4273 unlock_page(p);
4274 }
4275 unlock_page(eb->pages[0]);
Chris Masond1310b22008-01-24 16:13:08 -05004276 return eb;
4277
Chris Mason6af118ce2008-07-22 11:18:07 -04004278free_eb:
Chris Mason727011e2010-08-06 13:21:20 -04004279 for (i = 0; i < num_pages; i++) {
4280 if (eb->pages[i])
4281 unlock_page(eb->pages[i]);
4282 }
Chris Masoneb14ab82011-02-10 12:35:00 -05004283
Josef Bacik17de39a2012-05-04 15:16:06 -04004284 WARN_ON(!atomic_dec_and_test(&eb->refs));
Miao Xie897ca6e92010-10-26 20:57:29 -04004285 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04004286 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05004287}
Chris Masond1310b22008-01-24 16:13:08 -05004288
4289struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02004290 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05004291{
Chris Masond1310b22008-01-24 16:13:08 -05004292 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05004293
Miao Xie19fe0a82010-10-26 20:57:29 -04004294 rcu_read_lock();
4295 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
4296 if (eb && atomic_inc_not_zero(&eb->refs)) {
4297 rcu_read_unlock();
Josef Bacik5df42352012-03-15 18:24:42 -04004298 mark_extent_buffer_accessed(eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004299 return eb;
4300 }
4301 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04004302
Miao Xie19fe0a82010-10-26 20:57:29 -04004303 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05004304}
Chris Masond1310b22008-01-24 16:13:08 -05004305
Josef Bacik3083ee22012-03-09 16:01:49 -05004306static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
4307{
4308 struct extent_buffer *eb =
4309 container_of(head, struct extent_buffer, rcu_head);
4310
4311 __free_extent_buffer(eb);
4312}
4313
Josef Bacik3083ee22012-03-09 16:01:49 -05004314/* Expects to have eb->eb_lock already held */
Josef Bacike64860a2012-07-20 16:05:36 -04004315static int release_extent_buffer(struct extent_buffer *eb, gfp_t mask)
Josef Bacik3083ee22012-03-09 16:01:49 -05004316{
4317 WARN_ON(atomic_read(&eb->refs) == 0);
4318 if (atomic_dec_and_test(&eb->refs)) {
Jan Schmidt815a51c2012-05-16 17:00:02 +02004319 if (test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags)) {
4320 spin_unlock(&eb->refs_lock);
4321 } else {
4322 struct extent_io_tree *tree = eb->tree;
Josef Bacik3083ee22012-03-09 16:01:49 -05004323
Jan Schmidt815a51c2012-05-16 17:00:02 +02004324 spin_unlock(&eb->refs_lock);
Josef Bacik3083ee22012-03-09 16:01:49 -05004325
Jan Schmidt815a51c2012-05-16 17:00:02 +02004326 spin_lock(&tree->buffer_lock);
4327 radix_tree_delete(&tree->buffer,
4328 eb->start >> PAGE_CACHE_SHIFT);
4329 spin_unlock(&tree->buffer_lock);
4330 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004331
4332 /* Should be safe to release our pages at this point */
4333 btrfs_release_extent_buffer_page(eb, 0);
4334
4335 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Josef Bacike64860a2012-07-20 16:05:36 -04004336 return 1;
Josef Bacik3083ee22012-03-09 16:01:49 -05004337 }
4338 spin_unlock(&eb->refs_lock);
Josef Bacike64860a2012-07-20 16:05:36 -04004339
4340 return 0;
Josef Bacik3083ee22012-03-09 16:01:49 -05004341}
4342
Chris Masond1310b22008-01-24 16:13:08 -05004343void free_extent_buffer(struct extent_buffer *eb)
4344{
Chris Masond1310b22008-01-24 16:13:08 -05004345 if (!eb)
4346 return;
4347
Josef Bacik3083ee22012-03-09 16:01:49 -05004348 spin_lock(&eb->refs_lock);
4349 if (atomic_read(&eb->refs) == 2 &&
Jan Schmidt815a51c2012-05-16 17:00:02 +02004350 test_bit(EXTENT_BUFFER_DUMMY, &eb->bflags))
4351 atomic_dec(&eb->refs);
4352
4353 if (atomic_read(&eb->refs) == 2 &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004354 test_bit(EXTENT_BUFFER_STALE, &eb->bflags) &&
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004355 !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004356 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4357 atomic_dec(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05004358
Josef Bacik3083ee22012-03-09 16:01:49 -05004359 /*
4360 * I know this is terrible, but it's temporary until we stop tracking
4361 * the uptodate bits and such for the extent buffers.
4362 */
4363 release_extent_buffer(eb, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05004364}
Chris Masond1310b22008-01-24 16:13:08 -05004365
Josef Bacik3083ee22012-03-09 16:01:49 -05004366void free_extent_buffer_stale(struct extent_buffer *eb)
4367{
4368 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05004369 return;
4370
Josef Bacik3083ee22012-03-09 16:01:49 -05004371 spin_lock(&eb->refs_lock);
4372 set_bit(EXTENT_BUFFER_STALE, &eb->bflags);
4373
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004374 if (atomic_read(&eb->refs) == 2 && !extent_buffer_under_io(eb) &&
Josef Bacik3083ee22012-03-09 16:01:49 -05004375 test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags))
4376 atomic_dec(&eb->refs);
4377 release_extent_buffer(eb, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05004378}
4379
Chris Mason1d4284b2012-03-28 20:31:37 -04004380void clear_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004381{
Chris Masond1310b22008-01-24 16:13:08 -05004382 unsigned long i;
4383 unsigned long num_pages;
4384 struct page *page;
4385
Chris Masond1310b22008-01-24 16:13:08 -05004386 num_pages = num_extent_pages(eb->start, eb->len);
4387
4388 for (i = 0; i < num_pages; i++) {
4389 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04004390 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05004391 continue;
4392
Chris Masona61e6f22008-07-22 11:18:08 -04004393 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05004394 WARN_ON(!PagePrivate(page));
4395
Chris Masond1310b22008-01-24 16:13:08 -05004396 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004397 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05004398 if (!PageDirty(page)) {
4399 radix_tree_tag_clear(&page->mapping->page_tree,
4400 page_index(page),
4401 PAGECACHE_TAG_DIRTY);
4402 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04004403 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masonbf0da8c2011-11-04 12:29:37 -04004404 ClearPageError(page);
Chris Masona61e6f22008-07-22 11:18:08 -04004405 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05004406 }
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004407 WARN_ON(atomic_read(&eb->refs) == 0);
Chris Masond1310b22008-01-24 16:13:08 -05004408}
Chris Masond1310b22008-01-24 16:13:08 -05004409
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004410int set_extent_buffer_dirty(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004411{
4412 unsigned long i;
4413 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04004414 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004415
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004416 check_buffer_tree_ref(eb);
4417
Chris Masonb9473432009-03-13 11:00:37 -04004418 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004419
Chris Masond1310b22008-01-24 16:13:08 -05004420 num_pages = num_extent_pages(eb->start, eb->len);
Josef Bacik3083ee22012-03-09 16:01:49 -05004421 WARN_ON(atomic_read(&eb->refs) == 0);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004422 WARN_ON(!test_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags));
4423
Chris Masonb9473432009-03-13 11:00:37 -04004424 for (i = 0; i < num_pages; i++)
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004425 set_page_dirty(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04004426 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05004427}
Chris Masond1310b22008-01-24 16:13:08 -05004428
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004429static int range_straddles_pages(u64 start, u64 len)
Chris Mason19b6caf2011-07-25 06:50:50 -04004430{
4431 if (len < PAGE_CACHE_SIZE)
4432 return 1;
4433 if (start & (PAGE_CACHE_SIZE - 1))
4434 return 1;
4435 if ((start + len) & (PAGE_CACHE_SIZE - 1))
4436 return 1;
4437 return 0;
4438}
4439
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004440int clear_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Mason1259ab72008-05-12 13:39:03 -04004441{
4442 unsigned long i;
4443 struct page *page;
4444 unsigned long num_pages;
4445
Chris Masonb4ce94d2009-02-04 09:25:08 -05004446 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004447 num_pages = num_extent_pages(eb->start, eb->len);
Chris Mason1259ab72008-05-12 13:39:03 -04004448 for (i = 0; i < num_pages; i++) {
4449 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04004450 if (page)
4451 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04004452 }
4453 return 0;
4454}
4455
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004456int set_extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004457{
4458 unsigned long i;
4459 struct page *page;
4460 unsigned long num_pages;
4461
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004462 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004463 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05004464 for (i = 0; i < num_pages; i++) {
4465 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004466 SetPageUptodate(page);
4467 }
4468 return 0;
4469}
Chris Masond1310b22008-01-24 16:13:08 -05004470
Chris Masonce9adaa2008-04-09 16:28:12 -04004471int extent_range_uptodate(struct extent_io_tree *tree,
4472 u64 start, u64 end)
4473{
4474 struct page *page;
4475 int ret;
4476 int pg_uptodate = 1;
4477 int uptodate;
4478 unsigned long index;
4479
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004480 if (range_straddles_pages(start, end - start + 1)) {
Chris Mason19b6caf2011-07-25 06:50:50 -04004481 ret = test_range_bit(tree, start, end,
4482 EXTENT_UPTODATE, 1, NULL);
4483 if (ret)
4484 return 1;
4485 }
Chris Masond3977122009-01-05 21:25:51 -05004486 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004487 index = start >> PAGE_CACHE_SHIFT;
4488 page = find_get_page(tree->mapping, index);
Mitch Harder8bedd512012-01-26 15:01:11 -05004489 if (!page)
4490 return 1;
Chris Masonce9adaa2008-04-09 16:28:12 -04004491 uptodate = PageUptodate(page);
4492 page_cache_release(page);
4493 if (!uptodate) {
4494 pg_uptodate = 0;
4495 break;
4496 }
4497 start += PAGE_CACHE_SIZE;
4498 }
4499 return pg_uptodate;
4500}
4501
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004502int extent_buffer_uptodate(struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05004503{
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004504 return test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05004505}
Chris Masond1310b22008-01-24 16:13:08 -05004506
4507int read_extent_buffer_pages(struct extent_io_tree *tree,
Arne Jansenbb82ab82011-06-10 14:06:53 +02004508 struct extent_buffer *eb, u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04004509 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05004510{
4511 unsigned long i;
4512 unsigned long start_i;
4513 struct page *page;
4514 int err;
4515 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04004516 int locked_pages = 0;
4517 int all_uptodate = 1;
Chris Masond1310b22008-01-24 16:13:08 -05004518 unsigned long num_pages;
Chris Mason727011e2010-08-06 13:21:20 -04004519 unsigned long num_reads = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004520 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04004521 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05004522
Chris Masonb4ce94d2009-02-04 09:25:08 -05004523 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05004524 return 0;
4525
Chris Masond1310b22008-01-24 16:13:08 -05004526 if (start) {
4527 WARN_ON(start < eb->start);
4528 start_i = (start >> PAGE_CACHE_SHIFT) -
4529 (eb->start >> PAGE_CACHE_SHIFT);
4530 } else {
4531 start_i = 0;
4532 }
4533
4534 num_pages = num_extent_pages(eb->start, eb->len);
4535 for (i = start_i; i < num_pages; i++) {
4536 page = extent_buffer_page(eb, i);
Arne Jansenbb82ab82011-06-10 14:06:53 +02004537 if (wait == WAIT_NONE) {
David Woodhouse2db04962008-08-07 11:19:43 -04004538 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04004539 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05004540 } else {
4541 lock_page(page);
4542 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004543 locked_pages++;
Chris Mason727011e2010-08-06 13:21:20 -04004544 if (!PageUptodate(page)) {
4545 num_reads++;
Chris Masonce9adaa2008-04-09 16:28:12 -04004546 all_uptodate = 0;
Chris Mason727011e2010-08-06 13:21:20 -04004547 }
Chris Masonce9adaa2008-04-09 16:28:12 -04004548 }
4549 if (all_uptodate) {
4550 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05004551 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04004552 goto unlock_exit;
4553 }
4554
Josef Bacikea466792012-03-26 21:57:36 -04004555 clear_bit(EXTENT_BUFFER_IOERR, &eb->bflags);
Josef Bacik5cf1ab52012-04-16 09:42:26 -04004556 eb->read_mirror = 0;
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004557 atomic_set(&eb->io_pages, num_reads);
Chris Masonce9adaa2008-04-09 16:28:12 -04004558 for (i = start_i; i < num_pages; i++) {
4559 page = extent_buffer_page(eb, i);
Chris Masonce9adaa2008-04-09 16:28:12 -04004560 if (!PageUptodate(page)) {
Chris Masonf1885912008-04-09 16:28:12 -04004561 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05004562 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04004563 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04004564 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05004565 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05004566 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05004567 } else {
4568 unlock_page(page);
4569 }
4570 }
4571
Jeff Mahoney355808c2011-10-03 23:23:14 -04004572 if (bio) {
4573 err = submit_one_bio(READ, bio, mirror_num, bio_flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004574 if (err)
4575 return err;
Jeff Mahoney355808c2011-10-03 23:23:14 -04004576 }
Chris Masona86c12c2008-02-07 10:50:54 -05004577
Arne Jansenbb82ab82011-06-10 14:06:53 +02004578 if (ret || wait != WAIT_COMPLETE)
Chris Masond1310b22008-01-24 16:13:08 -05004579 return ret;
Chris Masond3977122009-01-05 21:25:51 -05004580
Chris Masond1310b22008-01-24 16:13:08 -05004581 for (i = start_i; i < num_pages; i++) {
4582 page = extent_buffer_page(eb, i);
4583 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05004584 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05004585 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05004586 }
Chris Masond3977122009-01-05 21:25:51 -05004587
Chris Masond1310b22008-01-24 16:13:08 -05004588 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04004589
4590unlock_exit:
4591 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05004592 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04004593 page = extent_buffer_page(eb, i);
4594 i++;
4595 unlock_page(page);
4596 locked_pages--;
4597 }
4598 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05004599}
Chris Masond1310b22008-01-24 16:13:08 -05004600
4601void read_extent_buffer(struct extent_buffer *eb, void *dstv,
4602 unsigned long start,
4603 unsigned long len)
4604{
4605 size_t cur;
4606 size_t offset;
4607 struct page *page;
4608 char *kaddr;
4609 char *dst = (char *)dstv;
4610 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4611 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05004612
4613 WARN_ON(start > eb->len);
4614 WARN_ON(start + len > eb->start + eb->len);
4615
4616 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4617
Chris Masond3977122009-01-05 21:25:51 -05004618 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004619 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004620
4621 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04004622 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004623 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004624
4625 dst += cur;
4626 len -= cur;
4627 offset = 0;
4628 i++;
4629 }
4630}
Chris Masond1310b22008-01-24 16:13:08 -05004631
4632int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04004633 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05004634 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04004635 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05004636{
4637 size_t offset = start & (PAGE_CACHE_SIZE - 1);
4638 char *kaddr;
4639 struct page *p;
4640 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4641 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4642 unsigned long end_i = (start_offset + start + min_len - 1) >>
4643 PAGE_CACHE_SHIFT;
4644
4645 if (i != end_i)
4646 return -EINVAL;
4647
4648 if (i == 0) {
4649 offset = start_offset;
4650 *map_start = 0;
4651 } else {
4652 offset = 0;
4653 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
4654 }
Chris Masond3977122009-01-05 21:25:51 -05004655
Chris Masond1310b22008-01-24 16:13:08 -05004656 if (start + min_len > eb->len) {
Chris Masond3977122009-01-05 21:25:51 -05004657 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
4658 "wanted %lu %lu\n", (unsigned long long)eb->start,
4659 eb->len, start, min_len);
Chris Masond1310b22008-01-24 16:13:08 -05004660 WARN_ON(1);
Josef Bacik850265332011-03-15 14:52:12 -04004661 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05004662 }
4663
4664 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04004665 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05004666 *map = kaddr + offset;
4667 *map_len = PAGE_CACHE_SIZE - offset;
4668 return 0;
4669}
Chris Masond1310b22008-01-24 16:13:08 -05004670
Chris Masond1310b22008-01-24 16:13:08 -05004671int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
4672 unsigned long start,
4673 unsigned long len)
4674{
4675 size_t cur;
4676 size_t offset;
4677 struct page *page;
4678 char *kaddr;
4679 char *ptr = (char *)ptrv;
4680 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4681 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4682 int ret = 0;
4683
4684 WARN_ON(start > eb->len);
4685 WARN_ON(start + len > eb->start + eb->len);
4686
4687 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4688
Chris Masond3977122009-01-05 21:25:51 -05004689 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004690 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05004691
4692 cur = min(len, (PAGE_CACHE_SIZE - offset));
4693
Chris Masona6591712011-07-19 12:04:14 -04004694 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004695 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004696 if (ret)
4697 break;
4698
4699 ptr += cur;
4700 len -= cur;
4701 offset = 0;
4702 i++;
4703 }
4704 return ret;
4705}
Chris Masond1310b22008-01-24 16:13:08 -05004706
4707void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
4708 unsigned long start, unsigned long len)
4709{
4710 size_t cur;
4711 size_t offset;
4712 struct page *page;
4713 char *kaddr;
4714 char *src = (char *)srcv;
4715 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4716 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4717
4718 WARN_ON(start > eb->len);
4719 WARN_ON(start + len > eb->start + eb->len);
4720
4721 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4722
Chris Masond3977122009-01-05 21:25:51 -05004723 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004724 page = extent_buffer_page(eb, i);
4725 WARN_ON(!PageUptodate(page));
4726
4727 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004728 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004729 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004730
4731 src += cur;
4732 len -= cur;
4733 offset = 0;
4734 i++;
4735 }
4736}
Chris Masond1310b22008-01-24 16:13:08 -05004737
4738void memset_extent_buffer(struct extent_buffer *eb, char c,
4739 unsigned long start, unsigned long len)
4740{
4741 size_t cur;
4742 size_t offset;
4743 struct page *page;
4744 char *kaddr;
4745 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
4746 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
4747
4748 WARN_ON(start > eb->len);
4749 WARN_ON(start + len > eb->start + eb->len);
4750
4751 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
4752
Chris Masond3977122009-01-05 21:25:51 -05004753 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004754 page = extent_buffer_page(eb, i);
4755 WARN_ON(!PageUptodate(page));
4756
4757 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04004758 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004759 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004760
4761 len -= cur;
4762 offset = 0;
4763 i++;
4764 }
4765}
Chris Masond1310b22008-01-24 16:13:08 -05004766
4767void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
4768 unsigned long dst_offset, unsigned long src_offset,
4769 unsigned long len)
4770{
4771 u64 dst_len = dst->len;
4772 size_t cur;
4773 size_t offset;
4774 struct page *page;
4775 char *kaddr;
4776 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4777 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4778
4779 WARN_ON(src->len != dst_len);
4780
4781 offset = (start_offset + dst_offset) &
4782 ((unsigned long)PAGE_CACHE_SIZE - 1);
4783
Chris Masond3977122009-01-05 21:25:51 -05004784 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004785 page = extent_buffer_page(dst, i);
4786 WARN_ON(!PageUptodate(page));
4787
4788 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
4789
Chris Masona6591712011-07-19 12:04:14 -04004790 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05004791 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05004792
4793 src_offset += cur;
4794 len -= cur;
4795 offset = 0;
4796 i++;
4797 }
4798}
Chris Masond1310b22008-01-24 16:13:08 -05004799
4800static void move_pages(struct page *dst_page, struct page *src_page,
4801 unsigned long dst_off, unsigned long src_off,
4802 unsigned long len)
4803{
Chris Masona6591712011-07-19 12:04:14 -04004804 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004805 if (dst_page == src_page) {
4806 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
4807 } else {
Chris Masona6591712011-07-19 12:04:14 -04004808 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05004809 char *p = dst_kaddr + dst_off + len;
4810 char *s = src_kaddr + src_off + len;
4811
4812 while (len--)
4813 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05004814 }
Chris Masond1310b22008-01-24 16:13:08 -05004815}
4816
Sergei Trofimovich33872062011-04-11 21:52:52 +00004817static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
4818{
4819 unsigned long distance = (src > dst) ? src - dst : dst - src;
4820 return distance < len;
4821}
4822
Chris Masond1310b22008-01-24 16:13:08 -05004823static void copy_pages(struct page *dst_page, struct page *src_page,
4824 unsigned long dst_off, unsigned long src_off,
4825 unsigned long len)
4826{
Chris Masona6591712011-07-19 12:04:14 -04004827 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05004828 char *src_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004829 int must_memmove = 0;
Chris Masond1310b22008-01-24 16:13:08 -05004830
Sergei Trofimovich33872062011-04-11 21:52:52 +00004831 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04004832 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00004833 } else {
Chris Masond1310b22008-01-24 16:13:08 -05004834 src_kaddr = dst_kaddr;
Chris Mason727011e2010-08-06 13:21:20 -04004835 if (areas_overlap(src_off, dst_off, len))
4836 must_memmove = 1;
Sergei Trofimovich33872062011-04-11 21:52:52 +00004837 }
Chris Masond1310b22008-01-24 16:13:08 -05004838
Chris Mason727011e2010-08-06 13:21:20 -04004839 if (must_memmove)
4840 memmove(dst_kaddr + dst_off, src_kaddr + src_off, len);
4841 else
4842 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05004843}
4844
4845void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4846 unsigned long src_offset, unsigned long len)
4847{
4848 size_t cur;
4849 size_t dst_off_in_page;
4850 size_t src_off_in_page;
4851 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4852 unsigned long dst_i;
4853 unsigned long src_i;
4854
4855 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004856 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4857 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004858 BUG_ON(1);
4859 }
4860 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004861 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4862 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004863 BUG_ON(1);
4864 }
4865
Chris Masond3977122009-01-05 21:25:51 -05004866 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004867 dst_off_in_page = (start_offset + dst_offset) &
4868 ((unsigned long)PAGE_CACHE_SIZE - 1);
4869 src_off_in_page = (start_offset + src_offset) &
4870 ((unsigned long)PAGE_CACHE_SIZE - 1);
4871
4872 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
4873 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
4874
4875 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
4876 src_off_in_page));
4877 cur = min_t(unsigned long, cur,
4878 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
4879
4880 copy_pages(extent_buffer_page(dst, dst_i),
4881 extent_buffer_page(dst, src_i),
4882 dst_off_in_page, src_off_in_page, cur);
4883
4884 src_offset += cur;
4885 dst_offset += cur;
4886 len -= cur;
4887 }
4888}
Chris Masond1310b22008-01-24 16:13:08 -05004889
4890void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
4891 unsigned long src_offset, unsigned long len)
4892{
4893 size_t cur;
4894 size_t dst_off_in_page;
4895 size_t src_off_in_page;
4896 unsigned long dst_end = dst_offset + len - 1;
4897 unsigned long src_end = src_offset + len - 1;
4898 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
4899 unsigned long dst_i;
4900 unsigned long src_i;
4901
4902 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004903 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
4904 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004905 BUG_ON(1);
4906 }
4907 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05004908 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
4909 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05004910 BUG_ON(1);
4911 }
Chris Mason727011e2010-08-06 13:21:20 -04004912 if (dst_offset < src_offset) {
Chris Masond1310b22008-01-24 16:13:08 -05004913 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
4914 return;
4915 }
Chris Masond3977122009-01-05 21:25:51 -05004916 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05004917 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
4918 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
4919
4920 dst_off_in_page = (start_offset + dst_end) &
4921 ((unsigned long)PAGE_CACHE_SIZE - 1);
4922 src_off_in_page = (start_offset + src_end) &
4923 ((unsigned long)PAGE_CACHE_SIZE - 1);
4924
4925 cur = min_t(unsigned long, len, src_off_in_page + 1);
4926 cur = min(cur, dst_off_in_page + 1);
4927 move_pages(extent_buffer_page(dst, dst_i),
4928 extent_buffer_page(dst, src_i),
4929 dst_off_in_page - cur + 1,
4930 src_off_in_page - cur + 1, cur);
4931
4932 dst_end -= cur;
4933 src_end -= cur;
4934 len -= cur;
4935 }
4936}
Chris Mason6af118ce2008-07-22 11:18:07 -04004937
Josef Bacik3083ee22012-03-09 16:01:49 -05004938int try_release_extent_buffer(struct page *page, gfp_t mask)
Miao Xie19fe0a82010-10-26 20:57:29 -04004939{
Chris Mason6af118ce2008-07-22 11:18:07 -04004940 struct extent_buffer *eb;
Miao Xie897ca6e92010-10-26 20:57:29 -04004941
Miao Xie19fe0a82010-10-26 20:57:29 -04004942 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05004943 * We need to make sure noboody is attaching this page to an eb right
4944 * now.
Miao Xie19fe0a82010-10-26 20:57:29 -04004945 */
Josef Bacik3083ee22012-03-09 16:01:49 -05004946 spin_lock(&page->mapping->private_lock);
4947 if (!PagePrivate(page)) {
4948 spin_unlock(&page->mapping->private_lock);
4949 return 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04004950 }
4951
Josef Bacik3083ee22012-03-09 16:01:49 -05004952 eb = (struct extent_buffer *)page->private;
4953 BUG_ON(!eb);
Miao Xie19fe0a82010-10-26 20:57:29 -04004954
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004955 /*
Josef Bacik3083ee22012-03-09 16:01:49 -05004956 * This is a little awful but should be ok, we need to make sure that
4957 * the eb doesn't disappear out from under us while we're looking at
4958 * this page.
4959 */
4960 spin_lock(&eb->refs_lock);
Josef Bacik0b32f4b2012-03-13 09:38:00 -04004961 if (atomic_read(&eb->refs) != 1 || extent_buffer_under_io(eb)) {
Josef Bacik3083ee22012-03-09 16:01:49 -05004962 spin_unlock(&eb->refs_lock);
4963 spin_unlock(&page->mapping->private_lock);
4964 return 0;
4965 }
4966 spin_unlock(&page->mapping->private_lock);
4967
4968 if ((mask & GFP_NOFS) == GFP_NOFS)
4969 mask = GFP_NOFS;
4970
4971 /*
4972 * If tree ref isn't set then we know the ref on this eb is a real ref,
4973 * so just return, this page will likely be freed soon anyway.
4974 */
4975 if (!test_and_clear_bit(EXTENT_BUFFER_TREE_REF, &eb->bflags)) {
4976 spin_unlock(&eb->refs_lock);
4977 return 0;
4978 }
Josef Bacik3083ee22012-03-09 16:01:49 -05004979
Josef Bacike64860a2012-07-20 16:05:36 -04004980 return release_extent_buffer(eb, mask);
Chris Mason6af118ce2008-07-22 11:18:07 -04004981}