blob: e7aeba2427018041afb137c26bfaba213de98d98 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/bitops.h>
2#include <linux/slab.h>
3#include <linux/bio.h>
4#include <linux/mm.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/pagemap.h>
6#include <linux/page-flags.h>
7#include <linux/module.h>
8#include <linux/spinlock.h>
9#include <linux/blkdev.h>
10#include <linux/swap.h>
Chris Masond1310b22008-01-24 16:13:08 -050011#include <linux/writeback.h>
12#include <linux/pagevec.h>
13#include "extent_io.h"
14#include "extent_map.h"
David Woodhouse2db04962008-08-07 11:19:43 -040015#include "compat.h"
David Woodhouse902b22f2008-08-20 08:51:49 -040016#include "ctree.h"
17#include "btrfs_inode.h"
Chris Masond1310b22008-01-24 16:13:08 -050018
Chris Masond1310b22008-01-24 16:13:08 -050019static struct kmem_cache *extent_state_cache;
20static struct kmem_cache *extent_buffer_cache;
21
22static LIST_HEAD(buffers);
23static LIST_HEAD(states);
Chris Mason4bef0842008-09-08 11:18:08 -040024
Chris Masonb47eda82008-11-10 12:34:40 -050025#define LEAK_DEBUG 0
Chris Mason39351272009-02-04 09:24:05 -050026#if LEAK_DEBUG
Chris Masond3977122009-01-05 21:25:51 -050027static DEFINE_SPINLOCK(leak_lock);
Chris Mason4bef0842008-09-08 11:18:08 -040028#endif
Chris Masond1310b22008-01-24 16:13:08 -050029
Chris Masond1310b22008-01-24 16:13:08 -050030#define BUFFER_LRU_MAX 64
31
32struct tree_entry {
33 u64 start;
34 u64 end;
Chris Masond1310b22008-01-24 16:13:08 -050035 struct rb_node rb_node;
36};
37
38struct extent_page_data {
39 struct bio *bio;
40 struct extent_io_tree *tree;
41 get_extent_t *get_extent;
Chris Mason771ed682008-11-06 22:02:51 -050042
43 /* tells writepage not to lock the state bits for this range
44 * it still does the unlocking
45 */
Chris Masonffbd5172009-04-20 15:50:09 -040046 unsigned int extent_locked:1;
47
48 /* tells the submit_bio code to use a WRITE_SYNC */
49 unsigned int sync_io:1;
Chris Masond1310b22008-01-24 16:13:08 -050050};
51
52int __init extent_io_init(void)
53{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020054 extent_state_cache = kmem_cache_create("extent_state",
55 sizeof(struct extent_state), 0,
56 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -050057 if (!extent_state_cache)
58 return -ENOMEM;
59
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020060 extent_buffer_cache = kmem_cache_create("extent_buffers",
61 sizeof(struct extent_buffer), 0,
62 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Chris Masond1310b22008-01-24 16:13:08 -050063 if (!extent_buffer_cache)
64 goto free_state_cache;
65 return 0;
66
67free_state_cache:
68 kmem_cache_destroy(extent_state_cache);
69 return -ENOMEM;
70}
71
72void extent_io_exit(void)
73{
74 struct extent_state *state;
Chris Mason2d2ae542008-03-26 16:24:23 -040075 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -050076
77 while (!list_empty(&states)) {
Chris Mason2d2ae542008-03-26 16:24:23 -040078 state = list_entry(states.next, struct extent_state, leak_list);
Chris Masond3977122009-01-05 21:25:51 -050079 printk(KERN_ERR "btrfs state leak: start %llu end %llu "
80 "state %lu in tree %p refs %d\n",
81 (unsigned long long)state->start,
82 (unsigned long long)state->end,
83 state->state, state->tree, atomic_read(&state->refs));
Chris Mason2d2ae542008-03-26 16:24:23 -040084 list_del(&state->leak_list);
Chris Masond1310b22008-01-24 16:13:08 -050085 kmem_cache_free(extent_state_cache, state);
86
87 }
88
Chris Mason2d2ae542008-03-26 16:24:23 -040089 while (!list_empty(&buffers)) {
90 eb = list_entry(buffers.next, struct extent_buffer, leak_list);
Chris Masond3977122009-01-05 21:25:51 -050091 printk(KERN_ERR "btrfs buffer leak start %llu len %lu "
92 "refs %d\n", (unsigned long long)eb->start,
93 eb->len, atomic_read(&eb->refs));
Chris Mason2d2ae542008-03-26 16:24:23 -040094 list_del(&eb->leak_list);
95 kmem_cache_free(extent_buffer_cache, eb);
96 }
Chris Masond1310b22008-01-24 16:13:08 -050097 if (extent_state_cache)
98 kmem_cache_destroy(extent_state_cache);
99 if (extent_buffer_cache)
100 kmem_cache_destroy(extent_buffer_cache);
101}
102
103void extent_io_tree_init(struct extent_io_tree *tree,
104 struct address_space *mapping, gfp_t mask)
105{
Eric Paris6bef4d32010-02-23 19:43:04 +0000106 tree->state = RB_ROOT;
Miao Xie19fe0a82010-10-26 20:57:29 -0400107 INIT_RADIX_TREE(&tree->buffer, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500108 tree->ops = NULL;
109 tree->dirty_bytes = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500110 spin_lock_init(&tree->lock);
Chris Mason6af118ce2008-07-22 11:18:07 -0400111 spin_lock_init(&tree->buffer_lock);
Chris Masond1310b22008-01-24 16:13:08 -0500112 tree->mapping = mapping;
Chris Masond1310b22008-01-24 16:13:08 -0500113}
Chris Masond1310b22008-01-24 16:13:08 -0500114
Christoph Hellwigb2950862008-12-02 09:54:17 -0500115static struct extent_state *alloc_extent_state(gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500116{
117 struct extent_state *state;
Chris Mason39351272009-02-04 09:24:05 -0500118#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400119 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400120#endif
Chris Masond1310b22008-01-24 16:13:08 -0500121
122 state = kmem_cache_alloc(extent_state_cache, mask);
Peter2b114d12008-04-01 11:21:40 -0400123 if (!state)
Chris Masond1310b22008-01-24 16:13:08 -0500124 return state;
125 state->state = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500126 state->private = 0;
Chris Mason70dec802008-01-29 09:59:12 -0500127 state->tree = NULL;
Chris Mason39351272009-02-04 09:24:05 -0500128#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400129 spin_lock_irqsave(&leak_lock, flags);
130 list_add(&state->leak_list, &states);
131 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400132#endif
Chris Masond1310b22008-01-24 16:13:08 -0500133 atomic_set(&state->refs, 1);
134 init_waitqueue_head(&state->wq);
135 return state;
136}
Chris Masond1310b22008-01-24 16:13:08 -0500137
Chris Mason4845e442010-05-25 20:56:50 -0400138void free_extent_state(struct extent_state *state)
Chris Masond1310b22008-01-24 16:13:08 -0500139{
Chris Masond1310b22008-01-24 16:13:08 -0500140 if (!state)
141 return;
142 if (atomic_dec_and_test(&state->refs)) {
Chris Mason39351272009-02-04 09:24:05 -0500143#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400144 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -0400145#endif
Chris Mason70dec802008-01-29 09:59:12 -0500146 WARN_ON(state->tree);
Chris Mason39351272009-02-04 09:24:05 -0500147#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -0400148 spin_lock_irqsave(&leak_lock, flags);
149 list_del(&state->leak_list);
150 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -0400151#endif
Chris Masond1310b22008-01-24 16:13:08 -0500152 kmem_cache_free(extent_state_cache, state);
153 }
154}
Chris Masond1310b22008-01-24 16:13:08 -0500155
156static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
157 struct rb_node *node)
158{
Chris Masond3977122009-01-05 21:25:51 -0500159 struct rb_node **p = &root->rb_node;
160 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500161 struct tree_entry *entry;
162
Chris Masond3977122009-01-05 21:25:51 -0500163 while (*p) {
Chris Masond1310b22008-01-24 16:13:08 -0500164 parent = *p;
165 entry = rb_entry(parent, struct tree_entry, rb_node);
166
167 if (offset < entry->start)
168 p = &(*p)->rb_left;
169 else if (offset > entry->end)
170 p = &(*p)->rb_right;
171 else
172 return parent;
173 }
174
175 entry = rb_entry(node, struct tree_entry, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500176 rb_link_node(node, parent, p);
177 rb_insert_color(node, root);
178 return NULL;
179}
180
Chris Mason80ea96b2008-02-01 14:51:59 -0500181static struct rb_node *__etree_search(struct extent_io_tree *tree, u64 offset,
Chris Masond1310b22008-01-24 16:13:08 -0500182 struct rb_node **prev_ret,
183 struct rb_node **next_ret)
184{
Chris Mason80ea96b2008-02-01 14:51:59 -0500185 struct rb_root *root = &tree->state;
Chris Masond3977122009-01-05 21:25:51 -0500186 struct rb_node *n = root->rb_node;
Chris Masond1310b22008-01-24 16:13:08 -0500187 struct rb_node *prev = NULL;
188 struct rb_node *orig_prev = NULL;
189 struct tree_entry *entry;
190 struct tree_entry *prev_entry = NULL;
191
Chris Masond3977122009-01-05 21:25:51 -0500192 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500193 entry = rb_entry(n, struct tree_entry, rb_node);
194 prev = n;
195 prev_entry = entry;
196
197 if (offset < entry->start)
198 n = n->rb_left;
199 else if (offset > entry->end)
200 n = n->rb_right;
Chris Masond3977122009-01-05 21:25:51 -0500201 else
Chris Masond1310b22008-01-24 16:13:08 -0500202 return n;
203 }
204
205 if (prev_ret) {
206 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500207 while (prev && offset > prev_entry->end) {
Chris Masond1310b22008-01-24 16:13:08 -0500208 prev = rb_next(prev);
209 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
210 }
211 *prev_ret = prev;
212 prev = orig_prev;
213 }
214
215 if (next_ret) {
216 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500217 while (prev && offset < prev_entry->start) {
Chris Masond1310b22008-01-24 16:13:08 -0500218 prev = rb_prev(prev);
219 prev_entry = rb_entry(prev, struct tree_entry, rb_node);
220 }
221 *next_ret = prev;
222 }
223 return NULL;
224}
225
Chris Mason80ea96b2008-02-01 14:51:59 -0500226static inline struct rb_node *tree_search(struct extent_io_tree *tree,
227 u64 offset)
Chris Masond1310b22008-01-24 16:13:08 -0500228{
Chris Mason70dec802008-01-29 09:59:12 -0500229 struct rb_node *prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500230 struct rb_node *ret;
Chris Mason70dec802008-01-29 09:59:12 -0500231
Chris Mason80ea96b2008-02-01 14:51:59 -0500232 ret = __etree_search(tree, offset, &prev, NULL);
Chris Masond3977122009-01-05 21:25:51 -0500233 if (!ret)
Chris Masond1310b22008-01-24 16:13:08 -0500234 return prev;
235 return ret;
236}
237
Josef Bacik9ed74f22009-09-11 16:12:44 -0400238static void merge_cb(struct extent_io_tree *tree, struct extent_state *new,
239 struct extent_state *other)
240{
241 if (tree->ops && tree->ops->merge_extent_hook)
242 tree->ops->merge_extent_hook(tree->mapping->host, new,
243 other);
244}
245
Chris Masond1310b22008-01-24 16:13:08 -0500246/*
247 * utility function to look for merge candidates inside a given range.
248 * Any extents with matching state are merged together into a single
249 * extent in the tree. Extents with EXTENT_IO in their state field
250 * are not merged because the end_io handlers need to be able to do
251 * operations on them without sleeping (or doing allocations/splits).
252 *
253 * This should be called with the tree lock held.
254 */
255static int merge_state(struct extent_io_tree *tree,
256 struct extent_state *state)
257{
258 struct extent_state *other;
259 struct rb_node *other_node;
260
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400261 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY))
Chris Masond1310b22008-01-24 16:13:08 -0500262 return 0;
263
264 other_node = rb_prev(&state->rb_node);
265 if (other_node) {
266 other = rb_entry(other_node, struct extent_state, rb_node);
267 if (other->end == state->start - 1 &&
268 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400269 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500270 state->start = other->start;
Chris Mason70dec802008-01-29 09:59:12 -0500271 other->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500272 rb_erase(&other->rb_node, &tree->state);
273 free_extent_state(other);
274 }
275 }
276 other_node = rb_next(&state->rb_node);
277 if (other_node) {
278 other = rb_entry(other_node, struct extent_state, rb_node);
279 if (other->start == state->end + 1 &&
280 other->state == state->state) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400281 merge_cb(tree, state, other);
Chris Masond1310b22008-01-24 16:13:08 -0500282 other->start = state->start;
Chris Mason70dec802008-01-29 09:59:12 -0500283 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500284 rb_erase(&state->rb_node, &tree->state);
285 free_extent_state(state);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400286 state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500287 }
288 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400289
Chris Masond1310b22008-01-24 16:13:08 -0500290 return 0;
291}
292
Josef Bacik9ed74f22009-09-11 16:12:44 -0400293static int set_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400294 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500295{
296 if (tree->ops && tree->ops->set_bit_hook) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400297 return tree->ops->set_bit_hook(tree->mapping->host,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400298 state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500299 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400300
301 return 0;
Chris Mason291d6732008-01-29 15:55:23 -0500302}
303
304static void clear_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400305 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500306{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400307 if (tree->ops && tree->ops->clear_bit_hook)
308 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500309}
310
Chris Masond1310b22008-01-24 16:13:08 -0500311/*
312 * insert an extent_state struct into the tree. 'bits' are set on the
313 * struct before it is inserted.
314 *
315 * This may return -EEXIST if the extent is already there, in which case the
316 * state struct is freed.
317 *
318 * The tree lock is not taken internally. This is a utility function and
319 * probably isn't what you want to call (see set/clear_extent_bit).
320 */
321static int insert_state(struct extent_io_tree *tree,
322 struct extent_state *state, u64 start, u64 end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400323 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500324{
325 struct rb_node *node;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400326 int bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400327 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500328
329 if (end < start) {
Chris Masond3977122009-01-05 21:25:51 -0500330 printk(KERN_ERR "btrfs end < start %llu %llu\n",
331 (unsigned long long)end,
332 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500333 WARN_ON(1);
334 }
Chris Masond1310b22008-01-24 16:13:08 -0500335 state->start = start;
336 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400337 ret = set_state_cb(tree, state, bits);
338 if (ret)
339 return ret;
340
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400341 if (bits_to_set & EXTENT_DIRTY)
Josef Bacik9ed74f22009-09-11 16:12:44 -0400342 tree->dirty_bytes += end - start + 1;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400343 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500344 node = tree_insert(&tree->state, end, &state->rb_node);
345 if (node) {
346 struct extent_state *found;
347 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500348 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
349 "%llu %llu\n", (unsigned long long)found->start,
350 (unsigned long long)found->end,
351 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500352 free_extent_state(state);
353 return -EEXIST;
354 }
Chris Mason70dec802008-01-29 09:59:12 -0500355 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500356 merge_state(tree, state);
357 return 0;
358}
359
Josef Bacik9ed74f22009-09-11 16:12:44 -0400360static int split_cb(struct extent_io_tree *tree, struct extent_state *orig,
361 u64 split)
362{
363 if (tree->ops && tree->ops->split_extent_hook)
364 return tree->ops->split_extent_hook(tree->mapping->host,
365 orig, split);
366 return 0;
367}
368
Chris Masond1310b22008-01-24 16:13:08 -0500369/*
370 * split a given extent state struct in two, inserting the preallocated
371 * struct 'prealloc' as the newly created second half. 'split' indicates an
372 * offset inside 'orig' where it should be split.
373 *
374 * Before calling,
375 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
376 * are two extent state structs in the tree:
377 * prealloc: [orig->start, split - 1]
378 * orig: [ split, orig->end ]
379 *
380 * The tree locks are not taken by this function. They need to be held
381 * by the caller.
382 */
383static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
384 struct extent_state *prealloc, u64 split)
385{
386 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400387
388 split_cb(tree, orig, split);
389
Chris Masond1310b22008-01-24 16:13:08 -0500390 prealloc->start = orig->start;
391 prealloc->end = split - 1;
392 prealloc->state = orig->state;
393 orig->start = split;
394
395 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
396 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500397 free_extent_state(prealloc);
398 return -EEXIST;
399 }
Chris Mason70dec802008-01-29 09:59:12 -0500400 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500401 return 0;
402}
403
404/*
405 * utility function to clear some bits in an extent state struct.
406 * it will optionally wake up any one waiting on this state (wake == 1), or
407 * forcibly remove the state from the tree (delete == 1).
408 *
409 * If no bits are set on the state struct after clearing things, the
410 * struct is freed and removed from the tree
411 */
412static int clear_state_bit(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400413 struct extent_state *state,
414 int *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500415{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400416 int bits_to_clear = *bits & ~EXTENT_CTLBITS;
Josef Bacik32c00af2009-10-08 13:34:05 -0400417 int ret = state->state & bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500418
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400419 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500420 u64 range = state->end - state->start + 1;
421 WARN_ON(range > tree->dirty_bytes);
422 tree->dirty_bytes -= range;
423 }
Chris Mason291d6732008-01-29 15:55:23 -0500424 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400425 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500426 if (wake)
427 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400428 if (state->state == 0) {
Chris Mason70dec802008-01-29 09:59:12 -0500429 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500430 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500431 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500432 free_extent_state(state);
433 } else {
434 WARN_ON(1);
435 }
436 } else {
437 merge_state(tree, state);
438 }
439 return ret;
440}
441
442/*
443 * clear some bits on a range in the tree. This may require splitting
444 * or inserting elements in the tree, so the gfp mask is used to
445 * indicate which allocations or sleeping are allowed.
446 *
447 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
448 * the given range from the tree regardless of state (ie for truncate).
449 *
450 * the range [start, end] is inclusive.
451 *
452 * This takes the tree lock, and returns < 0 on error, > 0 if any of the
453 * bits were already set, or zero if none of the bits were already set.
454 */
455int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400456 int bits, int wake, int delete,
457 struct extent_state **cached_state,
458 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500459{
460 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400461 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500462 struct extent_state *prealloc = NULL;
Chris Mason2c64c532009-09-02 15:04:12 -0400463 struct rb_node *next_node;
Chris Masond1310b22008-01-24 16:13:08 -0500464 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400465 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500466 int err;
467 int set = 0;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000468 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500469
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400470 if (delete)
471 bits |= ~EXTENT_CTLBITS;
472 bits |= EXTENT_FIRST_DELALLOC;
473
Josef Bacik2ac55d42010-02-03 19:33:23 +0000474 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
475 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500476again:
477 if (!prealloc && (mask & __GFP_WAIT)) {
478 prealloc = alloc_extent_state(mask);
479 if (!prealloc)
480 return -ENOMEM;
481 }
482
Chris Masoncad321a2008-12-17 14:51:42 -0500483 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400484 if (cached_state) {
485 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000486
487 if (clear) {
488 *cached_state = NULL;
489 cached_state = NULL;
490 }
491
Chris Mason42daec22009-09-23 19:51:09 -0400492 if (cached && cached->tree && cached->start == start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000493 if (clear)
494 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400495 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400496 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400497 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000498 if (clear)
499 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400500 }
Chris Masond1310b22008-01-24 16:13:08 -0500501 /*
502 * this search will find the extents that end after
503 * our range starts
504 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500505 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500506 if (!node)
507 goto out;
508 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400509hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500510 if (state->start > end)
511 goto out;
512 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400513 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500514
515 /*
516 * | ---- desired range ---- |
517 * | state | or
518 * | ------------- state -------------- |
519 *
520 * We need to split the extent we found, and may flip
521 * bits on second half.
522 *
523 * If the extent we found extends past our range, we
524 * just split and search again. It'll get split again
525 * the next time though.
526 *
527 * If the extent we found is inside our range, we clear
528 * the desired bit on it.
529 */
530
531 if (state->start < start) {
Chris Mason70dec802008-01-29 09:59:12 -0500532 if (!prealloc)
533 prealloc = alloc_extent_state(GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500534 err = split_state(tree, state, prealloc, start);
535 BUG_ON(err == -EEXIST);
536 prealloc = NULL;
537 if (err)
538 goto out;
539 if (state->end <= end) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400540 set |= clear_state_bit(tree, state, &bits, wake);
Yan Zheng5c939df2009-05-27 09:16:03 -0400541 if (last_end == (u64)-1)
542 goto out;
543 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500544 }
545 goto search_again;
546 }
547 /*
548 * | ---- desired range ---- |
549 * | state |
550 * We need to split the extent, and clear the bit
551 * on the first half
552 */
553 if (state->start <= end && state->end > end) {
Chris Mason70dec802008-01-29 09:59:12 -0500554 if (!prealloc)
555 prealloc = alloc_extent_state(GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -0500556 err = split_state(tree, state, prealloc, end + 1);
557 BUG_ON(err == -EEXIST);
Chris Masond1310b22008-01-24 16:13:08 -0500558 if (wake)
559 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400560
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400561 set |= clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400562
Chris Masond1310b22008-01-24 16:13:08 -0500563 prealloc = NULL;
564 goto out;
565 }
Chris Mason42daec22009-09-23 19:51:09 -0400566
Chris Mason2c64c532009-09-02 15:04:12 -0400567 if (state->end < end && prealloc && !need_resched())
568 next_node = rb_next(&state->rb_node);
569 else
570 next_node = NULL;
Chris Mason42daec22009-09-23 19:51:09 -0400571
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400572 set |= clear_state_bit(tree, state, &bits, wake);
Yan Zheng5c939df2009-05-27 09:16:03 -0400573 if (last_end == (u64)-1)
574 goto out;
575 start = last_end + 1;
Chris Mason2c64c532009-09-02 15:04:12 -0400576 if (start <= end && next_node) {
577 state = rb_entry(next_node, struct extent_state,
578 rb_node);
579 if (state->start == start)
580 goto hit_next;
581 }
Chris Masond1310b22008-01-24 16:13:08 -0500582 goto search_again;
583
584out:
Chris Masoncad321a2008-12-17 14:51:42 -0500585 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500586 if (prealloc)
587 free_extent_state(prealloc);
588
589 return set;
590
591search_again:
592 if (start > end)
593 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500594 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500595 if (mask & __GFP_WAIT)
596 cond_resched();
597 goto again;
598}
Chris Masond1310b22008-01-24 16:13:08 -0500599
600static int wait_on_state(struct extent_io_tree *tree,
601 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500602 __releases(tree->lock)
603 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500604{
605 DEFINE_WAIT(wait);
606 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500607 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500608 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500609 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500610 finish_wait(&state->wq, &wait);
611 return 0;
612}
613
614/*
615 * waits for one or more bits to clear on a range in the state tree.
616 * The range [start, end] is inclusive.
617 * The tree lock is taken by this function
618 */
619int wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
620{
621 struct extent_state *state;
622 struct rb_node *node;
623
Chris Masoncad321a2008-12-17 14:51:42 -0500624 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500625again:
626 while (1) {
627 /*
628 * this search will find all the extents that end after
629 * our range starts
630 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500631 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500632 if (!node)
633 break;
634
635 state = rb_entry(node, struct extent_state, rb_node);
636
637 if (state->start > end)
638 goto out;
639
640 if (state->state & bits) {
641 start = state->start;
642 atomic_inc(&state->refs);
643 wait_on_state(tree, state);
644 free_extent_state(state);
645 goto again;
646 }
647 start = state->end + 1;
648
649 if (start > end)
650 break;
651
652 if (need_resched()) {
Chris Masoncad321a2008-12-17 14:51:42 -0500653 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500654 cond_resched();
Chris Masoncad321a2008-12-17 14:51:42 -0500655 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500656 }
657 }
658out:
Chris Masoncad321a2008-12-17 14:51:42 -0500659 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500660 return 0;
661}
Chris Masond1310b22008-01-24 16:13:08 -0500662
Josef Bacik9ed74f22009-09-11 16:12:44 -0400663static int set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500664 struct extent_state *state,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400665 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500666{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400667 int ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400668 int bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400669
670 ret = set_state_cb(tree, state, bits);
671 if (ret)
672 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400673 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500674 u64 range = state->end - state->start + 1;
675 tree->dirty_bytes += range;
676 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400677 state->state |= bits_to_set;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400678
679 return 0;
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 Mason4845e442010-05-25 20:56:50 -0400704int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
705 int bits, int exclusive_bits, u64 *failed_start,
706 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500707{
708 struct extent_state *state;
709 struct extent_state *prealloc = NULL;
710 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500711 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500712 u64 last_start;
713 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400714
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400715 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500716again:
717 if (!prealloc && (mask & __GFP_WAIT)) {
718 prealloc = alloc_extent_state(mask);
719 if (!prealloc)
720 return -ENOMEM;
721 }
722
Chris Masoncad321a2008-12-17 14:51:42 -0500723 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400724 if (cached_state && *cached_state) {
725 state = *cached_state;
726 if (state->start == start && state->tree) {
727 node = &state->rb_node;
728 goto hit_next;
729 }
730 }
Chris Masond1310b22008-01-24 16:13:08 -0500731 /*
732 * this search will find all the extents that end after
733 * our range starts.
734 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500735 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500736 if (!node) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400737 err = insert_state(tree, prealloc, start, end, &bits);
Chris Masond1310b22008-01-24 16:13:08 -0500738 prealloc = NULL;
739 BUG_ON(err == -EEXIST);
740 goto out;
741 }
Chris Masond1310b22008-01-24 16:13:08 -0500742 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400743hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500744 last_start = state->start;
745 last_end = state->end;
746
747 /*
748 * | ---- desired range ---- |
749 * | state |
750 *
751 * Just lock what we found and keep going
752 */
753 if (state->start == start && state->end <= end) {
Chris Mason40431d62009-08-05 12:57:59 -0400754 struct rb_node *next_node;
Chris Mason1edbb732009-09-02 13:24:36 -0400755 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500756 *failed_start = state->start;
757 err = -EEXIST;
758 goto out;
759 }
Chris Mason42daec22009-09-23 19:51:09 -0400760
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400761 err = set_state_bits(tree, state, &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400762 if (err)
763 goto out;
764
Chris Mason2c64c532009-09-02 15:04:12 -0400765 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500766 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400767 if (last_end == (u64)-1)
768 goto out;
Chris Mason40431d62009-08-05 12:57:59 -0400769
Yan Zheng5c939df2009-05-27 09:16:03 -0400770 start = last_end + 1;
Chris Mason40431d62009-08-05 12:57:59 -0400771 if (start < end && prealloc && !need_resched()) {
772 next_node = rb_next(node);
773 if (next_node) {
774 state = rb_entry(next_node, struct extent_state,
775 rb_node);
776 if (state->start == start)
777 goto hit_next;
778 }
779 }
Chris Masond1310b22008-01-24 16:13:08 -0500780 goto search_again;
781 }
782
783 /*
784 * | ---- desired range ---- |
785 * | state |
786 * or
787 * | ------------- state -------------- |
788 *
789 * We need to split the extent we found, and may flip bits on
790 * second half.
791 *
792 * If the extent we found extends past our
793 * range, we just split and search again. It'll get split
794 * again the next time though.
795 *
796 * If the extent we found is inside our range, we set the
797 * desired bit on it.
798 */
799 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400800 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500801 *failed_start = start;
802 err = -EEXIST;
803 goto out;
804 }
805 err = split_state(tree, state, prealloc, start);
806 BUG_ON(err == -EEXIST);
807 prealloc = NULL;
808 if (err)
809 goto out;
810 if (state->end <= end) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400811 err = set_state_bits(tree, state, &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400812 if (err)
813 goto out;
Chris Mason2c64c532009-09-02 15:04:12 -0400814 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500815 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400816 if (last_end == (u64)-1)
817 goto out;
818 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500819 }
820 goto search_again;
821 }
822 /*
823 * | ---- desired range ---- |
824 * | state | or | state |
825 *
826 * There's a hole, we need to insert something in it and
827 * ignore the extent we found.
828 */
829 if (state->start > start) {
830 u64 this_end;
831 if (end < last_start)
832 this_end = end;
833 else
Chris Masond3977122009-01-05 21:25:51 -0500834 this_end = last_start - 1;
Chris Masond1310b22008-01-24 16:13:08 -0500835 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400836 &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400837 BUG_ON(err == -EEXIST);
838 if (err) {
839 prealloc = NULL;
840 goto out;
841 }
Chris Mason2c64c532009-09-02 15:04:12 -0400842 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500843 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500844 start = this_end + 1;
845 goto search_again;
846 }
847 /*
848 * | ---- desired range ---- |
849 * | state |
850 * We need to split the extent, and set the bit
851 * on the first half
852 */
853 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400854 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500855 *failed_start = start;
856 err = -EEXIST;
857 goto out;
858 }
859 err = split_state(tree, state, prealloc, end + 1);
860 BUG_ON(err == -EEXIST);
861
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400862 err = set_state_bits(tree, prealloc, &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400863 if (err) {
864 prealloc = NULL;
865 goto out;
866 }
Chris Mason2c64c532009-09-02 15:04:12 -0400867 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500868 merge_state(tree, prealloc);
869 prealloc = NULL;
870 goto out;
871 }
872
873 goto search_again;
874
875out:
Chris Masoncad321a2008-12-17 14:51:42 -0500876 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500877 if (prealloc)
878 free_extent_state(prealloc);
879
880 return err;
881
882search_again:
883 if (start > end)
884 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500885 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500886 if (mask & __GFP_WAIT)
887 cond_resched();
888 goto again;
889}
Chris Masond1310b22008-01-24 16:13:08 -0500890
891/* wrappers around set/clear extent bit */
892int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
893 gfp_t mask)
894{
895 return set_extent_bit(tree, start, end, EXTENT_DIRTY, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400896 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500897}
Chris Masond1310b22008-01-24 16:13:08 -0500898
899int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
900 int bits, gfp_t mask)
901{
902 return set_extent_bit(tree, start, end, bits, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400903 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500904}
Chris Masond1310b22008-01-24 16:13:08 -0500905
906int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
907 int bits, gfp_t mask)
908{
Chris Mason2c64c532009-09-02 15:04:12 -0400909 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500910}
Chris Masond1310b22008-01-24 16:13:08 -0500911
912int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000913 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500914{
915 return set_extent_bit(tree, start, end,
Chris Mason40431d62009-08-05 12:57:59 -0400916 EXTENT_DELALLOC | EXTENT_DIRTY | EXTENT_UPTODATE,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000917 0, NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500918}
Chris Masond1310b22008-01-24 16:13:08 -0500919
920int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
921 gfp_t mask)
922{
923 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -0400924 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400925 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500926}
Chris Masond1310b22008-01-24 16:13:08 -0500927
928int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
929 gfp_t mask)
930{
931 return set_extent_bit(tree, start, end, EXTENT_NEW, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400932 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500933}
Chris Masond1310b22008-01-24 16:13:08 -0500934
Christoph Hellwigb2950862008-12-02 09:54:17 -0500935static int clear_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
Chris Masond1310b22008-01-24 16:13:08 -0500936 gfp_t mask)
937{
Chris Mason2c64c532009-09-02 15:04:12 -0400938 return clear_extent_bit(tree, start, end, EXTENT_NEW, 0, 0,
939 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500940}
Chris Masond1310b22008-01-24 16:13:08 -0500941
942int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
943 gfp_t mask)
944{
945 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400946 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500947}
Chris Masond1310b22008-01-24 16:13:08 -0500948
Chris Masond3977122009-01-05 21:25:51 -0500949static int clear_extent_uptodate(struct extent_io_tree *tree, u64 start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000950 u64 end, struct extent_state **cached_state,
951 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500952{
Chris Mason2c64c532009-09-02 15:04:12 -0400953 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000954 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500955}
Chris Masond1310b22008-01-24 16:13:08 -0500956
Chris Masond1310b22008-01-24 16:13:08 -0500957int wait_on_extent_writeback(struct extent_io_tree *tree, u64 start, u64 end)
958{
959 return wait_extent_bit(tree, start, end, EXTENT_WRITEBACK);
960}
Chris Masond1310b22008-01-24 16:13:08 -0500961
Chris Masond352ac62008-09-29 15:18:18 -0400962/*
963 * either insert or lock state struct between start and end use mask to tell
964 * us if waiting is desired.
965 */
Chris Mason1edbb732009-09-02 13:24:36 -0400966int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400967 int bits, struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500968{
969 int err;
970 u64 failed_start;
971 while (1) {
Chris Mason1edbb732009-09-02 13:24:36 -0400972 err = set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
Chris Mason2c64c532009-09-02 15:04:12 -0400973 EXTENT_LOCKED, &failed_start,
974 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500975 if (err == -EEXIST && (mask & __GFP_WAIT)) {
976 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
977 start = failed_start;
978 } else {
979 break;
980 }
981 WARN_ON(start > end);
982 }
983 return err;
984}
Chris Masond1310b22008-01-24 16:13:08 -0500985
Chris Mason1edbb732009-09-02 13:24:36 -0400986int lock_extent(struct extent_io_tree *tree, u64 start, u64 end, gfp_t mask)
987{
Chris Mason2c64c532009-09-02 15:04:12 -0400988 return lock_extent_bits(tree, start, end, 0, NULL, mask);
Chris Mason1edbb732009-09-02 13:24:36 -0400989}
990
Josef Bacik25179202008-10-29 14:49:05 -0400991int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end,
992 gfp_t mask)
993{
994 int err;
995 u64 failed_start;
996
Chris Mason2c64c532009-09-02 15:04:12 -0400997 err = set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
998 &failed_start, NULL, mask);
Yan Zheng66435582008-10-30 14:19:50 -0400999 if (err == -EEXIST) {
1000 if (failed_start > start)
1001 clear_extent_bit(tree, start, failed_start - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04001002 EXTENT_LOCKED, 1, 0, NULL, mask);
Josef Bacik25179202008-10-29 14:49:05 -04001003 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001004 }
Josef Bacik25179202008-10-29 14:49:05 -04001005 return 1;
1006}
Josef Bacik25179202008-10-29 14:49:05 -04001007
Chris Mason2c64c532009-09-02 15:04:12 -04001008int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1009 struct extent_state **cached, gfp_t mask)
1010{
1011 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1012 mask);
1013}
1014
Chris Masond1310b22008-01-24 16:13:08 -05001015int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end,
1016 gfp_t mask)
1017{
Chris Mason2c64c532009-09-02 15:04:12 -04001018 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
1019 mask);
Chris Masond1310b22008-01-24 16:13:08 -05001020}
Chris Masond1310b22008-01-24 16:13:08 -05001021
1022/*
1023 * helper function to set pages and extents in the tree dirty
1024 */
1025int set_range_dirty(struct extent_io_tree *tree, u64 start, u64 end)
1026{
1027 unsigned long index = start >> PAGE_CACHE_SHIFT;
1028 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1029 struct page *page;
1030
1031 while (index <= end_index) {
1032 page = find_get_page(tree->mapping, index);
1033 BUG_ON(!page);
1034 __set_page_dirty_nobuffers(page);
1035 page_cache_release(page);
1036 index++;
1037 }
Chris Masond1310b22008-01-24 16:13:08 -05001038 return 0;
1039}
Chris Masond1310b22008-01-24 16:13:08 -05001040
1041/*
1042 * helper function to set both pages and extents in the tree writeback
1043 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05001044static int set_range_writeback(struct extent_io_tree *tree, u64 start, u64 end)
Chris Masond1310b22008-01-24 16:13:08 -05001045{
1046 unsigned long index = start >> PAGE_CACHE_SHIFT;
1047 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1048 struct page *page;
1049
1050 while (index <= end_index) {
1051 page = find_get_page(tree->mapping, index);
1052 BUG_ON(!page);
1053 set_page_writeback(page);
1054 page_cache_release(page);
1055 index++;
1056 }
Chris Masond1310b22008-01-24 16:13:08 -05001057 return 0;
1058}
Chris Masond1310b22008-01-24 16:13:08 -05001059
Chris Masond352ac62008-09-29 15:18:18 -04001060/*
1061 * find the first offset in the io tree with 'bits' set. zero is
1062 * returned if we find something, and *start_ret and *end_ret are
1063 * set to reflect the state struct that was found.
1064 *
1065 * If nothing was found, 1 is returned, < 0 on error
1066 */
Chris Masond1310b22008-01-24 16:13:08 -05001067int find_first_extent_bit(struct extent_io_tree *tree, u64 start,
1068 u64 *start_ret, u64 *end_ret, int bits)
1069{
1070 struct rb_node *node;
1071 struct extent_state *state;
1072 int ret = 1;
1073
Chris Masoncad321a2008-12-17 14:51:42 -05001074 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001075 /*
1076 * this search will find all the extents that end after
1077 * our range starts.
1078 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001079 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001080 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001081 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001082
Chris Masond3977122009-01-05 21:25:51 -05001083 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001084 state = rb_entry(node, struct extent_state, rb_node);
1085 if (state->end >= start && (state->state & bits)) {
1086 *start_ret = state->start;
1087 *end_ret = state->end;
1088 ret = 0;
1089 break;
1090 }
1091 node = rb_next(node);
1092 if (!node)
1093 break;
1094 }
1095out:
Chris Masoncad321a2008-12-17 14:51:42 -05001096 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001097 return ret;
1098}
Chris Masond1310b22008-01-24 16:13:08 -05001099
Chris Masond352ac62008-09-29 15:18:18 -04001100/* find the first state struct with 'bits' set after 'start', and
1101 * return it. tree->lock must be held. NULL will returned if
1102 * nothing was found after 'start'
1103 */
Chris Masond7fc6402008-02-18 12:12:38 -05001104struct extent_state *find_first_extent_bit_state(struct extent_io_tree *tree,
1105 u64 start, int bits)
1106{
1107 struct rb_node *node;
1108 struct extent_state *state;
1109
1110 /*
1111 * this search will find all the extents that end after
1112 * our range starts.
1113 */
1114 node = tree_search(tree, start);
Chris Masond3977122009-01-05 21:25:51 -05001115 if (!node)
Chris Masond7fc6402008-02-18 12:12:38 -05001116 goto out;
Chris Masond7fc6402008-02-18 12:12:38 -05001117
Chris Masond3977122009-01-05 21:25:51 -05001118 while (1) {
Chris Masond7fc6402008-02-18 12:12:38 -05001119 state = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -05001120 if (state->end >= start && (state->state & bits))
Chris Masond7fc6402008-02-18 12:12:38 -05001121 return state;
Chris Masond3977122009-01-05 21:25:51 -05001122
Chris Masond7fc6402008-02-18 12:12:38 -05001123 node = rb_next(node);
1124 if (!node)
1125 break;
1126 }
1127out:
1128 return NULL;
1129}
Chris Masond7fc6402008-02-18 12:12:38 -05001130
Chris Masond352ac62008-09-29 15:18:18 -04001131/*
1132 * find a contiguous range of bytes in the file marked as delalloc, not
1133 * more than 'max_bytes'. start and end are used to return the range,
1134 *
1135 * 1 is returned if we find something, 0 if nothing was in the tree
1136 */
Chris Masonc8b97812008-10-29 14:49:59 -04001137static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001138 u64 *start, u64 *end, u64 max_bytes,
1139 struct extent_state **cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05001140{
1141 struct rb_node *node;
1142 struct extent_state *state;
1143 u64 cur_start = *start;
1144 u64 found = 0;
1145 u64 total_bytes = 0;
1146
Chris Masoncad321a2008-12-17 14:51:42 -05001147 spin_lock(&tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -04001148
Chris Masond1310b22008-01-24 16:13:08 -05001149 /*
1150 * this search will find all the extents that end after
1151 * our range starts.
1152 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001153 node = tree_search(tree, cur_start);
Peter2b114d12008-04-01 11:21:40 -04001154 if (!node) {
Chris Mason3b951512008-04-17 11:29:12 -04001155 if (!found)
1156 *end = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001157 goto out;
1158 }
1159
Chris Masond3977122009-01-05 21:25:51 -05001160 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001161 state = rb_entry(node, struct extent_state, rb_node);
Zheng Yan5b21f2e2008-09-26 10:05:38 -04001162 if (found && (state->start != cur_start ||
1163 (state->state & EXTENT_BOUNDARY))) {
Chris Masond1310b22008-01-24 16:13:08 -05001164 goto out;
1165 }
1166 if (!(state->state & EXTENT_DELALLOC)) {
1167 if (!found)
1168 *end = state->end;
1169 goto out;
1170 }
Josef Bacikc2a128d2010-02-02 21:19:11 +00001171 if (!found) {
Chris Masond1310b22008-01-24 16:13:08 -05001172 *start = state->start;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001173 *cached_state = state;
1174 atomic_inc(&state->refs);
1175 }
Chris Masond1310b22008-01-24 16:13:08 -05001176 found++;
1177 *end = state->end;
1178 cur_start = state->end + 1;
1179 node = rb_next(node);
1180 if (!node)
1181 break;
1182 total_bytes += state->end - state->start + 1;
1183 if (total_bytes >= max_bytes)
1184 break;
1185 }
1186out:
Chris Masoncad321a2008-12-17 14:51:42 -05001187 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001188 return found;
1189}
1190
Chris Masonc8b97812008-10-29 14:49:59 -04001191static noinline int __unlock_for_delalloc(struct inode *inode,
1192 struct page *locked_page,
1193 u64 start, u64 end)
1194{
1195 int ret;
1196 struct page *pages[16];
1197 unsigned long index = start >> PAGE_CACHE_SHIFT;
1198 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1199 unsigned long nr_pages = end_index - index + 1;
1200 int i;
1201
1202 if (index == locked_page->index && end_index == index)
1203 return 0;
1204
Chris Masond3977122009-01-05 21:25:51 -05001205 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001206 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001207 min_t(unsigned long, nr_pages,
1208 ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001209 for (i = 0; i < ret; i++) {
1210 if (pages[i] != locked_page)
1211 unlock_page(pages[i]);
1212 page_cache_release(pages[i]);
1213 }
1214 nr_pages -= ret;
1215 index += ret;
1216 cond_resched();
1217 }
1218 return 0;
1219}
1220
1221static noinline int lock_delalloc_pages(struct inode *inode,
1222 struct page *locked_page,
1223 u64 delalloc_start,
1224 u64 delalloc_end)
1225{
1226 unsigned long index = delalloc_start >> PAGE_CACHE_SHIFT;
1227 unsigned long start_index = index;
1228 unsigned long end_index = delalloc_end >> PAGE_CACHE_SHIFT;
1229 unsigned long pages_locked = 0;
1230 struct page *pages[16];
1231 unsigned long nrpages;
1232 int ret;
1233 int i;
1234
1235 /* the caller is responsible for locking the start index */
1236 if (index == locked_page->index && index == end_index)
1237 return 0;
1238
1239 /* skip the page at the start index */
1240 nrpages = end_index - index + 1;
Chris Masond3977122009-01-05 21:25:51 -05001241 while (nrpages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001242 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001243 min_t(unsigned long,
1244 nrpages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001245 if (ret == 0) {
1246 ret = -EAGAIN;
1247 goto done;
1248 }
1249 /* now we have an array of pages, lock them all */
1250 for (i = 0; i < ret; i++) {
1251 /*
1252 * the caller is taking responsibility for
1253 * locked_page
1254 */
Chris Mason771ed682008-11-06 22:02:51 -05001255 if (pages[i] != locked_page) {
Chris Masonc8b97812008-10-29 14:49:59 -04001256 lock_page(pages[i]);
Chris Masonf2b1c412008-11-10 07:31:30 -05001257 if (!PageDirty(pages[i]) ||
1258 pages[i]->mapping != inode->i_mapping) {
Chris Mason771ed682008-11-06 22:02:51 -05001259 ret = -EAGAIN;
1260 unlock_page(pages[i]);
1261 page_cache_release(pages[i]);
1262 goto done;
1263 }
1264 }
Chris Masonc8b97812008-10-29 14:49:59 -04001265 page_cache_release(pages[i]);
Chris Mason771ed682008-11-06 22:02:51 -05001266 pages_locked++;
Chris Masonc8b97812008-10-29 14:49:59 -04001267 }
Chris Masonc8b97812008-10-29 14:49:59 -04001268 nrpages -= ret;
1269 index += ret;
1270 cond_resched();
1271 }
1272 ret = 0;
1273done:
1274 if (ret && pages_locked) {
1275 __unlock_for_delalloc(inode, locked_page,
1276 delalloc_start,
1277 ((u64)(start_index + pages_locked - 1)) <<
1278 PAGE_CACHE_SHIFT);
1279 }
1280 return ret;
1281}
1282
1283/*
1284 * find a contiguous range of bytes in the file marked as delalloc, not
1285 * more than 'max_bytes'. start and end are used to return the range,
1286 *
1287 * 1 is returned if we find something, 0 if nothing was in the tree
1288 */
1289static noinline u64 find_lock_delalloc_range(struct inode *inode,
1290 struct extent_io_tree *tree,
1291 struct page *locked_page,
1292 u64 *start, u64 *end,
1293 u64 max_bytes)
1294{
1295 u64 delalloc_start;
1296 u64 delalloc_end;
1297 u64 found;
Chris Mason9655d292009-09-02 15:22:30 -04001298 struct extent_state *cached_state = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04001299 int ret;
1300 int loops = 0;
1301
1302again:
1303 /* step one, find a bunch of delalloc bytes starting at start */
1304 delalloc_start = *start;
1305 delalloc_end = 0;
1306 found = find_delalloc_range(tree, &delalloc_start, &delalloc_end,
Josef Bacikc2a128d2010-02-02 21:19:11 +00001307 max_bytes, &cached_state);
Chris Mason70b99e62008-10-31 12:46:39 -04001308 if (!found || delalloc_end <= *start) {
Chris Masonc8b97812008-10-29 14:49:59 -04001309 *start = delalloc_start;
1310 *end = delalloc_end;
Josef Bacikc2a128d2010-02-02 21:19:11 +00001311 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001312 return found;
1313 }
1314
1315 /*
Chris Mason70b99e62008-10-31 12:46:39 -04001316 * start comes from the offset of locked_page. We have to lock
1317 * pages in order, so we can't process delalloc bytes before
1318 * locked_page
1319 */
Chris Masond3977122009-01-05 21:25:51 -05001320 if (delalloc_start < *start)
Chris Mason70b99e62008-10-31 12:46:39 -04001321 delalloc_start = *start;
Chris Mason70b99e62008-10-31 12:46:39 -04001322
1323 /*
Chris Masonc8b97812008-10-29 14:49:59 -04001324 * make sure to limit the number of pages we try to lock down
1325 * if we're looping.
1326 */
Chris Masond3977122009-01-05 21:25:51 -05001327 if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
Chris Mason771ed682008-11-06 22:02:51 -05001328 delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
Chris Masond3977122009-01-05 21:25:51 -05001329
Chris Masonc8b97812008-10-29 14:49:59 -04001330 /* step two, lock all the pages after the page that has start */
1331 ret = lock_delalloc_pages(inode, locked_page,
1332 delalloc_start, delalloc_end);
1333 if (ret == -EAGAIN) {
1334 /* some of the pages are gone, lets avoid looping by
1335 * shortening the size of the delalloc range we're searching
1336 */
Chris Mason9655d292009-09-02 15:22:30 -04001337 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001338 if (!loops) {
1339 unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1340 max_bytes = PAGE_CACHE_SIZE - offset;
1341 loops = 1;
1342 goto again;
1343 } else {
1344 found = 0;
1345 goto out_failed;
1346 }
1347 }
1348 BUG_ON(ret);
1349
1350 /* step three, lock the state bits for the whole range */
Chris Mason9655d292009-09-02 15:22:30 -04001351 lock_extent_bits(tree, delalloc_start, delalloc_end,
1352 0, &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001353
1354 /* then test to make sure it is all still delalloc */
1355 ret = test_range_bit(tree, delalloc_start, delalloc_end,
Chris Mason9655d292009-09-02 15:22:30 -04001356 EXTENT_DELALLOC, 1, cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001357 if (!ret) {
Chris Mason9655d292009-09-02 15:22:30 -04001358 unlock_extent_cached(tree, delalloc_start, delalloc_end,
1359 &cached_state, GFP_NOFS);
Chris Masonc8b97812008-10-29 14:49:59 -04001360 __unlock_for_delalloc(inode, locked_page,
1361 delalloc_start, delalloc_end);
1362 cond_resched();
1363 goto again;
1364 }
Chris Mason9655d292009-09-02 15:22:30 -04001365 free_extent_state(cached_state);
Chris Masonc8b97812008-10-29 14:49:59 -04001366 *start = delalloc_start;
1367 *end = delalloc_end;
1368out_failed:
1369 return found;
1370}
1371
1372int extent_clear_unlock_delalloc(struct inode *inode,
1373 struct extent_io_tree *tree,
1374 u64 start, u64 end, struct page *locked_page,
Chris Masona791e352009-10-08 11:27:10 -04001375 unsigned long op)
Chris Masonc8b97812008-10-29 14:49:59 -04001376{
1377 int ret;
1378 struct page *pages[16];
1379 unsigned long index = start >> PAGE_CACHE_SHIFT;
1380 unsigned long end_index = end >> PAGE_CACHE_SHIFT;
1381 unsigned long nr_pages = end_index - index + 1;
1382 int i;
Chris Mason771ed682008-11-06 22:02:51 -05001383 int clear_bits = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001384
Chris Masona791e352009-10-08 11:27:10 -04001385 if (op & EXTENT_CLEAR_UNLOCK)
Chris Mason771ed682008-11-06 22:02:51 -05001386 clear_bits |= EXTENT_LOCKED;
Chris Masona791e352009-10-08 11:27:10 -04001387 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001388 clear_bits |= EXTENT_DIRTY;
1389
Chris Masona791e352009-10-08 11:27:10 -04001390 if (op & EXTENT_CLEAR_DELALLOC)
Chris Mason771ed682008-11-06 22:02:51 -05001391 clear_bits |= EXTENT_DELALLOC;
1392
Chris Mason2c64c532009-09-02 15:04:12 -04001393 clear_extent_bit(tree, start, end, clear_bits, 1, 0, NULL, GFP_NOFS);
Josef Bacik32c00af2009-10-08 13:34:05 -04001394 if (!(op & (EXTENT_CLEAR_UNLOCK_PAGE | EXTENT_CLEAR_DIRTY |
1395 EXTENT_SET_WRITEBACK | EXTENT_END_WRITEBACK |
1396 EXTENT_SET_PRIVATE2)))
Chris Mason771ed682008-11-06 22:02:51 -05001397 return 0;
Chris Masonc8b97812008-10-29 14:49:59 -04001398
Chris Masond3977122009-01-05 21:25:51 -05001399 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -04001400 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -05001401 min_t(unsigned long,
1402 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -04001403 for (i = 0; i < ret; i++) {
Chris Mason8b62b722009-09-02 16:53:46 -04001404
Chris Masona791e352009-10-08 11:27:10 -04001405 if (op & EXTENT_SET_PRIVATE2)
Chris Mason8b62b722009-09-02 16:53:46 -04001406 SetPagePrivate2(pages[i]);
1407
Chris Masonc8b97812008-10-29 14:49:59 -04001408 if (pages[i] == locked_page) {
1409 page_cache_release(pages[i]);
1410 continue;
1411 }
Chris Masona791e352009-10-08 11:27:10 -04001412 if (op & EXTENT_CLEAR_DIRTY)
Chris Masonc8b97812008-10-29 14:49:59 -04001413 clear_page_dirty_for_io(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001414 if (op & EXTENT_SET_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001415 set_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001416 if (op & EXTENT_END_WRITEBACK)
Chris Masonc8b97812008-10-29 14:49:59 -04001417 end_page_writeback(pages[i]);
Chris Masona791e352009-10-08 11:27:10 -04001418 if (op & EXTENT_CLEAR_UNLOCK_PAGE)
Chris Mason771ed682008-11-06 22:02:51 -05001419 unlock_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -04001420 page_cache_release(pages[i]);
1421 }
1422 nr_pages -= ret;
1423 index += ret;
1424 cond_resched();
1425 }
1426 return 0;
1427}
Chris Masonc8b97812008-10-29 14:49:59 -04001428
Chris Masond352ac62008-09-29 15:18:18 -04001429/*
1430 * count the number of bytes in the tree that have a given bit(s)
1431 * set. This can be fairly slow, except for EXTENT_DIRTY which is
1432 * cached. The total number found is returned.
1433 */
Chris Masond1310b22008-01-24 16:13:08 -05001434u64 count_range_bits(struct extent_io_tree *tree,
1435 u64 *start, u64 search_end, u64 max_bytes,
1436 unsigned long bits)
1437{
1438 struct rb_node *node;
1439 struct extent_state *state;
1440 u64 cur_start = *start;
1441 u64 total_bytes = 0;
1442 int found = 0;
1443
1444 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001445 WARN_ON(1);
1446 return 0;
1447 }
1448
Chris Masoncad321a2008-12-17 14:51:42 -05001449 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001450 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1451 total_bytes = tree->dirty_bytes;
1452 goto out;
1453 }
1454 /*
1455 * this search will find all the extents that end after
1456 * our range starts.
1457 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001458 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001459 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001460 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001461
Chris Masond3977122009-01-05 21:25:51 -05001462 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001463 state = rb_entry(node, struct extent_state, rb_node);
1464 if (state->start > search_end)
1465 break;
1466 if (state->end >= cur_start && (state->state & bits)) {
1467 total_bytes += min(search_end, state->end) + 1 -
1468 max(cur_start, state->start);
1469 if (total_bytes >= max_bytes)
1470 break;
1471 if (!found) {
1472 *start = state->start;
1473 found = 1;
1474 }
1475 }
1476 node = rb_next(node);
1477 if (!node)
1478 break;
1479 }
1480out:
Chris Masoncad321a2008-12-17 14:51:42 -05001481 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001482 return total_bytes;
1483}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001484
Chris Masond352ac62008-09-29 15:18:18 -04001485/*
1486 * set the private field for a given byte offset in the tree. If there isn't
1487 * an extent_state there already, this does nothing.
1488 */
Chris Masond1310b22008-01-24 16:13:08 -05001489int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1490{
1491 struct rb_node *node;
1492 struct extent_state *state;
1493 int ret = 0;
1494
Chris Masoncad321a2008-12-17 14:51:42 -05001495 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001496 /*
1497 * this search will find all the extents that end after
1498 * our range starts.
1499 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001500 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001501 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001502 ret = -ENOENT;
1503 goto out;
1504 }
1505 state = rb_entry(node, struct extent_state, rb_node);
1506 if (state->start != start) {
1507 ret = -ENOENT;
1508 goto out;
1509 }
1510 state->private = private;
1511out:
Chris Masoncad321a2008-12-17 14:51:42 -05001512 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001513 return ret;
1514}
1515
1516int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1517{
1518 struct rb_node *node;
1519 struct extent_state *state;
1520 int ret = 0;
1521
Chris Masoncad321a2008-12-17 14:51:42 -05001522 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001523 /*
1524 * this search will find all the extents that end after
1525 * our range starts.
1526 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001527 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001528 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001529 ret = -ENOENT;
1530 goto out;
1531 }
1532 state = rb_entry(node, struct extent_state, rb_node);
1533 if (state->start != start) {
1534 ret = -ENOENT;
1535 goto out;
1536 }
1537 *private = state->private;
1538out:
Chris Masoncad321a2008-12-17 14:51:42 -05001539 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001540 return ret;
1541}
1542
1543/*
1544 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001545 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001546 * has the bits set. Otherwise, 1 is returned if any bit in the
1547 * range is found set.
1548 */
1549int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason9655d292009-09-02 15:22:30 -04001550 int bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001551{
1552 struct extent_state *state = NULL;
1553 struct rb_node *node;
1554 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001555
Chris Masoncad321a2008-12-17 14:51:42 -05001556 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -04001557 if (cached && cached->tree && cached->start == start)
1558 node = &cached->rb_node;
1559 else
1560 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001561 while (node && start <= end) {
1562 state = rb_entry(node, struct extent_state, rb_node);
1563
1564 if (filled && state->start > start) {
1565 bitset = 0;
1566 break;
1567 }
1568
1569 if (state->start > end)
1570 break;
1571
1572 if (state->state & bits) {
1573 bitset = 1;
1574 if (!filled)
1575 break;
1576 } else if (filled) {
1577 bitset = 0;
1578 break;
1579 }
Chris Mason46562cec2009-09-23 20:23:16 -04001580
1581 if (state->end == (u64)-1)
1582 break;
1583
Chris Masond1310b22008-01-24 16:13:08 -05001584 start = state->end + 1;
1585 if (start > end)
1586 break;
1587 node = rb_next(node);
1588 if (!node) {
1589 if (filled)
1590 bitset = 0;
1591 break;
1592 }
1593 }
Chris Masoncad321a2008-12-17 14:51:42 -05001594 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001595 return bitset;
1596}
Chris Masond1310b22008-01-24 16:13:08 -05001597
1598/*
1599 * helper function to set a given page up to date if all the
1600 * extents in the tree for that page are up to date
1601 */
1602static int check_page_uptodate(struct extent_io_tree *tree,
1603 struct page *page)
1604{
1605 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1606 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001607 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001608 SetPageUptodate(page);
1609 return 0;
1610}
1611
1612/*
1613 * helper function to unlock a page if all the extents in the tree
1614 * for that page are unlocked
1615 */
1616static int check_page_locked(struct extent_io_tree *tree,
1617 struct page *page)
1618{
1619 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1620 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001621 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001622 unlock_page(page);
1623 return 0;
1624}
1625
1626/*
1627 * helper function to end page writeback if all the extents
1628 * in the tree for that page are done with writeback
1629 */
1630static int check_page_writeback(struct extent_io_tree *tree,
1631 struct page *page)
1632{
Chris Mason1edbb732009-09-02 13:24:36 -04001633 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001634 return 0;
1635}
1636
1637/* lots and lots of room for performance fixes in the end_bio funcs */
1638
1639/*
1640 * after a writepage IO is done, we need to:
1641 * clear the uptodate bits on error
1642 * clear the writeback bits in the extent tree for this IO
1643 * end_page_writeback if the page has no more pending IO
1644 *
1645 * Scheduling is not allowed, so the extent state tree is expected
1646 * to have one and only one object corresponding to this IO.
1647 */
Chris Masond1310b22008-01-24 16:13:08 -05001648static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001649{
Chris Mason1259ab72008-05-12 13:39:03 -04001650 int uptodate = err == 0;
Chris Masond1310b22008-01-24 16:13:08 -05001651 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001652 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001653 u64 start;
1654 u64 end;
1655 int whole_page;
Chris Mason1259ab72008-05-12 13:39:03 -04001656 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001657
Chris Masond1310b22008-01-24 16:13:08 -05001658 do {
1659 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001660 tree = &BTRFS_I(page->mapping->host)->io_tree;
1661
Chris Masond1310b22008-01-24 16:13:08 -05001662 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1663 bvec->bv_offset;
1664 end = start + bvec->bv_len - 1;
1665
1666 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1667 whole_page = 1;
1668 else
1669 whole_page = 0;
1670
1671 if (--bvec >= bio->bi_io_vec)
1672 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001673 if (tree->ops && tree->ops->writepage_end_io_hook) {
1674 ret = tree->ops->writepage_end_io_hook(page, start,
David Woodhouse902b22f2008-08-20 08:51:49 -04001675 end, NULL, uptodate);
Chris Mason1259ab72008-05-12 13:39:03 -04001676 if (ret)
1677 uptodate = 0;
1678 }
1679
1680 if (!uptodate && tree->ops &&
1681 tree->ops->writepage_io_failed_hook) {
1682 ret = tree->ops->writepage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001683 start, end, NULL);
Chris Mason1259ab72008-05-12 13:39:03 -04001684 if (ret == 0) {
Chris Mason1259ab72008-05-12 13:39:03 -04001685 uptodate = (err == 0);
1686 continue;
1687 }
1688 }
1689
Chris Masond1310b22008-01-24 16:13:08 -05001690 if (!uptodate) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001691 clear_extent_uptodate(tree, start, end, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001692 ClearPageUptodate(page);
1693 SetPageError(page);
1694 }
Chris Mason70dec802008-01-29 09:59:12 -05001695
Chris Masond1310b22008-01-24 16:13:08 -05001696 if (whole_page)
1697 end_page_writeback(page);
1698 else
1699 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05001700 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04001701
Chris Masond1310b22008-01-24 16:13:08 -05001702 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001703}
1704
1705/*
1706 * after a readpage IO is done, we need to:
1707 * clear the uptodate bits on error
1708 * set the uptodate bits if things worked
1709 * set the page up to date if all extents in the tree are uptodate
1710 * clear the lock bit in the extent tree
1711 * unlock the page if there are no other extents locked for it
1712 *
1713 * Scheduling is not allowed, so the extent state tree is expected
1714 * to have one and only one object corresponding to this IO.
1715 */
Chris Masond1310b22008-01-24 16:13:08 -05001716static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001717{
1718 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00001719 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
1720 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04001721 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001722 u64 start;
1723 u64 end;
1724 int whole_page;
1725 int ret;
1726
Chris Masond20f7042008-12-08 16:58:54 -05001727 if (err)
1728 uptodate = 0;
1729
Chris Masond1310b22008-01-24 16:13:08 -05001730 do {
1731 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001732 tree = &BTRFS_I(page->mapping->host)->io_tree;
1733
Chris Masond1310b22008-01-24 16:13:08 -05001734 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1735 bvec->bv_offset;
1736 end = start + bvec->bv_len - 1;
1737
1738 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1739 whole_page = 1;
1740 else
1741 whole_page = 0;
1742
Chris Mason4125bf72010-02-03 18:18:45 +00001743 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05001744 prefetchw(&bvec->bv_page->flags);
1745
1746 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05001747 ret = tree->ops->readpage_end_io_hook(page, start, end,
David Woodhouse902b22f2008-08-20 08:51:49 -04001748 NULL);
Chris Masond1310b22008-01-24 16:13:08 -05001749 if (ret)
1750 uptodate = 0;
1751 }
Chris Mason7e383262008-04-09 16:28:12 -04001752 if (!uptodate && tree->ops &&
1753 tree->ops->readpage_io_failed_hook) {
1754 ret = tree->ops->readpage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001755 start, end, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04001756 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04001757 uptodate =
1758 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001759 if (err)
1760 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001761 continue;
1762 }
1763 }
Chris Mason70dec802008-01-29 09:59:12 -05001764
Chris Mason771ed682008-11-06 22:02:51 -05001765 if (uptodate) {
David Woodhouse902b22f2008-08-20 08:51:49 -04001766 set_extent_uptodate(tree, start, end,
1767 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05001768 }
David Woodhouse902b22f2008-08-20 08:51:49 -04001769 unlock_extent(tree, start, end, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05001770
Chris Mason70dec802008-01-29 09:59:12 -05001771 if (whole_page) {
1772 if (uptodate) {
1773 SetPageUptodate(page);
1774 } else {
1775 ClearPageUptodate(page);
1776 SetPageError(page);
1777 }
Chris Masond1310b22008-01-24 16:13:08 -05001778 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05001779 } else {
1780 if (uptodate) {
1781 check_page_uptodate(tree, page);
1782 } else {
1783 ClearPageUptodate(page);
1784 SetPageError(page);
1785 }
Chris Masond1310b22008-01-24 16:13:08 -05001786 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05001787 }
Chris Mason4125bf72010-02-03 18:18:45 +00001788 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05001789
1790 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001791}
1792
1793/*
1794 * IO done from prepare_write is pretty simple, we just unlock
1795 * the structs in the extent tree when done, and set the uptodate bits
1796 * as appropriate.
1797 */
Chris Masond1310b22008-01-24 16:13:08 -05001798static void end_bio_extent_preparewrite(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001799{
1800 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1801 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001802 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001803 u64 start;
1804 u64 end;
1805
Chris Masond1310b22008-01-24 16:13:08 -05001806 do {
1807 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001808 tree = &BTRFS_I(page->mapping->host)->io_tree;
1809
Chris Masond1310b22008-01-24 16:13:08 -05001810 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1811 bvec->bv_offset;
1812 end = start + bvec->bv_len - 1;
1813
1814 if (--bvec >= bio->bi_io_vec)
1815 prefetchw(&bvec->bv_page->flags);
1816
1817 if (uptodate) {
1818 set_extent_uptodate(tree, start, end, GFP_ATOMIC);
1819 } else {
1820 ClearPageUptodate(page);
1821 SetPageError(page);
1822 }
1823
1824 unlock_extent(tree, start, end, GFP_ATOMIC);
1825
1826 } while (bvec >= bio->bi_io_vec);
1827
1828 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001829}
1830
Miao Xie88f794e2010-11-22 03:02:55 +00001831struct bio *
1832btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
1833 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001834{
1835 struct bio *bio;
1836
1837 bio = bio_alloc(gfp_flags, nr_vecs);
1838
1839 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
1840 while (!bio && (nr_vecs /= 2))
1841 bio = bio_alloc(gfp_flags, nr_vecs);
1842 }
1843
1844 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04001845 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001846 bio->bi_bdev = bdev;
1847 bio->bi_sector = first_sector;
1848 }
1849 return bio;
1850}
1851
Chris Masonc8b97812008-10-29 14:49:59 -04001852static int submit_one_bio(int rw, struct bio *bio, int mirror_num,
1853 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001854{
Chris Masond1310b22008-01-24 16:13:08 -05001855 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05001856 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
1857 struct page *page = bvec->bv_page;
1858 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05001859 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05001860
1861 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05001862
David Woodhouse902b22f2008-08-20 08:51:49 -04001863 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001864
1865 bio_get(bio);
1866
Chris Mason065631f2008-02-20 12:07:25 -05001867 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00001868 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001869 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04001870 else
1871 submit_bio(rw, bio);
Chris Masond1310b22008-01-24 16:13:08 -05001872 if (bio_flagged(bio, BIO_EOPNOTSUPP))
1873 ret = -EOPNOTSUPP;
1874 bio_put(bio);
1875 return ret;
1876}
1877
1878static int submit_extent_page(int rw, struct extent_io_tree *tree,
1879 struct page *page, sector_t sector,
1880 size_t size, unsigned long offset,
1881 struct block_device *bdev,
1882 struct bio **bio_ret,
1883 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04001884 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04001885 int mirror_num,
1886 unsigned long prev_bio_flags,
1887 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001888{
1889 int ret = 0;
1890 struct bio *bio;
1891 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04001892 int contig = 0;
1893 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
1894 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05001895 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05001896
1897 if (bio_ret && *bio_ret) {
1898 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001899 if (old_compressed)
1900 contig = bio->bi_sector == sector;
1901 else
1902 contig = bio->bi_sector + (bio->bi_size >> 9) ==
1903 sector;
1904
1905 if (prev_bio_flags != bio_flags || !contig ||
Chris Mason239b14b2008-03-24 15:02:07 -04001906 (tree->ops && tree->ops->merge_bio_hook &&
Chris Masonc8b97812008-10-29 14:49:59 -04001907 tree->ops->merge_bio_hook(page, offset, page_size, bio,
1908 bio_flags)) ||
1909 bio_add_page(bio, page, page_size, offset) < page_size) {
1910 ret = submit_one_bio(rw, bio, mirror_num,
1911 prev_bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001912 bio = NULL;
1913 } else {
1914 return 0;
1915 }
1916 }
Chris Masonc8b97812008-10-29 14:49:59 -04001917 if (this_compressed)
1918 nr = BIO_MAX_PAGES;
1919 else
1920 nr = bio_get_nr_vecs(bdev);
1921
Miao Xie88f794e2010-11-22 03:02:55 +00001922 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00001923 if (!bio)
1924 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05001925
Chris Masonc8b97812008-10-29 14:49:59 -04001926 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05001927 bio->bi_end_io = end_io_func;
1928 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05001929
Chris Masond3977122009-01-05 21:25:51 -05001930 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05001931 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05001932 else
Chris Masonc8b97812008-10-29 14:49:59 -04001933 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001934
1935 return ret;
1936}
1937
1938void set_page_extent_mapped(struct page *page)
1939{
1940 if (!PagePrivate(page)) {
1941 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001942 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04001943 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05001944 }
1945}
1946
Christoph Hellwigb2950862008-12-02 09:54:17 -05001947static void set_page_extent_head(struct page *page, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05001948{
Chris Masoneb14ab82011-02-10 12:35:00 -05001949 WARN_ON(!PagePrivate(page));
Chris Masond1310b22008-01-24 16:13:08 -05001950 set_page_private(page, EXTENT_PAGE_PRIVATE_FIRST_PAGE | len << 2);
1951}
1952
1953/*
1954 * basic readpage implementation. Locked extent state structs are inserted
1955 * into the tree that are removed when the IO is done (by the end_io
1956 * handlers)
1957 */
1958static int __extent_read_full_page(struct extent_io_tree *tree,
1959 struct page *page,
1960 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04001961 struct bio **bio, int mirror_num,
1962 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001963{
1964 struct inode *inode = page->mapping->host;
1965 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1966 u64 page_end = start + PAGE_CACHE_SIZE - 1;
1967 u64 end;
1968 u64 cur = start;
1969 u64 extent_offset;
1970 u64 last_byte = i_size_read(inode);
1971 u64 block_start;
1972 u64 cur_end;
1973 sector_t sector;
1974 struct extent_map *em;
1975 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001976 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05001977 int ret;
1978 int nr = 0;
1979 size_t page_offset = 0;
1980 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04001981 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05001982 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04001983 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001984
1985 set_page_extent_mapped(page);
1986
1987 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001988 while (1) {
1989 lock_extent(tree, start, end, GFP_NOFS);
1990 ordered = btrfs_lookup_ordered_extent(inode, start);
1991 if (!ordered)
1992 break;
1993 unlock_extent(tree, start, end, GFP_NOFS);
1994 btrfs_start_ordered_extent(inode, ordered, 1);
1995 btrfs_put_ordered_extent(ordered);
1996 }
Chris Masond1310b22008-01-24 16:13:08 -05001997
Chris Masonc8b97812008-10-29 14:49:59 -04001998 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
1999 char *userpage;
2000 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2001
2002 if (zero_offset) {
2003 iosize = PAGE_CACHE_SIZE - zero_offset;
2004 userpage = kmap_atomic(page, KM_USER0);
2005 memset(userpage + zero_offset, 0, iosize);
2006 flush_dcache_page(page);
2007 kunmap_atomic(userpage, KM_USER0);
2008 }
2009 }
Chris Masond1310b22008-01-24 16:13:08 -05002010 while (cur <= end) {
2011 if (cur >= last_byte) {
2012 char *userpage;
2013 iosize = PAGE_CACHE_SIZE - page_offset;
2014 userpage = kmap_atomic(page, KM_USER0);
2015 memset(userpage + page_offset, 0, iosize);
2016 flush_dcache_page(page);
2017 kunmap_atomic(userpage, KM_USER0);
2018 set_extent_uptodate(tree, cur, cur + iosize - 1,
2019 GFP_NOFS);
2020 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2021 break;
2022 }
2023 em = get_extent(inode, page, page_offset, cur,
2024 end - cur + 1, 0);
2025 if (IS_ERR(em) || !em) {
2026 SetPageError(page);
2027 unlock_extent(tree, cur, end, GFP_NOFS);
2028 break;
2029 }
Chris Masond1310b22008-01-24 16:13:08 -05002030 extent_offset = cur - em->start;
2031 BUG_ON(extent_map_end(em) <= cur);
2032 BUG_ON(end < cur);
2033
Li Zefan261507a02010-12-17 14:21:50 +08002034 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002035 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002036 extent_set_compress_type(&this_bio_flag,
2037 em->compress_type);
2038 }
Chris Masonc8b97812008-10-29 14:49:59 -04002039
Chris Masond1310b22008-01-24 16:13:08 -05002040 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2041 cur_end = min(extent_map_end(em) - 1, end);
2042 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002043 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2044 disk_io_size = em->block_len;
2045 sector = em->block_start >> 9;
2046 } else {
2047 sector = (em->block_start + extent_offset) >> 9;
2048 disk_io_size = iosize;
2049 }
Chris Masond1310b22008-01-24 16:13:08 -05002050 bdev = em->bdev;
2051 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002052 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2053 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002054 free_extent_map(em);
2055 em = NULL;
2056
2057 /* we've found a hole, just zero and go on */
2058 if (block_start == EXTENT_MAP_HOLE) {
2059 char *userpage;
2060 userpage = kmap_atomic(page, KM_USER0);
2061 memset(userpage + page_offset, 0, iosize);
2062 flush_dcache_page(page);
2063 kunmap_atomic(userpage, KM_USER0);
2064
2065 set_extent_uptodate(tree, cur, cur + iosize - 1,
2066 GFP_NOFS);
2067 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2068 cur = cur + iosize;
2069 page_offset += iosize;
2070 continue;
2071 }
2072 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002073 if (test_range_bit(tree, cur, cur_end,
2074 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002075 check_page_uptodate(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002076 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2077 cur = cur + iosize;
2078 page_offset += iosize;
2079 continue;
2080 }
Chris Mason70dec802008-01-29 09:59:12 -05002081 /* we have an inline extent but it didn't get marked up
2082 * to date. Error out
2083 */
2084 if (block_start == EXTENT_MAP_INLINE) {
2085 SetPageError(page);
2086 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2087 cur = cur + iosize;
2088 page_offset += iosize;
2089 continue;
2090 }
Chris Masond1310b22008-01-24 16:13:08 -05002091
2092 ret = 0;
2093 if (tree->ops && tree->ops->readpage_io_hook) {
2094 ret = tree->ops->readpage_io_hook(page, cur,
2095 cur + iosize - 1);
2096 }
2097 if (!ret) {
Chris Mason89642222008-07-24 09:41:53 -04002098 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2099 pnr -= page->index;
Chris Masond1310b22008-01-24 16:13:08 -05002100 ret = submit_extent_page(READ, tree, page,
Chris Masonc8b97812008-10-29 14:49:59 -04002101 sector, disk_io_size, page_offset,
Chris Mason89642222008-07-24 09:41:53 -04002102 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002103 end_bio_extent_readpage, mirror_num,
2104 *bio_flags,
2105 this_bio_flag);
Chris Mason89642222008-07-24 09:41:53 -04002106 nr++;
Chris Masonc8b97812008-10-29 14:49:59 -04002107 *bio_flags = this_bio_flag;
Chris Masond1310b22008-01-24 16:13:08 -05002108 }
2109 if (ret)
2110 SetPageError(page);
2111 cur = cur + iosize;
2112 page_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002113 }
2114 if (!nr) {
2115 if (!PageError(page))
2116 SetPageUptodate(page);
2117 unlock_page(page);
2118 }
2119 return 0;
2120}
2121
2122int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
2123 get_extent_t *get_extent)
2124{
2125 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002126 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002127 int ret;
2128
Chris Masonc8b97812008-10-29 14:49:59 -04002129 ret = __extent_read_full_page(tree, page, get_extent, &bio, 0,
2130 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002131 if (bio)
liubo6b82ce82011-01-26 06:21:39 +00002132 ret = submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002133 return ret;
2134}
Chris Masond1310b22008-01-24 16:13:08 -05002135
Chris Mason11c83492009-04-20 15:50:09 -04002136static noinline void update_nr_written(struct page *page,
2137 struct writeback_control *wbc,
2138 unsigned long nr_written)
2139{
2140 wbc->nr_to_write -= nr_written;
2141 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2142 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2143 page->mapping->writeback_index = page->index + nr_written;
2144}
2145
Chris Masond1310b22008-01-24 16:13:08 -05002146/*
2147 * the writepage semantics are similar to regular writepage. extent
2148 * records are inserted to lock ranges in the tree, and as dirty areas
2149 * are found, they are marked writeback. Then the lock bits are removed
2150 * and the end_io handler clears the writeback ranges
2151 */
2152static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2153 void *data)
2154{
2155 struct inode *inode = page->mapping->host;
2156 struct extent_page_data *epd = data;
2157 struct extent_io_tree *tree = epd->tree;
2158 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2159 u64 delalloc_start;
2160 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2161 u64 end;
2162 u64 cur = start;
2163 u64 extent_offset;
2164 u64 last_byte = i_size_read(inode);
2165 u64 block_start;
2166 u64 iosize;
2167 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002168 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002169 struct extent_map *em;
2170 struct block_device *bdev;
2171 int ret;
2172 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002173 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002174 size_t blocksize;
2175 loff_t i_size = i_size_read(inode);
2176 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2177 u64 nr_delalloc;
2178 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002179 int page_started;
2180 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002181 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002182 unsigned long nr_written = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002183
Chris Masonffbd5172009-04-20 15:50:09 -04002184 if (wbc->sync_mode == WB_SYNC_ALL)
2185 write_flags = WRITE_SYNC_PLUG;
2186 else
2187 write_flags = WRITE;
2188
Chris Masond1310b22008-01-24 16:13:08 -05002189 WARN_ON(!PageLocked(page));
Chris Mason7f3c74f2008-07-18 12:01:11 -04002190 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002191 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002192 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002193 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002194 unlock_page(page);
2195 return 0;
2196 }
2197
2198 if (page->index == end_index) {
2199 char *userpage;
2200
Chris Masond1310b22008-01-24 16:13:08 -05002201 userpage = kmap_atomic(page, KM_USER0);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002202 memset(userpage + pg_offset, 0,
2203 PAGE_CACHE_SIZE - pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002204 kunmap_atomic(userpage, KM_USER0);
Chris Mason211c17f2008-05-15 09:13:45 -04002205 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002206 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002207 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002208
2209 set_page_extent_mapped(page);
2210
2211 delalloc_start = start;
2212 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002213 page_started = 0;
Chris Mason771ed682008-11-06 22:02:51 -05002214 if (!epd->extent_locked) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002215 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002216 /*
2217 * make sure the wbc mapping index is at least updated
2218 * to this page.
2219 */
2220 update_nr_written(page, wbc, 0);
2221
Chris Masond3977122009-01-05 21:25:51 -05002222 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002223 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002224 page,
2225 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002226 &delalloc_end,
2227 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002228 if (nr_delalloc == 0) {
2229 delalloc_start = delalloc_end + 1;
2230 continue;
2231 }
2232 tree->ops->fill_delalloc(inode, page, delalloc_start,
2233 delalloc_end, &page_started,
2234 &nr_written);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002235 /*
2236 * delalloc_end is already one less than the total
2237 * length, so we don't subtract one from
2238 * PAGE_CACHE_SIZE
2239 */
2240 delalloc_to_write += (delalloc_end - delalloc_start +
2241 PAGE_CACHE_SIZE) >>
2242 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002243 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002244 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002245 if (wbc->nr_to_write < delalloc_to_write) {
2246 int thresh = 8192;
2247
2248 if (delalloc_to_write < thresh * 2)
2249 thresh = delalloc_to_write;
2250 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2251 thresh);
2252 }
Chris Masonc8b97812008-10-29 14:49:59 -04002253
Chris Mason771ed682008-11-06 22:02:51 -05002254 /* did the fill delalloc function already unlock and start
2255 * the IO?
2256 */
2257 if (page_started) {
2258 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002259 /*
2260 * we've unlocked the page, so we can't update
2261 * the mapping's writeback index, just update
2262 * nr_to_write.
2263 */
2264 wbc->nr_to_write -= nr_written;
2265 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002266 }
Chris Masonc8b97812008-10-29 14:49:59 -04002267 }
Chris Mason247e7432008-07-17 12:53:51 -04002268 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002269 ret = tree->ops->writepage_start_hook(page, start,
2270 page_end);
Chris Mason247e7432008-07-17 12:53:51 -04002271 if (ret == -EAGAIN) {
Chris Mason247e7432008-07-17 12:53:51 -04002272 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002273 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002274 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002275 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002276 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002277 }
2278 }
2279
Chris Mason11c83492009-04-20 15:50:09 -04002280 /*
2281 * we don't want to touch the inode after unlocking the page,
2282 * so we update the mapping writeback index now
2283 */
2284 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002285
Chris Masond1310b22008-01-24 16:13:08 -05002286 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002287 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002288 if (tree->ops && tree->ops->writepage_end_io_hook)
2289 tree->ops->writepage_end_io_hook(page, start,
2290 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002291 goto done;
2292 }
2293
Chris Masond1310b22008-01-24 16:13:08 -05002294 blocksize = inode->i_sb->s_blocksize;
2295
2296 while (cur <= end) {
2297 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002298 if (tree->ops && tree->ops->writepage_end_io_hook)
2299 tree->ops->writepage_end_io_hook(page, cur,
2300 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002301 break;
2302 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002303 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002304 end - cur + 1, 1);
2305 if (IS_ERR(em) || !em) {
2306 SetPageError(page);
2307 break;
2308 }
2309
2310 extent_offset = cur - em->start;
2311 BUG_ON(extent_map_end(em) <= cur);
2312 BUG_ON(end < cur);
2313 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2314 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2315 sector = (em->block_start + extent_offset) >> 9;
2316 bdev = em->bdev;
2317 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002318 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002319 free_extent_map(em);
2320 em = NULL;
2321
Chris Masonc8b97812008-10-29 14:49:59 -04002322 /*
2323 * compressed and inline extents are written through other
2324 * paths in the FS
2325 */
2326 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002327 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002328 /*
2329 * end_io notification does not happen here for
2330 * compressed extents
2331 */
2332 if (!compressed && tree->ops &&
2333 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002334 tree->ops->writepage_end_io_hook(page, cur,
2335 cur + iosize - 1,
2336 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002337 else if (compressed) {
2338 /* we don't want to end_page_writeback on
2339 * a compressed extent. this happens
2340 * elsewhere
2341 */
2342 nr++;
2343 }
2344
2345 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002346 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002347 continue;
2348 }
Chris Masond1310b22008-01-24 16:13:08 -05002349 /* leave this out until we have a page_mkwrite call */
2350 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04002351 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002352 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002353 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002354 continue;
2355 }
Chris Masonc8b97812008-10-29 14:49:59 -04002356
Chris Masond1310b22008-01-24 16:13:08 -05002357 if (tree->ops && tree->ops->writepage_io_hook) {
2358 ret = tree->ops->writepage_io_hook(page, cur,
2359 cur + iosize - 1);
2360 } else {
2361 ret = 0;
2362 }
Chris Mason1259ab72008-05-12 13:39:03 -04002363 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05002364 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04002365 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002366 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002367
Chris Masond1310b22008-01-24 16:13:08 -05002368 set_range_writeback(tree, cur, cur + iosize - 1);
2369 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05002370 printk(KERN_ERR "btrfs warning page %lu not "
2371 "writeback, cur %llu end %llu\n",
2372 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05002373 (unsigned long long)end);
2374 }
2375
Chris Masonffbd5172009-04-20 15:50:09 -04002376 ret = submit_extent_page(write_flags, tree, page,
2377 sector, iosize, pg_offset,
2378 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04002379 end_bio_extent_writepage,
2380 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002381 if (ret)
2382 SetPageError(page);
2383 }
2384 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002385 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002386 nr++;
2387 }
2388done:
2389 if (nr == 0) {
2390 /* make sure the mapping tag for page dirty gets cleared */
2391 set_page_writeback(page);
2392 end_page_writeback(page);
2393 }
Chris Masond1310b22008-01-24 16:13:08 -05002394 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002395
Chris Mason11c83492009-04-20 15:50:09 -04002396done_unlocked:
2397
Chris Mason2c64c532009-09-02 15:04:12 -04002398 /* drop our reference on any cached states */
2399 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05002400 return 0;
2401}
2402
Chris Masond1310b22008-01-24 16:13:08 -05002403/**
Chris Mason4bef0842008-09-08 11:18:08 -04002404 * 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 -05002405 * @mapping: address space structure to write
2406 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2407 * @writepage: function called for each page
2408 * @data: data passed to writepage function
2409 *
2410 * If a page is already under I/O, write_cache_pages() skips it, even
2411 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2412 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2413 * and msync() need to guarantee that all the data which was dirty at the time
2414 * the call was made get new I/O started against them. If wbc->sync_mode is
2415 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2416 * existing IO to complete.
2417 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002418static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04002419 struct address_space *mapping,
2420 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002421 writepage_t writepage, void *data,
2422 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05002423{
Chris Masond1310b22008-01-24 16:13:08 -05002424 int ret = 0;
2425 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002426 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002427 struct pagevec pvec;
2428 int nr_pages;
2429 pgoff_t index;
2430 pgoff_t end; /* Inclusive */
2431 int scanned = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002432
Chris Masond1310b22008-01-24 16:13:08 -05002433 pagevec_init(&pvec, 0);
2434 if (wbc->range_cyclic) {
2435 index = mapping->writeback_index; /* Start from prev offset */
2436 end = -1;
2437 } else {
2438 index = wbc->range_start >> PAGE_CACHE_SHIFT;
2439 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002440 scanned = 1;
2441 }
2442retry:
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002443 while (!done && !nr_to_write_done && (index <= end) &&
Chris Masond1310b22008-01-24 16:13:08 -05002444 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
Chris Masond3977122009-01-05 21:25:51 -05002445 PAGECACHE_TAG_DIRTY, min(end - index,
2446 (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05002447 unsigned i;
2448
2449 scanned = 1;
2450 for (i = 0; i < nr_pages; i++) {
2451 struct page *page = pvec.pages[i];
2452
2453 /*
2454 * At this point we hold neither mapping->tree_lock nor
2455 * lock on the page itself: the page may be truncated or
2456 * invalidated (changing page->mapping to NULL), or even
2457 * swizzled back from swapper_space to tmpfs file
2458 * mapping
2459 */
Chris Mason4bef0842008-09-08 11:18:08 -04002460 if (tree->ops && tree->ops->write_cache_pages_lock_hook)
2461 tree->ops->write_cache_pages_lock_hook(page);
2462 else
2463 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002464
2465 if (unlikely(page->mapping != mapping)) {
2466 unlock_page(page);
2467 continue;
2468 }
2469
2470 if (!wbc->range_cyclic && page->index > end) {
2471 done = 1;
2472 unlock_page(page);
2473 continue;
2474 }
2475
Chris Masond2c3f4f2008-11-19 12:44:22 -05002476 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05002477 if (PageWriteback(page))
2478 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05002479 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002480 }
Chris Masond1310b22008-01-24 16:13:08 -05002481
2482 if (PageWriteback(page) ||
2483 !clear_page_dirty_for_io(page)) {
2484 unlock_page(page);
2485 continue;
2486 }
2487
2488 ret = (*writepage)(page, wbc, data);
2489
2490 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
2491 unlock_page(page);
2492 ret = 0;
2493 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002494 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002495 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002496
2497 /*
2498 * the filesystem may choose to bump up nr_to_write.
2499 * We have to make sure to honor the new nr_to_write
2500 * at any time
2501 */
2502 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05002503 }
2504 pagevec_release(&pvec);
2505 cond_resched();
2506 }
2507 if (!scanned && !done) {
2508 /*
2509 * We hit the last page and there is more work to be done: wrap
2510 * back to the start of the file
2511 */
2512 scanned = 1;
2513 index = 0;
2514 goto retry;
2515 }
Chris Masond1310b22008-01-24 16:13:08 -05002516 return ret;
2517}
Chris Masond1310b22008-01-24 16:13:08 -05002518
Chris Masonffbd5172009-04-20 15:50:09 -04002519static void flush_epd_write_bio(struct extent_page_data *epd)
2520{
2521 if (epd->bio) {
2522 if (epd->sync_io)
2523 submit_one_bio(WRITE_SYNC, epd->bio, 0, 0);
2524 else
2525 submit_one_bio(WRITE, epd->bio, 0, 0);
2526 epd->bio = NULL;
2527 }
2528}
2529
Chris Masond2c3f4f2008-11-19 12:44:22 -05002530static noinline void flush_write_bio(void *data)
2531{
2532 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04002533 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002534}
2535
Chris Masond1310b22008-01-24 16:13:08 -05002536int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
2537 get_extent_t *get_extent,
2538 struct writeback_control *wbc)
2539{
2540 int ret;
2541 struct address_space *mapping = page->mapping;
2542 struct extent_page_data epd = {
2543 .bio = NULL,
2544 .tree = tree,
2545 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002546 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002547 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002548 };
2549 struct writeback_control wbc_writepages = {
Chris Masond313d7a2009-04-20 15:50:09 -04002550 .sync_mode = wbc->sync_mode,
Chris Masond1310b22008-01-24 16:13:08 -05002551 .older_than_this = NULL,
2552 .nr_to_write = 64,
2553 .range_start = page_offset(page) + PAGE_CACHE_SIZE,
2554 .range_end = (loff_t)-1,
2555 };
2556
Chris Masond1310b22008-01-24 16:13:08 -05002557 ret = __extent_writepage(page, wbc, &epd);
2558
Chris Mason4bef0842008-09-08 11:18:08 -04002559 extent_write_cache_pages(tree, mapping, &wbc_writepages,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002560 __extent_writepage, &epd, flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002561 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002562 return ret;
2563}
Chris Masond1310b22008-01-24 16:13:08 -05002564
Chris Mason771ed682008-11-06 22:02:51 -05002565int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
2566 u64 start, u64 end, get_extent_t *get_extent,
2567 int mode)
2568{
2569 int ret = 0;
2570 struct address_space *mapping = inode->i_mapping;
2571 struct page *page;
2572 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
2573 PAGE_CACHE_SHIFT;
2574
2575 struct extent_page_data epd = {
2576 .bio = NULL,
2577 .tree = tree,
2578 .get_extent = get_extent,
2579 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04002580 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05002581 };
2582 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05002583 .sync_mode = mode,
2584 .older_than_this = NULL,
2585 .nr_to_write = nr_pages * 2,
2586 .range_start = start,
2587 .range_end = end + 1,
2588 };
2589
Chris Masond3977122009-01-05 21:25:51 -05002590 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05002591 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
2592 if (clear_page_dirty_for_io(page))
2593 ret = __extent_writepage(page, &wbc_writepages, &epd);
2594 else {
2595 if (tree->ops && tree->ops->writepage_end_io_hook)
2596 tree->ops->writepage_end_io_hook(page, start,
2597 start + PAGE_CACHE_SIZE - 1,
2598 NULL, 1);
2599 unlock_page(page);
2600 }
2601 page_cache_release(page);
2602 start += PAGE_CACHE_SIZE;
2603 }
2604
Chris Masonffbd5172009-04-20 15:50:09 -04002605 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05002606 return ret;
2607}
Chris Masond1310b22008-01-24 16:13:08 -05002608
2609int extent_writepages(struct extent_io_tree *tree,
2610 struct address_space *mapping,
2611 get_extent_t *get_extent,
2612 struct writeback_control *wbc)
2613{
2614 int ret = 0;
2615 struct extent_page_data epd = {
2616 .bio = NULL,
2617 .tree = tree,
2618 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002619 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002620 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002621 };
2622
Chris Mason4bef0842008-09-08 11:18:08 -04002623 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002624 __extent_writepage, &epd,
2625 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002626 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002627 return ret;
2628}
Chris Masond1310b22008-01-24 16:13:08 -05002629
2630int extent_readpages(struct extent_io_tree *tree,
2631 struct address_space *mapping,
2632 struct list_head *pages, unsigned nr_pages,
2633 get_extent_t get_extent)
2634{
2635 struct bio *bio = NULL;
2636 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04002637 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002638
Chris Masond1310b22008-01-24 16:13:08 -05002639 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
2640 struct page *page = list_entry(pages->prev, struct page, lru);
2641
2642 prefetchw(&page->flags);
2643 list_del(&page->lru);
Nick Piggin28ecb6092010-03-17 13:31:04 +00002644 if (!add_to_page_cache_lru(page, mapping,
Chris Masond1310b22008-01-24 16:13:08 -05002645 page->index, GFP_KERNEL)) {
Chris Masonf1885912008-04-09 16:28:12 -04002646 __extent_read_full_page(tree, page, get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002647 &bio, 0, &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002648 }
2649 page_cache_release(page);
2650 }
Chris Masond1310b22008-01-24 16:13:08 -05002651 BUG_ON(!list_empty(pages));
2652 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002653 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002654 return 0;
2655}
Chris Masond1310b22008-01-24 16:13:08 -05002656
2657/*
2658 * basic invalidatepage code, this waits on any locked or writeback
2659 * ranges corresponding to the page, and then deletes any extent state
2660 * records from the tree
2661 */
2662int extent_invalidatepage(struct extent_io_tree *tree,
2663 struct page *page, unsigned long offset)
2664{
Josef Bacik2ac55d42010-02-03 19:33:23 +00002665 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002666 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
2667 u64 end = start + PAGE_CACHE_SIZE - 1;
2668 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
2669
Chris Masond3977122009-01-05 21:25:51 -05002670 start += (offset + blocksize - 1) & ~(blocksize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002671 if (start > end)
2672 return 0;
2673
Josef Bacik2ac55d42010-02-03 19:33:23 +00002674 lock_extent_bits(tree, start, end, 0, &cached_state, GFP_NOFS);
Chris Mason1edbb732009-09-02 13:24:36 -04002675 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002676 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04002677 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2678 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00002679 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002680 return 0;
2681}
Chris Masond1310b22008-01-24 16:13:08 -05002682
2683/*
2684 * simple commit_write call, set_range_dirty is used to mark both
2685 * the pages and the extent records as dirty
2686 */
2687int extent_commit_write(struct extent_io_tree *tree,
2688 struct inode *inode, struct page *page,
2689 unsigned from, unsigned to)
2690{
2691 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2692
2693 set_page_extent_mapped(page);
2694 set_page_dirty(page);
2695
2696 if (pos > inode->i_size) {
2697 i_size_write(inode, pos);
2698 mark_inode_dirty(inode);
2699 }
2700 return 0;
2701}
Chris Masond1310b22008-01-24 16:13:08 -05002702
2703int extent_prepare_write(struct extent_io_tree *tree,
2704 struct inode *inode, struct page *page,
2705 unsigned from, unsigned to, get_extent_t *get_extent)
2706{
2707 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2708 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
2709 u64 block_start;
2710 u64 orig_block_start;
2711 u64 block_end;
2712 u64 cur_end;
2713 struct extent_map *em;
2714 unsigned blocksize = 1 << inode->i_blkbits;
2715 size_t page_offset = 0;
2716 size_t block_off_start;
2717 size_t block_off_end;
2718 int err = 0;
2719 int iocount = 0;
2720 int ret = 0;
2721 int isnew;
2722
2723 set_page_extent_mapped(page);
2724
2725 block_start = (page_start + from) & ~((u64)blocksize - 1);
2726 block_end = (page_start + to - 1) | (blocksize - 1);
2727 orig_block_start = block_start;
2728
2729 lock_extent(tree, page_start, page_end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05002730 while (block_start <= block_end) {
Chris Masond1310b22008-01-24 16:13:08 -05002731 em = get_extent(inode, page, page_offset, block_start,
2732 block_end - block_start + 1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002733 if (IS_ERR(em) || !em)
Chris Masond1310b22008-01-24 16:13:08 -05002734 goto err;
Chris Masond3977122009-01-05 21:25:51 -05002735
Chris Masond1310b22008-01-24 16:13:08 -05002736 cur_end = min(block_end, extent_map_end(em) - 1);
2737 block_off_start = block_start & (PAGE_CACHE_SIZE - 1);
2738 block_off_end = block_off_start + blocksize;
2739 isnew = clear_extent_new(tree, block_start, cur_end, GFP_NOFS);
2740
2741 if (!PageUptodate(page) && isnew &&
2742 (block_off_end > to || block_off_start < from)) {
2743 void *kaddr;
2744
2745 kaddr = kmap_atomic(page, KM_USER0);
2746 if (block_off_end > to)
2747 memset(kaddr + to, 0, block_off_end - to);
2748 if (block_off_start < from)
2749 memset(kaddr + block_off_start, 0,
2750 from - block_off_start);
2751 flush_dcache_page(page);
2752 kunmap_atomic(kaddr, KM_USER0);
2753 }
2754 if ((em->block_start != EXTENT_MAP_HOLE &&
2755 em->block_start != EXTENT_MAP_INLINE) &&
2756 !isnew && !PageUptodate(page) &&
2757 (block_off_end > to || block_off_start < from) &&
2758 !test_range_bit(tree, block_start, cur_end,
Chris Mason9655d292009-09-02 15:22:30 -04002759 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002760 u64 sector;
2761 u64 extent_offset = block_start - em->start;
2762 size_t iosize;
2763 sector = (em->block_start + extent_offset) >> 9;
2764 iosize = (cur_end - block_start + blocksize) &
2765 ~((u64)blocksize - 1);
2766 /*
2767 * we've already got the extent locked, but we
2768 * need to split the state such that our end_bio
2769 * handler can clear the lock.
2770 */
2771 set_extent_bit(tree, block_start,
2772 block_start + iosize - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04002773 EXTENT_LOCKED, 0, NULL, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002774 ret = submit_extent_page(READ, tree, page,
2775 sector, iosize, page_offset, em->bdev,
2776 NULL, 1,
Chris Masonc8b97812008-10-29 14:49:59 -04002777 end_bio_extent_preparewrite, 0,
2778 0, 0);
Andi Kleen411fc6b2010-10-29 15:14:31 -04002779 if (ret && !err)
2780 err = ret;
Chris Masond1310b22008-01-24 16:13:08 -05002781 iocount++;
2782 block_start = block_start + iosize;
2783 } else {
2784 set_extent_uptodate(tree, block_start, cur_end,
2785 GFP_NOFS);
2786 unlock_extent(tree, block_start, cur_end, GFP_NOFS);
2787 block_start = cur_end + 1;
2788 }
2789 page_offset = block_start & (PAGE_CACHE_SIZE - 1);
2790 free_extent_map(em);
2791 }
2792 if (iocount) {
2793 wait_extent_bit(tree, orig_block_start,
2794 block_end, EXTENT_LOCKED);
2795 }
2796 check_page_uptodate(tree, page);
2797err:
2798 /* FIXME, zero out newly allocated blocks on error */
2799 return err;
2800}
Chris Masond1310b22008-01-24 16:13:08 -05002801
2802/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04002803 * a helper for releasepage, this tests for areas of the page that
2804 * are locked or under IO and drops the related state bits if it is safe
2805 * to drop the page.
2806 */
2807int try_release_extent_state(struct extent_map_tree *map,
2808 struct extent_io_tree *tree, struct page *page,
2809 gfp_t mask)
2810{
2811 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2812 u64 end = start + PAGE_CACHE_SIZE - 1;
2813 int ret = 1;
2814
Chris Mason211f90e2008-07-18 11:56:15 -04002815 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04002816 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04002817 ret = 0;
2818 else {
2819 if ((mask & GFP_NOFS) == GFP_NOFS)
2820 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04002821 /*
2822 * at this point we can safely clear everything except the
2823 * locked bit and the nodatasum bit
2824 */
Chris Masone3f24cc2011-02-14 12:52:08 -05002825 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04002826 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
2827 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05002828
2829 /* if clear_extent_bit failed for enomem reasons,
2830 * we can't allow the release to continue.
2831 */
2832 if (ret < 0)
2833 ret = 0;
2834 else
2835 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002836 }
2837 return ret;
2838}
Chris Mason7b13b7b2008-04-18 10:29:50 -04002839
2840/*
Chris Masond1310b22008-01-24 16:13:08 -05002841 * a helper for releasepage. As long as there are no locked extents
2842 * in the range corresponding to the page, both state records and extent
2843 * map records are removed
2844 */
2845int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05002846 struct extent_io_tree *tree, struct page *page,
2847 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05002848{
2849 struct extent_map *em;
2850 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2851 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002852
Chris Mason70dec802008-01-29 09:59:12 -05002853 if ((mask & __GFP_WAIT) &&
2854 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05002855 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05002856 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05002857 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04002858 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05002859 em = lookup_extent_mapping(map, start, len);
Chris Mason70dec802008-01-29 09:59:12 -05002860 if (!em || IS_ERR(em)) {
Chris Mason890871b2009-09-02 16:24:52 -04002861 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002862 break;
2863 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002864 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
2865 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04002866 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002867 free_extent_map(em);
2868 break;
2869 }
2870 if (!test_range_bit(tree, em->start,
2871 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04002872 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04002873 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05002874 remove_extent_mapping(map, em);
2875 /* once for the rb tree */
2876 free_extent_map(em);
2877 }
2878 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04002879 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002880
2881 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05002882 free_extent_map(em);
2883 }
Chris Masond1310b22008-01-24 16:13:08 -05002884 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04002885 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05002886}
Chris Masond1310b22008-01-24 16:13:08 -05002887
2888sector_t extent_bmap(struct address_space *mapping, sector_t iblock,
2889 get_extent_t *get_extent)
2890{
2891 struct inode *inode = mapping->host;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002892 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002893 u64 start = iblock << inode->i_blkbits;
2894 sector_t sector = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002895 size_t blksize = (1 << inode->i_blkbits);
Chris Masond1310b22008-01-24 16:13:08 -05002896 struct extent_map *em;
2897
Josef Bacik2ac55d42010-02-03 19:33:23 +00002898 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + blksize - 1,
2899 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04002900 em = get_extent(inode, NULL, 0, start, blksize, 0);
Josef Bacik2ac55d42010-02-03 19:33:23 +00002901 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start,
2902 start + blksize - 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002903 if (!em || IS_ERR(em))
2904 return 0;
2905
Yan Zhengd899e052008-10-30 14:25:28 -04002906 if (em->block_start > EXTENT_MAP_LAST_BYTE)
Chris Masond1310b22008-01-24 16:13:08 -05002907 goto out;
2908
2909 sector = (em->block_start + start - em->start) >> inode->i_blkbits;
Chris Masond1310b22008-01-24 16:13:08 -05002910out:
2911 free_extent_map(em);
2912 return sector;
2913}
2914
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002915int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2916 __u64 start, __u64 len, get_extent_t *get_extent)
2917{
Josef Bacik975f84f2010-11-23 19:36:57 +00002918 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002919 u64 off = start;
2920 u64 max = start + len;
2921 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00002922 u32 found_type;
2923 u64 last;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002924 u64 disko = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00002925 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002926 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002927 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00002928 struct btrfs_path *path;
2929 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002930 int end = 0;
2931 u64 em_start = 0, em_len = 0;
2932 unsigned long emflags;
Josef Bacik975f84f2010-11-23 19:36:57 +00002933 int hole = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002934
2935 if (len == 0)
2936 return -EINVAL;
2937
Josef Bacik975f84f2010-11-23 19:36:57 +00002938 path = btrfs_alloc_path();
2939 if (!path)
2940 return -ENOMEM;
2941 path->leave_spinning = 1;
2942
2943 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
2944 path, inode->i_ino, -1, 0);
2945 if (ret < 0) {
2946 btrfs_free_path(path);
2947 return ret;
2948 }
2949 WARN_ON(!ret);
2950 path->slots[0]--;
2951 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2952 struct btrfs_file_extent_item);
2953 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
2954 found_type = btrfs_key_type(&found_key);
2955
2956 /* No extents, just return */
2957 if (found_key.objectid != inode->i_ino ||
2958 found_type != BTRFS_EXTENT_DATA_KEY) {
2959 btrfs_free_path(path);
2960 return 0;
2961 }
2962 last = found_key.offset;
2963 btrfs_free_path(path);
2964
Josef Bacik2ac55d42010-02-03 19:33:23 +00002965 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
2966 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002967 em = get_extent(inode, NULL, 0, off, max - off, 0);
2968 if (!em)
2969 goto out;
2970 if (IS_ERR(em)) {
2971 ret = PTR_ERR(em);
2972 goto out;
2973 }
Josef Bacik975f84f2010-11-23 19:36:57 +00002974
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002975 while (!end) {
Josef Bacik975f84f2010-11-23 19:36:57 +00002976 hole = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002977 off = em->start + em->len;
2978 if (off >= max)
2979 end = 1;
2980
Josef Bacik975f84f2010-11-23 19:36:57 +00002981 if (em->block_start == EXTENT_MAP_HOLE) {
2982 hole = 1;
2983 goto next;
2984 }
2985
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002986 em_start = em->start;
2987 em_len = em->len;
2988
2989 disko = 0;
2990 flags = 0;
2991
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002992 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002993 end = 1;
2994 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002995 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002996 flags |= (FIEMAP_EXTENT_DATA_INLINE |
2997 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002998 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002999 flags |= (FIEMAP_EXTENT_DELALLOC |
3000 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003001 } else {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003002 disko = em->block_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003003 }
3004 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
3005 flags |= FIEMAP_EXTENT_ENCODED;
3006
Josef Bacik975f84f2010-11-23 19:36:57 +00003007next:
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003008 emflags = em->flags;
3009 free_extent_map(em);
3010 em = NULL;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003011 if (!end) {
3012 em = get_extent(inode, NULL, 0, off, max - off, 0);
3013 if (!em)
3014 goto out;
3015 if (IS_ERR(em)) {
3016 ret = PTR_ERR(em);
3017 goto out;
3018 }
3019 emflags = em->flags;
3020 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003021
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003022 if (test_bit(EXTENT_FLAG_VACANCY, &emflags)) {
3023 flags |= FIEMAP_EXTENT_LAST;
3024 end = 1;
3025 }
3026
Josef Bacik975f84f2010-11-23 19:36:57 +00003027 if (em_start == last) {
3028 flags |= FIEMAP_EXTENT_LAST;
3029 end = 1;
3030 }
3031
3032 if (!hole) {
3033 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
3034 em_len, flags);
3035 if (ret)
3036 goto out_free;
3037 }
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003038 }
3039out_free:
3040 free_extent_map(em);
3041out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00003042 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
3043 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003044 return ret;
3045}
3046
Chris Masond1310b22008-01-24 16:13:08 -05003047static inline struct page *extent_buffer_page(struct extent_buffer *eb,
3048 unsigned long i)
3049{
3050 struct page *p;
3051 struct address_space *mapping;
3052
3053 if (i == 0)
3054 return eb->first_page;
3055 i += eb->start >> PAGE_CACHE_SHIFT;
3056 mapping = eb->first_page->mapping;
Chris Mason33958dc2008-07-30 10:29:12 -04003057 if (!mapping)
3058 return NULL;
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003059
3060 /*
3061 * extent_buffer_page is only called after pinning the page
3062 * by increasing the reference count. So we know the page must
3063 * be in the radix tree.
3064 */
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003065 rcu_read_lock();
Chris Masond1310b22008-01-24 16:13:08 -05003066 p = radix_tree_lookup(&mapping->page_tree, i);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003067 rcu_read_unlock();
Chris Mason2b1f55b2008-09-24 11:48:04 -04003068
Chris Masond1310b22008-01-24 16:13:08 -05003069 return p;
3070}
3071
Chris Mason6af118ce2008-07-22 11:18:07 -04003072static inline unsigned long num_extent_pages(u64 start, u64 len)
Chris Masonce9adaa2008-04-09 16:28:12 -04003073{
Chris Mason6af118ce2008-07-22 11:18:07 -04003074 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3075 (start >> PAGE_CACHE_SHIFT);
Chris Mason728131d2008-04-09 16:28:12 -04003076}
3077
Chris Masond1310b22008-01-24 16:13:08 -05003078static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3079 u64 start,
3080 unsigned long len,
3081 gfp_t mask)
3082{
3083 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003084#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003085 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003086#endif
Chris Masond1310b22008-01-24 16:13:08 -05003087
Chris Masond1310b22008-01-24 16:13:08 -05003088 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003089 if (eb == NULL)
3090 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003091 eb->start = start;
3092 eb->len = len;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003093 spin_lock_init(&eb->lock);
3094 init_waitqueue_head(&eb->lock_wq);
Miao Xie19fe0a82010-10-26 20:57:29 -04003095 INIT_RCU_HEAD(&eb->rcu_head);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003096
Chris Mason39351272009-02-04 09:24:05 -05003097#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003098 spin_lock_irqsave(&leak_lock, flags);
3099 list_add(&eb->leak_list, &buffers);
3100 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003101#endif
Chris Masond1310b22008-01-24 16:13:08 -05003102 atomic_set(&eb->refs, 1);
3103
3104 return eb;
3105}
3106
3107static void __free_extent_buffer(struct extent_buffer *eb)
3108{
Chris Mason39351272009-02-04 09:24:05 -05003109#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003110 unsigned long flags;
3111 spin_lock_irqsave(&leak_lock, flags);
3112 list_del(&eb->leak_list);
3113 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003114#endif
Chris Masond1310b22008-01-24 16:13:08 -05003115 kmem_cache_free(extent_buffer_cache, eb);
3116}
3117
Miao Xie897ca6e2010-10-26 20:57:29 -04003118/*
3119 * Helper for releasing extent buffer page.
3120 */
3121static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
3122 unsigned long start_idx)
3123{
3124 unsigned long index;
3125 struct page *page;
3126
3127 if (!eb->first_page)
3128 return;
3129
3130 index = num_extent_pages(eb->start, eb->len);
3131 if (start_idx >= index)
3132 return;
3133
3134 do {
3135 index--;
3136 page = extent_buffer_page(eb, index);
3137 if (page)
3138 page_cache_release(page);
3139 } while (index != start_idx);
3140}
3141
3142/*
3143 * Helper for releasing the extent buffer.
3144 */
3145static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
3146{
3147 btrfs_release_extent_buffer_page(eb, 0);
3148 __free_extent_buffer(eb);
3149}
3150
Chris Masond1310b22008-01-24 16:13:08 -05003151struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
3152 u64 start, unsigned long len,
3153 struct page *page0,
3154 gfp_t mask)
3155{
3156 unsigned long num_pages = num_extent_pages(start, len);
3157 unsigned long i;
3158 unsigned long index = start >> PAGE_CACHE_SHIFT;
3159 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04003160 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003161 struct page *p;
3162 struct address_space *mapping = tree->mapping;
3163 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04003164 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003165
Miao Xie19fe0a82010-10-26 20:57:29 -04003166 rcu_read_lock();
3167 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
3168 if (eb && atomic_inc_not_zero(&eb->refs)) {
3169 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003170 mark_page_accessed(eb->first_page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003171 return eb;
3172 }
Miao Xie19fe0a82010-10-26 20:57:29 -04003173 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04003174
Chris Masond1310b22008-01-24 16:13:08 -05003175 eb = __alloc_extent_buffer(tree, start, len, mask);
Peter2b114d12008-04-01 11:21:40 -04003176 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05003177 return NULL;
3178
Chris Masond1310b22008-01-24 16:13:08 -05003179 if (page0) {
3180 eb->first_page = page0;
3181 i = 1;
3182 index++;
3183 page_cache_get(page0);
3184 mark_page_accessed(page0);
3185 set_page_extent_mapped(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003186 set_page_extent_head(page0, len);
Chris Masonf1885912008-04-09 16:28:12 -04003187 uptodate = PageUptodate(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003188 } else {
3189 i = 0;
3190 }
3191 for (; i < num_pages; i++, index++) {
3192 p = find_or_create_page(mapping, index, mask | __GFP_HIGHMEM);
3193 if (!p) {
3194 WARN_ON(1);
Chris Mason6af118ce2008-07-22 11:18:07 -04003195 goto free_eb;
Chris Masond1310b22008-01-24 16:13:08 -05003196 }
3197 set_page_extent_mapped(p);
3198 mark_page_accessed(p);
3199 if (i == 0) {
3200 eb->first_page = p;
3201 set_page_extent_head(p, len);
3202 } else {
3203 set_page_private(p, EXTENT_PAGE_PRIVATE);
3204 }
3205 if (!PageUptodate(p))
3206 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05003207
3208 /*
3209 * see below about how we avoid a nasty race with release page
3210 * and why we unlock later
3211 */
3212 if (i != 0)
3213 unlock_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05003214 }
3215 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003216 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003217
Miao Xie19fe0a82010-10-26 20:57:29 -04003218 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
3219 if (ret)
3220 goto free_eb;
3221
Chris Mason6af118ce2008-07-22 11:18:07 -04003222 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003223 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
3224 if (ret == -EEXIST) {
3225 exists = radix_tree_lookup(&tree->buffer,
3226 start >> PAGE_CACHE_SHIFT);
Chris Mason6af118ce2008-07-22 11:18:07 -04003227 /* add one reference for the caller */
3228 atomic_inc(&exists->refs);
3229 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003230 radix_tree_preload_end();
Chris Mason6af118ce2008-07-22 11:18:07 -04003231 goto free_eb;
3232 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003233 /* add one reference for the tree */
3234 atomic_inc(&eb->refs);
Yan, Zhengf044ba72010-02-04 08:46:56 +00003235 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003236 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05003237
3238 /*
3239 * there is a race where release page may have
3240 * tried to find this extent buffer in the radix
3241 * but failed. It will tell the VM it is safe to
3242 * reclaim the, and it will clear the page private bit.
3243 * We must make sure to set the page private bit properly
3244 * after the extent buffer is in the radix tree so
3245 * it doesn't get lost
3246 */
3247 set_page_extent_mapped(eb->first_page);
3248 set_page_extent_head(eb->first_page, eb->len);
3249 if (!page0)
3250 unlock_page(eb->first_page);
Chris Masond1310b22008-01-24 16:13:08 -05003251 return eb;
3252
Chris Mason6af118ce2008-07-22 11:18:07 -04003253free_eb:
Chris Masoneb14ab82011-02-10 12:35:00 -05003254 if (eb->first_page && !page0)
3255 unlock_page(eb->first_page);
3256
Chris Masond1310b22008-01-24 16:13:08 -05003257 if (!atomic_dec_and_test(&eb->refs))
Chris Mason6af118ce2008-07-22 11:18:07 -04003258 return exists;
Miao Xie897ca6e2010-10-26 20:57:29 -04003259 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04003260 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05003261}
Chris Masond1310b22008-01-24 16:13:08 -05003262
3263struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
3264 u64 start, unsigned long len,
3265 gfp_t mask)
3266{
Chris Masond1310b22008-01-24 16:13:08 -05003267 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05003268
Miao Xie19fe0a82010-10-26 20:57:29 -04003269 rcu_read_lock();
3270 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
3271 if (eb && atomic_inc_not_zero(&eb->refs)) {
3272 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003273 mark_page_accessed(eb->first_page);
Miao Xie19fe0a82010-10-26 20:57:29 -04003274 return eb;
3275 }
3276 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003277
Miao Xie19fe0a82010-10-26 20:57:29 -04003278 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003279}
Chris Masond1310b22008-01-24 16:13:08 -05003280
3281void free_extent_buffer(struct extent_buffer *eb)
3282{
Chris Masond1310b22008-01-24 16:13:08 -05003283 if (!eb)
3284 return;
3285
3286 if (!atomic_dec_and_test(&eb->refs))
3287 return;
3288
Chris Mason6af118ce2008-07-22 11:18:07 -04003289 WARN_ON(1);
Chris Masond1310b22008-01-24 16:13:08 -05003290}
Chris Masond1310b22008-01-24 16:13:08 -05003291
3292int clear_extent_buffer_dirty(struct extent_io_tree *tree,
3293 struct extent_buffer *eb)
3294{
Chris Masond1310b22008-01-24 16:13:08 -05003295 unsigned long i;
3296 unsigned long num_pages;
3297 struct page *page;
3298
Chris Masond1310b22008-01-24 16:13:08 -05003299 num_pages = num_extent_pages(eb->start, eb->len);
3300
3301 for (i = 0; i < num_pages; i++) {
3302 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04003303 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05003304 continue;
3305
Chris Masona61e6f22008-07-22 11:18:08 -04003306 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05003307 WARN_ON(!PagePrivate(page));
3308
3309 set_page_extent_mapped(page);
Chris Masond1310b22008-01-24 16:13:08 -05003310 if (i == 0)
3311 set_page_extent_head(page, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05003312
Chris Masond1310b22008-01-24 16:13:08 -05003313 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003314 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003315 if (!PageDirty(page)) {
3316 radix_tree_tag_clear(&page->mapping->page_tree,
3317 page_index(page),
3318 PAGECACHE_TAG_DIRTY);
3319 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003320 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masona61e6f22008-07-22 11:18:08 -04003321 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003322 }
3323 return 0;
3324}
Chris Masond1310b22008-01-24 16:13:08 -05003325
3326int wait_on_extent_buffer_writeback(struct extent_io_tree *tree,
3327 struct extent_buffer *eb)
3328{
3329 return wait_on_extent_writeback(tree, eb->start,
3330 eb->start + eb->len - 1);
3331}
Chris Masond1310b22008-01-24 16:13:08 -05003332
3333int set_extent_buffer_dirty(struct extent_io_tree *tree,
3334 struct extent_buffer *eb)
3335{
3336 unsigned long i;
3337 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04003338 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003339
Chris Masonb9473432009-03-13 11:00:37 -04003340 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003341 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb9473432009-03-13 11:00:37 -04003342 for (i = 0; i < num_pages; i++)
Chris Masond1310b22008-01-24 16:13:08 -05003343 __set_page_dirty_nobuffers(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04003344 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05003345}
Chris Masond1310b22008-01-24 16:13:08 -05003346
Chris Mason1259ab72008-05-12 13:39:03 -04003347int clear_extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003348 struct extent_buffer *eb,
3349 struct extent_state **cached_state)
Chris Mason1259ab72008-05-12 13:39:03 -04003350{
3351 unsigned long i;
3352 struct page *page;
3353 unsigned long num_pages;
3354
3355 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003356 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Mason1259ab72008-05-12 13:39:03 -04003357
3358 clear_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003359 cached_state, GFP_NOFS);
Chris Mason1259ab72008-05-12 13:39:03 -04003360 for (i = 0; i < num_pages; i++) {
3361 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04003362 if (page)
3363 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003364 }
3365 return 0;
3366}
3367
Chris Masond1310b22008-01-24 16:13:08 -05003368int set_extent_buffer_uptodate(struct extent_io_tree *tree,
3369 struct extent_buffer *eb)
3370{
3371 unsigned long i;
3372 struct page *page;
3373 unsigned long num_pages;
3374
3375 num_pages = num_extent_pages(eb->start, eb->len);
3376
3377 set_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3378 GFP_NOFS);
3379 for (i = 0; i < num_pages; i++) {
3380 page = extent_buffer_page(eb, i);
3381 if ((i == 0 && (eb->start & (PAGE_CACHE_SIZE - 1))) ||
3382 ((i == num_pages - 1) &&
3383 ((eb->start + eb->len) & (PAGE_CACHE_SIZE - 1)))) {
3384 check_page_uptodate(tree, page);
3385 continue;
3386 }
3387 SetPageUptodate(page);
3388 }
3389 return 0;
3390}
Chris Masond1310b22008-01-24 16:13:08 -05003391
Chris Masonce9adaa2008-04-09 16:28:12 -04003392int extent_range_uptodate(struct extent_io_tree *tree,
3393 u64 start, u64 end)
3394{
3395 struct page *page;
3396 int ret;
3397 int pg_uptodate = 1;
3398 int uptodate;
3399 unsigned long index;
3400
Chris Mason9655d292009-09-02 15:22:30 -04003401 ret = test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL);
Chris Masonce9adaa2008-04-09 16:28:12 -04003402 if (ret)
3403 return 1;
Chris Masond3977122009-01-05 21:25:51 -05003404 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003405 index = start >> PAGE_CACHE_SHIFT;
3406 page = find_get_page(tree->mapping, index);
3407 uptodate = PageUptodate(page);
3408 page_cache_release(page);
3409 if (!uptodate) {
3410 pg_uptodate = 0;
3411 break;
3412 }
3413 start += PAGE_CACHE_SIZE;
3414 }
3415 return pg_uptodate;
3416}
3417
Chris Masond1310b22008-01-24 16:13:08 -05003418int extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003419 struct extent_buffer *eb,
3420 struct extent_state *cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05003421{
Chris Mason728131d2008-04-09 16:28:12 -04003422 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003423 unsigned long num_pages;
3424 unsigned long i;
Chris Mason728131d2008-04-09 16:28:12 -04003425 struct page *page;
3426 int pg_uptodate = 1;
3427
Chris Masonb4ce94d2009-02-04 09:25:08 -05003428 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Mason42352982008-04-28 16:40:52 -04003429 return 1;
Chris Mason728131d2008-04-09 16:28:12 -04003430
Chris Mason42352982008-04-28 16:40:52 -04003431 ret = test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003432 EXTENT_UPTODATE, 1, cached_state);
Chris Mason42352982008-04-28 16:40:52 -04003433 if (ret)
3434 return ret;
Chris Mason728131d2008-04-09 16:28:12 -04003435
3436 num_pages = num_extent_pages(eb->start, eb->len);
3437 for (i = 0; i < num_pages; i++) {
3438 page = extent_buffer_page(eb, i);
3439 if (!PageUptodate(page)) {
3440 pg_uptodate = 0;
3441 break;
3442 }
3443 }
Chris Mason42352982008-04-28 16:40:52 -04003444 return pg_uptodate;
Chris Masond1310b22008-01-24 16:13:08 -05003445}
Chris Masond1310b22008-01-24 16:13:08 -05003446
3447int read_extent_buffer_pages(struct extent_io_tree *tree,
3448 struct extent_buffer *eb,
Chris Masona86c12c2008-02-07 10:50:54 -05003449 u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04003450 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003451{
3452 unsigned long i;
3453 unsigned long start_i;
3454 struct page *page;
3455 int err;
3456 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003457 int locked_pages = 0;
3458 int all_uptodate = 1;
3459 int inc_all_pages = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003460 unsigned long num_pages;
Chris Masona86c12c2008-02-07 10:50:54 -05003461 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003462 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05003463
Chris Masonb4ce94d2009-02-04 09:25:08 -05003464 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05003465 return 0;
3466
Chris Masonce9adaa2008-04-09 16:28:12 -04003467 if (test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003468 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003469 return 0;
3470 }
3471
3472 if (start) {
3473 WARN_ON(start < eb->start);
3474 start_i = (start >> PAGE_CACHE_SHIFT) -
3475 (eb->start >> PAGE_CACHE_SHIFT);
3476 } else {
3477 start_i = 0;
3478 }
3479
3480 num_pages = num_extent_pages(eb->start, eb->len);
3481 for (i = start_i; i < num_pages; i++) {
3482 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003483 if (!wait) {
David Woodhouse2db04962008-08-07 11:19:43 -04003484 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003485 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05003486 } else {
3487 lock_page(page);
3488 }
Chris Masonce9adaa2008-04-09 16:28:12 -04003489 locked_pages++;
Chris Masond3977122009-01-05 21:25:51 -05003490 if (!PageUptodate(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003491 all_uptodate = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003492 }
3493 if (all_uptodate) {
3494 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003495 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04003496 goto unlock_exit;
3497 }
3498
3499 for (i = start_i; i < num_pages; i++) {
3500 page = extent_buffer_page(eb, i);
Chris Masoneb14ab82011-02-10 12:35:00 -05003501
3502 WARN_ON(!PagePrivate(page));
3503
3504 set_page_extent_mapped(page);
3505 if (i == 0)
3506 set_page_extent_head(page, eb->len);
3507
Chris Masonce9adaa2008-04-09 16:28:12 -04003508 if (inc_all_pages)
3509 page_cache_get(page);
3510 if (!PageUptodate(page)) {
3511 if (start_i == 0)
3512 inc_all_pages = 1;
Chris Masonf1885912008-04-09 16:28:12 -04003513 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05003514 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04003515 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003516 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05003517 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05003518 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05003519 } else {
3520 unlock_page(page);
3521 }
3522 }
3523
Chris Masona86c12c2008-02-07 10:50:54 -05003524 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04003525 submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masona86c12c2008-02-07 10:50:54 -05003526
Chris Masond3977122009-01-05 21:25:51 -05003527 if (ret || !wait)
Chris Masond1310b22008-01-24 16:13:08 -05003528 return ret;
Chris Masond3977122009-01-05 21:25:51 -05003529
Chris Masond1310b22008-01-24 16:13:08 -05003530 for (i = start_i; i < num_pages; i++) {
3531 page = extent_buffer_page(eb, i);
3532 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05003533 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05003534 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05003535 }
Chris Masond3977122009-01-05 21:25:51 -05003536
Chris Masond1310b22008-01-24 16:13:08 -05003537 if (!ret)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003538 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003539 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04003540
3541unlock_exit:
3542 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05003543 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003544 page = extent_buffer_page(eb, i);
3545 i++;
3546 unlock_page(page);
3547 locked_pages--;
3548 }
3549 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003550}
Chris Masond1310b22008-01-24 16:13:08 -05003551
3552void read_extent_buffer(struct extent_buffer *eb, void *dstv,
3553 unsigned long start,
3554 unsigned long len)
3555{
3556 size_t cur;
3557 size_t offset;
3558 struct page *page;
3559 char *kaddr;
3560 char *dst = (char *)dstv;
3561 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3562 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003563
3564 WARN_ON(start > eb->len);
3565 WARN_ON(start + len > eb->start + eb->len);
3566
3567 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3568
Chris Masond3977122009-01-05 21:25:51 -05003569 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003570 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003571
3572 cur = min(len, (PAGE_CACHE_SIZE - offset));
3573 kaddr = kmap_atomic(page, KM_USER1);
3574 memcpy(dst, kaddr + offset, cur);
3575 kunmap_atomic(kaddr, KM_USER1);
3576
3577 dst += cur;
3578 len -= cur;
3579 offset = 0;
3580 i++;
3581 }
3582}
Chris Masond1310b22008-01-24 16:13:08 -05003583
3584int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
3585 unsigned long min_len, char **token, char **map,
3586 unsigned long *map_start,
3587 unsigned long *map_len, int km)
3588{
3589 size_t offset = start & (PAGE_CACHE_SIZE - 1);
3590 char *kaddr;
3591 struct page *p;
3592 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3593 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3594 unsigned long end_i = (start_offset + start + min_len - 1) >>
3595 PAGE_CACHE_SHIFT;
3596
3597 if (i != end_i)
3598 return -EINVAL;
3599
3600 if (i == 0) {
3601 offset = start_offset;
3602 *map_start = 0;
3603 } else {
3604 offset = 0;
3605 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
3606 }
Chris Masond3977122009-01-05 21:25:51 -05003607
Chris Masond1310b22008-01-24 16:13:08 -05003608 if (start + min_len > eb->len) {
Chris Masond3977122009-01-05 21:25:51 -05003609 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
3610 "wanted %lu %lu\n", (unsigned long long)eb->start,
3611 eb->len, start, min_len);
Chris Masond1310b22008-01-24 16:13:08 -05003612 WARN_ON(1);
3613 }
3614
3615 p = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003616 kaddr = kmap_atomic(p, km);
3617 *token = kaddr;
3618 *map = kaddr + offset;
3619 *map_len = PAGE_CACHE_SIZE - offset;
3620 return 0;
3621}
Chris Masond1310b22008-01-24 16:13:08 -05003622
3623int map_extent_buffer(struct extent_buffer *eb, unsigned long start,
3624 unsigned long min_len,
3625 char **token, char **map,
3626 unsigned long *map_start,
3627 unsigned long *map_len, int km)
3628{
3629 int err;
3630 int save = 0;
3631 if (eb->map_token) {
3632 unmap_extent_buffer(eb, eb->map_token, km);
3633 eb->map_token = NULL;
3634 save = 1;
3635 }
3636 err = map_private_extent_buffer(eb, start, min_len, token, map,
3637 map_start, map_len, km);
3638 if (!err && save) {
3639 eb->map_token = *token;
3640 eb->kaddr = *map;
3641 eb->map_start = *map_start;
3642 eb->map_len = *map_len;
3643 }
3644 return err;
3645}
Chris Masond1310b22008-01-24 16:13:08 -05003646
3647void unmap_extent_buffer(struct extent_buffer *eb, char *token, int km)
3648{
3649 kunmap_atomic(token, km);
3650}
Chris Masond1310b22008-01-24 16:13:08 -05003651
3652int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
3653 unsigned long start,
3654 unsigned long len)
3655{
3656 size_t cur;
3657 size_t offset;
3658 struct page *page;
3659 char *kaddr;
3660 char *ptr = (char *)ptrv;
3661 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3662 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3663 int ret = 0;
3664
3665 WARN_ON(start > eb->len);
3666 WARN_ON(start + len > eb->start + eb->len);
3667
3668 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3669
Chris Masond3977122009-01-05 21:25:51 -05003670 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003671 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003672
3673 cur = min(len, (PAGE_CACHE_SIZE - offset));
3674
3675 kaddr = kmap_atomic(page, KM_USER0);
3676 ret = memcmp(ptr, kaddr + offset, cur);
3677 kunmap_atomic(kaddr, KM_USER0);
3678 if (ret)
3679 break;
3680
3681 ptr += cur;
3682 len -= cur;
3683 offset = 0;
3684 i++;
3685 }
3686 return ret;
3687}
Chris Masond1310b22008-01-24 16:13:08 -05003688
3689void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
3690 unsigned long start, unsigned long len)
3691{
3692 size_t cur;
3693 size_t offset;
3694 struct page *page;
3695 char *kaddr;
3696 char *src = (char *)srcv;
3697 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3698 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3699
3700 WARN_ON(start > eb->len);
3701 WARN_ON(start + len > eb->start + eb->len);
3702
3703 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3704
Chris Masond3977122009-01-05 21:25:51 -05003705 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003706 page = extent_buffer_page(eb, i);
3707 WARN_ON(!PageUptodate(page));
3708
3709 cur = min(len, PAGE_CACHE_SIZE - offset);
3710 kaddr = kmap_atomic(page, KM_USER1);
3711 memcpy(kaddr + offset, src, cur);
3712 kunmap_atomic(kaddr, KM_USER1);
3713
3714 src += cur;
3715 len -= cur;
3716 offset = 0;
3717 i++;
3718 }
3719}
Chris Masond1310b22008-01-24 16:13:08 -05003720
3721void memset_extent_buffer(struct extent_buffer *eb, char c,
3722 unsigned long start, unsigned long len)
3723{
3724 size_t cur;
3725 size_t offset;
3726 struct page *page;
3727 char *kaddr;
3728 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3729 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3730
3731 WARN_ON(start > eb->len);
3732 WARN_ON(start + len > eb->start + eb->len);
3733
3734 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3735
Chris Masond3977122009-01-05 21:25:51 -05003736 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003737 page = extent_buffer_page(eb, i);
3738 WARN_ON(!PageUptodate(page));
3739
3740 cur = min(len, PAGE_CACHE_SIZE - offset);
3741 kaddr = kmap_atomic(page, KM_USER0);
3742 memset(kaddr + offset, c, cur);
3743 kunmap_atomic(kaddr, KM_USER0);
3744
3745 len -= cur;
3746 offset = 0;
3747 i++;
3748 }
3749}
Chris Masond1310b22008-01-24 16:13:08 -05003750
3751void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
3752 unsigned long dst_offset, unsigned long src_offset,
3753 unsigned long len)
3754{
3755 u64 dst_len = dst->len;
3756 size_t cur;
3757 size_t offset;
3758 struct page *page;
3759 char *kaddr;
3760 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3761 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3762
3763 WARN_ON(src->len != dst_len);
3764
3765 offset = (start_offset + dst_offset) &
3766 ((unsigned long)PAGE_CACHE_SIZE - 1);
3767
Chris Masond3977122009-01-05 21:25:51 -05003768 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003769 page = extent_buffer_page(dst, i);
3770 WARN_ON(!PageUptodate(page));
3771
3772 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
3773
3774 kaddr = kmap_atomic(page, KM_USER0);
3775 read_extent_buffer(src, kaddr + offset, src_offset, cur);
3776 kunmap_atomic(kaddr, KM_USER0);
3777
3778 src_offset += cur;
3779 len -= cur;
3780 offset = 0;
3781 i++;
3782 }
3783}
Chris Masond1310b22008-01-24 16:13:08 -05003784
3785static void move_pages(struct page *dst_page, struct page *src_page,
3786 unsigned long dst_off, unsigned long src_off,
3787 unsigned long len)
3788{
3789 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3790 if (dst_page == src_page) {
3791 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
3792 } else {
3793 char *src_kaddr = kmap_atomic(src_page, KM_USER1);
3794 char *p = dst_kaddr + dst_off + len;
3795 char *s = src_kaddr + src_off + len;
3796
3797 while (len--)
3798 *--p = *--s;
3799
3800 kunmap_atomic(src_kaddr, KM_USER1);
3801 }
3802 kunmap_atomic(dst_kaddr, KM_USER0);
3803}
3804
3805static void copy_pages(struct page *dst_page, struct page *src_page,
3806 unsigned long dst_off, unsigned long src_off,
3807 unsigned long len)
3808{
3809 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3810 char *src_kaddr;
3811
3812 if (dst_page != src_page)
3813 src_kaddr = kmap_atomic(src_page, KM_USER1);
3814 else
3815 src_kaddr = dst_kaddr;
3816
3817 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
3818 kunmap_atomic(dst_kaddr, KM_USER0);
3819 if (dst_page != src_page)
3820 kunmap_atomic(src_kaddr, KM_USER1);
3821}
3822
3823void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3824 unsigned long src_offset, unsigned long len)
3825{
3826 size_t cur;
3827 size_t dst_off_in_page;
3828 size_t src_off_in_page;
3829 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3830 unsigned long dst_i;
3831 unsigned long src_i;
3832
3833 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003834 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3835 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003836 BUG_ON(1);
3837 }
3838 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003839 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3840 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003841 BUG_ON(1);
3842 }
3843
Chris Masond3977122009-01-05 21:25:51 -05003844 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003845 dst_off_in_page = (start_offset + dst_offset) &
3846 ((unsigned long)PAGE_CACHE_SIZE - 1);
3847 src_off_in_page = (start_offset + src_offset) &
3848 ((unsigned long)PAGE_CACHE_SIZE - 1);
3849
3850 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3851 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
3852
3853 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
3854 src_off_in_page));
3855 cur = min_t(unsigned long, cur,
3856 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
3857
3858 copy_pages(extent_buffer_page(dst, dst_i),
3859 extent_buffer_page(dst, src_i),
3860 dst_off_in_page, src_off_in_page, cur);
3861
3862 src_offset += cur;
3863 dst_offset += cur;
3864 len -= cur;
3865 }
3866}
Chris Masond1310b22008-01-24 16:13:08 -05003867
3868void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3869 unsigned long src_offset, unsigned long len)
3870{
3871 size_t cur;
3872 size_t dst_off_in_page;
3873 size_t src_off_in_page;
3874 unsigned long dst_end = dst_offset + len - 1;
3875 unsigned long src_end = src_offset + len - 1;
3876 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3877 unsigned long dst_i;
3878 unsigned long src_i;
3879
3880 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003881 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3882 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003883 BUG_ON(1);
3884 }
3885 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003886 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3887 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003888 BUG_ON(1);
3889 }
3890 if (dst_offset < src_offset) {
3891 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
3892 return;
3893 }
Chris Masond3977122009-01-05 21:25:51 -05003894 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003895 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
3896 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
3897
3898 dst_off_in_page = (start_offset + dst_end) &
3899 ((unsigned long)PAGE_CACHE_SIZE - 1);
3900 src_off_in_page = (start_offset + src_end) &
3901 ((unsigned long)PAGE_CACHE_SIZE - 1);
3902
3903 cur = min_t(unsigned long, len, src_off_in_page + 1);
3904 cur = min(cur, dst_off_in_page + 1);
3905 move_pages(extent_buffer_page(dst, dst_i),
3906 extent_buffer_page(dst, src_i),
3907 dst_off_in_page - cur + 1,
3908 src_off_in_page - cur + 1, cur);
3909
3910 dst_end -= cur;
3911 src_end -= cur;
3912 len -= cur;
3913 }
3914}
Chris Mason6af118ce2008-07-22 11:18:07 -04003915
Miao Xie19fe0a82010-10-26 20:57:29 -04003916static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
3917{
3918 struct extent_buffer *eb =
3919 container_of(head, struct extent_buffer, rcu_head);
3920
3921 btrfs_release_extent_buffer(eb);
3922}
3923
Chris Mason6af118ce2008-07-22 11:18:07 -04003924int try_release_extent_buffer(struct extent_io_tree *tree, struct page *page)
3925{
3926 u64 start = page_offset(page);
3927 struct extent_buffer *eb;
3928 int ret = 1;
Chris Mason6af118ce2008-07-22 11:18:07 -04003929
3930 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003931 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
Chris Mason45f49bc2010-11-21 22:27:44 -05003932 if (!eb) {
3933 spin_unlock(&tree->buffer_lock);
3934 return ret;
3935 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003936
Chris Masonb9473432009-03-13 11:00:37 -04003937 if (test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3938 ret = 0;
3939 goto out;
3940 }
Miao Xie897ca6e2010-10-26 20:57:29 -04003941
Miao Xie19fe0a82010-10-26 20:57:29 -04003942 /*
3943 * set @eb->refs to 0 if it is already 1, and then release the @eb.
3944 * Or go back.
3945 */
3946 if (atomic_cmpxchg(&eb->refs, 1, 0) != 1) {
3947 ret = 0;
3948 goto out;
3949 }
3950
3951 radix_tree_delete(&tree->buffer, start >> PAGE_CACHE_SHIFT);
Chris Mason6af118ce2008-07-22 11:18:07 -04003952out:
3953 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003954
3955 /* at this point we can safely release the extent buffer */
3956 if (atomic_read(&eb->refs) == 0)
3957 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Chris Mason6af118ce2008-07-22 11:18:07 -04003958 return ret;
3959}