blob: fc742e59815efa4049ad9ee5470cf0701e3106da [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>
5#include <linux/gfp.h>
6#include <linux/pagemap.h>
7#include <linux/page-flags.h>
8#include <linux/module.h>
9#include <linux/spinlock.h>
10#include <linux/blkdev.h>
11#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050012#include <linux/writeback.h>
13#include <linux/pagevec.h>
14#include "extent_io.h"
15#include "extent_map.h"
David Woodhouse2db04962008-08-07 11:19:43 -040016#include "compat.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040017#include "ctree.h"
18#include "btrfs_inode.h"
Chris Masond1310b22008-01-24 16:13:08 -050019
Chris Masond1310b22008-01-24 16:13:08 -050020static struct kmem_cache *extent_state_cache;
21static struct kmem_cache *extent_buffer_cache;
22
23static LIST_HEAD(buffers);
24static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040025
Chris Masonb47eda82008-11-10 12:34:40 -050026#define LEAK_DEBUG 0
Chris Mason39351272009-02-04 09:24:05 -050027#if LEAK_DEBUG
Chris Masond3977122009-01-05 21:25:51 -050028static DEFINE_SPINLOCK(leak_lock);
Chris Mason4bef0842008-09-08 11:18:08 -040029#endif
Chris Masond1310b22008-01-24 16:13:08 -050030
Chris Masond1310b22008-01-24 16:13:08 -050031#define BUFFER_LRU_MAX 64
32
33struct tree_entry {
34 u64 start;
35 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -050036 struct rb_node rb_node;
37};
38
39struct extent_page_data {
40 struct bio *bio;
41 struct extent_io_tree *tree;
42 get_extent_t *get_extent;
Chris Mason771ed682008-11-06 22:02:51 -050043
44 /* tells writepage not to lock the state bits for this range
45 * it still does the unlocking
46 */
Chris Masonffbd5172009-04-20 15:50:09 -040047 unsigned int extent_locked:1;
48
49 /* tells the submit_bio code to use a WRITE_SYNC */
50 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -050051};
52
53int __init extent_io_init(void)
54{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020055 extent_state_cache = kmem_cache_create("extent_state",
56 sizeof(struct extent_state), 0,
57 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -050058 if (!extent_state_cache)
59 return -ENOMEM;
60
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020061 extent_buffer_cache = kmem_cache_create("extent_buffers",
62 sizeof(struct extent_buffer), 0,
63 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -050064 if (!extent_buffer_cache)
65 goto free_state_cache;
66 return 0;
67
68free_state_cache:
69 kmem_cache_destroy(extent_state_cache);
70 return -ENOMEM;
71}
72
73void extent_io_exit(void)
74{
75 struct extent_state *state;
Chris Mason2d2ae542008-03-26 16:24:23 -040076 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -050077
78 while (!list_empty(&states)) {
Chris Mason2d2ae542008-03-26 16:24:23 -040079 state = list_entry(states.next, struct extent_state, leak_list);
Chris Masond3977122009-01-05 21:25:51 -050080 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
81 "state %lu in tree %p refs %d\n",
82 (unsigned long long)state->start,
83 (unsigned long long)state->end,
84 state->state, state->tree, atomic_read(&state->refs));
Chris Mason2d2ae542008-03-26 16:24:23 -040085 list_del(&state->leak_list);
Chris Masond1310b22008-01-24 16:13:08 -050086 kmem_cache_free(extent_state_cache, state);
87
88 }
89
Chris Mason2d2ae542008-03-26 16:24:23 -040090 while (!list_empty(&buffers)) {
91 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Chris Masond3977122009-01-05 21:25:51 -050092 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
93 "refs %d\n", (unsigned long long)eb->start,
94 eb->len, atomic_read(&eb->refs));
Chris Mason2d2ae542008-03-26 16:24:23 -040095 list_del(&eb->leak_list);
96 kmem_cache_free(extent_buffer_cache, eb);
97 }
Chris Masond1310b22008-01-24 16:13:08 -050098 if (extent_state_cache)
99 kmem_cache_destroy(extent_state_cache);
100 if (extent_buffer_cache)
101 kmem_cache_destroy(extent_buffer_cache);
102}
103
104void extent_io_tree_init(struct extent_io_tree *tree,
105 struct address_space *mapping, gfp_t mask)
106{
Eric Paris6bef4d32010-02-23 19:43:04 +0000107 tree->state = RB_ROOT;
108 tree->buffer = RB_ROOT;
Chris Masond1310b22008-01-24 16:13:08 -0500109 tree->ops = NULL;
110 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500111 spin_lock_init(&tree->lock);
Chris Mason6af118c2008-07-22 11:18:07 -0400112 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500113 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500114}
Chris Masond1310b22008-01-24 16:13:08 -0500115
Christoph Hellwigb2950862008-12-02 09:54:17 -0500116static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500117{
118 struct extent_state *state;
Chris Mason39351272009-02-04 09:24:05 -0500119#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400120 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400121#endif
Chris Masond1310b22008-01-24 16:13:08 -0500122
123 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400124 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500125 return state;
126 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500127 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500128 state->tree = NULL;
Chris Mason39351272009-02-04 09:24:05 -0500129#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400130 spin_lock_irqsave(&leak_lock, flags);
131 list_add(&state->leak_list, &states);
132 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400133#endif
Chris Masond1310b22008-01-24 16:13:08 -0500134 atomic_set(&state->refs, 1);
135 init_waitqueue_head(&state->wq);
136 return state;
137}
Chris Masond1310b22008-01-24 16:13:08 -0500138
Christoph Hellwigb2950862008-12-02 09:54:17 -0500139static void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500140{
Chris Masond1310b22008-01-24 16:13:08 -0500141 if (!state)
142 return;
143 if (atomic_dec_and_test(&state->refs)) {
Chris Mason39351272009-02-04 09:24:05 -0500144#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400145 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400146#endif
Chris Mason70dec802008-01-29 09:59:12 -0500147 WARN_ON(state->tree);
Chris Mason39351272009-02-04 09:24:05 -0500148#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400149 spin_lock_irqsave(&leak_lock, flags);
150 list_del(&state->leak_list);
151 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400152#endif
Chris Masond1310b22008-01-24 16:13:08 -0500153 kmem_cache_free(extent_state_cache, state);
154 }
155}
Chris Masond1310b22008-01-24 16:13:08 -0500156
157static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
158 struct rb_node *node)
159{
Chris Masond3977122009-01-05 21:25:51 -0500160 struct rb_node **p = &root->rb_node;
161 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500162 struct tree_entry *entry;
163
Chris Masond3977122009-01-05 21:25:51 -0500164 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500165 parent = *p;
166 entry = rb_entry(parent, struct tree_entry, rb_node);
167
168 if (offset < entry->start)
169 p = &(*p)->rb_left;
170 else if (offset > entry->end)
171 p = &(*p)->rb_right;
172 else
173 return parent;
174 }
175
176 entry = rb_entry(node, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500177 rb_link_node(node, parent, p);
178 rb_insert_color(node, root);
179 return NULL;
180}
181
Chris Mason80ea96b2008-02-01 14:51:59 -0500182static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500183 struct rb_node **prev_ret,
184 struct rb_node **next_ret)
185{
Chris Mason80ea96b2008-02-01 14:51:59 -0500186 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500187 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500188 struct rb_node *prev = NULL;
189 struct rb_node *orig_prev = NULL;
190 struct tree_entry *entry;
191 struct tree_entry *prev_entry = NULL;
192
Chris Masond3977122009-01-05 21:25:51 -0500193 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500194 entry = rb_entry(n, struct tree_entry, rb_node);
195 prev = n;
196 prev_entry = entry;
197
198 if (offset < entry->start)
199 n = n->rb_left;
200 else if (offset > entry->end)
201 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500202 else
Chris Masond1310b22008-01-24 16:13:08 -0500203 return n;
204 }
205
206 if (prev_ret) {
207 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500208 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500209 prev = rb_next(prev);
210 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
211 }
212 *prev_ret = prev;
213 prev = orig_prev;
214 }
215
216 if (next_ret) {
217 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500218 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500219 prev = rb_prev(prev);
220 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
221 }
222 *next_ret = prev;
223 }
224 return NULL;
225}
226
Chris Mason80ea96b2008-02-01 14:51:59 -0500227static inline struct rb_node *tree_search(struct extent_io_tree *tree,
228 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500229{
Chris Mason70dec802008-01-29 09:59:12 -0500230 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500231 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500232
Chris Mason80ea96b2008-02-01 14:51:59 -0500233 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500234 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500235 return prev;
236 return ret;
237}
238
Chris Mason6af118c2008-07-22 11:18:07 -0400239static struct extent_buffer *buffer_tree_insert(struct extent_io_tree *tree,
240 u64 offset, struct rb_node *node)
241{
242 struct rb_root *root = &tree->buffer;
Chris Masond3977122009-01-05 21:25:51 -0500243 struct rb_node **p = &root->rb_node;
244 struct rb_node *parent = NULL;
Chris Mason6af118c2008-07-22 11:18:07 -0400245 struct extent_buffer *eb;
246
Chris Masond3977122009-01-05 21:25:51 -0500247 while (*p) {
Chris Mason6af118c2008-07-22 11:18:07 -0400248 parent = *p;
249 eb = rb_entry(parent, struct extent_buffer, rb_node);
250
251 if (offset < eb->start)
252 p = &(*p)->rb_left;
253 else if (offset > eb->start)
254 p = &(*p)->rb_right;
255 else
256 return eb;
257 }
258
259 rb_link_node(node, parent, p);
260 rb_insert_color(node, root);
261 return NULL;
262}
263
264static struct extent_buffer *buffer_search(struct extent_io_tree *tree,
265 u64 offset)
266{
267 struct rb_root *root = &tree->buffer;
Chris Masond3977122009-01-05 21:25:51 -0500268 struct rb_node *n = root->rb_node;
Chris Mason6af118c2008-07-22 11:18:07 -0400269 struct extent_buffer *eb;
270
Chris Masond3977122009-01-05 21:25:51 -0500271 while (n) {
Chris Mason6af118c2008-07-22 11:18:07 -0400272 eb = rb_entry(n, struct extent_buffer, rb_node);
273 if (offset < eb->start)
274 n = n->rb_left;
275 else if (offset > eb->start)
276 n = n->rb_right;
277 else
278 return eb;
279 }
280 return NULL;
281}
282
Josef Bacik9ed74f22009-09-11 16:12:44 -0400283static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
284 struct extent_state *other)
285{
286 if (tree->ops && tree->ops->merge_extent_hook)
287 tree->ops->merge_extent_hook(tree->mapping->host, new,
288 other);
289}
290
Chris Masond1310b22008-01-24 16:13:08 -0500291/*
292 * utility function to look for merge candidates inside a given range.
293 * Any extents with matching state are merged together into a single
294 * extent in the tree. Extents with EXTENT_IO in their state field
295 * are not merged because the end_io handlers need to be able to do
296 * operations on them without sleeping (or doing allocations/splits).
297 *
298 * This should be called with the tree lock held.
299 */
300static int merge_state(struct extent_io_tree *tree,
301 struct extent_state *state)
302{
303 struct extent_state *other;
304 struct rb_node *other_node;
305
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400306 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Chris Masond1310b22008-01-24 16:13:08 -0500307 return 0;
308
309 other_node = rb_prev(&state->rb_node);
310 if (other_node) {
311 other = rb_entry(other_node, struct extent_state, rb_node);
312 if (other->end == state->start - 1 &&
313 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400314 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500315 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500316 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500317 rb_erase(&other->rb_node, &tree->state);
318 free_extent_state(other);
319 }
320 }
321 other_node = rb_next(&state->rb_node);
322 if (other_node) {
323 other = rb_entry(other_node, struct extent_state, rb_node);
324 if (other->start == state->end + 1 &&
325 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400326 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500327 other->start = state->start;
Chris Mason70dec802008-01-29 09:59:12 -0500328 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500329 rb_erase(&state->rb_node, &tree->state);
330 free_extent_state(state);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400331 state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500332 }
333 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400334
Chris Masond1310b22008-01-24 16:13:08 -0500335 return 0;
336}
337
Josef Bacik9ed74f22009-09-11 16:12:44 -0400338static int set_state_cb(struct extent_io_tree *tree,
Chris Mason291d6732008-01-29 15:55:23 -0500339 struct extent_state *state,
340 unsigned long bits)
341{
342 if (tree->ops && tree->ops->set_bit_hook) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400343 return tree->ops->set_bit_hook(tree->mapping->host,
344 state->start, state->end,
345 state->state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500346 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400347
348 return 0;
Chris Mason291d6732008-01-29 15:55:23 -0500349}
350
351static void clear_state_cb(struct extent_io_tree *tree,
352 struct extent_state *state,
353 unsigned long bits)
354{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400355 if (tree->ops && tree->ops->clear_bit_hook)
356 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500357}
358
Chris Masond1310b22008-01-24 16:13:08 -0500359/*
360 * insert an extent_state struct into the tree. 'bits' are set on the
361 * struct before it is inserted.
362 *
363 * This may return -EEXIST if the extent is already there, in which case the
364 * state struct is freed.
365 *
366 * The tree lock is not taken internally. This is a utility function and
367 * probably isn't what you want to call (see set/clear_extent_bit).
368 */
369static int insert_state(struct extent_io_tree *tree,
370 struct extent_state *state, u64 start, u64 end,
371 int bits)
372{
373 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400374 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500375
376 if (end < start) {
Chris Masond3977122009-01-05 21:25:51 -0500377 printk(KERN_ERR "btrfs end < start %llu %llu\n",
378 (unsigned long long)end,
379 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500380 WARN_ON(1);
381 }
Chris Masond1310b22008-01-24 16:13:08 -0500382 state->start = start;
383 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400384 ret = set_state_cb(tree, state, bits);
385 if (ret)
386 return ret;
387
388 if (bits & EXTENT_DIRTY)
389 tree->dirty_bytes += end - start + 1;
Chris Masone48c4652009-09-11 11:25:02 -0400390 state->state |= bits;
Chris Masond1310b22008-01-24 16:13:08 -0500391 node = tree_insert(&tree->state, end, &state->rb_node);
392 if (node) {
393 struct extent_state *found;
394 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500395 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
396 "%llu %llu\n", (unsigned long long)found->start,
397 (unsigned long long)found->end,
398 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500399 free_extent_state(state);
400 return -EEXIST;
401 }
Chris Mason70dec802008-01-29 09:59:12 -0500402 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500403 merge_state(tree, state);
404 return 0;
405}
406
Josef Bacik9ed74f22009-09-11 16:12:44 -0400407static int split_cb(struct extent_io_tree *tree, struct extent_state *orig,
408 u64 split)
409{
410 if (tree->ops && tree->ops->split_extent_hook)
411 return tree->ops->split_extent_hook(tree->mapping->host,
412 orig, split);
413 return 0;
414}
415
Chris Masond1310b22008-01-24 16:13:08 -0500416/*
417 * split a given extent state struct in two, inserting the preallocated
418 * struct 'prealloc' as the newly created second half. 'split' indicates an
419 * offset inside 'orig' where it should be split.
420 *
421 * Before calling,
422 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
423 * are two extent state structs in the tree:
424 * prealloc: [orig->start, split - 1]
425 * orig: [ split, orig->end ]
426 *
427 * The tree locks are not taken by this function. They need to be held
428 * by the caller.
429 */
430static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
431 struct extent_state *prealloc, u64 split)
432{
433 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400434
435 split_cb(tree, orig, split);
436
Chris Masond1310b22008-01-24 16:13:08 -0500437 prealloc->start = orig->start;
438 prealloc->end = split - 1;
439 prealloc->state = orig->state;
440 orig->start = split;
441
442 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
443 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500444 free_extent_state(prealloc);
445 return -EEXIST;
446 }
Chris Mason70dec802008-01-29 09:59:12 -0500447 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500448 return 0;
449}
450
451/*
452 * utility function to clear some bits in an extent state struct.
453 * it will optionally wake up any one waiting on this state (wake == 1), or
454 * forcibly remove the state from the tree (delete == 1).
455 *
456 * If no bits are set on the state struct after clearing things, the
457 * struct is freed and removed from the tree
458 */
459static int clear_state_bit(struct extent_io_tree *tree,
460 struct extent_state *state, int bits, int wake,
461 int delete)
462{
Josef Bacik32c00af2009-10-08 13:34:05 -0400463 int bits_to_clear = bits & ~EXTENT_DO_ACCOUNTING;
464 int ret = state->state & bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500465
466 if ((bits & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
467 u64 range = state->end - state->start + 1;
468 WARN_ON(range > tree->dirty_bytes);
469 tree->dirty_bytes -= range;
470 }
Chris Mason291d6732008-01-29 15:55:23 -0500471 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400472 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500473 if (wake)
474 wake_up(&state->wq);
475 if (delete || state->state == 0) {
Chris Mason70dec802008-01-29 09:59:12 -0500476 if (state->tree) {
Chris Masonae9d1282008-02-01 15:42:15 -0500477 clear_state_cb(tree, state, state->state);
Chris Masond1310b22008-01-24 16:13:08 -0500478 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500479 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500480 free_extent_state(state);
481 } else {
482 WARN_ON(1);
483 }
484 } else {
485 merge_state(tree, state);
486 }
487 return ret;
488}
489
490/*
491 * clear some bits on a range in the tree. This may require splitting
492 * or inserting elements in the tree, so the gfp mask is used to
493 * indicate which allocations or sleeping are allowed.
494 *
495 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
496 * the given range from the tree regardless of state (ie for truncate).
497 *
498 * the range [start, end] is inclusive.
499 *
500 * This takes the tree lock, and returns < 0 on error, > 0 if any of the
501 * bits were already set, or zero if none of the bits were already set.
502 */
503int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400504 int bits, int wake, int delete,
505 struct extent_state **cached_state,
506 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500507{
508 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400509 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500510 struct extent_state *prealloc = NULL;
Chris Mason2c64c532009-09-02 15:04:12 -0400511 struct rb_node *next_node;
Chris Masond1310b22008-01-24 16:13:08 -0500512 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400513 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500514 int err;
515 int set = 0;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000516 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500517
Josef Bacik2ac55d42010-02-03 19:33:23 +0000518 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
519 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500520again:
521 if (!prealloc && (mask & __GFP_WAIT)) {
522 prealloc = alloc_extent_state(mask);
523 if (!prealloc)
524 return -ENOMEM;
525 }
526
Chris Masoncad321a2008-12-17 14:51:42 -0500527 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400528 if (cached_state) {
529 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000530
531 if (clear) {
532 *cached_state = NULL;
533 cached_state = NULL;
534 }
535
Chris Mason42daec22009-09-23 19:51:09 -0400536 if (cached && cached->tree && cached->start == start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000537 if (clear)
538 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400539 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400540 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400541 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000542 if (clear)
543 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400544 }
Chris Masond1310b22008-01-24 16:13:08 -0500545 /*
546 * this search will find the extents that end after
547 * our range starts
548 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500549 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500550 if (!node)
551 goto out;
552 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400553hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500554 if (state->start > end)
555 goto out;
556 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400557 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500558
559 /*
560 * | ---- desired range ---- |
561 * | state | or
562 * | ------------- state -------------- |
563 *
564 * We need to split the extent we found, and may flip
565 * bits on second half.
566 *
567 * If the extent we found extends past our range, we
568 * just split and search again. It'll get split again
569 * the next time though.
570 *
571 * If the extent we found is inside our range, we clear
572 * the desired bit on it.
573 */
574
575 if (state->start < start) {
Chris Mason70dec802008-01-29 09:59:12 -0500576 if (!prealloc)
577 prealloc = alloc_extent_state(GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500578 err = split_state(tree, state, prealloc, start);
579 BUG_ON(err == -EEXIST);
580 prealloc = NULL;
581 if (err)
582 goto out;
583 if (state->end <= end) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400584 set |= clear_state_bit(tree, state, bits, wake,
585 delete);
Yan Zheng5c939df2009-05-27 09:16:03 -0400586 if (last_end == (u64)-1)
587 goto out;
588 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500589 }
590 goto search_again;
591 }
592 /*
593 * | ---- desired range ---- |
594 * | state |
595 * We need to split the extent, and clear the bit
596 * on the first half
597 */
598 if (state->start <= end && state->end > end) {
Chris Mason70dec802008-01-29 09:59:12 -0500599 if (!prealloc)
600 prealloc = alloc_extent_state(GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500601 err = split_state(tree, state, prealloc, end + 1);
602 BUG_ON(err == -EEXIST);
Chris Masond1310b22008-01-24 16:13:08 -0500603 if (wake)
604 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400605
Josef Bacik9ed74f22009-09-11 16:12:44 -0400606 set |= clear_state_bit(tree, prealloc, bits, wake, delete);
607
Chris Masond1310b22008-01-24 16:13:08 -0500608 prealloc = NULL;
609 goto out;
610 }
Chris Mason42daec22009-09-23 19:51:09 -0400611
Chris Mason2c64c532009-09-02 15:04:12 -0400612 if (state->end < end && prealloc && !need_resched())
613 next_node = rb_next(&state->rb_node);
614 else
615 next_node = NULL;
Chris Mason42daec22009-09-23 19:51:09 -0400616
Chris Masond1310b22008-01-24 16:13:08 -0500617 set |= clear_state_bit(tree, state, bits, wake, delete);
Yan Zheng5c939df2009-05-27 09:16:03 -0400618 if (last_end == (u64)-1)
619 goto out;
620 start = last_end + 1;
Chris Mason2c64c532009-09-02 15:04:12 -0400621 if (start <= end && next_node) {
622 state = rb_entry(next_node, struct extent_state,
623 rb_node);
624 if (state->start == start)
625 goto hit_next;
626 }
Chris Masond1310b22008-01-24 16:13:08 -0500627 goto search_again;
628
629out:
Chris Masoncad321a2008-12-17 14:51:42 -0500630 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500631 if (prealloc)
632 free_extent_state(prealloc);
633
634 return set;
635
636search_again:
637 if (start > end)
638 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500639 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500640 if (mask & __GFP_WAIT)
641 cond_resched();
642 goto again;
643}
Chris Masond1310b22008-01-24 16:13:08 -0500644
645static int wait_on_state(struct extent_io_tree *tree,
646 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500647 __releases(tree->lock)
648 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500649{
650 DEFINE_WAIT(wait);
651 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500652 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500653 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500654 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500655 finish_wait(&state->wq, &wait);
656 return 0;
657}
658
659/*
660 * waits for one or more bits to clear on a range in the state tree.
661 * The range [start, end] is inclusive.
662 * The tree lock is taken by this function
663 */
664int wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
665{
666 struct extent_state *state;
667 struct rb_node *node;
668
Chris Masoncad321a2008-12-17 14:51:42 -0500669 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500670again:
671 while (1) {
672 /*
673 * this search will find all the extents that end after
674 * our range starts
675 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500676 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500677 if (!node)
678 break;
679
680 state = rb_entry(node, struct extent_state, rb_node);
681
682 if (state->start > end)
683 goto out;
684
685 if (state->state & bits) {
686 start = state->start;
687 atomic_inc(&state->refs);
688 wait_on_state(tree, state);
689 free_extent_state(state);
690 goto again;
691 }
692 start = state->end + 1;
693
694 if (start > end)
695 break;
696
697 if (need_resched()) {
Chris Masoncad321a2008-12-17 14:51:42 -0500698 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500699 cond_resched();
Chris Masoncad321a2008-12-17 14:51:42 -0500700 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500701 }
702 }
703out:
Chris Masoncad321a2008-12-17 14:51:42 -0500704 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500705 return 0;
706}
Chris Masond1310b22008-01-24 16:13:08 -0500707
Josef Bacik9ed74f22009-09-11 16:12:44 -0400708static int set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500709 struct extent_state *state,
710 int bits)
711{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400712 int ret;
713
714 ret = set_state_cb(tree, state, bits);
715 if (ret)
716 return ret;
717
Chris Masond1310b22008-01-24 16:13:08 -0500718 if ((bits & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
719 u64 range = state->end - state->start + 1;
720 tree->dirty_bytes += range;
721 }
Chris Masonb0c68f82008-01-31 11:05:37 -0500722 state->state |= bits;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400723
724 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500725}
726
Chris Mason2c64c532009-09-02 15:04:12 -0400727static void cache_state(struct extent_state *state,
728 struct extent_state **cached_ptr)
729{
730 if (cached_ptr && !(*cached_ptr)) {
731 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
732 *cached_ptr = state;
733 atomic_inc(&state->refs);
734 }
735 }
736}
737
Chris Masond1310b22008-01-24 16:13:08 -0500738/*
Chris Mason1edbb732009-09-02 13:24:36 -0400739 * set some bits on a range in the tree. This may require allocations or
740 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500741 *
Chris Mason1edbb732009-09-02 13:24:36 -0400742 * If any of the exclusive bits are set, this will fail with -EEXIST if some
743 * part of the range already has the desired bits set. The start of the
744 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500745 *
Chris Mason1edbb732009-09-02 13:24:36 -0400746 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500747 */
Chris Mason1edbb732009-09-02 13:24:36 -0400748
Chris Masond3977122009-01-05 21:25:51 -0500749static int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason1edbb732009-09-02 13:24:36 -0400750 int bits, int exclusive_bits, u64 *failed_start,
Chris Mason2c64c532009-09-02 15:04:12 -0400751 struct extent_state **cached_state,
Chris Masond3977122009-01-05 21:25:51 -0500752 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500753{
754 struct extent_state *state;
755 struct extent_state *prealloc = NULL;
756 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500757 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500758 u64 last_start;
759 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400760
Chris Masond1310b22008-01-24 16:13:08 -0500761again:
762 if (!prealloc && (mask & __GFP_WAIT)) {
763 prealloc = alloc_extent_state(mask);
764 if (!prealloc)
765 return -ENOMEM;
766 }
767
Chris Masoncad321a2008-12-17 14:51:42 -0500768 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400769 if (cached_state && *cached_state) {
770 state = *cached_state;
771 if (state->start == start && state->tree) {
772 node = &state->rb_node;
773 goto hit_next;
774 }
775 }
Chris Masond1310b22008-01-24 16:13:08 -0500776 /*
777 * this search will find all the extents that end after
778 * our range starts.
779 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500780 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500781 if (!node) {
782 err = insert_state(tree, prealloc, start, end, bits);
783 prealloc = NULL;
784 BUG_ON(err == -EEXIST);
785 goto out;
786 }
Chris Masond1310b22008-01-24 16:13:08 -0500787 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400788hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500789 last_start = state->start;
790 last_end = state->end;
791
792 /*
793 * | ---- desired range ---- |
794 * | state |
795 *
796 * Just lock what we found and keep going
797 */
798 if (state->start == start && state->end <= end) {
Chris Mason40431d62009-08-05 12:57:59 -0400799 struct rb_node *next_node;
Chris Mason1edbb732009-09-02 13:24:36 -0400800 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500801 *failed_start = state->start;
802 err = -EEXIST;
803 goto out;
804 }
Chris Mason42daec22009-09-23 19:51:09 -0400805
Josef Bacik9ed74f22009-09-11 16:12:44 -0400806 err = set_state_bits(tree, state, bits);
807 if (err)
808 goto out;
809
Chris Mason2c64c532009-09-02 15:04:12 -0400810 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500811 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400812 if (last_end == (u64)-1)
813 goto out;
Chris Mason40431d62009-08-05 12:57:59 -0400814
Yan Zheng5c939df2009-05-27 09:16:03 -0400815 start = last_end + 1;
Chris Mason40431d62009-08-05 12:57:59 -0400816 if (start < end && prealloc && !need_resched()) {
817 next_node = rb_next(node);
818 if (next_node) {
819 state = rb_entry(next_node, struct extent_state,
820 rb_node);
821 if (state->start == start)
822 goto hit_next;
823 }
824 }
Chris Masond1310b22008-01-24 16:13:08 -0500825 goto search_again;
826 }
827
828 /*
829 * | ---- desired range ---- |
830 * | state |
831 * or
832 * | ------------- state -------------- |
833 *
834 * We need to split the extent we found, and may flip bits on
835 * second half.
836 *
837 * If the extent we found extends past our
838 * range, we just split and search again. It'll get split
839 * again the next time though.
840 *
841 * If the extent we found is inside our range, we set the
842 * desired bit on it.
843 */
844 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400845 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500846 *failed_start = start;
847 err = -EEXIST;
848 goto out;
849 }
850 err = split_state(tree, state, prealloc, start);
851 BUG_ON(err == -EEXIST);
852 prealloc = NULL;
853 if (err)
854 goto out;
855 if (state->end <= end) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400856 err = set_state_bits(tree, state, bits);
857 if (err)
858 goto out;
Chris Mason2c64c532009-09-02 15:04:12 -0400859 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500860 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400861 if (last_end == (u64)-1)
862 goto out;
863 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500864 }
865 goto search_again;
866 }
867 /*
868 * | ---- desired range ---- |
869 * | state | or | state |
870 *
871 * There's a hole, we need to insert something in it and
872 * ignore the extent we found.
873 */
874 if (state->start > start) {
875 u64 this_end;
876 if (end < last_start)
877 this_end = end;
878 else
Chris Masond3977122009-01-05 21:25:51 -0500879 this_end = last_start - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500880 err = insert_state(tree, prealloc, start, this_end,
881 bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400882 BUG_ON(err == -EEXIST);
883 if (err) {
884 prealloc = NULL;
885 goto out;
886 }
Chris Mason2c64c532009-09-02 15:04:12 -0400887 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500888 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500889 start = this_end + 1;
890 goto search_again;
891 }
892 /*
893 * | ---- desired range ---- |
894 * | state |
895 * We need to split the extent, and set the bit
896 * on the first half
897 */
898 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400899 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500900 *failed_start = start;
901 err = -EEXIST;
902 goto out;
903 }
904 err = split_state(tree, state, prealloc, end + 1);
905 BUG_ON(err == -EEXIST);
906
Josef Bacik9ed74f22009-09-11 16:12:44 -0400907 err = set_state_bits(tree, prealloc, bits);
908 if (err) {
909 prealloc = NULL;
910 goto out;
911 }
Chris Mason2c64c532009-09-02 15:04:12 -0400912 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500913 merge_state(tree, prealloc);
914 prealloc = NULL;
915 goto out;
916 }
917
918 goto search_again;
919
920out:
Chris Masoncad321a2008-12-17 14:51:42 -0500921 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500922 if (prealloc)
923 free_extent_state(prealloc);
924
925 return err;
926
927search_again:
928 if (start > end)
929 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500930 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500931 if (mask & __GFP_WAIT)
932 cond_resched();
933 goto again;
934}
Chris Masond1310b22008-01-24 16:13:08 -0500935
936/* wrappers around set/clear extent bit */
937int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
938 gfp_t mask)
939{
940 return set_extent_bit(tree, start, end, EXTENT_DIRTY, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400941 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500942}
Chris Masond1310b22008-01-24 16:13:08 -0500943
944int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
945 int bits, gfp_t mask)
946{
947 return set_extent_bit(tree, start, end, bits, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400948 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500949}
Chris Masond1310b22008-01-24 16:13:08 -0500950
951int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
952 int bits, gfp_t mask)
953{
Chris Mason2c64c532009-09-02 15:04:12 -0400954 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500955}
Chris Masond1310b22008-01-24 16:13:08 -0500956
957int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000958 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500959{
960 return set_extent_bit(tree, start, end,
Chris Mason40431d62009-08-05 12:57:59 -0400961 EXTENT_DELALLOC | EXTENT_DIRTY | EXTENT_UPTODATE,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000962 0, NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500963}
Chris Masond1310b22008-01-24 16:13:08 -0500964
965int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
966 gfp_t mask)
967{
968 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -0400969 EXTENT_DIRTY | EXTENT_DELALLOC |
970 EXTENT_DO_ACCOUNTING, 0, 0,
Chris Mason2c64c532009-09-02 15:04:12 -0400971 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500972}
Chris Masond1310b22008-01-24 16:13:08 -0500973
974int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
975 gfp_t mask)
976{
977 return set_extent_bit(tree, start, end, EXTENT_NEW, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400978 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500979}
Chris Masond1310b22008-01-24 16:13:08 -0500980
Christoph Hellwigb2950862008-12-02 09:54:17 -0500981static int clear_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
Chris Masond1310b22008-01-24 16:13:08 -0500982 gfp_t mask)
983{
Chris Mason2c64c532009-09-02 15:04:12 -0400984 return clear_extent_bit(tree, start, end, EXTENT_NEW, 0, 0,
985 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500986}
Chris Masond1310b22008-01-24 16:13:08 -0500987
988int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
989 gfp_t mask)
990{
991 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400992 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500993}
Chris Masond1310b22008-01-24 16:13:08 -0500994
Chris Masond3977122009-01-05 21:25:51 -0500995static int clear_extent_uptodate(struct extent_io_tree *tree, u64 start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000996 u64 end, struct extent_state **cached_state,
997 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500998{
Chris Mason2c64c532009-09-02 15:04:12 -0400999 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +00001000 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001001}
Chris Masond1310b22008-01-24 16:13:08 -05001002
Chris Masond1310b22008-01-24 16:13:08 -05001003int wait_on_extent_writeback(struct extent_io_tree *tree, u64 start, u64 end)
1004{
1005 return wait_extent_bit(tree, start, end, EXTENT_WRITEBACK);
1006}
Chris Masond1310b22008-01-24 16:13:08 -05001007
Chris Masond352ac62008-09-29 15:18:18 -04001008/*
1009 * either insert or lock state struct between start and end use mask to tell
1010 * us if waiting is desired.
1011 */
Chris Mason1edbb732009-09-02 13:24:36 -04001012int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -04001013 int bits, struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001014{
1015 int err;
1016 u64 failed_start;
1017 while (1) {
Chris Mason1edbb732009-09-02 13:24:36 -04001018 err = set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
Chris Mason2c64c532009-09-02 15:04:12 -04001019 EXTENT_LOCKED, &failed_start,
1020 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -05001021 if (err == -EEXIST && (mask & __GFP_WAIT)) {
1022 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
1023 start = failed_start;
1024 } else {
1025 break;
1026 }
1027 WARN_ON(start > end);
1028 }
1029 return err;
1030}
Chris Masond1310b22008-01-24 16:13:08 -05001031
Chris Mason1edbb732009-09-02 13:24:36 -04001032int lock_extent(struct extent_io_tree *tree, u64 start, u64 end, gfp_t mask)
1033{
Chris Mason2c64c532009-09-02 15:04:12 -04001034 return lock_extent_bits(tree, start, end, 0, NULL, mask);
Chris Mason1edbb732009-09-02 13:24:36 -04001035}
1036
Josef Bacik25179202008-10-29 14:49:05 -04001037int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end,
1038 gfp_t mask)
1039{
1040 int err;
1041 u64 failed_start;
1042
Chris Mason2c64c532009-09-02 15:04:12 -04001043 err = set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1044 &failed_start, NULL, mask);
Yan Zheng66435582008-10-30 14:19:50 -04001045 if (err == -EEXIST) {
1046 if (failed_start > start)
1047 clear_extent_bit(tree, start, failed_start - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04001048 EXTENT_LOCKED, 1, 0, NULL, mask);
Josef Bacik25179202008-10-29 14:49:05 -04001049 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001050 }
Josef Bacik25179202008-10-29 14:49:05 -04001051 return 1;
1052}
Josef Bacik25179202008-10-29 14:49:05 -04001053
Chris Mason2c64c532009-09-02 15:04:12 -04001054int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1055 struct extent_state **cached, gfp_t mask)
1056{
1057 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1058 mask);
1059}
1060
Chris Masond1310b22008-01-24 16:13:08 -05001061int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end,
1062 gfp_t mask)
1063{
Chris Mason2c64c532009-09-02 15:04:12 -04001064 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
1065 mask);
Chris Masond1310b22008-01-24 16:13:08 -05001066}
Chris Masond1310b22008-01-24 16:13:08 -05001067
1068/*
1069 * helper function to set pages and extents in the tree dirty
1070 */
1071int set_range_dirty(struct extent_io_tree *tree, u64 start, u64 end)
1072{
1073 unsigned long index = start >> PAGE_CACHE_SHIFT;
1074 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1075 struct page *page;
1076
1077 while (index <= end_index) {
1078 page = find_get_page(tree->mapping, index);
1079 BUG_ON(!page);
1080 __set_page_dirty_nobuffers(page);
1081 page_cache_release(page);
1082 index++;
1083 }
Chris Masond1310b22008-01-24 16:13:08 -05001084 return 0;
1085}
Chris Masond1310b22008-01-24 16:13:08 -05001086
1087/*
1088 * helper function to set both pages and extents in the tree writeback
1089 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001090static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001091{
1092 unsigned long index = start >> PAGE_CACHE_SHIFT;
1093 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1094 struct page *page;
1095
1096 while (index <= end_index) {
1097 page = find_get_page(tree->mapping, index);
1098 BUG_ON(!page);
1099 set_page_writeback(page);
1100 page_cache_release(page);
1101 index++;
1102 }
Chris Masond1310b22008-01-24 16:13:08 -05001103 return 0;
1104}
Chris Masond1310b22008-01-24 16:13:08 -05001105
Chris Masond352ac62008-09-29 15:18:18 -04001106/*
1107 * find the first offset in the io tree with 'bits' set. zero is
1108 * returned if we find something, and *start_ret and *end_ret are
1109 * set to reflect the state struct that was found.
1110 *
1111 * If nothing was found, 1 is returned, < 0 on error
1112 */
Chris Masond1310b22008-01-24 16:13:08 -05001113int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1114 u64 *start_ret, u64 *end_ret, int bits)
1115{
1116 struct rb_node *node;
1117 struct extent_state *state;
1118 int ret = 1;
1119
Chris Masoncad321a2008-12-17 14:51:42 -05001120 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001121 /*
1122 * this search will find all the extents that end after
1123 * our range starts.
1124 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001125 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001126 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001127 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001128
Chris Masond3977122009-01-05 21:25:51 -05001129 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001130 state = rb_entry(node, struct extent_state, rb_node);
1131 if (state->end >= start && (state->state & bits)) {
1132 *start_ret = state->start;
1133 *end_ret = state->end;
1134 ret = 0;
1135 break;
1136 }
1137 node = rb_next(node);
1138 if (!node)
1139 break;
1140 }
1141out:
Chris Masoncad321a2008-12-17 14:51:42 -05001142 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001143 return ret;
1144}
Chris Masond1310b22008-01-24 16:13:08 -05001145
Chris Masond352ac62008-09-29 15:18:18 -04001146/* find the first state struct with 'bits' set after 'start', and
1147 * return it. tree->lock must be held. NULL will returned if
1148 * nothing was found after 'start'
1149 */
Chris Masond7fc6402008-02-18 12:12:38 -05001150struct extent_state *find_first_extent_bit_state(struct extent_io_tree *tree,
1151 u64 start, int bits)
1152{
1153 struct rb_node *node;
1154 struct extent_state *state;
1155
1156 /*
1157 * this search will find all the extents that end after
1158 * our range starts.
1159 */
1160 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001161 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001162 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001163
Chris Masond3977122009-01-05 21:25:51 -05001164 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001165 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001166 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001167 return state;
Chris Masond3977122009-01-05 21:25:51 -05001168
Chris Masond7fc6402008-02-18 12:12:38 -05001169 node = rb_next(node);
1170 if (!node)
1171 break;
1172 }
1173out:
1174 return NULL;
1175}
Chris Masond7fc6402008-02-18 12:12:38 -05001176
Chris Masond352ac62008-09-29 15:18:18 -04001177/*
1178 * find a contiguous range of bytes in the file marked as delalloc, not
1179 * more than 'max_bytes'. start and end are used to return the range,
1180 *
1181 * 1 is returned if we find something, 0 if nothing was in the tree
1182 */
Chris Masonc8b97812008-10-29 14:49:59 -04001183static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001184 u64 *start, u64 *end, u64 max_bytes,
1185 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001186{
1187 struct rb_node *node;
1188 struct extent_state *state;
1189 u64 cur_start = *start;
1190 u64 found = 0;
1191 u64 total_bytes = 0;
1192
Chris Masoncad321a2008-12-17 14:51:42 -05001193 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001194
Chris Masond1310b22008-01-24 16:13:08 -05001195 /*
1196 * this search will find all the extents that end after
1197 * our range starts.
1198 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001199 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001200 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001201 if (!found)
1202 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001203 goto out;
1204 }
1205
Chris Masond3977122009-01-05 21:25:51 -05001206 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001207 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001208 if (found && (state->start != cur_start ||
1209 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001210 goto out;
1211 }
1212 if (!(state->state & EXTENT_DELALLOC)) {
1213 if (!found)
1214 *end = state->end;
1215 goto out;
1216 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001217 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001218 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001219 *cached_state = state;
1220 atomic_inc(&state->refs);
1221 }
Chris Masond1310b22008-01-24 16:13:08 -05001222 found++;
1223 *end = state->end;
1224 cur_start = state->end + 1;
1225 node = rb_next(node);
1226 if (!node)
1227 break;
1228 total_bytes += state->end - state->start + 1;
1229 if (total_bytes >= max_bytes)
1230 break;
1231 }
1232out:
Chris Masoncad321a2008-12-17 14:51:42 -05001233 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001234 return found;
1235}
1236
Chris Masonc8b97812008-10-29 14:49:59 -04001237static noinline int __unlock_for_delalloc(struct inode *inode,
1238 struct page *locked_page,
1239 u64 start, u64 end)
1240{
1241 int ret;
1242 struct page *pages[16];
1243 unsigned long index = start >> PAGE_CACHE_SHIFT;
1244 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1245 unsigned long nr_pages = end_index - index + 1;
1246 int i;
1247
1248 if (index == locked_page->index && end_index == index)
1249 return 0;
1250
Chris Masond3977122009-01-05 21:25:51 -05001251 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001252 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001253 min_t(unsigned long, nr_pages,
1254 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001255 for (i = 0; i < ret; i++) {
1256 if (pages[i] != locked_page)
1257 unlock_page(pages[i]);
1258 page_cache_release(pages[i]);
1259 }
1260 nr_pages -= ret;
1261 index += ret;
1262 cond_resched();
1263 }
1264 return 0;
1265}
1266
1267static noinline int lock_delalloc_pages(struct inode *inode,
1268 struct page *locked_page,
1269 u64 delalloc_start,
1270 u64 delalloc_end)
1271{
1272 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1273 unsigned long start_index = index;
1274 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1275 unsigned long pages_locked = 0;
1276 struct page *pages[16];
1277 unsigned long nrpages;
1278 int ret;
1279 int i;
1280
1281 /* the caller is responsible for locking the start index */
1282 if (index == locked_page->index && index == end_index)
1283 return 0;
1284
1285 /* skip the page at the start index */
1286 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001287 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001288 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001289 min_t(unsigned long,
1290 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001291 if (ret == 0) {
1292 ret = -EAGAIN;
1293 goto done;
1294 }
1295 /* now we have an array of pages, lock them all */
1296 for (i = 0; i < ret; i++) {
1297 /*
1298 * the caller is taking responsibility for
1299 * locked_page
1300 */
Chris Mason771ed682008-11-06 22:02:51 -05001301 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001302 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001303 if (!PageDirty(pages[i]) ||
1304 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001305 ret = -EAGAIN;
1306 unlock_page(pages[i]);
1307 page_cache_release(pages[i]);
1308 goto done;
1309 }
1310 }
Chris Masonc8b97812008-10-29 14:49:59 -04001311 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001312 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001313 }
Chris Masonc8b97812008-10-29 14:49:59 -04001314 nrpages -= ret;
1315 index += ret;
1316 cond_resched();
1317 }
1318 ret = 0;
1319done:
1320 if (ret && pages_locked) {
1321 __unlock_for_delalloc(inode, locked_page,
1322 delalloc_start,
1323 ((u64)(start_index + pages_locked - 1)) <<
1324 PAGE_CACHE_SHIFT);
1325 }
1326 return ret;
1327}
1328
1329/*
1330 * find a contiguous range of bytes in the file marked as delalloc, not
1331 * more than 'max_bytes'. start and end are used to return the range,
1332 *
1333 * 1 is returned if we find something, 0 if nothing was in the tree
1334 */
1335static noinline u64 find_lock_delalloc_range(struct inode *inode,
1336 struct extent_io_tree *tree,
1337 struct page *locked_page,
1338 u64 *start, u64 *end,
1339 u64 max_bytes)
1340{
1341 u64 delalloc_start;
1342 u64 delalloc_end;
1343 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001344 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001345 int ret;
1346 int loops = 0;
1347
1348again:
1349 /* step one, find a bunch of delalloc bytes starting at start */
1350 delalloc_start = *start;
1351 delalloc_end = 0;
1352 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001353 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001354 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001355 *start = delalloc_start;
1356 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001357 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001358 return found;
1359 }
1360
1361 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001362 * start comes from the offset of locked_page. We have to lock
1363 * pages in order, so we can't process delalloc bytes before
1364 * locked_page
1365 */
Chris Masond3977122009-01-05 21:25:51 -05001366 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001367 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001368
1369 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001370 * make sure to limit the number of pages we try to lock down
1371 * if we're looping.
1372 */
Chris Masond3977122009-01-05 21:25:51 -05001373 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001374 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001375
Chris Masonc8b97812008-10-29 14:49:59 -04001376 /* step two, lock all the pages after the page that has start */
1377 ret = lock_delalloc_pages(inode, locked_page,
1378 delalloc_start, delalloc_end);
1379 if (ret == -EAGAIN) {
1380 /* some of the pages are gone, lets avoid looping by
1381 * shortening the size of the delalloc range we're searching
1382 */
Chris Mason9655d292009-09-02 15:22:30 -04001383 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001384 if (!loops) {
1385 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1386 max_bytes = PAGE_CACHE_SIZE - offset;
1387 loops = 1;
1388 goto again;
1389 } else {
1390 found = 0;
1391 goto out_failed;
1392 }
1393 }
1394 BUG_ON(ret);
1395
1396 /* step three, lock the state bits for the whole range */
Chris Mason9655d292009-09-02 15:22:30 -04001397 lock_extent_bits(tree, delalloc_start, delalloc_end,
1398 0, &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001399
1400 /* then test to make sure it is all still delalloc */
1401 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001402 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001403 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001404 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1405 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001406 __unlock_for_delalloc(inode, locked_page,
1407 delalloc_start, delalloc_end);
1408 cond_resched();
1409 goto again;
1410 }
Chris Mason9655d292009-09-02 15:22:30 -04001411 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001412 *start = delalloc_start;
1413 *end = delalloc_end;
1414out_failed:
1415 return found;
1416}
1417
1418int extent_clear_unlock_delalloc(struct inode *inode,
1419 struct extent_io_tree *tree,
1420 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001421 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001422{
1423 int ret;
1424 struct page *pages[16];
1425 unsigned long index = start >> PAGE_CACHE_SHIFT;
1426 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1427 unsigned long nr_pages = end_index - index + 1;
1428 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001429 int clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001430
Chris Masona791e352009-10-08 11:27:10 -04001431 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001432 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001433 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001434 clear_bits |= EXTENT_DIRTY;
1435
Chris Masona791e352009-10-08 11:27:10 -04001436 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001437 clear_bits |= EXTENT_DELALLOC;
1438
Josef Bacik32c00af2009-10-08 13:34:05 -04001439 if (op & EXTENT_CLEAR_ACCOUNTING)
1440 clear_bits |= EXTENT_DO_ACCOUNTING;
1441
Chris Mason2c64c532009-09-02 15:04:12 -04001442 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001443 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1444 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1445 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001446 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001447
Chris Masond3977122009-01-05 21:25:51 -05001448 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001449 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001450 min_t(unsigned long,
1451 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001452 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001453
Chris Masona791e352009-10-08 11:27:10 -04001454 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001455 SetPagePrivate2(pages[i]);
1456
Chris Masonc8b97812008-10-29 14:49:59 -04001457 if (pages[i] == locked_page) {
1458 page_cache_release(pages[i]);
1459 continue;
1460 }
Chris Masona791e352009-10-08 11:27:10 -04001461 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001462 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001463 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001464 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001465 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001466 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001467 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001468 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001469 page_cache_release(pages[i]);
1470 }
1471 nr_pages -= ret;
1472 index += ret;
1473 cond_resched();
1474 }
1475 return 0;
1476}
Chris Masonc8b97812008-10-29 14:49:59 -04001477
Chris Masond352ac62008-09-29 15:18:18 -04001478/*
1479 * count the number of bytes in the tree that have a given bit(s)
1480 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1481 * cached. The total number found is returned.
1482 */
Chris Masond1310b22008-01-24 16:13:08 -05001483u64 count_range_bits(struct extent_io_tree *tree,
1484 u64 *start, u64 search_end, u64 max_bytes,
1485 unsigned long bits)
1486{
1487 struct rb_node *node;
1488 struct extent_state *state;
1489 u64 cur_start = *start;
1490 u64 total_bytes = 0;
1491 int found = 0;
1492
1493 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001494 WARN_ON(1);
1495 return 0;
1496 }
1497
Chris Masoncad321a2008-12-17 14:51:42 -05001498 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001499 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1500 total_bytes = tree->dirty_bytes;
1501 goto out;
1502 }
1503 /*
1504 * this search will find all the extents that end after
1505 * our range starts.
1506 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001507 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001508 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001509 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001510
Chris Masond3977122009-01-05 21:25:51 -05001511 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001512 state = rb_entry(node, struct extent_state, rb_node);
1513 if (state->start > search_end)
1514 break;
1515 if (state->end >= cur_start && (state->state & bits)) {
1516 total_bytes += min(search_end, state->end) + 1 -
1517 max(cur_start, state->start);
1518 if (total_bytes >= max_bytes)
1519 break;
1520 if (!found) {
1521 *start = state->start;
1522 found = 1;
1523 }
1524 }
1525 node = rb_next(node);
1526 if (!node)
1527 break;
1528 }
1529out:
Chris Masoncad321a2008-12-17 14:51:42 -05001530 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001531 return total_bytes;
1532}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001533
Chris Masond352ac62008-09-29 15:18:18 -04001534/*
1535 * set the private field for a given byte offset in the tree. If there isn't
1536 * an extent_state there already, this does nothing.
1537 */
Chris Masond1310b22008-01-24 16:13:08 -05001538int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1539{
1540 struct rb_node *node;
1541 struct extent_state *state;
1542 int ret = 0;
1543
Chris Masoncad321a2008-12-17 14:51:42 -05001544 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001545 /*
1546 * this search will find all the extents that end after
1547 * our range starts.
1548 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001549 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001550 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001551 ret = -ENOENT;
1552 goto out;
1553 }
1554 state = rb_entry(node, struct extent_state, rb_node);
1555 if (state->start != start) {
1556 ret = -ENOENT;
1557 goto out;
1558 }
1559 state->private = private;
1560out:
Chris Masoncad321a2008-12-17 14:51:42 -05001561 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001562 return ret;
1563}
1564
1565int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1566{
1567 struct rb_node *node;
1568 struct extent_state *state;
1569 int ret = 0;
1570
Chris Masoncad321a2008-12-17 14:51:42 -05001571 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001572 /*
1573 * this search will find all the extents that end after
1574 * our range starts.
1575 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001576 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001577 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001578 ret = -ENOENT;
1579 goto out;
1580 }
1581 state = rb_entry(node, struct extent_state, rb_node);
1582 if (state->start != start) {
1583 ret = -ENOENT;
1584 goto out;
1585 }
1586 *private = state->private;
1587out:
Chris Masoncad321a2008-12-17 14:51:42 -05001588 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001589 return ret;
1590}
1591
1592/*
1593 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001594 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001595 * has the bits set. Otherwise, 1 is returned if any bit in the
1596 * range is found set.
1597 */
1598int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason9655d292009-09-02 15:22:30 -04001599 int bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001600{
1601 struct extent_state *state = NULL;
1602 struct rb_node *node;
1603 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001604
Chris Masoncad321a2008-12-17 14:51:42 -05001605 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -04001606 if (cached && cached->tree && cached->start == start)
1607 node = &cached->rb_node;
1608 else
1609 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001610 while (node && start <= end) {
1611 state = rb_entry(node, struct extent_state, rb_node);
1612
1613 if (filled && state->start > start) {
1614 bitset = 0;
1615 break;
1616 }
1617
1618 if (state->start > end)
1619 break;
1620
1621 if (state->state & bits) {
1622 bitset = 1;
1623 if (!filled)
1624 break;
1625 } else if (filled) {
1626 bitset = 0;
1627 break;
1628 }
Chris Mason46562ce2009-09-23 20:23:16 -04001629
1630 if (state->end == (u64)-1)
1631 break;
1632
Chris Masond1310b22008-01-24 16:13:08 -05001633 start = state->end + 1;
1634 if (start > end)
1635 break;
1636 node = rb_next(node);
1637 if (!node) {
1638 if (filled)
1639 bitset = 0;
1640 break;
1641 }
1642 }
Chris Masoncad321a2008-12-17 14:51:42 -05001643 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001644 return bitset;
1645}
Chris Masond1310b22008-01-24 16:13:08 -05001646
1647/*
1648 * helper function to set a given page up to date if all the
1649 * extents in the tree for that page are up to date
1650 */
1651static int check_page_uptodate(struct extent_io_tree *tree,
1652 struct page *page)
1653{
1654 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1655 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001656 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001657 SetPageUptodate(page);
1658 return 0;
1659}
1660
1661/*
1662 * helper function to unlock a page if all the extents in the tree
1663 * for that page are unlocked
1664 */
1665static int check_page_locked(struct extent_io_tree *tree,
1666 struct page *page)
1667{
1668 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1669 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001670 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001671 unlock_page(page);
1672 return 0;
1673}
1674
1675/*
1676 * helper function to end page writeback if all the extents
1677 * in the tree for that page are done with writeback
1678 */
1679static int check_page_writeback(struct extent_io_tree *tree,
1680 struct page *page)
1681{
Chris Mason1edbb732009-09-02 13:24:36 -04001682 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001683 return 0;
1684}
1685
1686/* lots and lots of room for performance fixes in the end_bio funcs */
1687
1688/*
1689 * after a writepage IO is done, we need to:
1690 * clear the uptodate bits on error
1691 * clear the writeback bits in the extent tree for this IO
1692 * end_page_writeback if the page has no more pending IO
1693 *
1694 * Scheduling is not allowed, so the extent state tree is expected
1695 * to have one and only one object corresponding to this IO.
1696 */
Chris Masond1310b22008-01-24 16:13:08 -05001697static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001698{
Chris Mason1259ab72008-05-12 13:39:03 -04001699 int uptodate = err == 0;
Chris Masond1310b22008-01-24 16:13:08 -05001700 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001701 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001702 u64 start;
1703 u64 end;
1704 int whole_page;
Chris Mason1259ab72008-05-12 13:39:03 -04001705 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001706
Chris Masond1310b22008-01-24 16:13:08 -05001707 do {
1708 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001709 tree = &BTRFS_I(page->mapping->host)->io_tree;
1710
Chris Masond1310b22008-01-24 16:13:08 -05001711 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1712 bvec->bv_offset;
1713 end = start + bvec->bv_len - 1;
1714
1715 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1716 whole_page = 1;
1717 else
1718 whole_page = 0;
1719
1720 if (--bvec >= bio->bi_io_vec)
1721 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001722 if (tree->ops && tree->ops->writepage_end_io_hook) {
1723 ret = tree->ops->writepage_end_io_hook(page, start,
David Woodhouse902b22f2008-08-20 08:51:49 -04001724 end, NULL, uptodate);
Chris Mason1259ab72008-05-12 13:39:03 -04001725 if (ret)
1726 uptodate = 0;
1727 }
1728
1729 if (!uptodate && tree->ops &&
1730 tree->ops->writepage_io_failed_hook) {
1731 ret = tree->ops->writepage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001732 start, end, NULL);
Chris Mason1259ab72008-05-12 13:39:03 -04001733 if (ret == 0) {
Chris Mason1259ab72008-05-12 13:39:03 -04001734 uptodate = (err == 0);
1735 continue;
1736 }
1737 }
1738
Chris Masond1310b22008-01-24 16:13:08 -05001739 if (!uptodate) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001740 clear_extent_uptodate(tree, start, end, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001741 ClearPageUptodate(page);
1742 SetPageError(page);
1743 }
Chris Mason70dec802008-01-29 09:59:12 -05001744
Chris Masond1310b22008-01-24 16:13:08 -05001745 if (whole_page)
1746 end_page_writeback(page);
1747 else
1748 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05001749 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04001750
Chris Masond1310b22008-01-24 16:13:08 -05001751 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001752}
1753
1754/*
1755 * after a readpage IO is done, we need to:
1756 * clear the uptodate bits on error
1757 * set the uptodate bits if things worked
1758 * set the page up to date if all extents in the tree are uptodate
1759 * clear the lock bit in the extent tree
1760 * unlock the page if there are no other extents locked for it
1761 *
1762 * Scheduling is not allowed, so the extent state tree is expected
1763 * to have one and only one object corresponding to this IO.
1764 */
Chris Masond1310b22008-01-24 16:13:08 -05001765static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001766{
1767 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00001768 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
1769 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04001770 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001771 u64 start;
1772 u64 end;
1773 int whole_page;
1774 int ret;
1775
Chris Masond20f7042008-12-08 16:58:54 -05001776 if (err)
1777 uptodate = 0;
1778
Chris Masond1310b22008-01-24 16:13:08 -05001779 do {
1780 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001781 tree = &BTRFS_I(page->mapping->host)->io_tree;
1782
Chris Masond1310b22008-01-24 16:13:08 -05001783 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1784 bvec->bv_offset;
1785 end = start + bvec->bv_len - 1;
1786
1787 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1788 whole_page = 1;
1789 else
1790 whole_page = 0;
1791
Chris Mason4125bf72010-02-03 18:18:45 +00001792 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05001793 prefetchw(&bvec->bv_page->flags);
1794
1795 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05001796 ret = tree->ops->readpage_end_io_hook(page, start, end,
David Woodhouse902b22f2008-08-20 08:51:49 -04001797 NULL);
Chris Masond1310b22008-01-24 16:13:08 -05001798 if (ret)
1799 uptodate = 0;
1800 }
Chris Mason7e383262008-04-09 16:28:12 -04001801 if (!uptodate && tree->ops &&
1802 tree->ops->readpage_io_failed_hook) {
1803 ret = tree->ops->readpage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001804 start, end, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04001805 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04001806 uptodate =
1807 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001808 if (err)
1809 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001810 continue;
1811 }
1812 }
Chris Mason70dec802008-01-29 09:59:12 -05001813
Chris Mason771ed682008-11-06 22:02:51 -05001814 if (uptodate) {
David Woodhouse902b22f2008-08-20 08:51:49 -04001815 set_extent_uptodate(tree, start, end,
1816 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05001817 }
David Woodhouse902b22f2008-08-20 08:51:49 -04001818 unlock_extent(tree, start, end, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05001819
Chris Mason70dec802008-01-29 09:59:12 -05001820 if (whole_page) {
1821 if (uptodate) {
1822 SetPageUptodate(page);
1823 } else {
1824 ClearPageUptodate(page);
1825 SetPageError(page);
1826 }
Chris Masond1310b22008-01-24 16:13:08 -05001827 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05001828 } else {
1829 if (uptodate) {
1830 check_page_uptodate(tree, page);
1831 } else {
1832 ClearPageUptodate(page);
1833 SetPageError(page);
1834 }
Chris Masond1310b22008-01-24 16:13:08 -05001835 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05001836 }
Chris Mason4125bf72010-02-03 18:18:45 +00001837 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05001838
1839 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001840}
1841
1842/*
1843 * IO done from prepare_write is pretty simple, we just unlock
1844 * the structs in the extent tree when done, and set the uptodate bits
1845 * as appropriate.
1846 */
Chris Masond1310b22008-01-24 16:13:08 -05001847static void end_bio_extent_preparewrite(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001848{
1849 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1850 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001851 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001852 u64 start;
1853 u64 end;
1854
Chris Masond1310b22008-01-24 16:13:08 -05001855 do {
1856 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001857 tree = &BTRFS_I(page->mapping->host)->io_tree;
1858
Chris Masond1310b22008-01-24 16:13:08 -05001859 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1860 bvec->bv_offset;
1861 end = start + bvec->bv_len - 1;
1862
1863 if (--bvec >= bio->bi_io_vec)
1864 prefetchw(&bvec->bv_page->flags);
1865
1866 if (uptodate) {
1867 set_extent_uptodate(tree, start, end, GFP_ATOMIC);
1868 } else {
1869 ClearPageUptodate(page);
1870 SetPageError(page);
1871 }
1872
1873 unlock_extent(tree, start, end, GFP_ATOMIC);
1874
1875 } while (bvec >= bio->bi_io_vec);
1876
1877 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001878}
1879
1880static struct bio *
1881extent_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
1882 gfp_t gfp_flags)
1883{
1884 struct bio *bio;
1885
1886 bio = bio_alloc(gfp_flags, nr_vecs);
1887
1888 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
1889 while (!bio && (nr_vecs /= 2))
1890 bio = bio_alloc(gfp_flags, nr_vecs);
1891 }
1892
1893 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04001894 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001895 bio->bi_bdev = bdev;
1896 bio->bi_sector = first_sector;
1897 }
1898 return bio;
1899}
1900
Chris Masonc8b97812008-10-29 14:49:59 -04001901static int submit_one_bio(int rw, struct bio *bio, int mirror_num,
1902 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001903{
Chris Masond1310b22008-01-24 16:13:08 -05001904 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05001905 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
1906 struct page *page = bvec->bv_page;
1907 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05001908 u64 start;
1909 u64 end;
1910
1911 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
1912 end = start + bvec->bv_len - 1;
1913
David Woodhouse902b22f2008-08-20 08:51:49 -04001914 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001915
1916 bio_get(bio);
1917
Chris Mason065631f2008-02-20 12:07:25 -05001918 if (tree->ops && tree->ops->submit_bio_hook)
Chris Masonf1885912008-04-09 16:28:12 -04001919 tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001920 mirror_num, bio_flags);
Chris Mason0b86a832008-03-24 15:01:56 -04001921 else
1922 submit_bio(rw, bio);
Chris Masond1310b22008-01-24 16:13:08 -05001923 if (bio_flagged(bio, BIO_EOPNOTSUPP))
1924 ret = -EOPNOTSUPP;
1925 bio_put(bio);
1926 return ret;
1927}
1928
1929static int submit_extent_page(int rw, struct extent_io_tree *tree,
1930 struct page *page, sector_t sector,
1931 size_t size, unsigned long offset,
1932 struct block_device *bdev,
1933 struct bio **bio_ret,
1934 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04001935 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04001936 int mirror_num,
1937 unsigned long prev_bio_flags,
1938 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001939{
1940 int ret = 0;
1941 struct bio *bio;
1942 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04001943 int contig = 0;
1944 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
1945 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05001946 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05001947
1948 if (bio_ret && *bio_ret) {
1949 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001950 if (old_compressed)
1951 contig = bio->bi_sector == sector;
1952 else
1953 contig = bio->bi_sector + (bio->bi_size >> 9) ==
1954 sector;
1955
1956 if (prev_bio_flags != bio_flags || !contig ||
Chris Mason239b14b2008-03-24 15:02:07 -04001957 (tree->ops && tree->ops->merge_bio_hook &&
Chris Masonc8b97812008-10-29 14:49:59 -04001958 tree->ops->merge_bio_hook(page, offset, page_size, bio,
1959 bio_flags)) ||
1960 bio_add_page(bio, page, page_size, offset) < page_size) {
1961 ret = submit_one_bio(rw, bio, mirror_num,
1962 prev_bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001963 bio = NULL;
1964 } else {
1965 return 0;
1966 }
1967 }
Chris Masonc8b97812008-10-29 14:49:59 -04001968 if (this_compressed)
1969 nr = BIO_MAX_PAGES;
1970 else
1971 nr = bio_get_nr_vecs(bdev);
1972
Chris Masond1310b22008-01-24 16:13:08 -05001973 bio = extent_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Chris Mason70dec802008-01-29 09:59:12 -05001974
Chris Masonc8b97812008-10-29 14:49:59 -04001975 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05001976 bio->bi_end_io = end_io_func;
1977 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05001978
Chris Masond3977122009-01-05 21:25:51 -05001979 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05001980 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05001981 else
Chris Masonc8b97812008-10-29 14:49:59 -04001982 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001983
1984 return ret;
1985}
1986
1987void set_page_extent_mapped(struct page *page)
1988{
1989 if (!PagePrivate(page)) {
1990 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001991 page_cache_get(page);
Chris Mason6af118c2008-07-22 11:18:07 -04001992 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05001993 }
1994}
1995
Christoph Hellwigb2950862008-12-02 09:54:17 -05001996static void set_page_extent_head(struct page *page, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05001997{
1998 set_page_private(page, EXTENT_PAGE_PRIVATE_FIRST_PAGE | len << 2);
1999}
2000
2001/*
2002 * basic readpage implementation. Locked extent state structs are inserted
2003 * into the tree that are removed when the IO is done (by the end_io
2004 * handlers)
2005 */
2006static int __extent_read_full_page(struct extent_io_tree *tree,
2007 struct page *page,
2008 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002009 struct bio **bio, int mirror_num,
2010 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05002011{
2012 struct inode *inode = page->mapping->host;
2013 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2014 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2015 u64 end;
2016 u64 cur = start;
2017 u64 extent_offset;
2018 u64 last_byte = i_size_read(inode);
2019 u64 block_start;
2020 u64 cur_end;
2021 sector_t sector;
2022 struct extent_map *em;
2023 struct block_device *bdev;
2024 int ret;
2025 int nr = 0;
2026 size_t page_offset = 0;
2027 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04002028 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05002029 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04002030 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002031
2032 set_page_extent_mapped(page);
2033
2034 end = page_end;
2035 lock_extent(tree, start, end, GFP_NOFS);
2036
Chris Masonc8b97812008-10-29 14:49:59 -04002037 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2038 char *userpage;
2039 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2040
2041 if (zero_offset) {
2042 iosize = PAGE_CACHE_SIZE - zero_offset;
2043 userpage = kmap_atomic(page, KM_USER0);
2044 memset(userpage + zero_offset, 0, iosize);
2045 flush_dcache_page(page);
2046 kunmap_atomic(userpage, KM_USER0);
2047 }
2048 }
Chris Masond1310b22008-01-24 16:13:08 -05002049 while (cur <= end) {
2050 if (cur >= last_byte) {
2051 char *userpage;
2052 iosize = PAGE_CACHE_SIZE - page_offset;
2053 userpage = kmap_atomic(page, KM_USER0);
2054 memset(userpage + page_offset, 0, iosize);
2055 flush_dcache_page(page);
2056 kunmap_atomic(userpage, KM_USER0);
2057 set_extent_uptodate(tree, cur, cur + iosize - 1,
2058 GFP_NOFS);
2059 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2060 break;
2061 }
2062 em = get_extent(inode, page, page_offset, cur,
2063 end - cur + 1, 0);
2064 if (IS_ERR(em) || !em) {
2065 SetPageError(page);
2066 unlock_extent(tree, cur, end, GFP_NOFS);
2067 break;
2068 }
Chris Masond1310b22008-01-24 16:13:08 -05002069 extent_offset = cur - em->start;
2070 BUG_ON(extent_map_end(em) <= cur);
2071 BUG_ON(end < cur);
2072
Chris Masonc8b97812008-10-29 14:49:59 -04002073 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
2074 this_bio_flag = EXTENT_BIO_COMPRESSED;
2075
Chris Masond1310b22008-01-24 16:13:08 -05002076 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2077 cur_end = min(extent_map_end(em) - 1, end);
2078 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002079 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2080 disk_io_size = em->block_len;
2081 sector = em->block_start >> 9;
2082 } else {
2083 sector = (em->block_start + extent_offset) >> 9;
2084 disk_io_size = iosize;
2085 }
Chris Masond1310b22008-01-24 16:13:08 -05002086 bdev = em->bdev;
2087 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002088 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2089 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002090 free_extent_map(em);
2091 em = NULL;
2092
2093 /* we've found a hole, just zero and go on */
2094 if (block_start == EXTENT_MAP_HOLE) {
2095 char *userpage;
2096 userpage = kmap_atomic(page, KM_USER0);
2097 memset(userpage + page_offset, 0, iosize);
2098 flush_dcache_page(page);
2099 kunmap_atomic(userpage, KM_USER0);
2100
2101 set_extent_uptodate(tree, cur, cur + iosize - 1,
2102 GFP_NOFS);
2103 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2104 cur = cur + iosize;
2105 page_offset += iosize;
2106 continue;
2107 }
2108 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002109 if (test_range_bit(tree, cur, cur_end,
2110 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002111 check_page_uptodate(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002112 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2113 cur = cur + iosize;
2114 page_offset += iosize;
2115 continue;
2116 }
Chris Mason70dec802008-01-29 09:59:12 -05002117 /* we have an inline extent but it didn't get marked up
2118 * to date. Error out
2119 */
2120 if (block_start == EXTENT_MAP_INLINE) {
2121 SetPageError(page);
2122 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2123 cur = cur + iosize;
2124 page_offset += iosize;
2125 continue;
2126 }
Chris Masond1310b22008-01-24 16:13:08 -05002127
2128 ret = 0;
2129 if (tree->ops && tree->ops->readpage_io_hook) {
2130 ret = tree->ops->readpage_io_hook(page, cur,
2131 cur + iosize - 1);
2132 }
2133 if (!ret) {
Chris Mason89642222008-07-24 09:41:53 -04002134 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2135 pnr -= page->index;
Chris Masond1310b22008-01-24 16:13:08 -05002136 ret = submit_extent_page(READ, tree, page,
Chris Masonc8b97812008-10-29 14:49:59 -04002137 sector, disk_io_size, page_offset,
Chris Mason89642222008-07-24 09:41:53 -04002138 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002139 end_bio_extent_readpage, mirror_num,
2140 *bio_flags,
2141 this_bio_flag);
Chris Mason89642222008-07-24 09:41:53 -04002142 nr++;
Chris Masonc8b97812008-10-29 14:49:59 -04002143 *bio_flags = this_bio_flag;
Chris Masond1310b22008-01-24 16:13:08 -05002144 }
2145 if (ret)
2146 SetPageError(page);
2147 cur = cur + iosize;
2148 page_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002149 }
2150 if (!nr) {
2151 if (!PageError(page))
2152 SetPageUptodate(page);
2153 unlock_page(page);
2154 }
2155 return 0;
2156}
2157
2158int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
2159 get_extent_t *get_extent)
2160{
2161 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002162 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002163 int ret;
2164
Chris Masonc8b97812008-10-29 14:49:59 -04002165 ret = __extent_read_full_page(tree, page, get_extent, &bio, 0,
2166 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002167 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002168 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002169 return ret;
2170}
Chris Masond1310b22008-01-24 16:13:08 -05002171
Chris Mason11c83492009-04-20 15:50:09 -04002172static noinline void update_nr_written(struct page *page,
2173 struct writeback_control *wbc,
2174 unsigned long nr_written)
2175{
2176 wbc->nr_to_write -= nr_written;
2177 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2178 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2179 page->mapping->writeback_index = page->index + nr_written;
2180}
2181
Chris Masond1310b22008-01-24 16:13:08 -05002182/*
2183 * the writepage semantics are similar to regular writepage. extent
2184 * records are inserted to lock ranges in the tree, and as dirty areas
2185 * are found, they are marked writeback. Then the lock bits are removed
2186 * and the end_io handler clears the writeback ranges
2187 */
2188static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2189 void *data)
2190{
2191 struct inode *inode = page->mapping->host;
2192 struct extent_page_data *epd = data;
2193 struct extent_io_tree *tree = epd->tree;
2194 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2195 u64 delalloc_start;
2196 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2197 u64 end;
2198 u64 cur = start;
2199 u64 extent_offset;
2200 u64 last_byte = i_size_read(inode);
2201 u64 block_start;
2202 u64 iosize;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002203 u64 unlock_start;
Chris Masond1310b22008-01-24 16:13:08 -05002204 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002205 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002206 struct extent_map *em;
2207 struct block_device *bdev;
2208 int ret;
2209 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002210 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002211 size_t blocksize;
2212 loff_t i_size = i_size_read(inode);
2213 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2214 u64 nr_delalloc;
2215 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002216 int page_started;
2217 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002218 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002219 unsigned long nr_written = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002220
Chris Masonffbd5172009-04-20 15:50:09 -04002221 if (wbc->sync_mode == WB_SYNC_ALL)
2222 write_flags = WRITE_SYNC_PLUG;
2223 else
2224 write_flags = WRITE;
2225
Chris Masond1310b22008-01-24 16:13:08 -05002226 WARN_ON(!PageLocked(page));
Chris Mason7f3c74f2008-07-18 12:01:11 -04002227 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002228 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002229 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002230 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002231 unlock_page(page);
2232 return 0;
2233 }
2234
2235 if (page->index == end_index) {
2236 char *userpage;
2237
Chris Masond1310b22008-01-24 16:13:08 -05002238 userpage = kmap_atomic(page, KM_USER0);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002239 memset(userpage + pg_offset, 0,
2240 PAGE_CACHE_SIZE - pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002241 kunmap_atomic(userpage, KM_USER0);
Chris Mason211c17f2008-05-15 09:13:45 -04002242 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002243 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002244 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002245
2246 set_page_extent_mapped(page);
2247
2248 delalloc_start = start;
2249 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002250 page_started = 0;
Chris Mason771ed682008-11-06 22:02:51 -05002251 if (!epd->extent_locked) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002252 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002253 /*
2254 * make sure the wbc mapping index is at least updated
2255 * to this page.
2256 */
2257 update_nr_written(page, wbc, 0);
2258
Chris Masond3977122009-01-05 21:25:51 -05002259 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002260 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002261 page,
2262 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002263 &delalloc_end,
2264 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002265 if (nr_delalloc == 0) {
2266 delalloc_start = delalloc_end + 1;
2267 continue;
2268 }
2269 tree->ops->fill_delalloc(inode, page, delalloc_start,
2270 delalloc_end, &page_started,
2271 &nr_written);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002272 /*
2273 * delalloc_end is already one less than the total
2274 * length, so we don't subtract one from
2275 * PAGE_CACHE_SIZE
2276 */
2277 delalloc_to_write += (delalloc_end - delalloc_start +
2278 PAGE_CACHE_SIZE) >>
2279 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002280 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002281 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002282 if (wbc->nr_to_write < delalloc_to_write) {
2283 int thresh = 8192;
2284
2285 if (delalloc_to_write < thresh * 2)
2286 thresh = delalloc_to_write;
2287 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2288 thresh);
2289 }
Chris Masonc8b97812008-10-29 14:49:59 -04002290
Chris Mason771ed682008-11-06 22:02:51 -05002291 /* did the fill delalloc function already unlock and start
2292 * the IO?
2293 */
2294 if (page_started) {
2295 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002296 /*
2297 * we've unlocked the page, so we can't update
2298 * the mapping's writeback index, just update
2299 * nr_to_write.
2300 */
2301 wbc->nr_to_write -= nr_written;
2302 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002303 }
Chris Masonc8b97812008-10-29 14:49:59 -04002304 }
Chris Mason247e7432008-07-17 12:53:51 -04002305 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002306 ret = tree->ops->writepage_start_hook(page, start,
2307 page_end);
Chris Mason247e7432008-07-17 12:53:51 -04002308 if (ret == -EAGAIN) {
Chris Mason247e7432008-07-17 12:53:51 -04002309 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002310 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002311 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002312 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002313 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002314 }
2315 }
2316
Chris Mason11c83492009-04-20 15:50:09 -04002317 /*
2318 * we don't want to touch the inode after unlocking the page,
2319 * so we update the mapping writeback index now
2320 */
2321 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002322
Chris Masond1310b22008-01-24 16:13:08 -05002323 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002324 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002325 if (tree->ops && tree->ops->writepage_end_io_hook)
2326 tree->ops->writepage_end_io_hook(page, start,
2327 page_end, NULL, 1);
2328 unlock_start = page_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002329 goto done;
2330 }
2331
Chris Masond1310b22008-01-24 16:13:08 -05002332 blocksize = inode->i_sb->s_blocksize;
2333
2334 while (cur <= end) {
2335 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002336 if (tree->ops && tree->ops->writepage_end_io_hook)
2337 tree->ops->writepage_end_io_hook(page, cur,
2338 page_end, NULL, 1);
2339 unlock_start = page_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002340 break;
2341 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002342 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002343 end - cur + 1, 1);
2344 if (IS_ERR(em) || !em) {
2345 SetPageError(page);
2346 break;
2347 }
2348
2349 extent_offset = cur - em->start;
2350 BUG_ON(extent_map_end(em) <= cur);
2351 BUG_ON(end < cur);
2352 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2353 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2354 sector = (em->block_start + extent_offset) >> 9;
2355 bdev = em->bdev;
2356 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002357 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002358 free_extent_map(em);
2359 em = NULL;
2360
Chris Masonc8b97812008-10-29 14:49:59 -04002361 /*
2362 * compressed and inline extents are written through other
2363 * paths in the FS
2364 */
2365 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002366 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002367 /*
2368 * end_io notification does not happen here for
2369 * compressed extents
2370 */
2371 if (!compressed && tree->ops &&
2372 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002373 tree->ops->writepage_end_io_hook(page, cur,
2374 cur + iosize - 1,
2375 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002376 else if (compressed) {
2377 /* we don't want to end_page_writeback on
2378 * a compressed extent. this happens
2379 * elsewhere
2380 */
2381 nr++;
2382 }
2383
2384 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002385 pg_offset += iosize;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002386 unlock_start = cur;
Chris Masond1310b22008-01-24 16:13:08 -05002387 continue;
2388 }
Chris Masond1310b22008-01-24 16:13:08 -05002389 /* leave this out until we have a page_mkwrite call */
2390 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04002391 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002392 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002393 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002394 continue;
2395 }
Chris Masonc8b97812008-10-29 14:49:59 -04002396
Chris Masond1310b22008-01-24 16:13:08 -05002397 if (tree->ops && tree->ops->writepage_io_hook) {
2398 ret = tree->ops->writepage_io_hook(page, cur,
2399 cur + iosize - 1);
2400 } else {
2401 ret = 0;
2402 }
Chris Mason1259ab72008-05-12 13:39:03 -04002403 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05002404 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04002405 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002406 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002407
Chris Masond1310b22008-01-24 16:13:08 -05002408 set_range_writeback(tree, cur, cur + iosize - 1);
2409 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05002410 printk(KERN_ERR "btrfs warning page %lu not "
2411 "writeback, cur %llu end %llu\n",
2412 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05002413 (unsigned long long)end);
2414 }
2415
Chris Masonffbd5172009-04-20 15:50:09 -04002416 ret = submit_extent_page(write_flags, tree, page,
2417 sector, iosize, pg_offset,
2418 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04002419 end_bio_extent_writepage,
2420 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002421 if (ret)
2422 SetPageError(page);
2423 }
2424 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002425 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002426 nr++;
2427 }
2428done:
2429 if (nr == 0) {
2430 /* make sure the mapping tag for page dirty gets cleared */
2431 set_page_writeback(page);
2432 end_page_writeback(page);
2433 }
Chris Masond1310b22008-01-24 16:13:08 -05002434 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002435
Chris Mason11c83492009-04-20 15:50:09 -04002436done_unlocked:
2437
Chris Mason2c64c532009-09-02 15:04:12 -04002438 /* drop our reference on any cached states */
2439 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05002440 return 0;
2441}
2442
Chris Masond1310b22008-01-24 16:13:08 -05002443/**
Chris Mason4bef0842008-09-08 11:18:08 -04002444 * 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 -05002445 * @mapping: address space structure to write
2446 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2447 * @writepage: function called for each page
2448 * @data: data passed to writepage function
2449 *
2450 * If a page is already under I/O, write_cache_pages() skips it, even
2451 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2452 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2453 * and msync() need to guarantee that all the data which was dirty at the time
2454 * the call was made get new I/O started against them. If wbc->sync_mode is
2455 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2456 * existing IO to complete.
2457 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002458static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04002459 struct address_space *mapping,
2460 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002461 writepage_t writepage, void *data,
2462 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05002463{
Chris Masond1310b22008-01-24 16:13:08 -05002464 int ret = 0;
2465 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002466 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002467 struct pagevec pvec;
2468 int nr_pages;
2469 pgoff_t index;
2470 pgoff_t end; /* Inclusive */
2471 int scanned = 0;
2472 int range_whole = 0;
2473
Chris Masond1310b22008-01-24 16:13:08 -05002474 pagevec_init(&pvec, 0);
2475 if (wbc->range_cyclic) {
2476 index = mapping->writeback_index; /* Start from prev offset */
2477 end = -1;
2478 } else {
2479 index = wbc->range_start >> PAGE_CACHE_SHIFT;
2480 end = wbc->range_end >> PAGE_CACHE_SHIFT;
2481 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2482 range_whole = 1;
2483 scanned = 1;
2484 }
2485retry:
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002486 while (!done && !nr_to_write_done && (index <= end) &&
Chris Masond1310b22008-01-24 16:13:08 -05002487 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
Chris Masond3977122009-01-05 21:25:51 -05002488 PAGECACHE_TAG_DIRTY, min(end - index,
2489 (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05002490 unsigned i;
2491
2492 scanned = 1;
2493 for (i = 0; i < nr_pages; i++) {
2494 struct page *page = pvec.pages[i];
2495
2496 /*
2497 * At this point we hold neither mapping->tree_lock nor
2498 * lock on the page itself: the page may be truncated or
2499 * invalidated (changing page->mapping to NULL), or even
2500 * swizzled back from swapper_space to tmpfs file
2501 * mapping
2502 */
Chris Mason4bef0842008-09-08 11:18:08 -04002503 if (tree->ops && tree->ops->write_cache_pages_lock_hook)
2504 tree->ops->write_cache_pages_lock_hook(page);
2505 else
2506 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002507
2508 if (unlikely(page->mapping != mapping)) {
2509 unlock_page(page);
2510 continue;
2511 }
2512
2513 if (!wbc->range_cyclic && page->index > end) {
2514 done = 1;
2515 unlock_page(page);
2516 continue;
2517 }
2518
Chris Masond2c3f4f2008-11-19 12:44:22 -05002519 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05002520 if (PageWriteback(page))
2521 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05002522 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002523 }
Chris Masond1310b22008-01-24 16:13:08 -05002524
2525 if (PageWriteback(page) ||
2526 !clear_page_dirty_for_io(page)) {
2527 unlock_page(page);
2528 continue;
2529 }
2530
2531 ret = (*writepage)(page, wbc, data);
2532
2533 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
2534 unlock_page(page);
2535 ret = 0;
2536 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002537 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002538 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002539
2540 /*
2541 * the filesystem may choose to bump up nr_to_write.
2542 * We have to make sure to honor the new nr_to_write
2543 * at any time
2544 */
2545 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05002546 }
2547 pagevec_release(&pvec);
2548 cond_resched();
2549 }
2550 if (!scanned && !done) {
2551 /*
2552 * We hit the last page and there is more work to be done: wrap
2553 * back to the start of the file
2554 */
2555 scanned = 1;
2556 index = 0;
2557 goto retry;
2558 }
Chris Masond1310b22008-01-24 16:13:08 -05002559 return ret;
2560}
Chris Masond1310b22008-01-24 16:13:08 -05002561
Chris Masonffbd5172009-04-20 15:50:09 -04002562static void flush_epd_write_bio(struct extent_page_data *epd)
2563{
2564 if (epd->bio) {
2565 if (epd->sync_io)
2566 submit_one_bio(WRITE_SYNC, epd->bio, 0, 0);
2567 else
2568 submit_one_bio(WRITE, epd->bio, 0, 0);
2569 epd->bio = NULL;
2570 }
2571}
2572
Chris Masond2c3f4f2008-11-19 12:44:22 -05002573static noinline void flush_write_bio(void *data)
2574{
2575 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04002576 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002577}
2578
Chris Masond1310b22008-01-24 16:13:08 -05002579int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
2580 get_extent_t *get_extent,
2581 struct writeback_control *wbc)
2582{
2583 int ret;
2584 struct address_space *mapping = page->mapping;
2585 struct extent_page_data epd = {
2586 .bio = NULL,
2587 .tree = tree,
2588 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002589 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002590 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002591 };
2592 struct writeback_control wbc_writepages = {
2593 .bdi = wbc->bdi,
Chris Masond313d7a2009-04-20 15:50:09 -04002594 .sync_mode = wbc->sync_mode,
Chris Masond1310b22008-01-24 16:13:08 -05002595 .older_than_this = NULL,
2596 .nr_to_write = 64,
2597 .range_start = page_offset(page) + PAGE_CACHE_SIZE,
2598 .range_end = (loff_t)-1,
2599 };
2600
Chris Masond1310b22008-01-24 16:13:08 -05002601 ret = __extent_writepage(page, wbc, &epd);
2602
Chris Mason4bef0842008-09-08 11:18:08 -04002603 extent_write_cache_pages(tree, mapping, &wbc_writepages,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002604 __extent_writepage, &epd, flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002605 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002606 return ret;
2607}
Chris Masond1310b22008-01-24 16:13:08 -05002608
Chris Mason771ed682008-11-06 22:02:51 -05002609int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
2610 u64 start, u64 end, get_extent_t *get_extent,
2611 int mode)
2612{
2613 int ret = 0;
2614 struct address_space *mapping = inode->i_mapping;
2615 struct page *page;
2616 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
2617 PAGE_CACHE_SHIFT;
2618
2619 struct extent_page_data epd = {
2620 .bio = NULL,
2621 .tree = tree,
2622 .get_extent = get_extent,
2623 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04002624 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05002625 };
2626 struct writeback_control wbc_writepages = {
2627 .bdi = inode->i_mapping->backing_dev_info,
2628 .sync_mode = mode,
2629 .older_than_this = NULL,
2630 .nr_to_write = nr_pages * 2,
2631 .range_start = start,
2632 .range_end = end + 1,
2633 };
2634
Chris Masond3977122009-01-05 21:25:51 -05002635 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05002636 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
2637 if (clear_page_dirty_for_io(page))
2638 ret = __extent_writepage(page, &wbc_writepages, &epd);
2639 else {
2640 if (tree->ops && tree->ops->writepage_end_io_hook)
2641 tree->ops->writepage_end_io_hook(page, start,
2642 start + PAGE_CACHE_SIZE - 1,
2643 NULL, 1);
2644 unlock_page(page);
2645 }
2646 page_cache_release(page);
2647 start += PAGE_CACHE_SIZE;
2648 }
2649
Chris Masonffbd5172009-04-20 15:50:09 -04002650 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05002651 return ret;
2652}
Chris Masond1310b22008-01-24 16:13:08 -05002653
2654int extent_writepages(struct extent_io_tree *tree,
2655 struct address_space *mapping,
2656 get_extent_t *get_extent,
2657 struct writeback_control *wbc)
2658{
2659 int ret = 0;
2660 struct extent_page_data epd = {
2661 .bio = NULL,
2662 .tree = tree,
2663 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002664 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002665 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002666 };
2667
Chris Mason4bef0842008-09-08 11:18:08 -04002668 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002669 __extent_writepage, &epd,
2670 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002671 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002672 return ret;
2673}
Chris Masond1310b22008-01-24 16:13:08 -05002674
2675int extent_readpages(struct extent_io_tree *tree,
2676 struct address_space *mapping,
2677 struct list_head *pages, unsigned nr_pages,
2678 get_extent_t get_extent)
2679{
2680 struct bio *bio = NULL;
2681 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04002682 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002683
Chris Masond1310b22008-01-24 16:13:08 -05002684 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
2685 struct page *page = list_entry(pages->prev, struct page, lru);
2686
2687 prefetchw(&page->flags);
2688 list_del(&page->lru);
Nick Piggin28ecb602010-03-17 13:31:04 +00002689 if (!add_to_page_cache_lru(page, mapping,
Chris Masond1310b22008-01-24 16:13:08 -05002690 page->index, GFP_KERNEL)) {
Chris Masonf1885912008-04-09 16:28:12 -04002691 __extent_read_full_page(tree, page, get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002692 &bio, 0, &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002693 }
2694 page_cache_release(page);
2695 }
Chris Masond1310b22008-01-24 16:13:08 -05002696 BUG_ON(!list_empty(pages));
2697 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002698 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002699 return 0;
2700}
Chris Masond1310b22008-01-24 16:13:08 -05002701
2702/*
2703 * basic invalidatepage code, this waits on any locked or writeback
2704 * ranges corresponding to the page, and then deletes any extent state
2705 * records from the tree
2706 */
2707int extent_invalidatepage(struct extent_io_tree *tree,
2708 struct page *page, unsigned long offset)
2709{
Josef Bacik2ac55d42010-02-03 19:33:23 +00002710 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002711 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
2712 u64 end = start + PAGE_CACHE_SIZE - 1;
2713 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
2714
Chris Masond3977122009-01-05 21:25:51 -05002715 start += (offset + blocksize - 1) & ~(blocksize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002716 if (start > end)
2717 return 0;
2718
Josef Bacik2ac55d42010-02-03 19:33:23 +00002719 lock_extent_bits(tree, start, end, 0, &cached_state, GFP_NOFS);
Chris Mason1edbb732009-09-02 13:24:36 -04002720 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002721 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04002722 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2723 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00002724 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002725 return 0;
2726}
Chris Masond1310b22008-01-24 16:13:08 -05002727
2728/*
2729 * simple commit_write call, set_range_dirty is used to mark both
2730 * the pages and the extent records as dirty
2731 */
2732int extent_commit_write(struct extent_io_tree *tree,
2733 struct inode *inode, struct page *page,
2734 unsigned from, unsigned to)
2735{
2736 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2737
2738 set_page_extent_mapped(page);
2739 set_page_dirty(page);
2740
2741 if (pos > inode->i_size) {
2742 i_size_write(inode, pos);
2743 mark_inode_dirty(inode);
2744 }
2745 return 0;
2746}
Chris Masond1310b22008-01-24 16:13:08 -05002747
2748int extent_prepare_write(struct extent_io_tree *tree,
2749 struct inode *inode, struct page *page,
2750 unsigned from, unsigned to, get_extent_t *get_extent)
2751{
2752 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2753 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
2754 u64 block_start;
2755 u64 orig_block_start;
2756 u64 block_end;
2757 u64 cur_end;
2758 struct extent_map *em;
2759 unsigned blocksize = 1 << inode->i_blkbits;
2760 size_t page_offset = 0;
2761 size_t block_off_start;
2762 size_t block_off_end;
2763 int err = 0;
2764 int iocount = 0;
2765 int ret = 0;
2766 int isnew;
2767
2768 set_page_extent_mapped(page);
2769
2770 block_start = (page_start + from) & ~((u64)blocksize - 1);
2771 block_end = (page_start + to - 1) | (blocksize - 1);
2772 orig_block_start = block_start;
2773
2774 lock_extent(tree, page_start, page_end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05002775 while (block_start <= block_end) {
Chris Masond1310b22008-01-24 16:13:08 -05002776 em = get_extent(inode, page, page_offset, block_start,
2777 block_end - block_start + 1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002778 if (IS_ERR(em) || !em)
Chris Masond1310b22008-01-24 16:13:08 -05002779 goto err;
Chris Masond3977122009-01-05 21:25:51 -05002780
Chris Masond1310b22008-01-24 16:13:08 -05002781 cur_end = min(block_end, extent_map_end(em) - 1);
2782 block_off_start = block_start & (PAGE_CACHE_SIZE - 1);
2783 block_off_end = block_off_start + blocksize;
2784 isnew = clear_extent_new(tree, block_start, cur_end, GFP_NOFS);
2785
2786 if (!PageUptodate(page) && isnew &&
2787 (block_off_end > to || block_off_start < from)) {
2788 void *kaddr;
2789
2790 kaddr = kmap_atomic(page, KM_USER0);
2791 if (block_off_end > to)
2792 memset(kaddr + to, 0, block_off_end - to);
2793 if (block_off_start < from)
2794 memset(kaddr + block_off_start, 0,
2795 from - block_off_start);
2796 flush_dcache_page(page);
2797 kunmap_atomic(kaddr, KM_USER0);
2798 }
2799 if ((em->block_start != EXTENT_MAP_HOLE &&
2800 em->block_start != EXTENT_MAP_INLINE) &&
2801 !isnew && !PageUptodate(page) &&
2802 (block_off_end > to || block_off_start < from) &&
2803 !test_range_bit(tree, block_start, cur_end,
Chris Mason9655d292009-09-02 15:22:30 -04002804 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002805 u64 sector;
2806 u64 extent_offset = block_start - em->start;
2807 size_t iosize;
2808 sector = (em->block_start + extent_offset) >> 9;
2809 iosize = (cur_end - block_start + blocksize) &
2810 ~((u64)blocksize - 1);
2811 /*
2812 * we've already got the extent locked, but we
2813 * need to split the state such that our end_bio
2814 * handler can clear the lock.
2815 */
2816 set_extent_bit(tree, block_start,
2817 block_start + iosize - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04002818 EXTENT_LOCKED, 0, NULL, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002819 ret = submit_extent_page(READ, tree, page,
2820 sector, iosize, page_offset, em->bdev,
2821 NULL, 1,
Chris Masonc8b97812008-10-29 14:49:59 -04002822 end_bio_extent_preparewrite, 0,
2823 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002824 iocount++;
2825 block_start = block_start + iosize;
2826 } else {
2827 set_extent_uptodate(tree, block_start, cur_end,
2828 GFP_NOFS);
2829 unlock_extent(tree, block_start, cur_end, GFP_NOFS);
2830 block_start = cur_end + 1;
2831 }
2832 page_offset = block_start & (PAGE_CACHE_SIZE - 1);
2833 free_extent_map(em);
2834 }
2835 if (iocount) {
2836 wait_extent_bit(tree, orig_block_start,
2837 block_end, EXTENT_LOCKED);
2838 }
2839 check_page_uptodate(tree, page);
2840err:
2841 /* FIXME, zero out newly allocated blocks on error */
2842 return err;
2843}
Chris Masond1310b22008-01-24 16:13:08 -05002844
2845/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04002846 * a helper for releasepage, this tests for areas of the page that
2847 * are locked or under IO and drops the related state bits if it is safe
2848 * to drop the page.
2849 */
2850int try_release_extent_state(struct extent_map_tree *map,
2851 struct extent_io_tree *tree, struct page *page,
2852 gfp_t mask)
2853{
2854 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2855 u64 end = start + PAGE_CACHE_SIZE - 1;
2856 int ret = 1;
2857
Chris Mason211f90e2008-07-18 11:56:15 -04002858 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04002859 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04002860 ret = 0;
2861 else {
2862 if ((mask & GFP_NOFS) == GFP_NOFS)
2863 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04002864 /*
2865 * at this point we can safely clear everything except the
2866 * locked bit and the nodatasum bit
2867 */
2868 clear_extent_bit(tree, start, end,
2869 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
2870 0, 0, NULL, mask);
Chris Mason7b13b7b2008-04-18 10:29:50 -04002871 }
2872 return ret;
2873}
Chris Mason7b13b7b2008-04-18 10:29:50 -04002874
2875/*
Chris Masond1310b22008-01-24 16:13:08 -05002876 * a helper for releasepage. As long as there are no locked extents
2877 * in the range corresponding to the page, both state records and extent
2878 * map records are removed
2879 */
2880int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05002881 struct extent_io_tree *tree, struct page *page,
2882 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05002883{
2884 struct extent_map *em;
2885 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2886 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002887
Chris Mason70dec802008-01-29 09:59:12 -05002888 if ((mask & __GFP_WAIT) &&
2889 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05002890 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05002891 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05002892 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04002893 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05002894 em = lookup_extent_mapping(map, start, len);
Chris Mason70dec802008-01-29 09:59:12 -05002895 if (!em || IS_ERR(em)) {
Chris Mason890871b2009-09-02 16:24:52 -04002896 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002897 break;
2898 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002899 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
2900 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04002901 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002902 free_extent_map(em);
2903 break;
2904 }
2905 if (!test_range_bit(tree, em->start,
2906 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04002907 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04002908 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05002909 remove_extent_mapping(map, em);
2910 /* once for the rb tree */
2911 free_extent_map(em);
2912 }
2913 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04002914 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002915
2916 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05002917 free_extent_map(em);
2918 }
Chris Masond1310b22008-01-24 16:13:08 -05002919 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04002920 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05002921}
Chris Masond1310b22008-01-24 16:13:08 -05002922
2923sector_t extent_bmap(struct address_space *mapping, sector_t iblock,
2924 get_extent_t *get_extent)
2925{
2926 struct inode *inode = mapping->host;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002927 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002928 u64 start = iblock << inode->i_blkbits;
2929 sector_t sector = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002930 size_t blksize = (1 << inode->i_blkbits);
Chris Masond1310b22008-01-24 16:13:08 -05002931 struct extent_map *em;
2932
Josef Bacik2ac55d42010-02-03 19:33:23 +00002933 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + blksize - 1,
2934 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04002935 em = get_extent(inode, NULL, 0, start, blksize, 0);
Josef Bacik2ac55d42010-02-03 19:33:23 +00002936 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start,
2937 start + blksize - 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002938 if (!em || IS_ERR(em))
2939 return 0;
2940
Yan Zhengd899e052008-10-30 14:25:28 -04002941 if (em->block_start > EXTENT_MAP_LAST_BYTE)
Chris Masond1310b22008-01-24 16:13:08 -05002942 goto out;
2943
2944 sector = (em->block_start + start - em->start) >> inode->i_blkbits;
Chris Masond1310b22008-01-24 16:13:08 -05002945out:
2946 free_extent_map(em);
2947 return sector;
2948}
2949
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002950int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2951 __u64 start, __u64 len, get_extent_t *get_extent)
2952{
2953 int ret;
2954 u64 off = start;
2955 u64 max = start + len;
2956 u32 flags = 0;
2957 u64 disko = 0;
2958 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002959 struct extent_state *cached_state = NULL;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002960 int end = 0;
2961 u64 em_start = 0, em_len = 0;
2962 unsigned long emflags;
2963 ret = 0;
2964
2965 if (len == 0)
2966 return -EINVAL;
2967
Josef Bacik2ac55d42010-02-03 19:33:23 +00002968 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
2969 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002970 em = get_extent(inode, NULL, 0, off, max - off, 0);
2971 if (!em)
2972 goto out;
2973 if (IS_ERR(em)) {
2974 ret = PTR_ERR(em);
2975 goto out;
2976 }
2977 while (!end) {
2978 off = em->start + em->len;
2979 if (off >= max)
2980 end = 1;
2981
2982 em_start = em->start;
2983 em_len = em->len;
2984
2985 disko = 0;
2986 flags = 0;
2987
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002988 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002989 end = 1;
2990 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002991 } else if (em->block_start == EXTENT_MAP_HOLE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002992 flags |= FIEMAP_EXTENT_UNWRITTEN;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002993 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002994 flags |= (FIEMAP_EXTENT_DATA_INLINE |
2995 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002996 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002997 flags |= (FIEMAP_EXTENT_DELALLOC |
2998 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002999 } else {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003000 disko = em->block_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003001 }
3002 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
3003 flags |= FIEMAP_EXTENT_ENCODED;
3004
3005 emflags = em->flags;
3006 free_extent_map(em);
3007 em = NULL;
3008
3009 if (!end) {
3010 em = get_extent(inode, NULL, 0, off, max - off, 0);
3011 if (!em)
3012 goto out;
3013 if (IS_ERR(em)) {
3014 ret = PTR_ERR(em);
3015 goto out;
3016 }
3017 emflags = em->flags;
3018 }
3019 if (test_bit(EXTENT_FLAG_VACANCY, &emflags)) {
3020 flags |= FIEMAP_EXTENT_LAST;
3021 end = 1;
3022 }
3023
3024 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
3025 em_len, flags);
3026 if (ret)
3027 goto out_free;
3028 }
3029out_free:
3030 free_extent_map(em);
3031out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00003032 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
3033 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003034 return ret;
3035}
3036
Chris Masond1310b22008-01-24 16:13:08 -05003037static inline struct page *extent_buffer_page(struct extent_buffer *eb,
3038 unsigned long i)
3039{
3040 struct page *p;
3041 struct address_space *mapping;
3042
3043 if (i == 0)
3044 return eb->first_page;
3045 i += eb->start >> PAGE_CACHE_SHIFT;
3046 mapping = eb->first_page->mapping;
Chris Mason33958dc2008-07-30 10:29:12 -04003047 if (!mapping)
3048 return NULL;
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003049
3050 /*
3051 * extent_buffer_page is only called after pinning the page
3052 * by increasing the reference count. So we know the page must
3053 * be in the radix tree.
3054 */
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003055 rcu_read_lock();
Chris Masond1310b22008-01-24 16:13:08 -05003056 p = radix_tree_lookup(&mapping->page_tree, i);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003057 rcu_read_unlock();
Chris Mason2b1f55b2008-09-24 11:48:04 -04003058
Chris Masond1310b22008-01-24 16:13:08 -05003059 return p;
3060}
3061
Chris Mason6af118c2008-07-22 11:18:07 -04003062static inline unsigned long num_extent_pages(u64 start, u64 len)
Chris Masonce9adaa2008-04-09 16:28:12 -04003063{
Chris Mason6af118c2008-07-22 11:18:07 -04003064 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3065 (start >> PAGE_CACHE_SHIFT);
Chris Mason728131d2008-04-09 16:28:12 -04003066}
3067
Chris Masond1310b22008-01-24 16:13:08 -05003068static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3069 u64 start,
3070 unsigned long len,
3071 gfp_t mask)
3072{
3073 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003074#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003075 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003076#endif
Chris Masond1310b22008-01-24 16:13:08 -05003077
Chris Masond1310b22008-01-24 16:13:08 -05003078 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Chris Masond1310b22008-01-24 16:13:08 -05003079 eb->start = start;
3080 eb->len = len;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003081 spin_lock_init(&eb->lock);
3082 init_waitqueue_head(&eb->lock_wq);
3083
Chris Mason39351272009-02-04 09:24:05 -05003084#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003085 spin_lock_irqsave(&leak_lock, flags);
3086 list_add(&eb->leak_list, &buffers);
3087 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003088#endif
Chris Masond1310b22008-01-24 16:13:08 -05003089 atomic_set(&eb->refs, 1);
3090
3091 return eb;
3092}
3093
3094static void __free_extent_buffer(struct extent_buffer *eb)
3095{
Chris Mason39351272009-02-04 09:24:05 -05003096#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003097 unsigned long flags;
3098 spin_lock_irqsave(&leak_lock, flags);
3099 list_del(&eb->leak_list);
3100 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003101#endif
Chris Masond1310b22008-01-24 16:13:08 -05003102 kmem_cache_free(extent_buffer_cache, eb);
3103}
3104
3105struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
3106 u64 start, unsigned long len,
3107 struct page *page0,
3108 gfp_t mask)
3109{
3110 unsigned long num_pages = num_extent_pages(start, len);
3111 unsigned long i;
3112 unsigned long index = start >> PAGE_CACHE_SHIFT;
3113 struct extent_buffer *eb;
Chris Mason6af118c2008-07-22 11:18:07 -04003114 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003115 struct page *p;
3116 struct address_space *mapping = tree->mapping;
3117 int uptodate = 1;
3118
Chris Mason6af118c2008-07-22 11:18:07 -04003119 spin_lock(&tree->buffer_lock);
3120 eb = buffer_search(tree, start);
3121 if (eb) {
3122 atomic_inc(&eb->refs);
3123 spin_unlock(&tree->buffer_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003124 mark_page_accessed(eb->first_page);
Chris Mason6af118c2008-07-22 11:18:07 -04003125 return eb;
3126 }
3127 spin_unlock(&tree->buffer_lock);
3128
Chris Masond1310b22008-01-24 16:13:08 -05003129 eb = __alloc_extent_buffer(tree, start, len, mask);
Peter2b114d12008-04-01 11:21:40 -04003130 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05003131 return NULL;
3132
Chris Masond1310b22008-01-24 16:13:08 -05003133 if (page0) {
3134 eb->first_page = page0;
3135 i = 1;
3136 index++;
3137 page_cache_get(page0);
3138 mark_page_accessed(page0);
3139 set_page_extent_mapped(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003140 set_page_extent_head(page0, len);
Chris Masonf1885912008-04-09 16:28:12 -04003141 uptodate = PageUptodate(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003142 } else {
3143 i = 0;
3144 }
3145 for (; i < num_pages; i++, index++) {
3146 p = find_or_create_page(mapping, index, mask | __GFP_HIGHMEM);
3147 if (!p) {
3148 WARN_ON(1);
Chris Mason6af118c2008-07-22 11:18:07 -04003149 goto free_eb;
Chris Masond1310b22008-01-24 16:13:08 -05003150 }
3151 set_page_extent_mapped(p);
3152 mark_page_accessed(p);
3153 if (i == 0) {
3154 eb->first_page = p;
3155 set_page_extent_head(p, len);
3156 } else {
3157 set_page_private(p, EXTENT_PAGE_PRIVATE);
3158 }
3159 if (!PageUptodate(p))
3160 uptodate = 0;
3161 unlock_page(p);
3162 }
3163 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003164 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003165
Chris Mason6af118c2008-07-22 11:18:07 -04003166 spin_lock(&tree->buffer_lock);
3167 exists = buffer_tree_insert(tree, start, &eb->rb_node);
3168 if (exists) {
3169 /* add one reference for the caller */
3170 atomic_inc(&exists->refs);
3171 spin_unlock(&tree->buffer_lock);
3172 goto free_eb;
3173 }
Chris Mason6af118c2008-07-22 11:18:07 -04003174 /* add one reference for the tree */
3175 atomic_inc(&eb->refs);
Yan, Zhengf044ba72010-02-04 08:46:56 +00003176 spin_unlock(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003177 return eb;
3178
Chris Mason6af118c2008-07-22 11:18:07 -04003179free_eb:
Chris Masond1310b22008-01-24 16:13:08 -05003180 if (!atomic_dec_and_test(&eb->refs))
Chris Mason6af118c2008-07-22 11:18:07 -04003181 return exists;
3182 for (index = 1; index < i; index++)
Chris Masond1310b22008-01-24 16:13:08 -05003183 page_cache_release(extent_buffer_page(eb, index));
Chris Mason6af118c2008-07-22 11:18:07 -04003184 page_cache_release(extent_buffer_page(eb, 0));
Chris Masond1310b22008-01-24 16:13:08 -05003185 __free_extent_buffer(eb);
Chris Mason6af118c2008-07-22 11:18:07 -04003186 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05003187}
Chris Masond1310b22008-01-24 16:13:08 -05003188
3189struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
3190 u64 start, unsigned long len,
3191 gfp_t mask)
3192{
Chris Masond1310b22008-01-24 16:13:08 -05003193 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05003194
Chris Mason6af118c2008-07-22 11:18:07 -04003195 spin_lock(&tree->buffer_lock);
3196 eb = buffer_search(tree, start);
3197 if (eb)
3198 atomic_inc(&eb->refs);
3199 spin_unlock(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003200
Josef Bacik0f9dd462008-09-23 13:14:11 -04003201 if (eb)
3202 mark_page_accessed(eb->first_page);
3203
Chris Masond1310b22008-01-24 16:13:08 -05003204 return eb;
Chris Masond1310b22008-01-24 16:13:08 -05003205}
Chris Masond1310b22008-01-24 16:13:08 -05003206
3207void free_extent_buffer(struct extent_buffer *eb)
3208{
Chris Masond1310b22008-01-24 16:13:08 -05003209 if (!eb)
3210 return;
3211
3212 if (!atomic_dec_and_test(&eb->refs))
3213 return;
3214
Chris Mason6af118c2008-07-22 11:18:07 -04003215 WARN_ON(1);
Chris Masond1310b22008-01-24 16:13:08 -05003216}
Chris Masond1310b22008-01-24 16:13:08 -05003217
3218int clear_extent_buffer_dirty(struct extent_io_tree *tree,
3219 struct extent_buffer *eb)
3220{
Chris Masond1310b22008-01-24 16:13:08 -05003221 unsigned long i;
3222 unsigned long num_pages;
3223 struct page *page;
3224
Chris Masond1310b22008-01-24 16:13:08 -05003225 num_pages = num_extent_pages(eb->start, eb->len);
3226
3227 for (i = 0; i < num_pages; i++) {
3228 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04003229 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05003230 continue;
3231
Chris Masona61e6f22008-07-22 11:18:08 -04003232 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003233 if (i == 0)
3234 set_page_extent_head(page, eb->len);
3235 else
3236 set_page_private(page, EXTENT_PAGE_PRIVATE);
3237
Chris Masond1310b22008-01-24 16:13:08 -05003238 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003239 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003240 if (!PageDirty(page)) {
3241 radix_tree_tag_clear(&page->mapping->page_tree,
3242 page_index(page),
3243 PAGECACHE_TAG_DIRTY);
3244 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003245 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masona61e6f22008-07-22 11:18:08 -04003246 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003247 }
3248 return 0;
3249}
Chris Masond1310b22008-01-24 16:13:08 -05003250
3251int wait_on_extent_buffer_writeback(struct extent_io_tree *tree,
3252 struct extent_buffer *eb)
3253{
3254 return wait_on_extent_writeback(tree, eb->start,
3255 eb->start + eb->len - 1);
3256}
Chris Masond1310b22008-01-24 16:13:08 -05003257
3258int set_extent_buffer_dirty(struct extent_io_tree *tree,
3259 struct extent_buffer *eb)
3260{
3261 unsigned long i;
3262 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04003263 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003264
Chris Masonb9473432009-03-13 11:00:37 -04003265 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003266 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb9473432009-03-13 11:00:37 -04003267 for (i = 0; i < num_pages; i++)
Chris Masond1310b22008-01-24 16:13:08 -05003268 __set_page_dirty_nobuffers(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04003269 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05003270}
Chris Masond1310b22008-01-24 16:13:08 -05003271
Chris Mason1259ab72008-05-12 13:39:03 -04003272int clear_extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003273 struct extent_buffer *eb,
3274 struct extent_state **cached_state)
Chris Mason1259ab72008-05-12 13:39:03 -04003275{
3276 unsigned long i;
3277 struct page *page;
3278 unsigned long num_pages;
3279
3280 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003281 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Mason1259ab72008-05-12 13:39:03 -04003282
3283 clear_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003284 cached_state, GFP_NOFS);
Chris Mason1259ab72008-05-12 13:39:03 -04003285 for (i = 0; i < num_pages; i++) {
3286 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04003287 if (page)
3288 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003289 }
3290 return 0;
3291}
3292
Chris Masond1310b22008-01-24 16:13:08 -05003293int set_extent_buffer_uptodate(struct extent_io_tree *tree,
3294 struct extent_buffer *eb)
3295{
3296 unsigned long i;
3297 struct page *page;
3298 unsigned long num_pages;
3299
3300 num_pages = num_extent_pages(eb->start, eb->len);
3301
3302 set_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3303 GFP_NOFS);
3304 for (i = 0; i < num_pages; i++) {
3305 page = extent_buffer_page(eb, i);
3306 if ((i == 0 && (eb->start & (PAGE_CACHE_SIZE - 1))) ||
3307 ((i == num_pages - 1) &&
3308 ((eb->start + eb->len) & (PAGE_CACHE_SIZE - 1)))) {
3309 check_page_uptodate(tree, page);
3310 continue;
3311 }
3312 SetPageUptodate(page);
3313 }
3314 return 0;
3315}
Chris Masond1310b22008-01-24 16:13:08 -05003316
Chris Masonce9adaa2008-04-09 16:28:12 -04003317int extent_range_uptodate(struct extent_io_tree *tree,
3318 u64 start, u64 end)
3319{
3320 struct page *page;
3321 int ret;
3322 int pg_uptodate = 1;
3323 int uptodate;
3324 unsigned long index;
3325
Chris Mason9655d292009-09-02 15:22:30 -04003326 ret = test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL);
Chris Masonce9adaa2008-04-09 16:28:12 -04003327 if (ret)
3328 return 1;
Chris Masond3977122009-01-05 21:25:51 -05003329 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003330 index = start >> PAGE_CACHE_SHIFT;
3331 page = find_get_page(tree->mapping, index);
3332 uptodate = PageUptodate(page);
3333 page_cache_release(page);
3334 if (!uptodate) {
3335 pg_uptodate = 0;
3336 break;
3337 }
3338 start += PAGE_CACHE_SIZE;
3339 }
3340 return pg_uptodate;
3341}
3342
Chris Masond1310b22008-01-24 16:13:08 -05003343int extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003344 struct extent_buffer *eb,
3345 struct extent_state *cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05003346{
Chris Mason728131d2008-04-09 16:28:12 -04003347 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003348 unsigned long num_pages;
3349 unsigned long i;
Chris Mason728131d2008-04-09 16:28:12 -04003350 struct page *page;
3351 int pg_uptodate = 1;
3352
Chris Masonb4ce94d2009-02-04 09:25:08 -05003353 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Mason42352982008-04-28 16:40:52 -04003354 return 1;
Chris Mason728131d2008-04-09 16:28:12 -04003355
Chris Mason42352982008-04-28 16:40:52 -04003356 ret = test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003357 EXTENT_UPTODATE, 1, cached_state);
Chris Mason42352982008-04-28 16:40:52 -04003358 if (ret)
3359 return ret;
Chris Mason728131d2008-04-09 16:28:12 -04003360
3361 num_pages = num_extent_pages(eb->start, eb->len);
3362 for (i = 0; i < num_pages; i++) {
3363 page = extent_buffer_page(eb, i);
3364 if (!PageUptodate(page)) {
3365 pg_uptodate = 0;
3366 break;
3367 }
3368 }
Chris Mason42352982008-04-28 16:40:52 -04003369 return pg_uptodate;
Chris Masond1310b22008-01-24 16:13:08 -05003370}
Chris Masond1310b22008-01-24 16:13:08 -05003371
3372int read_extent_buffer_pages(struct extent_io_tree *tree,
3373 struct extent_buffer *eb,
Chris Masona86c12c2008-02-07 10:50:54 -05003374 u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04003375 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003376{
3377 unsigned long i;
3378 unsigned long start_i;
3379 struct page *page;
3380 int err;
3381 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003382 int locked_pages = 0;
3383 int all_uptodate = 1;
3384 int inc_all_pages = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003385 unsigned long num_pages;
Chris Masona86c12c2008-02-07 10:50:54 -05003386 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003387 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05003388
Chris Masonb4ce94d2009-02-04 09:25:08 -05003389 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05003390 return 0;
3391
Chris Masonce9adaa2008-04-09 16:28:12 -04003392 if (test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003393 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003394 return 0;
3395 }
3396
3397 if (start) {
3398 WARN_ON(start < eb->start);
3399 start_i = (start >> PAGE_CACHE_SHIFT) -
3400 (eb->start >> PAGE_CACHE_SHIFT);
3401 } else {
3402 start_i = 0;
3403 }
3404
3405 num_pages = num_extent_pages(eb->start, eb->len);
3406 for (i = start_i; i < num_pages; i++) {
3407 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003408 if (!wait) {
David Woodhouse2db04962008-08-07 11:19:43 -04003409 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003410 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05003411 } else {
3412 lock_page(page);
3413 }
Chris Masonce9adaa2008-04-09 16:28:12 -04003414 locked_pages++;
Chris Masond3977122009-01-05 21:25:51 -05003415 if (!PageUptodate(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003416 all_uptodate = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003417 }
3418 if (all_uptodate) {
3419 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003420 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04003421 goto unlock_exit;
3422 }
3423
3424 for (i = start_i; i < num_pages; i++) {
3425 page = extent_buffer_page(eb, i);
3426 if (inc_all_pages)
3427 page_cache_get(page);
3428 if (!PageUptodate(page)) {
3429 if (start_i == 0)
3430 inc_all_pages = 1;
Chris Masonf1885912008-04-09 16:28:12 -04003431 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05003432 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04003433 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003434 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05003435 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05003436 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05003437 } else {
3438 unlock_page(page);
3439 }
3440 }
3441
Chris Masona86c12c2008-02-07 10:50:54 -05003442 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04003443 submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masona86c12c2008-02-07 10:50:54 -05003444
Chris Masond3977122009-01-05 21:25:51 -05003445 if (ret || !wait)
Chris Masond1310b22008-01-24 16:13:08 -05003446 return ret;
Chris Masond3977122009-01-05 21:25:51 -05003447
Chris Masond1310b22008-01-24 16:13:08 -05003448 for (i = start_i; i < num_pages; i++) {
3449 page = extent_buffer_page(eb, i);
3450 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05003451 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05003452 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05003453 }
Chris Masond3977122009-01-05 21:25:51 -05003454
Chris Masond1310b22008-01-24 16:13:08 -05003455 if (!ret)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003456 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003457 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04003458
3459unlock_exit:
3460 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05003461 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003462 page = extent_buffer_page(eb, i);
3463 i++;
3464 unlock_page(page);
3465 locked_pages--;
3466 }
3467 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003468}
Chris Masond1310b22008-01-24 16:13:08 -05003469
3470void read_extent_buffer(struct extent_buffer *eb, void *dstv,
3471 unsigned long start,
3472 unsigned long len)
3473{
3474 size_t cur;
3475 size_t offset;
3476 struct page *page;
3477 char *kaddr;
3478 char *dst = (char *)dstv;
3479 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3480 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003481
3482 WARN_ON(start > eb->len);
3483 WARN_ON(start + len > eb->start + eb->len);
3484
3485 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3486
Chris Masond3977122009-01-05 21:25:51 -05003487 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003488 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003489
3490 cur = min(len, (PAGE_CACHE_SIZE - offset));
3491 kaddr = kmap_atomic(page, KM_USER1);
3492 memcpy(dst, kaddr + offset, cur);
3493 kunmap_atomic(kaddr, KM_USER1);
3494
3495 dst += cur;
3496 len -= cur;
3497 offset = 0;
3498 i++;
3499 }
3500}
Chris Masond1310b22008-01-24 16:13:08 -05003501
3502int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
3503 unsigned long min_len, char **token, char **map,
3504 unsigned long *map_start,
3505 unsigned long *map_len, int km)
3506{
3507 size_t offset = start & (PAGE_CACHE_SIZE - 1);
3508 char *kaddr;
3509 struct page *p;
3510 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3511 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3512 unsigned long end_i = (start_offset + start + min_len - 1) >>
3513 PAGE_CACHE_SHIFT;
3514
3515 if (i != end_i)
3516 return -EINVAL;
3517
3518 if (i == 0) {
3519 offset = start_offset;
3520 *map_start = 0;
3521 } else {
3522 offset = 0;
3523 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
3524 }
Chris Masond3977122009-01-05 21:25:51 -05003525
Chris Masond1310b22008-01-24 16:13:08 -05003526 if (start + min_len > eb->len) {
Chris Masond3977122009-01-05 21:25:51 -05003527 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
3528 "wanted %lu %lu\n", (unsigned long long)eb->start,
3529 eb->len, start, min_len);
Chris Masond1310b22008-01-24 16:13:08 -05003530 WARN_ON(1);
3531 }
3532
3533 p = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003534 kaddr = kmap_atomic(p, km);
3535 *token = kaddr;
3536 *map = kaddr + offset;
3537 *map_len = PAGE_CACHE_SIZE - offset;
3538 return 0;
3539}
Chris Masond1310b22008-01-24 16:13:08 -05003540
3541int map_extent_buffer(struct extent_buffer *eb, unsigned long start,
3542 unsigned long min_len,
3543 char **token, char **map,
3544 unsigned long *map_start,
3545 unsigned long *map_len, int km)
3546{
3547 int err;
3548 int save = 0;
3549 if (eb->map_token) {
3550 unmap_extent_buffer(eb, eb->map_token, km);
3551 eb->map_token = NULL;
3552 save = 1;
3553 }
3554 err = map_private_extent_buffer(eb, start, min_len, token, map,
3555 map_start, map_len, km);
3556 if (!err && save) {
3557 eb->map_token = *token;
3558 eb->kaddr = *map;
3559 eb->map_start = *map_start;
3560 eb->map_len = *map_len;
3561 }
3562 return err;
3563}
Chris Masond1310b22008-01-24 16:13:08 -05003564
3565void unmap_extent_buffer(struct extent_buffer *eb, char *token, int km)
3566{
3567 kunmap_atomic(token, km);
3568}
Chris Masond1310b22008-01-24 16:13:08 -05003569
3570int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
3571 unsigned long start,
3572 unsigned long len)
3573{
3574 size_t cur;
3575 size_t offset;
3576 struct page *page;
3577 char *kaddr;
3578 char *ptr = (char *)ptrv;
3579 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3580 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3581 int ret = 0;
3582
3583 WARN_ON(start > eb->len);
3584 WARN_ON(start + len > eb->start + eb->len);
3585
3586 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3587
Chris Masond3977122009-01-05 21:25:51 -05003588 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003589 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003590
3591 cur = min(len, (PAGE_CACHE_SIZE - offset));
3592
3593 kaddr = kmap_atomic(page, KM_USER0);
3594 ret = memcmp(ptr, kaddr + offset, cur);
3595 kunmap_atomic(kaddr, KM_USER0);
3596 if (ret)
3597 break;
3598
3599 ptr += cur;
3600 len -= cur;
3601 offset = 0;
3602 i++;
3603 }
3604 return ret;
3605}
Chris Masond1310b22008-01-24 16:13:08 -05003606
3607void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
3608 unsigned long start, unsigned long len)
3609{
3610 size_t cur;
3611 size_t offset;
3612 struct page *page;
3613 char *kaddr;
3614 char *src = (char *)srcv;
3615 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3616 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3617
3618 WARN_ON(start > eb->len);
3619 WARN_ON(start + len > eb->start + eb->len);
3620
3621 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3622
Chris Masond3977122009-01-05 21:25:51 -05003623 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003624 page = extent_buffer_page(eb, i);
3625 WARN_ON(!PageUptodate(page));
3626
3627 cur = min(len, PAGE_CACHE_SIZE - offset);
3628 kaddr = kmap_atomic(page, KM_USER1);
3629 memcpy(kaddr + offset, src, cur);
3630 kunmap_atomic(kaddr, KM_USER1);
3631
3632 src += cur;
3633 len -= cur;
3634 offset = 0;
3635 i++;
3636 }
3637}
Chris Masond1310b22008-01-24 16:13:08 -05003638
3639void memset_extent_buffer(struct extent_buffer *eb, char c,
3640 unsigned long start, unsigned long len)
3641{
3642 size_t cur;
3643 size_t offset;
3644 struct page *page;
3645 char *kaddr;
3646 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3647 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3648
3649 WARN_ON(start > eb->len);
3650 WARN_ON(start + len > eb->start + eb->len);
3651
3652 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3653
Chris Masond3977122009-01-05 21:25:51 -05003654 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003655 page = extent_buffer_page(eb, i);
3656 WARN_ON(!PageUptodate(page));
3657
3658 cur = min(len, PAGE_CACHE_SIZE - offset);
3659 kaddr = kmap_atomic(page, KM_USER0);
3660 memset(kaddr + offset, c, cur);
3661 kunmap_atomic(kaddr, KM_USER0);
3662
3663 len -= cur;
3664 offset = 0;
3665 i++;
3666 }
3667}
Chris Masond1310b22008-01-24 16:13:08 -05003668
3669void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
3670 unsigned long dst_offset, unsigned long src_offset,
3671 unsigned long len)
3672{
3673 u64 dst_len = dst->len;
3674 size_t cur;
3675 size_t offset;
3676 struct page *page;
3677 char *kaddr;
3678 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3679 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3680
3681 WARN_ON(src->len != dst_len);
3682
3683 offset = (start_offset + dst_offset) &
3684 ((unsigned long)PAGE_CACHE_SIZE - 1);
3685
Chris Masond3977122009-01-05 21:25:51 -05003686 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003687 page = extent_buffer_page(dst, i);
3688 WARN_ON(!PageUptodate(page));
3689
3690 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
3691
3692 kaddr = kmap_atomic(page, KM_USER0);
3693 read_extent_buffer(src, kaddr + offset, src_offset, cur);
3694 kunmap_atomic(kaddr, KM_USER0);
3695
3696 src_offset += cur;
3697 len -= cur;
3698 offset = 0;
3699 i++;
3700 }
3701}
Chris Masond1310b22008-01-24 16:13:08 -05003702
3703static void move_pages(struct page *dst_page, struct page *src_page,
3704 unsigned long dst_off, unsigned long src_off,
3705 unsigned long len)
3706{
3707 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3708 if (dst_page == src_page) {
3709 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
3710 } else {
3711 char *src_kaddr = kmap_atomic(src_page, KM_USER1);
3712 char *p = dst_kaddr + dst_off + len;
3713 char *s = src_kaddr + src_off + len;
3714
3715 while (len--)
3716 *--p = *--s;
3717
3718 kunmap_atomic(src_kaddr, KM_USER1);
3719 }
3720 kunmap_atomic(dst_kaddr, KM_USER0);
3721}
3722
3723static void copy_pages(struct page *dst_page, struct page *src_page,
3724 unsigned long dst_off, unsigned long src_off,
3725 unsigned long len)
3726{
3727 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3728 char *src_kaddr;
3729
3730 if (dst_page != src_page)
3731 src_kaddr = kmap_atomic(src_page, KM_USER1);
3732 else
3733 src_kaddr = dst_kaddr;
3734
3735 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
3736 kunmap_atomic(dst_kaddr, KM_USER0);
3737 if (dst_page != src_page)
3738 kunmap_atomic(src_kaddr, KM_USER1);
3739}
3740
3741void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3742 unsigned long src_offset, unsigned long len)
3743{
3744 size_t cur;
3745 size_t dst_off_in_page;
3746 size_t src_off_in_page;
3747 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3748 unsigned long dst_i;
3749 unsigned long src_i;
3750
3751 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003752 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3753 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003754 BUG_ON(1);
3755 }
3756 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003757 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3758 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003759 BUG_ON(1);
3760 }
3761
Chris Masond3977122009-01-05 21:25:51 -05003762 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003763 dst_off_in_page = (start_offset + dst_offset) &
3764 ((unsigned long)PAGE_CACHE_SIZE - 1);
3765 src_off_in_page = (start_offset + src_offset) &
3766 ((unsigned long)PAGE_CACHE_SIZE - 1);
3767
3768 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3769 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
3770
3771 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
3772 src_off_in_page));
3773 cur = min_t(unsigned long, cur,
3774 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
3775
3776 copy_pages(extent_buffer_page(dst, dst_i),
3777 extent_buffer_page(dst, src_i),
3778 dst_off_in_page, src_off_in_page, cur);
3779
3780 src_offset += cur;
3781 dst_offset += cur;
3782 len -= cur;
3783 }
3784}
Chris Masond1310b22008-01-24 16:13:08 -05003785
3786void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3787 unsigned long src_offset, unsigned long len)
3788{
3789 size_t cur;
3790 size_t dst_off_in_page;
3791 size_t src_off_in_page;
3792 unsigned long dst_end = dst_offset + len - 1;
3793 unsigned long src_end = src_offset + len - 1;
3794 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3795 unsigned long dst_i;
3796 unsigned long src_i;
3797
3798 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003799 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3800 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003801 BUG_ON(1);
3802 }
3803 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003804 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3805 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003806 BUG_ON(1);
3807 }
3808 if (dst_offset < src_offset) {
3809 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
3810 return;
3811 }
Chris Masond3977122009-01-05 21:25:51 -05003812 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003813 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
3814 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
3815
3816 dst_off_in_page = (start_offset + dst_end) &
3817 ((unsigned long)PAGE_CACHE_SIZE - 1);
3818 src_off_in_page = (start_offset + src_end) &
3819 ((unsigned long)PAGE_CACHE_SIZE - 1);
3820
3821 cur = min_t(unsigned long, len, src_off_in_page + 1);
3822 cur = min(cur, dst_off_in_page + 1);
3823 move_pages(extent_buffer_page(dst, dst_i),
3824 extent_buffer_page(dst, src_i),
3825 dst_off_in_page - cur + 1,
3826 src_off_in_page - cur + 1, cur);
3827
3828 dst_end -= cur;
3829 src_end -= cur;
3830 len -= cur;
3831 }
3832}
Chris Mason6af118c2008-07-22 11:18:07 -04003833
3834int try_release_extent_buffer(struct extent_io_tree *tree, struct page *page)
3835{
3836 u64 start = page_offset(page);
3837 struct extent_buffer *eb;
3838 int ret = 1;
3839 unsigned long i;
3840 unsigned long num_pages;
3841
3842 spin_lock(&tree->buffer_lock);
3843 eb = buffer_search(tree, start);
3844 if (!eb)
3845 goto out;
3846
3847 if (atomic_read(&eb->refs) > 1) {
3848 ret = 0;
3849 goto out;
3850 }
Chris Masonb9473432009-03-13 11:00:37 -04003851 if (test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3852 ret = 0;
3853 goto out;
3854 }
Chris Mason6af118c2008-07-22 11:18:07 -04003855 /* at this point we can safely release the extent buffer */
3856 num_pages = num_extent_pages(eb->start, eb->len);
Christoph Hellwigb2141072008-09-05 16:43:31 -04003857 for (i = 0; i < num_pages; i++)
3858 page_cache_release(extent_buffer_page(eb, i));
Chris Mason6af118c2008-07-22 11:18:07 -04003859 rb_erase(&eb->rb_node, &tree->buffer);
3860 __free_extent_buffer(eb);
3861out:
3862 spin_unlock(&tree->buffer_lock);
3863 return ret;
3864}