blob: 7e16c6d8153fb8a575ea466bb7dd2190e2d5089b [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{
107 tree->state.rb_node = NULL;
Chris Mason6af118ce2008-07-22 11:18:07 -0400108 tree->buffer.rb_node = NULL;
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 Mason6af118ce2008-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 Mason6af118ce2008-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 Mason6af118ce2008-07-22 11:18:07 -0400245 struct extent_buffer *eb;
246
Chris Masond3977122009-01-05 21:25:51 -0500247 while (*p) {
Chris Mason6af118ce2008-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 Mason6af118ce2008-07-22 11:18:07 -0400269 struct extent_buffer *eb;
270
Chris Masond3977122009-01-05 21:25:51 -0500271 while (n) {
Chris Mason6af118ce2008-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
Chris Masond1310b22008-01-24 16:13:08 -0500283/*
284 * utility function to look for merge candidates inside a given range.
285 * Any extents with matching state are merged together into a single
286 * extent in the tree. Extents with EXTENT_IO in their state field
287 * are not merged because the end_io handlers need to be able to do
288 * operations on them without sleeping (or doing allocations/splits).
289 *
290 * This should be called with the tree lock held.
291 */
292static int merge_state(struct extent_io_tree *tree,
293 struct extent_state *state)
294{
295 struct extent_state *other;
296 struct rb_node *other_node;
297
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400298 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Chris Masond1310b22008-01-24 16:13:08 -0500299 return 0;
300
301 other_node = rb_prev(&state->rb_node);
302 if (other_node) {
303 other = rb_entry(other_node, struct extent_state, rb_node);
304 if (other->end == state->start - 1 &&
305 other->state == state->state) {
306 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500307 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500308 rb_erase(&other->rb_node, &tree->state);
309 free_extent_state(other);
310 }
311 }
312 other_node = rb_next(&state->rb_node);
313 if (other_node) {
314 other = rb_entry(other_node, struct extent_state, rb_node);
315 if (other->start == state->end + 1 &&
316 other->state == state->state) {
317 other->start = state->start;
Chris Mason70dec802008-01-29 09:59:12 -0500318 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500319 rb_erase(&state->rb_node, &tree->state);
320 free_extent_state(state);
321 }
322 }
323 return 0;
324}
325
Chris Mason291d6732008-01-29 15:55:23 -0500326static void set_state_cb(struct extent_io_tree *tree,
327 struct extent_state *state,
328 unsigned long bits)
329{
330 if (tree->ops && tree->ops->set_bit_hook) {
331 tree->ops->set_bit_hook(tree->mapping->host, state->start,
Chris Masonb0c68f82008-01-31 11:05:37 -0500332 state->end, state->state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500333 }
334}
335
336static void clear_state_cb(struct extent_io_tree *tree,
337 struct extent_state *state,
338 unsigned long bits)
339{
Liu Huic5844822009-01-05 15:49:55 -0500340 if (tree->ops && tree->ops->clear_bit_hook) {
Chris Mason291d6732008-01-29 15:55:23 -0500341 tree->ops->clear_bit_hook(tree->mapping->host, state->start,
Chris Masonb0c68f82008-01-31 11:05:37 -0500342 state->end, state->state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500343 }
344}
345
Chris Masond1310b22008-01-24 16:13:08 -0500346/*
347 * insert an extent_state struct into the tree. 'bits' are set on the
348 * struct before it is inserted.
349 *
350 * This may return -EEXIST if the extent is already there, in which case the
351 * state struct is freed.
352 *
353 * The tree lock is not taken internally. This is a utility function and
354 * probably isn't what you want to call (see set/clear_extent_bit).
355 */
356static int insert_state(struct extent_io_tree *tree,
357 struct extent_state *state, u64 start, u64 end,
358 int bits)
359{
360 struct rb_node *node;
361
362 if (end < start) {
Chris Masond3977122009-01-05 21:25:51 -0500363 printk(KERN_ERR "btrfs end < start %llu %llu\n",
364 (unsigned long long)end,
365 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500366 WARN_ON(1);
367 }
368 if (bits & EXTENT_DIRTY)
369 tree->dirty_bytes += end - start + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500370 state->start = start;
371 state->end = end;
Chris Masone48c4652009-09-11 11:25:02 -0400372 set_state_cb(tree, state, bits);
373 state->state |= bits;
Chris Masond1310b22008-01-24 16:13:08 -0500374 node = tree_insert(&tree->state, end, &state->rb_node);
375 if (node) {
376 struct extent_state *found;
377 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500378 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
379 "%llu %llu\n", (unsigned long long)found->start,
380 (unsigned long long)found->end,
381 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500382 free_extent_state(state);
383 return -EEXIST;
384 }
Chris Mason70dec802008-01-29 09:59:12 -0500385 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500386 merge_state(tree, state);
387 return 0;
388}
389
390/*
391 * split a given extent state struct in two, inserting the preallocated
392 * struct 'prealloc' as the newly created second half. 'split' indicates an
393 * offset inside 'orig' where it should be split.
394 *
395 * Before calling,
396 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
397 * are two extent state structs in the tree:
398 * prealloc: [orig->start, split - 1]
399 * orig: [ split, orig->end ]
400 *
401 * The tree locks are not taken by this function. They need to be held
402 * by the caller.
403 */
404static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
405 struct extent_state *prealloc, u64 split)
406{
407 struct rb_node *node;
408 prealloc->start = orig->start;
409 prealloc->end = split - 1;
410 prealloc->state = orig->state;
411 orig->start = split;
412
413 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
414 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500415 free_extent_state(prealloc);
416 return -EEXIST;
417 }
Chris Mason70dec802008-01-29 09:59:12 -0500418 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500419 return 0;
420}
421
422/*
423 * utility function to clear some bits in an extent state struct.
424 * it will optionally wake up any one waiting on this state (wake == 1), or
425 * forcibly remove the state from the tree (delete == 1).
426 *
427 * If no bits are set on the state struct after clearing things, the
428 * struct is freed and removed from the tree
429 */
430static int clear_state_bit(struct extent_io_tree *tree,
431 struct extent_state *state, int bits, int wake,
432 int delete)
433{
434 int ret = state->state & bits;
435
436 if ((bits & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
437 u64 range = state->end - state->start + 1;
438 WARN_ON(range > tree->dirty_bytes);
439 tree->dirty_bytes -= range;
440 }
Chris Mason291d6732008-01-29 15:55:23 -0500441 clear_state_cb(tree, state, bits);
Chris Masonb0c68f82008-01-31 11:05:37 -0500442 state->state &= ~bits;
Chris Masond1310b22008-01-24 16:13:08 -0500443 if (wake)
444 wake_up(&state->wq);
445 if (delete || state->state == 0) {
Chris Mason70dec802008-01-29 09:59:12 -0500446 if (state->tree) {
Chris Masonae9d1282008-02-01 15:42:15 -0500447 clear_state_cb(tree, state, state->state);
Chris Masond1310b22008-01-24 16:13:08 -0500448 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500449 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500450 free_extent_state(state);
451 } else {
452 WARN_ON(1);
453 }
454 } else {
455 merge_state(tree, state);
456 }
457 return ret;
458}
459
460/*
461 * clear some bits on a range in the tree. This may require splitting
462 * or inserting elements in the tree, so the gfp mask is used to
463 * indicate which allocations or sleeping are allowed.
464 *
465 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
466 * the given range from the tree regardless of state (ie for truncate).
467 *
468 * the range [start, end] is inclusive.
469 *
470 * This takes the tree lock, and returns < 0 on error, > 0 if any of the
471 * bits were already set, or zero if none of the bits were already set.
472 */
473int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400474 int bits, int wake, int delete,
475 struct extent_state **cached_state,
476 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500477{
478 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400479 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500480 struct extent_state *prealloc = NULL;
Chris Mason2c64c532009-09-02 15:04:12 -0400481 struct rb_node *next_node;
Chris Masond1310b22008-01-24 16:13:08 -0500482 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400483 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500484 int err;
485 int set = 0;
486
487again:
488 if (!prealloc && (mask & __GFP_WAIT)) {
489 prealloc = alloc_extent_state(mask);
490 if (!prealloc)
491 return -ENOMEM;
492 }
493
Chris Masoncad321a2008-12-17 14:51:42 -0500494 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400495 if (cached_state) {
496 cached = *cached_state;
497 *cached_state = NULL;
498 if (cached->tree && cached->start == start) {
499 atomic_dec(&cached->refs);
500 state = cached;
501 last_end = state->end;
502 goto found;
503 }
504 free_extent_state(cached);
505 }
Chris Masond1310b22008-01-24 16:13:08 -0500506 /*
507 * this search will find the extents that end after
508 * our range starts
509 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500510 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500511 if (!node)
512 goto out;
513 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400514hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500515 if (state->start > end)
516 goto out;
517 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400518 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500519
520 /*
521 * | ---- desired range ---- |
522 * | state | or
523 * | ------------- state -------------- |
524 *
525 * We need to split the extent we found, and may flip
526 * bits on second half.
527 *
528 * If the extent we found extends past our range, we
529 * just split and search again. It'll get split again
530 * the next time though.
531 *
532 * If the extent we found is inside our range, we clear
533 * the desired bit on it.
534 */
535
536 if (state->start < start) {
Chris Mason70dec802008-01-29 09:59:12 -0500537 if (!prealloc)
538 prealloc = alloc_extent_state(GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500539 err = split_state(tree, state, prealloc, start);
540 BUG_ON(err == -EEXIST);
541 prealloc = NULL;
542 if (err)
543 goto out;
544 if (state->end <= end) {
Chris Masond1310b22008-01-24 16:13:08 -0500545 set |= clear_state_bit(tree, state, bits,
546 wake, delete);
Yan Zheng5c939df2009-05-27 09:16:03 -0400547 if (last_end == (u64)-1)
548 goto out;
549 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500550 } else {
551 start = state->start;
552 }
553 goto search_again;
554 }
555 /*
556 * | ---- desired range ---- |
557 * | state |
558 * We need to split the extent, and clear the bit
559 * on the first half
560 */
561 if (state->start <= end && state->end > end) {
Chris Mason70dec802008-01-29 09:59:12 -0500562 if (!prealloc)
563 prealloc = alloc_extent_state(GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500564 err = split_state(tree, state, prealloc, end + 1);
565 BUG_ON(err == -EEXIST);
566
567 if (wake)
568 wake_up(&state->wq);
569 set |= clear_state_bit(tree, prealloc, bits,
570 wake, delete);
571 prealloc = NULL;
572 goto out;
573 }
Chris Mason2c64c532009-09-02 15:04:12 -0400574found:
575 if (state->end < end && prealloc && !need_resched())
576 next_node = rb_next(&state->rb_node);
577 else
578 next_node = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500579 set |= clear_state_bit(tree, state, bits, wake, delete);
Yan Zheng5c939df2009-05-27 09:16:03 -0400580 if (last_end == (u64)-1)
581 goto out;
582 start = last_end + 1;
Chris Mason2c64c532009-09-02 15:04:12 -0400583 if (start <= end && next_node) {
584 state = rb_entry(next_node, struct extent_state,
585 rb_node);
586 if (state->start == start)
587 goto hit_next;
588 }
Chris Masond1310b22008-01-24 16:13:08 -0500589 goto search_again;
590
591out:
Chris Masoncad321a2008-12-17 14:51:42 -0500592 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500593 if (prealloc)
594 free_extent_state(prealloc);
595
596 return set;
597
598search_again:
599 if (start > end)
600 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500601 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500602 if (mask & __GFP_WAIT)
603 cond_resched();
604 goto again;
605}
Chris Masond1310b22008-01-24 16:13:08 -0500606
607static int wait_on_state(struct extent_io_tree *tree,
608 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500609 __releases(tree->lock)
610 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500611{
612 DEFINE_WAIT(wait);
613 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500614 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500615 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500616 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500617 finish_wait(&state->wq, &wait);
618 return 0;
619}
620
621/*
622 * waits for one or more bits to clear on a range in the state tree.
623 * The range [start, end] is inclusive.
624 * The tree lock is taken by this function
625 */
626int wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
627{
628 struct extent_state *state;
629 struct rb_node *node;
630
Chris Masoncad321a2008-12-17 14:51:42 -0500631 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500632again:
633 while (1) {
634 /*
635 * this search will find all the extents that end after
636 * our range starts
637 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500638 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500639 if (!node)
640 break;
641
642 state = rb_entry(node, struct extent_state, rb_node);
643
644 if (state->start > end)
645 goto out;
646
647 if (state->state & bits) {
648 start = state->start;
649 atomic_inc(&state->refs);
650 wait_on_state(tree, state);
651 free_extent_state(state);
652 goto again;
653 }
654 start = state->end + 1;
655
656 if (start > end)
657 break;
658
659 if (need_resched()) {
Chris Masoncad321a2008-12-17 14:51:42 -0500660 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500661 cond_resched();
Chris Masoncad321a2008-12-17 14:51:42 -0500662 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500663 }
664 }
665out:
Chris Masoncad321a2008-12-17 14:51:42 -0500666 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500667 return 0;
668}
Chris Masond1310b22008-01-24 16:13:08 -0500669
670static void set_state_bits(struct extent_io_tree *tree,
671 struct extent_state *state,
672 int bits)
673{
674 if ((bits & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
675 u64 range = state->end - state->start + 1;
676 tree->dirty_bytes += range;
677 }
Chris Mason291d6732008-01-29 15:55:23 -0500678 set_state_cb(tree, state, bits);
Chris Masonb0c68f82008-01-31 11:05:37 -0500679 state->state |= bits;
Chris Masond1310b22008-01-24 16:13:08 -0500680}
681
Chris Mason2c64c532009-09-02 15:04:12 -0400682static void cache_state(struct extent_state *state,
683 struct extent_state **cached_ptr)
684{
685 if (cached_ptr && !(*cached_ptr)) {
686 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
687 *cached_ptr = state;
688 atomic_inc(&state->refs);
689 }
690 }
691}
692
Chris Masond1310b22008-01-24 16:13:08 -0500693/*
Chris Mason1edbb732009-09-02 13:24:36 -0400694 * set some bits on a range in the tree. This may require allocations or
695 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500696 *
Chris Mason1edbb732009-09-02 13:24:36 -0400697 * If any of the exclusive bits are set, this will fail with -EEXIST if some
698 * part of the range already has the desired bits set. The start of the
699 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500700 *
Chris Mason1edbb732009-09-02 13:24:36 -0400701 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500702 */
Chris Mason1edbb732009-09-02 13:24:36 -0400703
Chris Masond3977122009-01-05 21:25:51 -0500704static int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason1edbb732009-09-02 13:24:36 -0400705 int bits, int exclusive_bits, u64 *failed_start,
Chris Mason2c64c532009-09-02 15:04:12 -0400706 struct extent_state **cached_state,
Chris Masond3977122009-01-05 21:25:51 -0500707 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500708{
709 struct extent_state *state;
710 struct extent_state *prealloc = NULL;
711 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500712 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500713 u64 last_start;
714 u64 last_end;
715again:
716 if (!prealloc && (mask & __GFP_WAIT)) {
717 prealloc = alloc_extent_state(mask);
718 if (!prealloc)
719 return -ENOMEM;
720 }
721
Chris Masoncad321a2008-12-17 14:51:42 -0500722 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400723 if (cached_state && *cached_state) {
724 state = *cached_state;
725 if (state->start == start && state->tree) {
726 node = &state->rb_node;
727 goto hit_next;
728 }
729 }
Chris Masond1310b22008-01-24 16:13:08 -0500730 /*
731 * this search will find all the extents that end after
732 * our range starts.
733 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500734 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500735 if (!node) {
736 err = insert_state(tree, prealloc, start, end, bits);
737 prealloc = NULL;
738 BUG_ON(err == -EEXIST);
739 goto out;
740 }
Chris Masond1310b22008-01-24 16:13:08 -0500741 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400742hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500743 last_start = state->start;
744 last_end = state->end;
745
746 /*
747 * | ---- desired range ---- |
748 * | state |
749 *
750 * Just lock what we found and keep going
751 */
752 if (state->start == start && state->end <= end) {
Chris Mason40431d62009-08-05 12:57:59 -0400753 struct rb_node *next_node;
Chris Mason1edbb732009-09-02 13:24:36 -0400754 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500755 *failed_start = state->start;
756 err = -EEXIST;
757 goto out;
758 }
759 set_state_bits(tree, state, bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400760 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500761 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400762 if (last_end == (u64)-1)
763 goto out;
Chris Mason40431d62009-08-05 12:57:59 -0400764
Yan Zheng5c939df2009-05-27 09:16:03 -0400765 start = last_end + 1;
Chris Mason40431d62009-08-05 12:57:59 -0400766 if (start < end && prealloc && !need_resched()) {
767 next_node = rb_next(node);
768 if (next_node) {
769 state = rb_entry(next_node, struct extent_state,
770 rb_node);
771 if (state->start == start)
772 goto hit_next;
773 }
774 }
Chris Masond1310b22008-01-24 16:13:08 -0500775 goto search_again;
776 }
777
778 /*
779 * | ---- desired range ---- |
780 * | state |
781 * or
782 * | ------------- state -------------- |
783 *
784 * We need to split the extent we found, and may flip bits on
785 * second half.
786 *
787 * If the extent we found extends past our
788 * range, we just split and search again. It'll get split
789 * again the next time though.
790 *
791 * If the extent we found is inside our range, we set the
792 * desired bit on it.
793 */
794 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400795 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500796 *failed_start = start;
797 err = -EEXIST;
798 goto out;
799 }
800 err = split_state(tree, state, prealloc, start);
801 BUG_ON(err == -EEXIST);
802 prealloc = NULL;
803 if (err)
804 goto out;
805 if (state->end <= end) {
806 set_state_bits(tree, state, bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400807 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500808 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400809 if (last_end == (u64)-1)
810 goto out;
811 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500812 } else {
813 start = state->start;
814 }
815 goto search_again;
816 }
817 /*
818 * | ---- desired range ---- |
819 * | state | or | state |
820 *
821 * There's a hole, we need to insert something in it and
822 * ignore the extent we found.
823 */
824 if (state->start > start) {
825 u64 this_end;
826 if (end < last_start)
827 this_end = end;
828 else
Chris Masond3977122009-01-05 21:25:51 -0500829 this_end = last_start - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500830 err = insert_state(tree, prealloc, start, this_end,
831 bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400832 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500833 prealloc = NULL;
834 BUG_ON(err == -EEXIST);
835 if (err)
836 goto out;
837 start = this_end + 1;
838 goto search_again;
839 }
840 /*
841 * | ---- desired range ---- |
842 * | state |
843 * We need to split the extent, and set the bit
844 * on the first half
845 */
846 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400847 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500848 *failed_start = start;
849 err = -EEXIST;
850 goto out;
851 }
852 err = split_state(tree, state, prealloc, end + 1);
853 BUG_ON(err == -EEXIST);
854
855 set_state_bits(tree, prealloc, bits);
Chris Mason2c64c532009-09-02 15:04:12 -0400856 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500857 merge_state(tree, prealloc);
858 prealloc = NULL;
859 goto out;
860 }
861
862 goto search_again;
863
864out:
Chris Masoncad321a2008-12-17 14:51:42 -0500865 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500866 if (prealloc)
867 free_extent_state(prealloc);
868
869 return err;
870
871search_again:
872 if (start > end)
873 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500874 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500875 if (mask & __GFP_WAIT)
876 cond_resched();
877 goto again;
878}
Chris Masond1310b22008-01-24 16:13:08 -0500879
880/* wrappers around set/clear extent bit */
881int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
882 gfp_t mask)
883{
884 return set_extent_bit(tree, start, end, EXTENT_DIRTY, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400885 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500886}
Chris Masond1310b22008-01-24 16:13:08 -0500887
888int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
889 int bits, gfp_t mask)
890{
891 return set_extent_bit(tree, start, end, bits, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400892 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500893}
Chris Masond1310b22008-01-24 16:13:08 -0500894
895int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
896 int bits, gfp_t mask)
897{
Chris Mason2c64c532009-09-02 15:04:12 -0400898 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500899}
Chris Masond1310b22008-01-24 16:13:08 -0500900
901int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
902 gfp_t mask)
903{
904 return set_extent_bit(tree, start, end,
Chris Mason40431d62009-08-05 12:57:59 -0400905 EXTENT_DELALLOC | EXTENT_DIRTY | EXTENT_UPTODATE,
Chris Mason2c64c532009-09-02 15:04:12 -0400906 0, NULL, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500907}
Chris Masond1310b22008-01-24 16:13:08 -0500908
909int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
910 gfp_t mask)
911{
912 return clear_extent_bit(tree, start, end,
Chris Mason2c64c532009-09-02 15:04:12 -0400913 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
914 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500915}
Chris Masond1310b22008-01-24 16:13:08 -0500916
917int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
918 gfp_t mask)
919{
920 return set_extent_bit(tree, start, end, EXTENT_NEW, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400921 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500922}
Chris Masond1310b22008-01-24 16:13:08 -0500923
Christoph Hellwigb2950862008-12-02 09:54:17 -0500924static int clear_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
Chris Masond1310b22008-01-24 16:13:08 -0500925 gfp_t mask)
926{
Chris Mason2c64c532009-09-02 15:04:12 -0400927 return clear_extent_bit(tree, start, end, EXTENT_NEW, 0, 0,
928 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500929}
Chris Masond1310b22008-01-24 16:13:08 -0500930
931int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
932 gfp_t mask)
933{
934 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400935 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500936}
Chris Masond1310b22008-01-24 16:13:08 -0500937
Chris Masond3977122009-01-05 21:25:51 -0500938static int clear_extent_uptodate(struct extent_io_tree *tree, u64 start,
939 u64 end, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500940{
Chris Mason2c64c532009-09-02 15:04:12 -0400941 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
942 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500943}
Chris Masond1310b22008-01-24 16:13:08 -0500944
Chris Masond1310b22008-01-24 16:13:08 -0500945int wait_on_extent_writeback(struct extent_io_tree *tree, u64 start, u64 end)
946{
947 return wait_extent_bit(tree, start, end, EXTENT_WRITEBACK);
948}
Chris Masond1310b22008-01-24 16:13:08 -0500949
Chris Masond352ac62008-09-29 15:18:18 -0400950/*
951 * either insert or lock state struct between start and end use mask to tell
952 * us if waiting is desired.
953 */
Chris Mason1edbb732009-09-02 13:24:36 -0400954int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400955 int bits, struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500956{
957 int err;
958 u64 failed_start;
959 while (1) {
Chris Mason1edbb732009-09-02 13:24:36 -0400960 err = set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
Chris Mason2c64c532009-09-02 15:04:12 -0400961 EXTENT_LOCKED, &failed_start,
962 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500963 if (err == -EEXIST && (mask & __GFP_WAIT)) {
964 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
965 start = failed_start;
966 } else {
967 break;
968 }
969 WARN_ON(start > end);
970 }
971 return err;
972}
Chris Masond1310b22008-01-24 16:13:08 -0500973
Chris Mason1edbb732009-09-02 13:24:36 -0400974int lock_extent(struct extent_io_tree *tree, u64 start, u64 end, gfp_t mask)
975{
Chris Mason2c64c532009-09-02 15:04:12 -0400976 return lock_extent_bits(tree, start, end, 0, NULL, mask);
Chris Mason1edbb732009-09-02 13:24:36 -0400977}
978
Josef Bacik25179202008-10-29 14:49:05 -0400979int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end,
980 gfp_t mask)
981{
982 int err;
983 u64 failed_start;
984
Chris Mason2c64c532009-09-02 15:04:12 -0400985 err = set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
986 &failed_start, NULL, mask);
Yan Zheng66435582008-10-30 14:19:50 -0400987 if (err == -EEXIST) {
988 if (failed_start > start)
989 clear_extent_bit(tree, start, failed_start - 1,
Chris Mason2c64c532009-09-02 15:04:12 -0400990 EXTENT_LOCKED, 1, 0, NULL, mask);
Josef Bacik25179202008-10-29 14:49:05 -0400991 return 0;
Yan Zheng66435582008-10-30 14:19:50 -0400992 }
Josef Bacik25179202008-10-29 14:49:05 -0400993 return 1;
994}
Josef Bacik25179202008-10-29 14:49:05 -0400995
Chris Mason2c64c532009-09-02 15:04:12 -0400996int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
997 struct extent_state **cached, gfp_t mask)
998{
999 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1000 mask);
1001}
1002
Chris Masond1310b22008-01-24 16:13:08 -05001003int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end,
1004 gfp_t mask)
1005{
Chris Mason2c64c532009-09-02 15:04:12 -04001006 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
1007 mask);
Chris Masond1310b22008-01-24 16:13:08 -05001008}
Chris Masond1310b22008-01-24 16:13:08 -05001009
1010/*
1011 * helper function to set pages and extents in the tree dirty
1012 */
1013int set_range_dirty(struct extent_io_tree *tree, u64 start, u64 end)
1014{
1015 unsigned long index = start >> PAGE_CACHE_SHIFT;
1016 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1017 struct page *page;
1018
1019 while (index <= end_index) {
1020 page = find_get_page(tree->mapping, index);
1021 BUG_ON(!page);
1022 __set_page_dirty_nobuffers(page);
1023 page_cache_release(page);
1024 index++;
1025 }
Chris Masond1310b22008-01-24 16:13:08 -05001026 return 0;
1027}
Chris Masond1310b22008-01-24 16:13:08 -05001028
1029/*
1030 * helper function to set both pages and extents in the tree writeback
1031 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001032static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001033{
1034 unsigned long index = start >> PAGE_CACHE_SHIFT;
1035 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1036 struct page *page;
1037
1038 while (index <= end_index) {
1039 page = find_get_page(tree->mapping, index);
1040 BUG_ON(!page);
1041 set_page_writeback(page);
1042 page_cache_release(page);
1043 index++;
1044 }
Chris Masond1310b22008-01-24 16:13:08 -05001045 return 0;
1046}
Chris Masond1310b22008-01-24 16:13:08 -05001047
Chris Masond352ac62008-09-29 15:18:18 -04001048/*
1049 * find the first offset in the io tree with 'bits' set. zero is
1050 * returned if we find something, and *start_ret and *end_ret are
1051 * set to reflect the state struct that was found.
1052 *
1053 * If nothing was found, 1 is returned, < 0 on error
1054 */
Chris Masond1310b22008-01-24 16:13:08 -05001055int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1056 u64 *start_ret, u64 *end_ret, int bits)
1057{
1058 struct rb_node *node;
1059 struct extent_state *state;
1060 int ret = 1;
1061
Chris Masoncad321a2008-12-17 14:51:42 -05001062 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001063 /*
1064 * this search will find all the extents that end after
1065 * our range starts.
1066 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001067 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001068 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001069 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001070
Chris Masond3977122009-01-05 21:25:51 -05001071 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001072 state = rb_entry(node, struct extent_state, rb_node);
1073 if (state->end >= start && (state->state & bits)) {
1074 *start_ret = state->start;
1075 *end_ret = state->end;
1076 ret = 0;
1077 break;
1078 }
1079 node = rb_next(node);
1080 if (!node)
1081 break;
1082 }
1083out:
Chris Masoncad321a2008-12-17 14:51:42 -05001084 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001085 return ret;
1086}
Chris Masond1310b22008-01-24 16:13:08 -05001087
Chris Masond352ac62008-09-29 15:18:18 -04001088/* find the first state struct with 'bits' set after 'start', and
1089 * return it. tree->lock must be held. NULL will returned if
1090 * nothing was found after 'start'
1091 */
Chris Masond7fc6402008-02-18 12:12:38 -05001092struct extent_state *find_first_extent_bit_state(struct extent_io_tree *tree,
1093 u64 start, int bits)
1094{
1095 struct rb_node *node;
1096 struct extent_state *state;
1097
1098 /*
1099 * this search will find all the extents that end after
1100 * our range starts.
1101 */
1102 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001103 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001104 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001105
Chris Masond3977122009-01-05 21:25:51 -05001106 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001107 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001108 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001109 return state;
Chris Masond3977122009-01-05 21:25:51 -05001110
Chris Masond7fc6402008-02-18 12:12:38 -05001111 node = rb_next(node);
1112 if (!node)
1113 break;
1114 }
1115out:
1116 return NULL;
1117}
Chris Masond7fc6402008-02-18 12:12:38 -05001118
Chris Masond352ac62008-09-29 15:18:18 -04001119/*
1120 * find a contiguous range of bytes in the file marked as delalloc, not
1121 * more than 'max_bytes'. start and end are used to return the range,
1122 *
1123 * 1 is returned if we find something, 0 if nothing was in the tree
1124 */
Chris Masonc8b97812008-10-29 14:49:59 -04001125static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
1126 u64 *start, u64 *end, u64 max_bytes)
Chris Masond1310b22008-01-24 16:13:08 -05001127{
1128 struct rb_node *node;
1129 struct extent_state *state;
1130 u64 cur_start = *start;
1131 u64 found = 0;
1132 u64 total_bytes = 0;
1133
Chris Masoncad321a2008-12-17 14:51:42 -05001134 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001135
Chris Masond1310b22008-01-24 16:13:08 -05001136 /*
1137 * this search will find all the extents that end after
1138 * our range starts.
1139 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001140 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001141 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001142 if (!found)
1143 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001144 goto out;
1145 }
1146
Chris Masond3977122009-01-05 21:25:51 -05001147 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001148 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001149 if (found && (state->start != cur_start ||
1150 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001151 goto out;
1152 }
1153 if (!(state->state & EXTENT_DELALLOC)) {
1154 if (!found)
1155 *end = state->end;
1156 goto out;
1157 }
Chris Masond1310b22008-01-24 16:13:08 -05001158 if (!found)
1159 *start = state->start;
1160 found++;
1161 *end = state->end;
1162 cur_start = state->end + 1;
1163 node = rb_next(node);
1164 if (!node)
1165 break;
1166 total_bytes += state->end - state->start + 1;
1167 if (total_bytes >= max_bytes)
1168 break;
1169 }
1170out:
Chris Masoncad321a2008-12-17 14:51:42 -05001171 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001172 return found;
1173}
1174
Chris Masonc8b97812008-10-29 14:49:59 -04001175static noinline int __unlock_for_delalloc(struct inode *inode,
1176 struct page *locked_page,
1177 u64 start, u64 end)
1178{
1179 int ret;
1180 struct page *pages[16];
1181 unsigned long index = start >> PAGE_CACHE_SHIFT;
1182 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1183 unsigned long nr_pages = end_index - index + 1;
1184 int i;
1185
1186 if (index == locked_page->index && end_index == index)
1187 return 0;
1188
Chris Masond3977122009-01-05 21:25:51 -05001189 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001190 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001191 min_t(unsigned long, nr_pages,
1192 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001193 for (i = 0; i < ret; i++) {
1194 if (pages[i] != locked_page)
1195 unlock_page(pages[i]);
1196 page_cache_release(pages[i]);
1197 }
1198 nr_pages -= ret;
1199 index += ret;
1200 cond_resched();
1201 }
1202 return 0;
1203}
1204
1205static noinline int lock_delalloc_pages(struct inode *inode,
1206 struct page *locked_page,
1207 u64 delalloc_start,
1208 u64 delalloc_end)
1209{
1210 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1211 unsigned long start_index = index;
1212 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1213 unsigned long pages_locked = 0;
1214 struct page *pages[16];
1215 unsigned long nrpages;
1216 int ret;
1217 int i;
1218
1219 /* the caller is responsible for locking the start index */
1220 if (index == locked_page->index && index == end_index)
1221 return 0;
1222
1223 /* skip the page at the start index */
1224 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001225 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001226 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001227 min_t(unsigned long,
1228 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001229 if (ret == 0) {
1230 ret = -EAGAIN;
1231 goto done;
1232 }
1233 /* now we have an array of pages, lock them all */
1234 for (i = 0; i < ret; i++) {
1235 /*
1236 * the caller is taking responsibility for
1237 * locked_page
1238 */
Chris Mason771ed682008-11-06 22:02:51 -05001239 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001240 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001241 if (!PageDirty(pages[i]) ||
1242 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001243 ret = -EAGAIN;
1244 unlock_page(pages[i]);
1245 page_cache_release(pages[i]);
1246 goto done;
1247 }
1248 }
Chris Masonc8b97812008-10-29 14:49:59 -04001249 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001250 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001251 }
Chris Masonc8b97812008-10-29 14:49:59 -04001252 nrpages -= ret;
1253 index += ret;
1254 cond_resched();
1255 }
1256 ret = 0;
1257done:
1258 if (ret && pages_locked) {
1259 __unlock_for_delalloc(inode, locked_page,
1260 delalloc_start,
1261 ((u64)(start_index + pages_locked - 1)) <<
1262 PAGE_CACHE_SHIFT);
1263 }
1264 return ret;
1265}
1266
1267/*
1268 * find a contiguous range of bytes in the file marked as delalloc, not
1269 * more than 'max_bytes'. start and end are used to return the range,
1270 *
1271 * 1 is returned if we find something, 0 if nothing was in the tree
1272 */
1273static noinline u64 find_lock_delalloc_range(struct inode *inode,
1274 struct extent_io_tree *tree,
1275 struct page *locked_page,
1276 u64 *start, u64 *end,
1277 u64 max_bytes)
1278{
1279 u64 delalloc_start;
1280 u64 delalloc_end;
1281 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001282 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001283 int ret;
1284 int loops = 0;
1285
1286again:
1287 /* step one, find a bunch of delalloc bytes starting at start */
1288 delalloc_start = *start;
1289 delalloc_end = 0;
1290 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
1291 max_bytes);
Chris Mason70b99e62008-10-31 12:46:39 -04001292 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001293 *start = delalloc_start;
1294 *end = delalloc_end;
1295 return found;
1296 }
1297
1298 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001299 * start comes from the offset of locked_page. We have to lock
1300 * pages in order, so we can't process delalloc bytes before
1301 * locked_page
1302 */
Chris Masond3977122009-01-05 21:25:51 -05001303 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001304 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001305
1306 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001307 * make sure to limit the number of pages we try to lock down
1308 * if we're looping.
1309 */
Chris Masond3977122009-01-05 21:25:51 -05001310 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001311 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001312
Chris Masonc8b97812008-10-29 14:49:59 -04001313 /* step two, lock all the pages after the page that has start */
1314 ret = lock_delalloc_pages(inode, locked_page,
1315 delalloc_start, delalloc_end);
1316 if (ret == -EAGAIN) {
1317 /* some of the pages are gone, lets avoid looping by
1318 * shortening the size of the delalloc range we're searching
1319 */
Chris Mason9655d292009-09-02 15:22:30 -04001320 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001321 if (!loops) {
1322 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1323 max_bytes = PAGE_CACHE_SIZE - offset;
1324 loops = 1;
1325 goto again;
1326 } else {
1327 found = 0;
1328 goto out_failed;
1329 }
1330 }
1331 BUG_ON(ret);
1332
1333 /* step three, lock the state bits for the whole range */
Chris Mason9655d292009-09-02 15:22:30 -04001334 lock_extent_bits(tree, delalloc_start, delalloc_end,
1335 0, &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001336
1337 /* then test to make sure it is all still delalloc */
1338 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001339 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001340 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001341 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1342 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001343 __unlock_for_delalloc(inode, locked_page,
1344 delalloc_start, delalloc_end);
1345 cond_resched();
1346 goto again;
1347 }
Chris Mason9655d292009-09-02 15:22:30 -04001348 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001349 *start = delalloc_start;
1350 *end = delalloc_end;
1351out_failed:
1352 return found;
1353}
1354
1355int extent_clear_unlock_delalloc(struct inode *inode,
1356 struct extent_io_tree *tree,
1357 u64 start, u64 end, struct page *locked_page,
Chris Mason771ed682008-11-06 22:02:51 -05001358 int unlock_pages,
1359 int clear_unlock,
1360 int clear_delalloc, int clear_dirty,
1361 int set_writeback,
Chris Mason8b62b722009-09-02 16:53:46 -04001362 int end_writeback,
1363 int set_private2)
Chris Masonc8b97812008-10-29 14:49:59 -04001364{
1365 int ret;
1366 struct page *pages[16];
1367 unsigned long index = start >> PAGE_CACHE_SHIFT;
1368 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1369 unsigned long nr_pages = end_index - index + 1;
1370 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001371 int clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001372
Chris Mason771ed682008-11-06 22:02:51 -05001373 if (clear_unlock)
1374 clear_bits |= EXTENT_LOCKED;
Chris Masonc8b97812008-10-29 14:49:59 -04001375 if (clear_dirty)
1376 clear_bits |= EXTENT_DIRTY;
1377
Chris Mason771ed682008-11-06 22:02:51 -05001378 if (clear_delalloc)
1379 clear_bits |= EXTENT_DELALLOC;
1380
Chris Mason2c64c532009-09-02 15:04:12 -04001381 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Chris Mason8b62b722009-09-02 16:53:46 -04001382 if (!(unlock_pages || clear_dirty || set_writeback || end_writeback ||
1383 set_private2))
Chris Mason771ed682008-11-06 22:02:51 -05001384 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001385
Chris Masond3977122009-01-05 21:25:51 -05001386 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001387 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001388 min_t(unsigned long,
1389 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001390 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001391
1392 if (set_private2)
1393 SetPagePrivate2(pages[i]);
1394
Chris Masonc8b97812008-10-29 14:49:59 -04001395 if (pages[i] == locked_page) {
1396 page_cache_release(pages[i]);
1397 continue;
1398 }
1399 if (clear_dirty)
1400 clear_page_dirty_for_io(pages[i]);
1401 if (set_writeback)
1402 set_page_writeback(pages[i]);
1403 if (end_writeback)
1404 end_page_writeback(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001405 if (unlock_pages)
1406 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001407 page_cache_release(pages[i]);
1408 }
1409 nr_pages -= ret;
1410 index += ret;
1411 cond_resched();
1412 }
1413 return 0;
1414}
Chris Masonc8b97812008-10-29 14:49:59 -04001415
Chris Masond352ac62008-09-29 15:18:18 -04001416/*
1417 * count the number of bytes in the tree that have a given bit(s)
1418 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1419 * cached. The total number found is returned.
1420 */
Chris Masond1310b22008-01-24 16:13:08 -05001421u64 count_range_bits(struct extent_io_tree *tree,
1422 u64 *start, u64 search_end, u64 max_bytes,
1423 unsigned long bits)
1424{
1425 struct rb_node *node;
1426 struct extent_state *state;
1427 u64 cur_start = *start;
1428 u64 total_bytes = 0;
1429 int found = 0;
1430
1431 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001432 WARN_ON(1);
1433 return 0;
1434 }
1435
Chris Masoncad321a2008-12-17 14:51:42 -05001436 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001437 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1438 total_bytes = tree->dirty_bytes;
1439 goto out;
1440 }
1441 /*
1442 * this search will find all the extents that end after
1443 * our range starts.
1444 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001445 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001446 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001447 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001448
Chris Masond3977122009-01-05 21:25:51 -05001449 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001450 state = rb_entry(node, struct extent_state, rb_node);
1451 if (state->start > search_end)
1452 break;
1453 if (state->end >= cur_start && (state->state & bits)) {
1454 total_bytes += min(search_end, state->end) + 1 -
1455 max(cur_start, state->start);
1456 if (total_bytes >= max_bytes)
1457 break;
1458 if (!found) {
1459 *start = state->start;
1460 found = 1;
1461 }
1462 }
1463 node = rb_next(node);
1464 if (!node)
1465 break;
1466 }
1467out:
Chris Masoncad321a2008-12-17 14:51:42 -05001468 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001469 return total_bytes;
1470}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001471
Chris Masond352ac62008-09-29 15:18:18 -04001472/*
1473 * set the private field for a given byte offset in the tree. If there isn't
1474 * an extent_state there already, this does nothing.
1475 */
Chris Masond1310b22008-01-24 16:13:08 -05001476int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1477{
1478 struct rb_node *node;
1479 struct extent_state *state;
1480 int ret = 0;
1481
Chris Masoncad321a2008-12-17 14:51:42 -05001482 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001483 /*
1484 * this search will find all the extents that end after
1485 * our range starts.
1486 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001487 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001488 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001489 ret = -ENOENT;
1490 goto out;
1491 }
1492 state = rb_entry(node, struct extent_state, rb_node);
1493 if (state->start != start) {
1494 ret = -ENOENT;
1495 goto out;
1496 }
1497 state->private = private;
1498out:
Chris Masoncad321a2008-12-17 14:51:42 -05001499 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001500 return ret;
1501}
1502
1503int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1504{
1505 struct rb_node *node;
1506 struct extent_state *state;
1507 int ret = 0;
1508
Chris Masoncad321a2008-12-17 14:51:42 -05001509 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001510 /*
1511 * this search will find all the extents that end after
1512 * our range starts.
1513 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001514 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001515 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001516 ret = -ENOENT;
1517 goto out;
1518 }
1519 state = rb_entry(node, struct extent_state, rb_node);
1520 if (state->start != start) {
1521 ret = -ENOENT;
1522 goto out;
1523 }
1524 *private = state->private;
1525out:
Chris Masoncad321a2008-12-17 14:51:42 -05001526 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001527 return ret;
1528}
1529
1530/*
1531 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001532 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001533 * has the bits set. Otherwise, 1 is returned if any bit in the
1534 * range is found set.
1535 */
1536int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason9655d292009-09-02 15:22:30 -04001537 int bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001538{
1539 struct extent_state *state = NULL;
1540 struct rb_node *node;
1541 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001542
Chris Masoncad321a2008-12-17 14:51:42 -05001543 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -04001544 if (cached && cached->tree && cached->start == start)
1545 node = &cached->rb_node;
1546 else
1547 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001548 while (node && start <= end) {
1549 state = rb_entry(node, struct extent_state, rb_node);
1550
1551 if (filled && state->start > start) {
1552 bitset = 0;
1553 break;
1554 }
1555
1556 if (state->start > end)
1557 break;
1558
1559 if (state->state & bits) {
1560 bitset = 1;
1561 if (!filled)
1562 break;
1563 } else if (filled) {
1564 bitset = 0;
1565 break;
1566 }
1567 start = state->end + 1;
1568 if (start > end)
1569 break;
1570 node = rb_next(node);
1571 if (!node) {
1572 if (filled)
1573 bitset = 0;
1574 break;
1575 }
1576 }
Chris Masoncad321a2008-12-17 14:51:42 -05001577 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001578 return bitset;
1579}
Chris Masond1310b22008-01-24 16:13:08 -05001580
1581/*
1582 * helper function to set a given page up to date if all the
1583 * extents in the tree for that page are up to date
1584 */
1585static int check_page_uptodate(struct extent_io_tree *tree,
1586 struct page *page)
1587{
1588 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1589 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001590 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001591 SetPageUptodate(page);
1592 return 0;
1593}
1594
1595/*
1596 * helper function to unlock a page if all the extents in the tree
1597 * for that page are unlocked
1598 */
1599static int check_page_locked(struct extent_io_tree *tree,
1600 struct page *page)
1601{
1602 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1603 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001604 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001605 unlock_page(page);
1606 return 0;
1607}
1608
1609/*
1610 * helper function to end page writeback if all the extents
1611 * in the tree for that page are done with writeback
1612 */
1613static int check_page_writeback(struct extent_io_tree *tree,
1614 struct page *page)
1615{
Chris Mason1edbb732009-09-02 13:24:36 -04001616 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001617 return 0;
1618}
1619
1620/* lots and lots of room for performance fixes in the end_bio funcs */
1621
1622/*
1623 * after a writepage IO is done, we need to:
1624 * clear the uptodate bits on error
1625 * clear the writeback bits in the extent tree for this IO
1626 * end_page_writeback if the page has no more pending IO
1627 *
1628 * Scheduling is not allowed, so the extent state tree is expected
1629 * to have one and only one object corresponding to this IO.
1630 */
Chris Masond1310b22008-01-24 16:13:08 -05001631static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001632{
Chris Mason1259ab72008-05-12 13:39:03 -04001633 int uptodate = err == 0;
Chris Masond1310b22008-01-24 16:13:08 -05001634 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001635 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001636 u64 start;
1637 u64 end;
1638 int whole_page;
Chris Mason1259ab72008-05-12 13:39:03 -04001639 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001640
Chris Masond1310b22008-01-24 16:13:08 -05001641 do {
1642 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001643 tree = &BTRFS_I(page->mapping->host)->io_tree;
1644
Chris Masond1310b22008-01-24 16:13:08 -05001645 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1646 bvec->bv_offset;
1647 end = start + bvec->bv_len - 1;
1648
1649 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1650 whole_page = 1;
1651 else
1652 whole_page = 0;
1653
1654 if (--bvec >= bio->bi_io_vec)
1655 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001656 if (tree->ops && tree->ops->writepage_end_io_hook) {
1657 ret = tree->ops->writepage_end_io_hook(page, start,
David Woodhouse902b22f2008-08-20 08:51:49 -04001658 end, NULL, uptodate);
Chris Mason1259ab72008-05-12 13:39:03 -04001659 if (ret)
1660 uptodate = 0;
1661 }
1662
1663 if (!uptodate && tree->ops &&
1664 tree->ops->writepage_io_failed_hook) {
1665 ret = tree->ops->writepage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001666 start, end, NULL);
Chris Mason1259ab72008-05-12 13:39:03 -04001667 if (ret == 0) {
Chris Mason1259ab72008-05-12 13:39:03 -04001668 uptodate = (err == 0);
1669 continue;
1670 }
1671 }
1672
Chris Masond1310b22008-01-24 16:13:08 -05001673 if (!uptodate) {
Chris Mason1edbb732009-09-02 13:24:36 -04001674 clear_extent_uptodate(tree, start, end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001675 ClearPageUptodate(page);
1676 SetPageError(page);
1677 }
Chris Mason70dec802008-01-29 09:59:12 -05001678
Chris Masond1310b22008-01-24 16:13:08 -05001679 if (whole_page)
1680 end_page_writeback(page);
1681 else
1682 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05001683 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04001684
Chris Masond1310b22008-01-24 16:13:08 -05001685 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001686}
1687
1688/*
1689 * after a readpage IO is done, we need to:
1690 * clear the uptodate bits on error
1691 * set the uptodate bits if things worked
1692 * set the page up to date if all extents in the tree are uptodate
1693 * clear the lock bit in the extent tree
1694 * unlock the page if there are no other extents locked for it
1695 *
1696 * Scheduling is not allowed, so the extent state tree is expected
1697 * to have one and only one object corresponding to this IO.
1698 */
Chris Masond1310b22008-01-24 16:13:08 -05001699static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001700{
1701 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1702 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001703 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001704 u64 start;
1705 u64 end;
1706 int whole_page;
1707 int ret;
1708
Chris Masond20f7042008-12-08 16:58:54 -05001709 if (err)
1710 uptodate = 0;
1711
Chris Masond1310b22008-01-24 16:13:08 -05001712 do {
1713 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001714 tree = &BTRFS_I(page->mapping->host)->io_tree;
1715
Chris Masond1310b22008-01-24 16:13:08 -05001716 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1717 bvec->bv_offset;
1718 end = start + bvec->bv_len - 1;
1719
1720 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1721 whole_page = 1;
1722 else
1723 whole_page = 0;
1724
1725 if (--bvec >= bio->bi_io_vec)
1726 prefetchw(&bvec->bv_page->flags);
1727
1728 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05001729 ret = tree->ops->readpage_end_io_hook(page, start, end,
David Woodhouse902b22f2008-08-20 08:51:49 -04001730 NULL);
Chris Masond1310b22008-01-24 16:13:08 -05001731 if (ret)
1732 uptodate = 0;
1733 }
Chris Mason7e383262008-04-09 16:28:12 -04001734 if (!uptodate && tree->ops &&
1735 tree->ops->readpage_io_failed_hook) {
1736 ret = tree->ops->readpage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001737 start, end, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04001738 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04001739 uptodate =
1740 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001741 if (err)
1742 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001743 continue;
1744 }
1745 }
Chris Mason70dec802008-01-29 09:59:12 -05001746
Chris Mason771ed682008-11-06 22:02:51 -05001747 if (uptodate) {
David Woodhouse902b22f2008-08-20 08:51:49 -04001748 set_extent_uptodate(tree, start, end,
1749 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05001750 }
David Woodhouse902b22f2008-08-20 08:51:49 -04001751 unlock_extent(tree, start, end, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05001752
Chris Mason70dec802008-01-29 09:59:12 -05001753 if (whole_page) {
1754 if (uptodate) {
1755 SetPageUptodate(page);
1756 } else {
1757 ClearPageUptodate(page);
1758 SetPageError(page);
1759 }
Chris Masond1310b22008-01-24 16:13:08 -05001760 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05001761 } else {
1762 if (uptodate) {
1763 check_page_uptodate(tree, page);
1764 } else {
1765 ClearPageUptodate(page);
1766 SetPageError(page);
1767 }
Chris Masond1310b22008-01-24 16:13:08 -05001768 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05001769 }
Chris Masond1310b22008-01-24 16:13:08 -05001770 } while (bvec >= bio->bi_io_vec);
1771
1772 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001773}
1774
1775/*
1776 * IO done from prepare_write is pretty simple, we just unlock
1777 * the structs in the extent tree when done, and set the uptodate bits
1778 * as appropriate.
1779 */
Chris Masond1310b22008-01-24 16:13:08 -05001780static void end_bio_extent_preparewrite(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001781{
1782 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1783 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001784 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001785 u64 start;
1786 u64 end;
1787
Chris Masond1310b22008-01-24 16:13:08 -05001788 do {
1789 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001790 tree = &BTRFS_I(page->mapping->host)->io_tree;
1791
Chris Masond1310b22008-01-24 16:13:08 -05001792 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1793 bvec->bv_offset;
1794 end = start + bvec->bv_len - 1;
1795
1796 if (--bvec >= bio->bi_io_vec)
1797 prefetchw(&bvec->bv_page->flags);
1798
1799 if (uptodate) {
1800 set_extent_uptodate(tree, start, end, GFP_ATOMIC);
1801 } else {
1802 ClearPageUptodate(page);
1803 SetPageError(page);
1804 }
1805
1806 unlock_extent(tree, start, end, GFP_ATOMIC);
1807
1808 } while (bvec >= bio->bi_io_vec);
1809
1810 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001811}
1812
1813static struct bio *
1814extent_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
1815 gfp_t gfp_flags)
1816{
1817 struct bio *bio;
1818
1819 bio = bio_alloc(gfp_flags, nr_vecs);
1820
1821 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
1822 while (!bio && (nr_vecs /= 2))
1823 bio = bio_alloc(gfp_flags, nr_vecs);
1824 }
1825
1826 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04001827 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001828 bio->bi_bdev = bdev;
1829 bio->bi_sector = first_sector;
1830 }
1831 return bio;
1832}
1833
Chris Masonc8b97812008-10-29 14:49:59 -04001834static int submit_one_bio(int rw, struct bio *bio, int mirror_num,
1835 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001836{
Chris Masond1310b22008-01-24 16:13:08 -05001837 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05001838 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
1839 struct page *page = bvec->bv_page;
1840 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05001841 u64 start;
1842 u64 end;
1843
1844 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
1845 end = start + bvec->bv_len - 1;
1846
David Woodhouse902b22f2008-08-20 08:51:49 -04001847 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001848
1849 bio_get(bio);
1850
Chris Mason065631f2008-02-20 12:07:25 -05001851 if (tree->ops && tree->ops->submit_bio_hook)
Chris Masonf1885912008-04-09 16:28:12 -04001852 tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masonc8b97812008-10-29 14:49:59 -04001853 mirror_num, bio_flags);
Chris Mason0b86a832008-03-24 15:01:56 -04001854 else
1855 submit_bio(rw, bio);
Chris Masond1310b22008-01-24 16:13:08 -05001856 if (bio_flagged(bio, BIO_EOPNOTSUPP))
1857 ret = -EOPNOTSUPP;
1858 bio_put(bio);
1859 return ret;
1860}
1861
1862static int submit_extent_page(int rw, struct extent_io_tree *tree,
1863 struct page *page, sector_t sector,
1864 size_t size, unsigned long offset,
1865 struct block_device *bdev,
1866 struct bio **bio_ret,
1867 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04001868 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04001869 int mirror_num,
1870 unsigned long prev_bio_flags,
1871 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001872{
1873 int ret = 0;
1874 struct bio *bio;
1875 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04001876 int contig = 0;
1877 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
1878 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05001879 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05001880
1881 if (bio_ret && *bio_ret) {
1882 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001883 if (old_compressed)
1884 contig = bio->bi_sector == sector;
1885 else
1886 contig = bio->bi_sector + (bio->bi_size >> 9) ==
1887 sector;
1888
1889 if (prev_bio_flags != bio_flags || !contig ||
Chris Mason239b14b2008-03-24 15:02:07 -04001890 (tree->ops && tree->ops->merge_bio_hook &&
Chris Masonc8b97812008-10-29 14:49:59 -04001891 tree->ops->merge_bio_hook(page, offset, page_size, bio,
1892 bio_flags)) ||
1893 bio_add_page(bio, page, page_size, offset) < page_size) {
1894 ret = submit_one_bio(rw, bio, mirror_num,
1895 prev_bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001896 bio = NULL;
1897 } else {
1898 return 0;
1899 }
1900 }
Chris Masonc8b97812008-10-29 14:49:59 -04001901 if (this_compressed)
1902 nr = BIO_MAX_PAGES;
1903 else
1904 nr = bio_get_nr_vecs(bdev);
1905
Chris Masond1310b22008-01-24 16:13:08 -05001906 bio = extent_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Chris Mason70dec802008-01-29 09:59:12 -05001907
Chris Masonc8b97812008-10-29 14:49:59 -04001908 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05001909 bio->bi_end_io = end_io_func;
1910 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05001911
Chris Masond3977122009-01-05 21:25:51 -05001912 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05001913 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05001914 else
Chris Masonc8b97812008-10-29 14:49:59 -04001915 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001916
1917 return ret;
1918}
1919
1920void set_page_extent_mapped(struct page *page)
1921{
1922 if (!PagePrivate(page)) {
1923 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001924 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04001925 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05001926 }
1927}
1928
Christoph Hellwigb2950862008-12-02 09:54:17 -05001929static void set_page_extent_head(struct page *page, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05001930{
1931 set_page_private(page, EXTENT_PAGE_PRIVATE_FIRST_PAGE | len << 2);
1932}
1933
1934/*
1935 * basic readpage implementation. Locked extent state structs are inserted
1936 * into the tree that are removed when the IO is done (by the end_io
1937 * handlers)
1938 */
1939static int __extent_read_full_page(struct extent_io_tree *tree,
1940 struct page *page,
1941 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04001942 struct bio **bio, int mirror_num,
1943 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001944{
1945 struct inode *inode = page->mapping->host;
1946 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1947 u64 page_end = start + PAGE_CACHE_SIZE - 1;
1948 u64 end;
1949 u64 cur = start;
1950 u64 extent_offset;
1951 u64 last_byte = i_size_read(inode);
1952 u64 block_start;
1953 u64 cur_end;
1954 sector_t sector;
1955 struct extent_map *em;
1956 struct block_device *bdev;
1957 int ret;
1958 int nr = 0;
1959 size_t page_offset = 0;
1960 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04001961 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05001962 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04001963 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001964
1965 set_page_extent_mapped(page);
1966
1967 end = page_end;
1968 lock_extent(tree, start, end, GFP_NOFS);
1969
Chris Masonc8b97812008-10-29 14:49:59 -04001970 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
1971 char *userpage;
1972 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
1973
1974 if (zero_offset) {
1975 iosize = PAGE_CACHE_SIZE - zero_offset;
1976 userpage = kmap_atomic(page, KM_USER0);
1977 memset(userpage + zero_offset, 0, iosize);
1978 flush_dcache_page(page);
1979 kunmap_atomic(userpage, KM_USER0);
1980 }
1981 }
Chris Masond1310b22008-01-24 16:13:08 -05001982 while (cur <= end) {
1983 if (cur >= last_byte) {
1984 char *userpage;
1985 iosize = PAGE_CACHE_SIZE - page_offset;
1986 userpage = kmap_atomic(page, KM_USER0);
1987 memset(userpage + page_offset, 0, iosize);
1988 flush_dcache_page(page);
1989 kunmap_atomic(userpage, KM_USER0);
1990 set_extent_uptodate(tree, cur, cur + iosize - 1,
1991 GFP_NOFS);
1992 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
1993 break;
1994 }
1995 em = get_extent(inode, page, page_offset, cur,
1996 end - cur + 1, 0);
1997 if (IS_ERR(em) || !em) {
1998 SetPageError(page);
1999 unlock_extent(tree, cur, end, GFP_NOFS);
2000 break;
2001 }
Chris Masond1310b22008-01-24 16:13:08 -05002002 extent_offset = cur - em->start;
2003 BUG_ON(extent_map_end(em) <= cur);
2004 BUG_ON(end < cur);
2005
Chris Masonc8b97812008-10-29 14:49:59 -04002006 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
2007 this_bio_flag = EXTENT_BIO_COMPRESSED;
2008
Chris Masond1310b22008-01-24 16:13:08 -05002009 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2010 cur_end = min(extent_map_end(em) - 1, end);
2011 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002012 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2013 disk_io_size = em->block_len;
2014 sector = em->block_start >> 9;
2015 } else {
2016 sector = (em->block_start + extent_offset) >> 9;
2017 disk_io_size = iosize;
2018 }
Chris Masond1310b22008-01-24 16:13:08 -05002019 bdev = em->bdev;
2020 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002021 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2022 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002023 free_extent_map(em);
2024 em = NULL;
2025
2026 /* we've found a hole, just zero and go on */
2027 if (block_start == EXTENT_MAP_HOLE) {
2028 char *userpage;
2029 userpage = kmap_atomic(page, KM_USER0);
2030 memset(userpage + page_offset, 0, iosize);
2031 flush_dcache_page(page);
2032 kunmap_atomic(userpage, KM_USER0);
2033
2034 set_extent_uptodate(tree, cur, cur + iosize - 1,
2035 GFP_NOFS);
2036 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2037 cur = cur + iosize;
2038 page_offset += iosize;
2039 continue;
2040 }
2041 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002042 if (test_range_bit(tree, cur, cur_end,
2043 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002044 check_page_uptodate(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002045 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2046 cur = cur + iosize;
2047 page_offset += iosize;
2048 continue;
2049 }
Chris Mason70dec802008-01-29 09:59:12 -05002050 /* we have an inline extent but it didn't get marked up
2051 * to date. Error out
2052 */
2053 if (block_start == EXTENT_MAP_INLINE) {
2054 SetPageError(page);
2055 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2056 cur = cur + iosize;
2057 page_offset += iosize;
2058 continue;
2059 }
Chris Masond1310b22008-01-24 16:13:08 -05002060
2061 ret = 0;
2062 if (tree->ops && tree->ops->readpage_io_hook) {
2063 ret = tree->ops->readpage_io_hook(page, cur,
2064 cur + iosize - 1);
2065 }
2066 if (!ret) {
Chris Mason89642222008-07-24 09:41:53 -04002067 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2068 pnr -= page->index;
Chris Masond1310b22008-01-24 16:13:08 -05002069 ret = submit_extent_page(READ, tree, page,
Chris Masonc8b97812008-10-29 14:49:59 -04002070 sector, disk_io_size, page_offset,
Chris Mason89642222008-07-24 09:41:53 -04002071 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002072 end_bio_extent_readpage, mirror_num,
2073 *bio_flags,
2074 this_bio_flag);
Chris Mason89642222008-07-24 09:41:53 -04002075 nr++;
Chris Masonc8b97812008-10-29 14:49:59 -04002076 *bio_flags = this_bio_flag;
Chris Masond1310b22008-01-24 16:13:08 -05002077 }
2078 if (ret)
2079 SetPageError(page);
2080 cur = cur + iosize;
2081 page_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002082 }
2083 if (!nr) {
2084 if (!PageError(page))
2085 SetPageUptodate(page);
2086 unlock_page(page);
2087 }
2088 return 0;
2089}
2090
2091int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
2092 get_extent_t *get_extent)
2093{
2094 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002095 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002096 int ret;
2097
Chris Masonc8b97812008-10-29 14:49:59 -04002098 ret = __extent_read_full_page(tree, page, get_extent, &bio, 0,
2099 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002100 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002101 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002102 return ret;
2103}
Chris Masond1310b22008-01-24 16:13:08 -05002104
Chris Mason11c83492009-04-20 15:50:09 -04002105static noinline void update_nr_written(struct page *page,
2106 struct writeback_control *wbc,
2107 unsigned long nr_written)
2108{
2109 wbc->nr_to_write -= nr_written;
2110 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2111 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2112 page->mapping->writeback_index = page->index + nr_written;
2113}
2114
Chris Masond1310b22008-01-24 16:13:08 -05002115/*
2116 * the writepage semantics are similar to regular writepage. extent
2117 * records are inserted to lock ranges in the tree, and as dirty areas
2118 * are found, they are marked writeback. Then the lock bits are removed
2119 * and the end_io handler clears the writeback ranges
2120 */
2121static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2122 void *data)
2123{
2124 struct inode *inode = page->mapping->host;
2125 struct extent_page_data *epd = data;
2126 struct extent_io_tree *tree = epd->tree;
2127 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2128 u64 delalloc_start;
2129 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2130 u64 end;
2131 u64 cur = start;
2132 u64 extent_offset;
2133 u64 last_byte = i_size_read(inode);
2134 u64 block_start;
2135 u64 iosize;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002136 u64 unlock_start;
Chris Masond1310b22008-01-24 16:13:08 -05002137 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002138 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002139 struct extent_map *em;
2140 struct block_device *bdev;
2141 int ret;
2142 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002143 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002144 size_t blocksize;
2145 loff_t i_size = i_size_read(inode);
2146 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2147 u64 nr_delalloc;
2148 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002149 int page_started;
2150 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002151 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002152 unsigned long nr_written = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002153
Chris Masonffbd5172009-04-20 15:50:09 -04002154 if (wbc->sync_mode == WB_SYNC_ALL)
2155 write_flags = WRITE_SYNC_PLUG;
2156 else
2157 write_flags = WRITE;
2158
Chris Masond1310b22008-01-24 16:13:08 -05002159 WARN_ON(!PageLocked(page));
Chris Mason7f3c74f2008-07-18 12:01:11 -04002160 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002161 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002162 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002163 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002164 unlock_page(page);
2165 return 0;
2166 }
2167
2168 if (page->index == end_index) {
2169 char *userpage;
2170
Chris Masond1310b22008-01-24 16:13:08 -05002171 userpage = kmap_atomic(page, KM_USER0);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002172 memset(userpage + pg_offset, 0,
2173 PAGE_CACHE_SIZE - pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002174 kunmap_atomic(userpage, KM_USER0);
Chris Mason211c17f2008-05-15 09:13:45 -04002175 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002176 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002177 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002178
2179 set_page_extent_mapped(page);
2180
2181 delalloc_start = start;
2182 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002183 page_started = 0;
Chris Mason771ed682008-11-06 22:02:51 -05002184 if (!epd->extent_locked) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002185 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002186 /*
2187 * make sure the wbc mapping index is at least updated
2188 * to this page.
2189 */
2190 update_nr_written(page, wbc, 0);
2191
Chris Masond3977122009-01-05 21:25:51 -05002192 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002193 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002194 page,
2195 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002196 &delalloc_end,
2197 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002198 if (nr_delalloc == 0) {
2199 delalloc_start = delalloc_end + 1;
2200 continue;
2201 }
2202 tree->ops->fill_delalloc(inode, page, delalloc_start,
2203 delalloc_end, &page_started,
2204 &nr_written);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002205 /*
2206 * delalloc_end is already one less than the total
2207 * length, so we don't subtract one from
2208 * PAGE_CACHE_SIZE
2209 */
2210 delalloc_to_write += (delalloc_end - delalloc_start +
2211 PAGE_CACHE_SIZE) >>
2212 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002213 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002214 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002215 if (wbc->nr_to_write < delalloc_to_write) {
2216 int thresh = 8192;
2217
2218 if (delalloc_to_write < thresh * 2)
2219 thresh = delalloc_to_write;
2220 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2221 thresh);
2222 }
Chris Masonc8b97812008-10-29 14:49:59 -04002223
Chris Mason771ed682008-11-06 22:02:51 -05002224 /* did the fill delalloc function already unlock and start
2225 * the IO?
2226 */
2227 if (page_started) {
2228 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002229 /*
2230 * we've unlocked the page, so we can't update
2231 * the mapping's writeback index, just update
2232 * nr_to_write.
2233 */
2234 wbc->nr_to_write -= nr_written;
2235 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002236 }
Chris Masonc8b97812008-10-29 14:49:59 -04002237 }
Chris Mason247e7432008-07-17 12:53:51 -04002238 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002239 ret = tree->ops->writepage_start_hook(page, start,
2240 page_end);
Chris Mason247e7432008-07-17 12:53:51 -04002241 if (ret == -EAGAIN) {
Chris Mason247e7432008-07-17 12:53:51 -04002242 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002243 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002244 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002245 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002246 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002247 }
2248 }
2249
Chris Mason11c83492009-04-20 15:50:09 -04002250 /*
2251 * we don't want to touch the inode after unlocking the page,
2252 * so we update the mapping writeback index now
2253 */
2254 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002255
Chris Masond1310b22008-01-24 16:13:08 -05002256 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002257 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002258 if (tree->ops && tree->ops->writepage_end_io_hook)
2259 tree->ops->writepage_end_io_hook(page, start,
2260 page_end, NULL, 1);
2261 unlock_start = page_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002262 goto done;
2263 }
2264
Chris Masond1310b22008-01-24 16:13:08 -05002265 blocksize = inode->i_sb->s_blocksize;
2266
2267 while (cur <= end) {
2268 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002269 if (tree->ops && tree->ops->writepage_end_io_hook)
2270 tree->ops->writepage_end_io_hook(page, cur,
2271 page_end, NULL, 1);
2272 unlock_start = page_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002273 break;
2274 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002275 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002276 end - cur + 1, 1);
2277 if (IS_ERR(em) || !em) {
2278 SetPageError(page);
2279 break;
2280 }
2281
2282 extent_offset = cur - em->start;
2283 BUG_ON(extent_map_end(em) <= cur);
2284 BUG_ON(end < cur);
2285 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2286 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2287 sector = (em->block_start + extent_offset) >> 9;
2288 bdev = em->bdev;
2289 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002290 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002291 free_extent_map(em);
2292 em = NULL;
2293
Chris Masonc8b97812008-10-29 14:49:59 -04002294 /*
2295 * compressed and inline extents are written through other
2296 * paths in the FS
2297 */
2298 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002299 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002300 /*
2301 * end_io notification does not happen here for
2302 * compressed extents
2303 */
2304 if (!compressed && tree->ops &&
2305 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002306 tree->ops->writepage_end_io_hook(page, cur,
2307 cur + iosize - 1,
2308 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002309 else if (compressed) {
2310 /* we don't want to end_page_writeback on
2311 * a compressed extent. this happens
2312 * elsewhere
2313 */
2314 nr++;
2315 }
2316
2317 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002318 pg_offset += iosize;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002319 unlock_start = cur;
Chris Masond1310b22008-01-24 16:13:08 -05002320 continue;
2321 }
Chris Masond1310b22008-01-24 16:13:08 -05002322 /* leave this out until we have a page_mkwrite call */
2323 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04002324 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002325 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002326 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002327 continue;
2328 }
Chris Masonc8b97812008-10-29 14:49:59 -04002329
Chris Masond1310b22008-01-24 16:13:08 -05002330 if (tree->ops && tree->ops->writepage_io_hook) {
2331 ret = tree->ops->writepage_io_hook(page, cur,
2332 cur + iosize - 1);
2333 } else {
2334 ret = 0;
2335 }
Chris Mason1259ab72008-05-12 13:39:03 -04002336 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05002337 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04002338 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002339 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002340
Chris Masond1310b22008-01-24 16:13:08 -05002341 set_range_writeback(tree, cur, cur + iosize - 1);
2342 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05002343 printk(KERN_ERR "btrfs warning page %lu not "
2344 "writeback, cur %llu end %llu\n",
2345 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05002346 (unsigned long long)end);
2347 }
2348
Chris Masonffbd5172009-04-20 15:50:09 -04002349 ret = submit_extent_page(write_flags, tree, page,
2350 sector, iosize, pg_offset,
2351 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04002352 end_bio_extent_writepage,
2353 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002354 if (ret)
2355 SetPageError(page);
2356 }
2357 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002358 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002359 nr++;
2360 }
2361done:
2362 if (nr == 0) {
2363 /* make sure the mapping tag for page dirty gets cleared */
2364 set_page_writeback(page);
2365 end_page_writeback(page);
2366 }
Chris Masond1310b22008-01-24 16:13:08 -05002367 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002368
Chris Mason11c83492009-04-20 15:50:09 -04002369done_unlocked:
2370
Chris Mason2c64c532009-09-02 15:04:12 -04002371 /* drop our reference on any cached states */
2372 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05002373 return 0;
2374}
2375
Chris Masond1310b22008-01-24 16:13:08 -05002376/**
Chris Mason4bef0842008-09-08 11:18:08 -04002377 * 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 -05002378 * @mapping: address space structure to write
2379 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2380 * @writepage: function called for each page
2381 * @data: data passed to writepage function
2382 *
2383 * If a page is already under I/O, write_cache_pages() skips it, even
2384 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2385 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2386 * and msync() need to guarantee that all the data which was dirty at the time
2387 * the call was made get new I/O started against them. If wbc->sync_mode is
2388 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2389 * existing IO to complete.
2390 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002391static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04002392 struct address_space *mapping,
2393 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002394 writepage_t writepage, void *data,
2395 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05002396{
Chris Masond1310b22008-01-24 16:13:08 -05002397 int ret = 0;
2398 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002399 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002400 struct pagevec pvec;
2401 int nr_pages;
2402 pgoff_t index;
2403 pgoff_t end; /* Inclusive */
2404 int scanned = 0;
2405 int range_whole = 0;
2406
Chris Masond1310b22008-01-24 16:13:08 -05002407 pagevec_init(&pvec, 0);
2408 if (wbc->range_cyclic) {
2409 index = mapping->writeback_index; /* Start from prev offset */
2410 end = -1;
2411 } else {
2412 index = wbc->range_start >> PAGE_CACHE_SHIFT;
2413 end = wbc->range_end >> PAGE_CACHE_SHIFT;
2414 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2415 range_whole = 1;
2416 scanned = 1;
2417 }
2418retry:
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002419 while (!done && !nr_to_write_done && (index <= end) &&
Chris Masond1310b22008-01-24 16:13:08 -05002420 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
Chris Masond3977122009-01-05 21:25:51 -05002421 PAGECACHE_TAG_DIRTY, min(end - index,
2422 (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05002423 unsigned i;
2424
2425 scanned = 1;
2426 for (i = 0; i < nr_pages; i++) {
2427 struct page *page = pvec.pages[i];
2428
2429 /*
2430 * At this point we hold neither mapping->tree_lock nor
2431 * lock on the page itself: the page may be truncated or
2432 * invalidated (changing page->mapping to NULL), or even
2433 * swizzled back from swapper_space to tmpfs file
2434 * mapping
2435 */
Chris Mason4bef0842008-09-08 11:18:08 -04002436 if (tree->ops && tree->ops->write_cache_pages_lock_hook)
2437 tree->ops->write_cache_pages_lock_hook(page);
2438 else
2439 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002440
2441 if (unlikely(page->mapping != mapping)) {
2442 unlock_page(page);
2443 continue;
2444 }
2445
2446 if (!wbc->range_cyclic && page->index > end) {
2447 done = 1;
2448 unlock_page(page);
2449 continue;
2450 }
2451
Chris Masond2c3f4f2008-11-19 12:44:22 -05002452 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05002453 if (PageWriteback(page))
2454 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05002455 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002456 }
Chris Masond1310b22008-01-24 16:13:08 -05002457
2458 if (PageWriteback(page) ||
2459 !clear_page_dirty_for_io(page)) {
2460 unlock_page(page);
2461 continue;
2462 }
2463
2464 ret = (*writepage)(page, wbc, data);
2465
2466 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
2467 unlock_page(page);
2468 ret = 0;
2469 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002470 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002471 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002472
2473 /*
2474 * the filesystem may choose to bump up nr_to_write.
2475 * We have to make sure to honor the new nr_to_write
2476 * at any time
2477 */
2478 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05002479 }
2480 pagevec_release(&pvec);
2481 cond_resched();
2482 }
2483 if (!scanned && !done) {
2484 /*
2485 * We hit the last page and there is more work to be done: wrap
2486 * back to the start of the file
2487 */
2488 scanned = 1;
2489 index = 0;
2490 goto retry;
2491 }
Chris Masond1310b22008-01-24 16:13:08 -05002492 return ret;
2493}
Chris Masond1310b22008-01-24 16:13:08 -05002494
Chris Masonffbd5172009-04-20 15:50:09 -04002495static void flush_epd_write_bio(struct extent_page_data *epd)
2496{
2497 if (epd->bio) {
2498 if (epd->sync_io)
2499 submit_one_bio(WRITE_SYNC, epd->bio, 0, 0);
2500 else
2501 submit_one_bio(WRITE, epd->bio, 0, 0);
2502 epd->bio = NULL;
2503 }
2504}
2505
Chris Masond2c3f4f2008-11-19 12:44:22 -05002506static noinline void flush_write_bio(void *data)
2507{
2508 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04002509 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002510}
2511
Chris Masond1310b22008-01-24 16:13:08 -05002512int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
2513 get_extent_t *get_extent,
2514 struct writeback_control *wbc)
2515{
2516 int ret;
2517 struct address_space *mapping = page->mapping;
2518 struct extent_page_data epd = {
2519 .bio = NULL,
2520 .tree = tree,
2521 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002522 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002523 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002524 };
2525 struct writeback_control wbc_writepages = {
2526 .bdi = wbc->bdi,
Chris Masond313d7a2009-04-20 15:50:09 -04002527 .sync_mode = wbc->sync_mode,
Chris Masond1310b22008-01-24 16:13:08 -05002528 .older_than_this = NULL,
2529 .nr_to_write = 64,
2530 .range_start = page_offset(page) + PAGE_CACHE_SIZE,
2531 .range_end = (loff_t)-1,
2532 };
2533
Chris Masond1310b22008-01-24 16:13:08 -05002534 ret = __extent_writepage(page, wbc, &epd);
2535
Chris Mason4bef0842008-09-08 11:18:08 -04002536 extent_write_cache_pages(tree, mapping, &wbc_writepages,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002537 __extent_writepage, &epd, flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002538 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002539 return ret;
2540}
Chris Masond1310b22008-01-24 16:13:08 -05002541
Chris Mason771ed682008-11-06 22:02:51 -05002542int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
2543 u64 start, u64 end, get_extent_t *get_extent,
2544 int mode)
2545{
2546 int ret = 0;
2547 struct address_space *mapping = inode->i_mapping;
2548 struct page *page;
2549 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
2550 PAGE_CACHE_SHIFT;
2551
2552 struct extent_page_data epd = {
2553 .bio = NULL,
2554 .tree = tree,
2555 .get_extent = get_extent,
2556 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04002557 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05002558 };
2559 struct writeback_control wbc_writepages = {
2560 .bdi = inode->i_mapping->backing_dev_info,
2561 .sync_mode = mode,
2562 .older_than_this = NULL,
2563 .nr_to_write = nr_pages * 2,
2564 .range_start = start,
2565 .range_end = end + 1,
2566 };
2567
Chris Masond3977122009-01-05 21:25:51 -05002568 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05002569 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
2570 if (clear_page_dirty_for_io(page))
2571 ret = __extent_writepage(page, &wbc_writepages, &epd);
2572 else {
2573 if (tree->ops && tree->ops->writepage_end_io_hook)
2574 tree->ops->writepage_end_io_hook(page, start,
2575 start + PAGE_CACHE_SIZE - 1,
2576 NULL, 1);
2577 unlock_page(page);
2578 }
2579 page_cache_release(page);
2580 start += PAGE_CACHE_SIZE;
2581 }
2582
Chris Masonffbd5172009-04-20 15:50:09 -04002583 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05002584 return ret;
2585}
Chris Masond1310b22008-01-24 16:13:08 -05002586
2587int extent_writepages(struct extent_io_tree *tree,
2588 struct address_space *mapping,
2589 get_extent_t *get_extent,
2590 struct writeback_control *wbc)
2591{
2592 int ret = 0;
2593 struct extent_page_data epd = {
2594 .bio = NULL,
2595 .tree = tree,
2596 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002597 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002598 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002599 };
2600
Chris Mason4bef0842008-09-08 11:18:08 -04002601 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002602 __extent_writepage, &epd,
2603 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002604 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002605 return ret;
2606}
Chris Masond1310b22008-01-24 16:13:08 -05002607
2608int extent_readpages(struct extent_io_tree *tree,
2609 struct address_space *mapping,
2610 struct list_head *pages, unsigned nr_pages,
2611 get_extent_t get_extent)
2612{
2613 struct bio *bio = NULL;
2614 unsigned page_idx;
2615 struct pagevec pvec;
Chris Masonc8b97812008-10-29 14:49:59 -04002616 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002617
2618 pagevec_init(&pvec, 0);
2619 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
2620 struct page *page = list_entry(pages->prev, struct page, lru);
2621
2622 prefetchw(&page->flags);
2623 list_del(&page->lru);
2624 /*
2625 * what we want to do here is call add_to_page_cache_lru,
2626 * but that isn't exported, so we reproduce it here
2627 */
2628 if (!add_to_page_cache(page, mapping,
2629 page->index, GFP_KERNEL)) {
2630
2631 /* open coding of lru_cache_add, also not exported */
2632 page_cache_get(page);
2633 if (!pagevec_add(&pvec, page))
Chris Mason15916de2008-11-19 21:17:22 -05002634 __pagevec_lru_add_file(&pvec);
Chris Masonf1885912008-04-09 16:28:12 -04002635 __extent_read_full_page(tree, page, get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002636 &bio, 0, &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002637 }
2638 page_cache_release(page);
2639 }
2640 if (pagevec_count(&pvec))
Chris Mason15916de2008-11-19 21:17:22 -05002641 __pagevec_lru_add_file(&pvec);
Chris Masond1310b22008-01-24 16:13:08 -05002642 BUG_ON(!list_empty(pages));
2643 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002644 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002645 return 0;
2646}
Chris Masond1310b22008-01-24 16:13:08 -05002647
2648/*
2649 * basic invalidatepage code, this waits on any locked or writeback
2650 * ranges corresponding to the page, and then deletes any extent state
2651 * records from the tree
2652 */
2653int extent_invalidatepage(struct extent_io_tree *tree,
2654 struct page *page, unsigned long offset)
2655{
2656 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
2657 u64 end = start + PAGE_CACHE_SIZE - 1;
2658 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
2659
Chris Masond3977122009-01-05 21:25:51 -05002660 start += (offset + blocksize - 1) & ~(blocksize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002661 if (start > end)
2662 return 0;
2663
2664 lock_extent(tree, start, end, GFP_NOFS);
Chris Mason1edbb732009-09-02 13:24:36 -04002665 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002666 clear_extent_bit(tree, start, end,
2667 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC,
Chris Mason2c64c532009-09-02 15:04:12 -04002668 1, 1, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002669 return 0;
2670}
Chris Masond1310b22008-01-24 16:13:08 -05002671
2672/*
2673 * simple commit_write call, set_range_dirty is used to mark both
2674 * the pages and the extent records as dirty
2675 */
2676int extent_commit_write(struct extent_io_tree *tree,
2677 struct inode *inode, struct page *page,
2678 unsigned from, unsigned to)
2679{
2680 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2681
2682 set_page_extent_mapped(page);
2683 set_page_dirty(page);
2684
2685 if (pos > inode->i_size) {
2686 i_size_write(inode, pos);
2687 mark_inode_dirty(inode);
2688 }
2689 return 0;
2690}
Chris Masond1310b22008-01-24 16:13:08 -05002691
2692int extent_prepare_write(struct extent_io_tree *tree,
2693 struct inode *inode, struct page *page,
2694 unsigned from, unsigned to, get_extent_t *get_extent)
2695{
2696 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2697 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
2698 u64 block_start;
2699 u64 orig_block_start;
2700 u64 block_end;
2701 u64 cur_end;
2702 struct extent_map *em;
2703 unsigned blocksize = 1 << inode->i_blkbits;
2704 size_t page_offset = 0;
2705 size_t block_off_start;
2706 size_t block_off_end;
2707 int err = 0;
2708 int iocount = 0;
2709 int ret = 0;
2710 int isnew;
2711
2712 set_page_extent_mapped(page);
2713
2714 block_start = (page_start + from) & ~((u64)blocksize - 1);
2715 block_end = (page_start + to - 1) | (blocksize - 1);
2716 orig_block_start = block_start;
2717
2718 lock_extent(tree, page_start, page_end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05002719 while (block_start <= block_end) {
Chris Masond1310b22008-01-24 16:13:08 -05002720 em = get_extent(inode, page, page_offset, block_start,
2721 block_end - block_start + 1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002722 if (IS_ERR(em) || !em)
Chris Masond1310b22008-01-24 16:13:08 -05002723 goto err;
Chris Masond3977122009-01-05 21:25:51 -05002724
Chris Masond1310b22008-01-24 16:13:08 -05002725 cur_end = min(block_end, extent_map_end(em) - 1);
2726 block_off_start = block_start & (PAGE_CACHE_SIZE - 1);
2727 block_off_end = block_off_start + blocksize;
2728 isnew = clear_extent_new(tree, block_start, cur_end, GFP_NOFS);
2729
2730 if (!PageUptodate(page) && isnew &&
2731 (block_off_end > to || block_off_start < from)) {
2732 void *kaddr;
2733
2734 kaddr = kmap_atomic(page, KM_USER0);
2735 if (block_off_end > to)
2736 memset(kaddr + to, 0, block_off_end - to);
2737 if (block_off_start < from)
2738 memset(kaddr + block_off_start, 0,
2739 from - block_off_start);
2740 flush_dcache_page(page);
2741 kunmap_atomic(kaddr, KM_USER0);
2742 }
2743 if ((em->block_start != EXTENT_MAP_HOLE &&
2744 em->block_start != EXTENT_MAP_INLINE) &&
2745 !isnew && !PageUptodate(page) &&
2746 (block_off_end > to || block_off_start < from) &&
2747 !test_range_bit(tree, block_start, cur_end,
Chris Mason9655d292009-09-02 15:22:30 -04002748 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002749 u64 sector;
2750 u64 extent_offset = block_start - em->start;
2751 size_t iosize;
2752 sector = (em->block_start + extent_offset) >> 9;
2753 iosize = (cur_end - block_start + blocksize) &
2754 ~((u64)blocksize - 1);
2755 /*
2756 * we've already got the extent locked, but we
2757 * need to split the state such that our end_bio
2758 * handler can clear the lock.
2759 */
2760 set_extent_bit(tree, block_start,
2761 block_start + iosize - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04002762 EXTENT_LOCKED, 0, NULL, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002763 ret = submit_extent_page(READ, tree, page,
2764 sector, iosize, page_offset, em->bdev,
2765 NULL, 1,
Chris Masonc8b97812008-10-29 14:49:59 -04002766 end_bio_extent_preparewrite, 0,
2767 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002768 iocount++;
2769 block_start = block_start + iosize;
2770 } else {
2771 set_extent_uptodate(tree, block_start, cur_end,
2772 GFP_NOFS);
2773 unlock_extent(tree, block_start, cur_end, GFP_NOFS);
2774 block_start = cur_end + 1;
2775 }
2776 page_offset = block_start & (PAGE_CACHE_SIZE - 1);
2777 free_extent_map(em);
2778 }
2779 if (iocount) {
2780 wait_extent_bit(tree, orig_block_start,
2781 block_end, EXTENT_LOCKED);
2782 }
2783 check_page_uptodate(tree, page);
2784err:
2785 /* FIXME, zero out newly allocated blocks on error */
2786 return err;
2787}
Chris Masond1310b22008-01-24 16:13:08 -05002788
2789/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04002790 * a helper for releasepage, this tests for areas of the page that
2791 * are locked or under IO and drops the related state bits if it is safe
2792 * to drop the page.
2793 */
2794int try_release_extent_state(struct extent_map_tree *map,
2795 struct extent_io_tree *tree, struct page *page,
2796 gfp_t mask)
2797{
2798 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2799 u64 end = start + PAGE_CACHE_SIZE - 1;
2800 int ret = 1;
2801
Chris Mason211f90e2008-07-18 11:56:15 -04002802 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04002803 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04002804 ret = 0;
2805 else {
2806 if ((mask & GFP_NOFS) == GFP_NOFS)
2807 mask = GFP_NOFS;
2808 clear_extent_bit(tree, start, end, EXTENT_UPTODATE,
Chris Mason2c64c532009-09-02 15:04:12 -04002809 1, 1, NULL, mask);
Chris Mason7b13b7b2008-04-18 10:29:50 -04002810 }
2811 return ret;
2812}
Chris Mason7b13b7b2008-04-18 10:29:50 -04002813
2814/*
Chris Masond1310b22008-01-24 16:13:08 -05002815 * a helper for releasepage. As long as there are no locked extents
2816 * in the range corresponding to the page, both state records and extent
2817 * map records are removed
2818 */
2819int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05002820 struct extent_io_tree *tree, struct page *page,
2821 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05002822{
2823 struct extent_map *em;
2824 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2825 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002826
Chris Mason70dec802008-01-29 09:59:12 -05002827 if ((mask & __GFP_WAIT) &&
2828 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05002829 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05002830 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05002831 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04002832 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05002833 em = lookup_extent_mapping(map, start, len);
Chris Mason70dec802008-01-29 09:59:12 -05002834 if (!em || IS_ERR(em)) {
Chris Mason890871b2009-09-02 16:24:52 -04002835 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002836 break;
2837 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002838 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
2839 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04002840 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002841 free_extent_map(em);
2842 break;
2843 }
2844 if (!test_range_bit(tree, em->start,
2845 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04002846 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04002847 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05002848 remove_extent_mapping(map, em);
2849 /* once for the rb tree */
2850 free_extent_map(em);
2851 }
2852 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04002853 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002854
2855 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05002856 free_extent_map(em);
2857 }
Chris Masond1310b22008-01-24 16:13:08 -05002858 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04002859 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05002860}
Chris Masond1310b22008-01-24 16:13:08 -05002861
2862sector_t extent_bmap(struct address_space *mapping, sector_t iblock,
2863 get_extent_t *get_extent)
2864{
2865 struct inode *inode = mapping->host;
2866 u64 start = iblock << inode->i_blkbits;
2867 sector_t sector = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002868 size_t blksize = (1 << inode->i_blkbits);
Chris Masond1310b22008-01-24 16:13:08 -05002869 struct extent_map *em;
2870
Yan Zhengd899e052008-10-30 14:25:28 -04002871 lock_extent(&BTRFS_I(inode)->io_tree, start, start + blksize - 1,
2872 GFP_NOFS);
2873 em = get_extent(inode, NULL, 0, start, blksize, 0);
2874 unlock_extent(&BTRFS_I(inode)->io_tree, start, start + blksize - 1,
2875 GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002876 if (!em || IS_ERR(em))
2877 return 0;
2878
Yan Zhengd899e052008-10-30 14:25:28 -04002879 if (em->block_start > EXTENT_MAP_LAST_BYTE)
Chris Masond1310b22008-01-24 16:13:08 -05002880 goto out;
2881
2882 sector = (em->block_start + start - em->start) >> inode->i_blkbits;
Chris Masond1310b22008-01-24 16:13:08 -05002883out:
2884 free_extent_map(em);
2885 return sector;
2886}
2887
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002888int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2889 __u64 start, __u64 len, get_extent_t *get_extent)
2890{
2891 int ret;
2892 u64 off = start;
2893 u64 max = start + len;
2894 u32 flags = 0;
2895 u64 disko = 0;
2896 struct extent_map *em = NULL;
2897 int end = 0;
2898 u64 em_start = 0, em_len = 0;
2899 unsigned long emflags;
2900 ret = 0;
2901
2902 if (len == 0)
2903 return -EINVAL;
2904
2905 lock_extent(&BTRFS_I(inode)->io_tree, start, start + len,
2906 GFP_NOFS);
2907 em = get_extent(inode, NULL, 0, off, max - off, 0);
2908 if (!em)
2909 goto out;
2910 if (IS_ERR(em)) {
2911 ret = PTR_ERR(em);
2912 goto out;
2913 }
2914 while (!end) {
2915 off = em->start + em->len;
2916 if (off >= max)
2917 end = 1;
2918
2919 em_start = em->start;
2920 em_len = em->len;
2921
2922 disko = 0;
2923 flags = 0;
2924
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002925 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002926 end = 1;
2927 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002928 } else if (em->block_start == EXTENT_MAP_HOLE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002929 flags |= FIEMAP_EXTENT_UNWRITTEN;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002930 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002931 flags |= (FIEMAP_EXTENT_DATA_INLINE |
2932 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002933 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002934 flags |= (FIEMAP_EXTENT_DELALLOC |
2935 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002936 } else {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002937 disko = em->block_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002938 }
2939 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
2940 flags |= FIEMAP_EXTENT_ENCODED;
2941
2942 emflags = em->flags;
2943 free_extent_map(em);
2944 em = NULL;
2945
2946 if (!end) {
2947 em = get_extent(inode, NULL, 0, off, max - off, 0);
2948 if (!em)
2949 goto out;
2950 if (IS_ERR(em)) {
2951 ret = PTR_ERR(em);
2952 goto out;
2953 }
2954 emflags = em->flags;
2955 }
2956 if (test_bit(EXTENT_FLAG_VACANCY, &emflags)) {
2957 flags |= FIEMAP_EXTENT_LAST;
2958 end = 1;
2959 }
2960
2961 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
2962 em_len, flags);
2963 if (ret)
2964 goto out_free;
2965 }
2966out_free:
2967 free_extent_map(em);
2968out:
2969 unlock_extent(&BTRFS_I(inode)->io_tree, start, start + len,
2970 GFP_NOFS);
2971 return ret;
2972}
2973
Chris Masond1310b22008-01-24 16:13:08 -05002974static inline struct page *extent_buffer_page(struct extent_buffer *eb,
2975 unsigned long i)
2976{
2977 struct page *p;
2978 struct address_space *mapping;
2979
2980 if (i == 0)
2981 return eb->first_page;
2982 i += eb->start >> PAGE_CACHE_SHIFT;
2983 mapping = eb->first_page->mapping;
Chris Mason33958dc2008-07-30 10:29:12 -04002984 if (!mapping)
2985 return NULL;
Sven Wegener0ee0fda2008-07-30 16:54:26 -04002986
2987 /*
2988 * extent_buffer_page is only called after pinning the page
2989 * by increasing the reference count. So we know the page must
2990 * be in the radix tree.
2991 */
Sven Wegener0ee0fda2008-07-30 16:54:26 -04002992 rcu_read_lock();
Chris Masond1310b22008-01-24 16:13:08 -05002993 p = radix_tree_lookup(&mapping->page_tree, i);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04002994 rcu_read_unlock();
Chris Mason2b1f55b2008-09-24 11:48:04 -04002995
Chris Masond1310b22008-01-24 16:13:08 -05002996 return p;
2997}
2998
Chris Mason6af118ce2008-07-22 11:18:07 -04002999static inline unsigned long num_extent_pages(u64 start, u64 len)
Chris Masonce9adaa2008-04-09 16:28:12 -04003000{
Chris Mason6af118ce2008-07-22 11:18:07 -04003001 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3002 (start >> PAGE_CACHE_SHIFT);
Chris Mason728131d2008-04-09 16:28:12 -04003003}
3004
Chris Masond1310b22008-01-24 16:13:08 -05003005static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3006 u64 start,
3007 unsigned long len,
3008 gfp_t mask)
3009{
3010 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003011#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003012 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003013#endif
Chris Masond1310b22008-01-24 16:13:08 -05003014
Chris Masond1310b22008-01-24 16:13:08 -05003015 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Chris Masond1310b22008-01-24 16:13:08 -05003016 eb->start = start;
3017 eb->len = len;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003018 spin_lock_init(&eb->lock);
3019 init_waitqueue_head(&eb->lock_wq);
3020
Chris Mason39351272009-02-04 09:24:05 -05003021#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003022 spin_lock_irqsave(&leak_lock, flags);
3023 list_add(&eb->leak_list, &buffers);
3024 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003025#endif
Chris Masond1310b22008-01-24 16:13:08 -05003026 atomic_set(&eb->refs, 1);
3027
3028 return eb;
3029}
3030
3031static void __free_extent_buffer(struct extent_buffer *eb)
3032{
Chris Mason39351272009-02-04 09:24:05 -05003033#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003034 unsigned long flags;
3035 spin_lock_irqsave(&leak_lock, flags);
3036 list_del(&eb->leak_list);
3037 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003038#endif
Chris Masond1310b22008-01-24 16:13:08 -05003039 kmem_cache_free(extent_buffer_cache, eb);
3040}
3041
3042struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
3043 u64 start, unsigned long len,
3044 struct page *page0,
3045 gfp_t mask)
3046{
3047 unsigned long num_pages = num_extent_pages(start, len);
3048 unsigned long i;
3049 unsigned long index = start >> PAGE_CACHE_SHIFT;
3050 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04003051 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003052 struct page *p;
3053 struct address_space *mapping = tree->mapping;
3054 int uptodate = 1;
3055
Chris Mason6af118ce2008-07-22 11:18:07 -04003056 spin_lock(&tree->buffer_lock);
3057 eb = buffer_search(tree, start);
3058 if (eb) {
3059 atomic_inc(&eb->refs);
3060 spin_unlock(&tree->buffer_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003061 mark_page_accessed(eb->first_page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003062 return eb;
3063 }
3064 spin_unlock(&tree->buffer_lock);
3065
Chris Masond1310b22008-01-24 16:13:08 -05003066 eb = __alloc_extent_buffer(tree, start, len, mask);
Peter2b114d12008-04-01 11:21:40 -04003067 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05003068 return NULL;
3069
Chris Masond1310b22008-01-24 16:13:08 -05003070 if (page0) {
3071 eb->first_page = page0;
3072 i = 1;
3073 index++;
3074 page_cache_get(page0);
3075 mark_page_accessed(page0);
3076 set_page_extent_mapped(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003077 set_page_extent_head(page0, len);
Chris Masonf1885912008-04-09 16:28:12 -04003078 uptodate = PageUptodate(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003079 } else {
3080 i = 0;
3081 }
3082 for (; i < num_pages; i++, index++) {
3083 p = find_or_create_page(mapping, index, mask | __GFP_HIGHMEM);
3084 if (!p) {
3085 WARN_ON(1);
Chris Mason6af118ce2008-07-22 11:18:07 -04003086 goto free_eb;
Chris Masond1310b22008-01-24 16:13:08 -05003087 }
3088 set_page_extent_mapped(p);
3089 mark_page_accessed(p);
3090 if (i == 0) {
3091 eb->first_page = p;
3092 set_page_extent_head(p, len);
3093 } else {
3094 set_page_private(p, EXTENT_PAGE_PRIVATE);
3095 }
3096 if (!PageUptodate(p))
3097 uptodate = 0;
3098 unlock_page(p);
3099 }
3100 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003101 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003102
Chris Mason6af118ce2008-07-22 11:18:07 -04003103 spin_lock(&tree->buffer_lock);
3104 exists = buffer_tree_insert(tree, start, &eb->rb_node);
3105 if (exists) {
3106 /* add one reference for the caller */
3107 atomic_inc(&exists->refs);
3108 spin_unlock(&tree->buffer_lock);
3109 goto free_eb;
3110 }
3111 spin_unlock(&tree->buffer_lock);
3112
3113 /* add one reference for the tree */
3114 atomic_inc(&eb->refs);
Chris Masond1310b22008-01-24 16:13:08 -05003115 return eb;
3116
Chris Mason6af118ce2008-07-22 11:18:07 -04003117free_eb:
Chris Masond1310b22008-01-24 16:13:08 -05003118 if (!atomic_dec_and_test(&eb->refs))
Chris Mason6af118ce2008-07-22 11:18:07 -04003119 return exists;
3120 for (index = 1; index < i; index++)
Chris Masond1310b22008-01-24 16:13:08 -05003121 page_cache_release(extent_buffer_page(eb, index));
Chris Mason6af118ce2008-07-22 11:18:07 -04003122 page_cache_release(extent_buffer_page(eb, 0));
Chris Masond1310b22008-01-24 16:13:08 -05003123 __free_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04003124 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05003125}
Chris Masond1310b22008-01-24 16:13:08 -05003126
3127struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
3128 u64 start, unsigned long len,
3129 gfp_t mask)
3130{
Chris Masond1310b22008-01-24 16:13:08 -05003131 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05003132
Chris Mason6af118ce2008-07-22 11:18:07 -04003133 spin_lock(&tree->buffer_lock);
3134 eb = buffer_search(tree, start);
3135 if (eb)
3136 atomic_inc(&eb->refs);
3137 spin_unlock(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003138
Josef Bacik0f9dd462008-09-23 13:14:11 -04003139 if (eb)
3140 mark_page_accessed(eb->first_page);
3141
Chris Masond1310b22008-01-24 16:13:08 -05003142 return eb;
Chris Masond1310b22008-01-24 16:13:08 -05003143}
Chris Masond1310b22008-01-24 16:13:08 -05003144
3145void free_extent_buffer(struct extent_buffer *eb)
3146{
Chris Masond1310b22008-01-24 16:13:08 -05003147 if (!eb)
3148 return;
3149
3150 if (!atomic_dec_and_test(&eb->refs))
3151 return;
3152
Chris Mason6af118ce2008-07-22 11:18:07 -04003153 WARN_ON(1);
Chris Masond1310b22008-01-24 16:13:08 -05003154}
Chris Masond1310b22008-01-24 16:13:08 -05003155
3156int clear_extent_buffer_dirty(struct extent_io_tree *tree,
3157 struct extent_buffer *eb)
3158{
Chris Masond1310b22008-01-24 16:13:08 -05003159 unsigned long i;
3160 unsigned long num_pages;
3161 struct page *page;
3162
Chris Masond1310b22008-01-24 16:13:08 -05003163 num_pages = num_extent_pages(eb->start, eb->len);
3164
3165 for (i = 0; i < num_pages; i++) {
3166 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04003167 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05003168 continue;
3169
Chris Masona61e6f22008-07-22 11:18:08 -04003170 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003171 if (i == 0)
3172 set_page_extent_head(page, eb->len);
3173 else
3174 set_page_private(page, EXTENT_PAGE_PRIVATE);
3175
Chris Masond1310b22008-01-24 16:13:08 -05003176 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003177 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003178 if (!PageDirty(page)) {
3179 radix_tree_tag_clear(&page->mapping->page_tree,
3180 page_index(page),
3181 PAGECACHE_TAG_DIRTY);
3182 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003183 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masona61e6f22008-07-22 11:18:08 -04003184 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003185 }
3186 return 0;
3187}
Chris Masond1310b22008-01-24 16:13:08 -05003188
3189int wait_on_extent_buffer_writeback(struct extent_io_tree *tree,
3190 struct extent_buffer *eb)
3191{
3192 return wait_on_extent_writeback(tree, eb->start,
3193 eb->start + eb->len - 1);
3194}
Chris Masond1310b22008-01-24 16:13:08 -05003195
3196int set_extent_buffer_dirty(struct extent_io_tree *tree,
3197 struct extent_buffer *eb)
3198{
3199 unsigned long i;
3200 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04003201 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003202
Chris Masonb9473432009-03-13 11:00:37 -04003203 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003204 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb9473432009-03-13 11:00:37 -04003205 for (i = 0; i < num_pages; i++)
Chris Masond1310b22008-01-24 16:13:08 -05003206 __set_page_dirty_nobuffers(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04003207 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05003208}
Chris Masond1310b22008-01-24 16:13:08 -05003209
Chris Mason1259ab72008-05-12 13:39:03 -04003210int clear_extent_buffer_uptodate(struct extent_io_tree *tree,
3211 struct extent_buffer *eb)
3212{
3213 unsigned long i;
3214 struct page *page;
3215 unsigned long num_pages;
3216
3217 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003218 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Mason1259ab72008-05-12 13:39:03 -04003219
3220 clear_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3221 GFP_NOFS);
3222 for (i = 0; i < num_pages; i++) {
3223 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04003224 if (page)
3225 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003226 }
3227 return 0;
3228}
3229
Chris Masond1310b22008-01-24 16:13:08 -05003230int set_extent_buffer_uptodate(struct extent_io_tree *tree,
3231 struct extent_buffer *eb)
3232{
3233 unsigned long i;
3234 struct page *page;
3235 unsigned long num_pages;
3236
3237 num_pages = num_extent_pages(eb->start, eb->len);
3238
3239 set_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3240 GFP_NOFS);
3241 for (i = 0; i < num_pages; i++) {
3242 page = extent_buffer_page(eb, i);
3243 if ((i == 0 && (eb->start & (PAGE_CACHE_SIZE - 1))) ||
3244 ((i == num_pages - 1) &&
3245 ((eb->start + eb->len) & (PAGE_CACHE_SIZE - 1)))) {
3246 check_page_uptodate(tree, page);
3247 continue;
3248 }
3249 SetPageUptodate(page);
3250 }
3251 return 0;
3252}
Chris Masond1310b22008-01-24 16:13:08 -05003253
Chris Masonce9adaa2008-04-09 16:28:12 -04003254int extent_range_uptodate(struct extent_io_tree *tree,
3255 u64 start, u64 end)
3256{
3257 struct page *page;
3258 int ret;
3259 int pg_uptodate = 1;
3260 int uptodate;
3261 unsigned long index;
3262
Chris Mason9655d292009-09-02 15:22:30 -04003263 ret = test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL);
Chris Masonce9adaa2008-04-09 16:28:12 -04003264 if (ret)
3265 return 1;
Chris Masond3977122009-01-05 21:25:51 -05003266 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003267 index = start >> PAGE_CACHE_SHIFT;
3268 page = find_get_page(tree->mapping, index);
3269 uptodate = PageUptodate(page);
3270 page_cache_release(page);
3271 if (!uptodate) {
3272 pg_uptodate = 0;
3273 break;
3274 }
3275 start += PAGE_CACHE_SIZE;
3276 }
3277 return pg_uptodate;
3278}
3279
Chris Masond1310b22008-01-24 16:13:08 -05003280int extent_buffer_uptodate(struct extent_io_tree *tree,
Chris Masonce9adaa2008-04-09 16:28:12 -04003281 struct extent_buffer *eb)
Chris Masond1310b22008-01-24 16:13:08 -05003282{
Chris Mason728131d2008-04-09 16:28:12 -04003283 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003284 unsigned long num_pages;
3285 unsigned long i;
Chris Mason728131d2008-04-09 16:28:12 -04003286 struct page *page;
3287 int pg_uptodate = 1;
3288
Chris Masonb4ce94d2009-02-04 09:25:08 -05003289 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Mason42352982008-04-28 16:40:52 -04003290 return 1;
Chris Mason728131d2008-04-09 16:28:12 -04003291
Chris Mason42352982008-04-28 16:40:52 -04003292 ret = test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003293 EXTENT_UPTODATE, 1, NULL);
Chris Mason42352982008-04-28 16:40:52 -04003294 if (ret)
3295 return ret;
Chris Mason728131d2008-04-09 16:28:12 -04003296
3297 num_pages = num_extent_pages(eb->start, eb->len);
3298 for (i = 0; i < num_pages; i++) {
3299 page = extent_buffer_page(eb, i);
3300 if (!PageUptodate(page)) {
3301 pg_uptodate = 0;
3302 break;
3303 }
3304 }
Chris Mason42352982008-04-28 16:40:52 -04003305 return pg_uptodate;
Chris Masond1310b22008-01-24 16:13:08 -05003306}
Chris Masond1310b22008-01-24 16:13:08 -05003307
3308int read_extent_buffer_pages(struct extent_io_tree *tree,
3309 struct extent_buffer *eb,
Chris Masona86c12c2008-02-07 10:50:54 -05003310 u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04003311 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003312{
3313 unsigned long i;
3314 unsigned long start_i;
3315 struct page *page;
3316 int err;
3317 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003318 int locked_pages = 0;
3319 int all_uptodate = 1;
3320 int inc_all_pages = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003321 unsigned long num_pages;
Chris Masona86c12c2008-02-07 10:50:54 -05003322 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003323 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05003324
Chris Masonb4ce94d2009-02-04 09:25:08 -05003325 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05003326 return 0;
3327
Chris Masonce9adaa2008-04-09 16:28:12 -04003328 if (test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003329 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003330 return 0;
3331 }
3332
3333 if (start) {
3334 WARN_ON(start < eb->start);
3335 start_i = (start >> PAGE_CACHE_SHIFT) -
3336 (eb->start >> PAGE_CACHE_SHIFT);
3337 } else {
3338 start_i = 0;
3339 }
3340
3341 num_pages = num_extent_pages(eb->start, eb->len);
3342 for (i = start_i; i < num_pages; i++) {
3343 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003344 if (!wait) {
David Woodhouse2db04962008-08-07 11:19:43 -04003345 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003346 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05003347 } else {
3348 lock_page(page);
3349 }
Chris Masonce9adaa2008-04-09 16:28:12 -04003350 locked_pages++;
Chris Masond3977122009-01-05 21:25:51 -05003351 if (!PageUptodate(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003352 all_uptodate = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003353 }
3354 if (all_uptodate) {
3355 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003356 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04003357 goto unlock_exit;
3358 }
3359
3360 for (i = start_i; i < num_pages; i++) {
3361 page = extent_buffer_page(eb, i);
3362 if (inc_all_pages)
3363 page_cache_get(page);
3364 if (!PageUptodate(page)) {
3365 if (start_i == 0)
3366 inc_all_pages = 1;
Chris Masonf1885912008-04-09 16:28:12 -04003367 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05003368 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04003369 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003370 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05003371 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05003372 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05003373 } else {
3374 unlock_page(page);
3375 }
3376 }
3377
Chris Masona86c12c2008-02-07 10:50:54 -05003378 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04003379 submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masona86c12c2008-02-07 10:50:54 -05003380
Chris Masond3977122009-01-05 21:25:51 -05003381 if (ret || !wait)
Chris Masond1310b22008-01-24 16:13:08 -05003382 return ret;
Chris Masond3977122009-01-05 21:25:51 -05003383
Chris Masond1310b22008-01-24 16:13:08 -05003384 for (i = start_i; i < num_pages; i++) {
3385 page = extent_buffer_page(eb, i);
3386 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05003387 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05003388 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05003389 }
Chris Masond3977122009-01-05 21:25:51 -05003390
Chris Masond1310b22008-01-24 16:13:08 -05003391 if (!ret)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003392 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003393 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04003394
3395unlock_exit:
3396 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05003397 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003398 page = extent_buffer_page(eb, i);
3399 i++;
3400 unlock_page(page);
3401 locked_pages--;
3402 }
3403 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003404}
Chris Masond1310b22008-01-24 16:13:08 -05003405
3406void read_extent_buffer(struct extent_buffer *eb, void *dstv,
3407 unsigned long start,
3408 unsigned long len)
3409{
3410 size_t cur;
3411 size_t offset;
3412 struct page *page;
3413 char *kaddr;
3414 char *dst = (char *)dstv;
3415 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3416 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003417
3418 WARN_ON(start > eb->len);
3419 WARN_ON(start + len > eb->start + eb->len);
3420
3421 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3422
Chris Masond3977122009-01-05 21:25:51 -05003423 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003424 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003425
3426 cur = min(len, (PAGE_CACHE_SIZE - offset));
3427 kaddr = kmap_atomic(page, KM_USER1);
3428 memcpy(dst, kaddr + offset, cur);
3429 kunmap_atomic(kaddr, KM_USER1);
3430
3431 dst += cur;
3432 len -= cur;
3433 offset = 0;
3434 i++;
3435 }
3436}
Chris Masond1310b22008-01-24 16:13:08 -05003437
3438int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
3439 unsigned long min_len, char **token, char **map,
3440 unsigned long *map_start,
3441 unsigned long *map_len, int km)
3442{
3443 size_t offset = start & (PAGE_CACHE_SIZE - 1);
3444 char *kaddr;
3445 struct page *p;
3446 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3447 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3448 unsigned long end_i = (start_offset + start + min_len - 1) >>
3449 PAGE_CACHE_SHIFT;
3450
3451 if (i != end_i)
3452 return -EINVAL;
3453
3454 if (i == 0) {
3455 offset = start_offset;
3456 *map_start = 0;
3457 } else {
3458 offset = 0;
3459 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
3460 }
Chris Masond3977122009-01-05 21:25:51 -05003461
Chris Masond1310b22008-01-24 16:13:08 -05003462 if (start + min_len > eb->len) {
Chris Masond3977122009-01-05 21:25:51 -05003463 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
3464 "wanted %lu %lu\n", (unsigned long long)eb->start,
3465 eb->len, start, min_len);
Chris Masond1310b22008-01-24 16:13:08 -05003466 WARN_ON(1);
3467 }
3468
3469 p = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003470 kaddr = kmap_atomic(p, km);
3471 *token = kaddr;
3472 *map = kaddr + offset;
3473 *map_len = PAGE_CACHE_SIZE - offset;
3474 return 0;
3475}
Chris Masond1310b22008-01-24 16:13:08 -05003476
3477int map_extent_buffer(struct extent_buffer *eb, unsigned long start,
3478 unsigned long min_len,
3479 char **token, char **map,
3480 unsigned long *map_start,
3481 unsigned long *map_len, int km)
3482{
3483 int err;
3484 int save = 0;
3485 if (eb->map_token) {
3486 unmap_extent_buffer(eb, eb->map_token, km);
3487 eb->map_token = NULL;
3488 save = 1;
3489 }
3490 err = map_private_extent_buffer(eb, start, min_len, token, map,
3491 map_start, map_len, km);
3492 if (!err && save) {
3493 eb->map_token = *token;
3494 eb->kaddr = *map;
3495 eb->map_start = *map_start;
3496 eb->map_len = *map_len;
3497 }
3498 return err;
3499}
Chris Masond1310b22008-01-24 16:13:08 -05003500
3501void unmap_extent_buffer(struct extent_buffer *eb, char *token, int km)
3502{
3503 kunmap_atomic(token, km);
3504}
Chris Masond1310b22008-01-24 16:13:08 -05003505
3506int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
3507 unsigned long start,
3508 unsigned long len)
3509{
3510 size_t cur;
3511 size_t offset;
3512 struct page *page;
3513 char *kaddr;
3514 char *ptr = (char *)ptrv;
3515 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3516 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3517 int ret = 0;
3518
3519 WARN_ON(start > eb->len);
3520 WARN_ON(start + len > eb->start + eb->len);
3521
3522 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3523
Chris Masond3977122009-01-05 21:25:51 -05003524 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003525 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003526
3527 cur = min(len, (PAGE_CACHE_SIZE - offset));
3528
3529 kaddr = kmap_atomic(page, KM_USER0);
3530 ret = memcmp(ptr, kaddr + offset, cur);
3531 kunmap_atomic(kaddr, KM_USER0);
3532 if (ret)
3533 break;
3534
3535 ptr += cur;
3536 len -= cur;
3537 offset = 0;
3538 i++;
3539 }
3540 return ret;
3541}
Chris Masond1310b22008-01-24 16:13:08 -05003542
3543void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
3544 unsigned long start, unsigned long len)
3545{
3546 size_t cur;
3547 size_t offset;
3548 struct page *page;
3549 char *kaddr;
3550 char *src = (char *)srcv;
3551 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3552 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3553
3554 WARN_ON(start > eb->len);
3555 WARN_ON(start + len > eb->start + eb->len);
3556
3557 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3558
Chris Masond3977122009-01-05 21:25:51 -05003559 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003560 page = extent_buffer_page(eb, i);
3561 WARN_ON(!PageUptodate(page));
3562
3563 cur = min(len, PAGE_CACHE_SIZE - offset);
3564 kaddr = kmap_atomic(page, KM_USER1);
3565 memcpy(kaddr + offset, src, cur);
3566 kunmap_atomic(kaddr, KM_USER1);
3567
3568 src += cur;
3569 len -= cur;
3570 offset = 0;
3571 i++;
3572 }
3573}
Chris Masond1310b22008-01-24 16:13:08 -05003574
3575void memset_extent_buffer(struct extent_buffer *eb, char c,
3576 unsigned long start, unsigned long len)
3577{
3578 size_t cur;
3579 size_t offset;
3580 struct page *page;
3581 char *kaddr;
3582 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3583 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3584
3585 WARN_ON(start > eb->len);
3586 WARN_ON(start + len > eb->start + eb->len);
3587
3588 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3589
Chris Masond3977122009-01-05 21:25:51 -05003590 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003591 page = extent_buffer_page(eb, i);
3592 WARN_ON(!PageUptodate(page));
3593
3594 cur = min(len, PAGE_CACHE_SIZE - offset);
3595 kaddr = kmap_atomic(page, KM_USER0);
3596 memset(kaddr + offset, c, cur);
3597 kunmap_atomic(kaddr, KM_USER0);
3598
3599 len -= cur;
3600 offset = 0;
3601 i++;
3602 }
3603}
Chris Masond1310b22008-01-24 16:13:08 -05003604
3605void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
3606 unsigned long dst_offset, unsigned long src_offset,
3607 unsigned long len)
3608{
3609 u64 dst_len = dst->len;
3610 size_t cur;
3611 size_t offset;
3612 struct page *page;
3613 char *kaddr;
3614 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3615 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3616
3617 WARN_ON(src->len != dst_len);
3618
3619 offset = (start_offset + dst_offset) &
3620 ((unsigned long)PAGE_CACHE_SIZE - 1);
3621
Chris Masond3977122009-01-05 21:25:51 -05003622 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003623 page = extent_buffer_page(dst, i);
3624 WARN_ON(!PageUptodate(page));
3625
3626 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
3627
3628 kaddr = kmap_atomic(page, KM_USER0);
3629 read_extent_buffer(src, kaddr + offset, src_offset, cur);
3630 kunmap_atomic(kaddr, KM_USER0);
3631
3632 src_offset += cur;
3633 len -= cur;
3634 offset = 0;
3635 i++;
3636 }
3637}
Chris Masond1310b22008-01-24 16:13:08 -05003638
3639static void move_pages(struct page *dst_page, struct page *src_page,
3640 unsigned long dst_off, unsigned long src_off,
3641 unsigned long len)
3642{
3643 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3644 if (dst_page == src_page) {
3645 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
3646 } else {
3647 char *src_kaddr = kmap_atomic(src_page, KM_USER1);
3648 char *p = dst_kaddr + dst_off + len;
3649 char *s = src_kaddr + src_off + len;
3650
3651 while (len--)
3652 *--p = *--s;
3653
3654 kunmap_atomic(src_kaddr, KM_USER1);
3655 }
3656 kunmap_atomic(dst_kaddr, KM_USER0);
3657}
3658
3659static void copy_pages(struct page *dst_page, struct page *src_page,
3660 unsigned long dst_off, unsigned long src_off,
3661 unsigned long len)
3662{
3663 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3664 char *src_kaddr;
3665
3666 if (dst_page != src_page)
3667 src_kaddr = kmap_atomic(src_page, KM_USER1);
3668 else
3669 src_kaddr = dst_kaddr;
3670
3671 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
3672 kunmap_atomic(dst_kaddr, KM_USER0);
3673 if (dst_page != src_page)
3674 kunmap_atomic(src_kaddr, KM_USER1);
3675}
3676
3677void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3678 unsigned long src_offset, unsigned long len)
3679{
3680 size_t cur;
3681 size_t dst_off_in_page;
3682 size_t src_off_in_page;
3683 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3684 unsigned long dst_i;
3685 unsigned long src_i;
3686
3687 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003688 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3689 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003690 BUG_ON(1);
3691 }
3692 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003693 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3694 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003695 BUG_ON(1);
3696 }
3697
Chris Masond3977122009-01-05 21:25:51 -05003698 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003699 dst_off_in_page = (start_offset + dst_offset) &
3700 ((unsigned long)PAGE_CACHE_SIZE - 1);
3701 src_off_in_page = (start_offset + src_offset) &
3702 ((unsigned long)PAGE_CACHE_SIZE - 1);
3703
3704 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3705 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
3706
3707 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
3708 src_off_in_page));
3709 cur = min_t(unsigned long, cur,
3710 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
3711
3712 copy_pages(extent_buffer_page(dst, dst_i),
3713 extent_buffer_page(dst, src_i),
3714 dst_off_in_page, src_off_in_page, cur);
3715
3716 src_offset += cur;
3717 dst_offset += cur;
3718 len -= cur;
3719 }
3720}
Chris Masond1310b22008-01-24 16:13:08 -05003721
3722void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3723 unsigned long src_offset, unsigned long len)
3724{
3725 size_t cur;
3726 size_t dst_off_in_page;
3727 size_t src_off_in_page;
3728 unsigned long dst_end = dst_offset + len - 1;
3729 unsigned long src_end = src_offset + len - 1;
3730 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3731 unsigned long dst_i;
3732 unsigned long src_i;
3733
3734 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003735 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3736 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003737 BUG_ON(1);
3738 }
3739 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003740 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3741 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003742 BUG_ON(1);
3743 }
3744 if (dst_offset < src_offset) {
3745 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
3746 return;
3747 }
Chris Masond3977122009-01-05 21:25:51 -05003748 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003749 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
3750 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
3751
3752 dst_off_in_page = (start_offset + dst_end) &
3753 ((unsigned long)PAGE_CACHE_SIZE - 1);
3754 src_off_in_page = (start_offset + src_end) &
3755 ((unsigned long)PAGE_CACHE_SIZE - 1);
3756
3757 cur = min_t(unsigned long, len, src_off_in_page + 1);
3758 cur = min(cur, dst_off_in_page + 1);
3759 move_pages(extent_buffer_page(dst, dst_i),
3760 extent_buffer_page(dst, src_i),
3761 dst_off_in_page - cur + 1,
3762 src_off_in_page - cur + 1, cur);
3763
3764 dst_end -= cur;
3765 src_end -= cur;
3766 len -= cur;
3767 }
3768}
Chris Mason6af118ce2008-07-22 11:18:07 -04003769
3770int try_release_extent_buffer(struct extent_io_tree *tree, struct page *page)
3771{
3772 u64 start = page_offset(page);
3773 struct extent_buffer *eb;
3774 int ret = 1;
3775 unsigned long i;
3776 unsigned long num_pages;
3777
3778 spin_lock(&tree->buffer_lock);
3779 eb = buffer_search(tree, start);
3780 if (!eb)
3781 goto out;
3782
3783 if (atomic_read(&eb->refs) > 1) {
3784 ret = 0;
3785 goto out;
3786 }
Chris Masonb9473432009-03-13 11:00:37 -04003787 if (test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3788 ret = 0;
3789 goto out;
3790 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003791 /* at this point we can safely release the extent buffer */
3792 num_pages = num_extent_pages(eb->start, eb->len);
Christoph Hellwigb2141072008-09-05 16:43:31 -04003793 for (i = 0; i < num_pages; i++)
3794 page_cache_release(extent_buffer_page(eb, i));
Chris Mason6af118ce2008-07-22 11:18:07 -04003795 rb_erase(&eb->rb_node, &tree->buffer);
3796 __free_extent_buffer(eb);
3797out:
3798 spin_unlock(&tree->buffer_lock);
3799 return ret;
3800}