blob: ff45b80d90f05a5fbbdfe874de8f6cdc2d037afb [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,
Chris Masonec29ed52011-02-23 16:23:20 -05001436 unsigned long bits, int contig)
Chris Masond1310b22008-01-24 16:13:08 -05001437{
1438 struct rb_node *node;
1439 struct extent_state *state;
1440 u64 cur_start = *start;
1441 u64 total_bytes = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05001442 u64 last = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001443 int found = 0;
1444
1445 if (search_end <= cur_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001446 WARN_ON(1);
1447 return 0;
1448 }
1449
Chris Masoncad321a2008-12-17 14:51:42 -05001450 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001451 if (cur_start == 0 && bits == EXTENT_DIRTY) {
1452 total_bytes = tree->dirty_bytes;
1453 goto out;
1454 }
1455 /*
1456 * this search will find all the extents that end after
1457 * our range starts.
1458 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001459 node = tree_search(tree, cur_start);
Chris Masond3977122009-01-05 21:25:51 -05001460 if (!node)
Chris Masond1310b22008-01-24 16:13:08 -05001461 goto out;
Chris Masond1310b22008-01-24 16:13:08 -05001462
Chris Masond3977122009-01-05 21:25:51 -05001463 while (1) {
Chris Masond1310b22008-01-24 16:13:08 -05001464 state = rb_entry(node, struct extent_state, rb_node);
1465 if (state->start > search_end)
1466 break;
Chris Masonec29ed52011-02-23 16:23:20 -05001467 if (contig && found && state->start > last + 1)
1468 break;
1469 if (state->end >= cur_start && (state->state & bits) == bits) {
Chris Masond1310b22008-01-24 16:13:08 -05001470 total_bytes += min(search_end, state->end) + 1 -
1471 max(cur_start, state->start);
1472 if (total_bytes >= max_bytes)
1473 break;
1474 if (!found) {
1475 *start = state->start;
1476 found = 1;
1477 }
Chris Masonec29ed52011-02-23 16:23:20 -05001478 last = state->end;
1479 } else if (contig && found) {
1480 break;
Chris Masond1310b22008-01-24 16:13:08 -05001481 }
1482 node = rb_next(node);
1483 if (!node)
1484 break;
1485 }
1486out:
Chris Masoncad321a2008-12-17 14:51:42 -05001487 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001488 return total_bytes;
1489}
Christoph Hellwigb2950862008-12-02 09:54:17 -05001490
Chris Masond352ac62008-09-29 15:18:18 -04001491/*
1492 * set the private field for a given byte offset in the tree. If there isn't
1493 * an extent_state there already, this does nothing.
1494 */
Chris Masond1310b22008-01-24 16:13:08 -05001495int set_state_private(struct extent_io_tree *tree, u64 start, u64 private)
1496{
1497 struct rb_node *node;
1498 struct extent_state *state;
1499 int ret = 0;
1500
Chris Masoncad321a2008-12-17 14:51:42 -05001501 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001502 /*
1503 * this search will find all the extents that end after
1504 * our range starts.
1505 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001506 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001507 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001508 ret = -ENOENT;
1509 goto out;
1510 }
1511 state = rb_entry(node, struct extent_state, rb_node);
1512 if (state->start != start) {
1513 ret = -ENOENT;
1514 goto out;
1515 }
1516 state->private = private;
1517out:
Chris Masoncad321a2008-12-17 14:51:42 -05001518 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001519 return ret;
1520}
1521
1522int get_state_private(struct extent_io_tree *tree, u64 start, u64 *private)
1523{
1524 struct rb_node *node;
1525 struct extent_state *state;
1526 int ret = 0;
1527
Chris Masoncad321a2008-12-17 14:51:42 -05001528 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001529 /*
1530 * this search will find all the extents that end after
1531 * our range starts.
1532 */
Chris Mason80ea96b2008-02-01 14:51:59 -05001533 node = tree_search(tree, start);
Peter2b114d12008-04-01 11:21:40 -04001534 if (!node) {
Chris Masond1310b22008-01-24 16:13:08 -05001535 ret = -ENOENT;
1536 goto out;
1537 }
1538 state = rb_entry(node, struct extent_state, rb_node);
1539 if (state->start != start) {
1540 ret = -ENOENT;
1541 goto out;
1542 }
1543 *private = state->private;
1544out:
Chris Masoncad321a2008-12-17 14:51:42 -05001545 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001546 return ret;
1547}
1548
1549/*
1550 * searches a range in the state tree for a given mask.
Chris Mason70dec802008-01-29 09:59:12 -05001551 * If 'filled' == 1, this returns 1 only if every extent in the tree
Chris Masond1310b22008-01-24 16:13:08 -05001552 * has the bits set. Otherwise, 1 is returned if any bit in the
1553 * range is found set.
1554 */
1555int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason9655d292009-09-02 15:22:30 -04001556 int bits, int filled, struct extent_state *cached)
Chris Masond1310b22008-01-24 16:13:08 -05001557{
1558 struct extent_state *state = NULL;
1559 struct rb_node *node;
1560 int bitset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001561
Chris Masoncad321a2008-12-17 14:51:42 -05001562 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -04001563 if (cached && cached->tree && cached->start == start)
1564 node = &cached->rb_node;
1565 else
1566 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001567 while (node && start <= end) {
1568 state = rb_entry(node, struct extent_state, rb_node);
1569
1570 if (filled && state->start > start) {
1571 bitset = 0;
1572 break;
1573 }
1574
1575 if (state->start > end)
1576 break;
1577
1578 if (state->state & bits) {
1579 bitset = 1;
1580 if (!filled)
1581 break;
1582 } else if (filled) {
1583 bitset = 0;
1584 break;
1585 }
Chris Mason46562cec2009-09-23 20:23:16 -04001586
1587 if (state->end == (u64)-1)
1588 break;
1589
Chris Masond1310b22008-01-24 16:13:08 -05001590 start = state->end + 1;
1591 if (start > end)
1592 break;
1593 node = rb_next(node);
1594 if (!node) {
1595 if (filled)
1596 bitset = 0;
1597 break;
1598 }
1599 }
Chris Masoncad321a2008-12-17 14:51:42 -05001600 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001601 return bitset;
1602}
Chris Masond1310b22008-01-24 16:13:08 -05001603
1604/*
1605 * helper function to set a given page up to date if all the
1606 * extents in the tree for that page are up to date
1607 */
1608static int check_page_uptodate(struct extent_io_tree *tree,
1609 struct page *page)
1610{
1611 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1612 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001613 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001614 SetPageUptodate(page);
1615 return 0;
1616}
1617
1618/*
1619 * helper function to unlock a page if all the extents in the tree
1620 * for that page are unlocked
1621 */
1622static int check_page_locked(struct extent_io_tree *tree,
1623 struct page *page)
1624{
1625 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1626 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001627 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001628 unlock_page(page);
1629 return 0;
1630}
1631
1632/*
1633 * helper function to end page writeback if all the extents
1634 * in the tree for that page are done with writeback
1635 */
1636static int check_page_writeback(struct extent_io_tree *tree,
1637 struct page *page)
1638{
Chris Mason1edbb732009-09-02 13:24:36 -04001639 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001640 return 0;
1641}
1642
1643/* lots and lots of room for performance fixes in the end_bio funcs */
1644
1645/*
1646 * after a writepage IO is done, we need to:
1647 * clear the uptodate bits on error
1648 * clear the writeback bits in the extent tree for this IO
1649 * end_page_writeback if the page has no more pending IO
1650 *
1651 * Scheduling is not allowed, so the extent state tree is expected
1652 * to have one and only one object corresponding to this IO.
1653 */
Chris Masond1310b22008-01-24 16:13:08 -05001654static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001655{
Chris Mason1259ab72008-05-12 13:39:03 -04001656 int uptodate = err == 0;
Chris Masond1310b22008-01-24 16:13:08 -05001657 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001658 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001659 u64 start;
1660 u64 end;
1661 int whole_page;
Chris Mason1259ab72008-05-12 13:39:03 -04001662 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001663
Chris Masond1310b22008-01-24 16:13:08 -05001664 do {
1665 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001666 tree = &BTRFS_I(page->mapping->host)->io_tree;
1667
Chris Masond1310b22008-01-24 16:13:08 -05001668 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1669 bvec->bv_offset;
1670 end = start + bvec->bv_len - 1;
1671
1672 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1673 whole_page = 1;
1674 else
1675 whole_page = 0;
1676
1677 if (--bvec >= bio->bi_io_vec)
1678 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001679 if (tree->ops && tree->ops->writepage_end_io_hook) {
1680 ret = tree->ops->writepage_end_io_hook(page, start,
David Woodhouse902b22f2008-08-20 08:51:49 -04001681 end, NULL, uptodate);
Chris Mason1259ab72008-05-12 13:39:03 -04001682 if (ret)
1683 uptodate = 0;
1684 }
1685
1686 if (!uptodate && tree->ops &&
1687 tree->ops->writepage_io_failed_hook) {
1688 ret = tree->ops->writepage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001689 start, end, NULL);
Chris Mason1259ab72008-05-12 13:39:03 -04001690 if (ret == 0) {
Chris Mason1259ab72008-05-12 13:39:03 -04001691 uptodate = (err == 0);
1692 continue;
1693 }
1694 }
1695
Chris Masond1310b22008-01-24 16:13:08 -05001696 if (!uptodate) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001697 clear_extent_uptodate(tree, start, end, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001698 ClearPageUptodate(page);
1699 SetPageError(page);
1700 }
Chris Mason70dec802008-01-29 09:59:12 -05001701
Chris Masond1310b22008-01-24 16:13:08 -05001702 if (whole_page)
1703 end_page_writeback(page);
1704 else
1705 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05001706 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04001707
Chris Masond1310b22008-01-24 16:13:08 -05001708 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001709}
1710
1711/*
1712 * after a readpage IO is done, we need to:
1713 * clear the uptodate bits on error
1714 * set the uptodate bits if things worked
1715 * set the page up to date if all extents in the tree are uptodate
1716 * clear the lock bit in the extent tree
1717 * unlock the page if there are no other extents locked for it
1718 *
1719 * Scheduling is not allowed, so the extent state tree is expected
1720 * to have one and only one object corresponding to this IO.
1721 */
Chris Masond1310b22008-01-24 16:13:08 -05001722static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001723{
1724 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00001725 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
1726 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04001727 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001728 u64 start;
1729 u64 end;
1730 int whole_page;
1731 int ret;
1732
Chris Masond20f7042008-12-08 16:58:54 -05001733 if (err)
1734 uptodate = 0;
1735
Chris Masond1310b22008-01-24 16:13:08 -05001736 do {
1737 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001738 tree = &BTRFS_I(page->mapping->host)->io_tree;
1739
Chris Masond1310b22008-01-24 16:13:08 -05001740 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1741 bvec->bv_offset;
1742 end = start + bvec->bv_len - 1;
1743
1744 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1745 whole_page = 1;
1746 else
1747 whole_page = 0;
1748
Chris Mason4125bf72010-02-03 18:18:45 +00001749 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05001750 prefetchw(&bvec->bv_page->flags);
1751
1752 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05001753 ret = tree->ops->readpage_end_io_hook(page, start, end,
David Woodhouse902b22f2008-08-20 08:51:49 -04001754 NULL);
Chris Masond1310b22008-01-24 16:13:08 -05001755 if (ret)
1756 uptodate = 0;
1757 }
Chris Mason7e383262008-04-09 16:28:12 -04001758 if (!uptodate && tree->ops &&
1759 tree->ops->readpage_io_failed_hook) {
1760 ret = tree->ops->readpage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001761 start, end, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04001762 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04001763 uptodate =
1764 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001765 if (err)
1766 uptodate = 0;
Chris Mason7e383262008-04-09 16:28:12 -04001767 continue;
1768 }
1769 }
Chris Mason70dec802008-01-29 09:59:12 -05001770
Chris Mason771ed682008-11-06 22:02:51 -05001771 if (uptodate) {
David Woodhouse902b22f2008-08-20 08:51:49 -04001772 set_extent_uptodate(tree, start, end,
1773 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05001774 }
David Woodhouse902b22f2008-08-20 08:51:49 -04001775 unlock_extent(tree, start, end, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05001776
Chris Mason70dec802008-01-29 09:59:12 -05001777 if (whole_page) {
1778 if (uptodate) {
1779 SetPageUptodate(page);
1780 } else {
1781 ClearPageUptodate(page);
1782 SetPageError(page);
1783 }
Chris Masond1310b22008-01-24 16:13:08 -05001784 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05001785 } else {
1786 if (uptodate) {
1787 check_page_uptodate(tree, page);
1788 } else {
1789 ClearPageUptodate(page);
1790 SetPageError(page);
1791 }
Chris Masond1310b22008-01-24 16:13:08 -05001792 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05001793 }
Chris Mason4125bf72010-02-03 18:18:45 +00001794 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05001795
1796 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001797}
1798
1799/*
1800 * IO done from prepare_write is pretty simple, we just unlock
1801 * the structs in the extent tree when done, and set the uptodate bits
1802 * as appropriate.
1803 */
Chris Masond1310b22008-01-24 16:13:08 -05001804static void end_bio_extent_preparewrite(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001805{
1806 const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1807 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001808 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001809 u64 start;
1810 u64 end;
1811
Chris Masond1310b22008-01-24 16:13:08 -05001812 do {
1813 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001814 tree = &BTRFS_I(page->mapping->host)->io_tree;
1815
Chris Masond1310b22008-01-24 16:13:08 -05001816 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1817 bvec->bv_offset;
1818 end = start + bvec->bv_len - 1;
1819
1820 if (--bvec >= bio->bi_io_vec)
1821 prefetchw(&bvec->bv_page->flags);
1822
1823 if (uptodate) {
1824 set_extent_uptodate(tree, start, end, GFP_ATOMIC);
1825 } else {
1826 ClearPageUptodate(page);
1827 SetPageError(page);
1828 }
1829
1830 unlock_extent(tree, start, end, GFP_ATOMIC);
1831
1832 } while (bvec >= bio->bi_io_vec);
1833
1834 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001835}
1836
Miao Xie88f794e2010-11-22 03:02:55 +00001837struct bio *
1838btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
1839 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001840{
1841 struct bio *bio;
1842
1843 bio = bio_alloc(gfp_flags, nr_vecs);
1844
1845 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
1846 while (!bio && (nr_vecs /= 2))
1847 bio = bio_alloc(gfp_flags, nr_vecs);
1848 }
1849
1850 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04001851 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001852 bio->bi_bdev = bdev;
1853 bio->bi_sector = first_sector;
1854 }
1855 return bio;
1856}
1857
Chris Masonc8b97812008-10-29 14:49:59 -04001858static int submit_one_bio(int rw, struct bio *bio, int mirror_num,
1859 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001860{
Chris Masond1310b22008-01-24 16:13:08 -05001861 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05001862 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
1863 struct page *page = bvec->bv_page;
1864 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05001865 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05001866
1867 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05001868
David Woodhouse902b22f2008-08-20 08:51:49 -04001869 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001870
1871 bio_get(bio);
1872
Chris Mason065631f2008-02-20 12:07:25 -05001873 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00001874 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001875 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04001876 else
1877 submit_bio(rw, bio);
Chris Masond1310b22008-01-24 16:13:08 -05001878 if (bio_flagged(bio, BIO_EOPNOTSUPP))
1879 ret = -EOPNOTSUPP;
1880 bio_put(bio);
1881 return ret;
1882}
1883
1884static int submit_extent_page(int rw, struct extent_io_tree *tree,
1885 struct page *page, sector_t sector,
1886 size_t size, unsigned long offset,
1887 struct block_device *bdev,
1888 struct bio **bio_ret,
1889 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04001890 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04001891 int mirror_num,
1892 unsigned long prev_bio_flags,
1893 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001894{
1895 int ret = 0;
1896 struct bio *bio;
1897 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04001898 int contig = 0;
1899 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
1900 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05001901 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05001902
1903 if (bio_ret && *bio_ret) {
1904 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001905 if (old_compressed)
1906 contig = bio->bi_sector == sector;
1907 else
1908 contig = bio->bi_sector + (bio->bi_size >> 9) ==
1909 sector;
1910
1911 if (prev_bio_flags != bio_flags || !contig ||
Chris Mason239b14b2008-03-24 15:02:07 -04001912 (tree->ops && tree->ops->merge_bio_hook &&
Chris Masonc8b97812008-10-29 14:49:59 -04001913 tree->ops->merge_bio_hook(page, offset, page_size, bio,
1914 bio_flags)) ||
1915 bio_add_page(bio, page, page_size, offset) < page_size) {
1916 ret = submit_one_bio(rw, bio, mirror_num,
1917 prev_bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001918 bio = NULL;
1919 } else {
1920 return 0;
1921 }
1922 }
Chris Masonc8b97812008-10-29 14:49:59 -04001923 if (this_compressed)
1924 nr = BIO_MAX_PAGES;
1925 else
1926 nr = bio_get_nr_vecs(bdev);
1927
Miao Xie88f794e2010-11-22 03:02:55 +00001928 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00001929 if (!bio)
1930 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05001931
Chris Masonc8b97812008-10-29 14:49:59 -04001932 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05001933 bio->bi_end_io = end_io_func;
1934 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05001935
Chris Masond3977122009-01-05 21:25:51 -05001936 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05001937 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05001938 else
Chris Masonc8b97812008-10-29 14:49:59 -04001939 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001940
1941 return ret;
1942}
1943
1944void set_page_extent_mapped(struct page *page)
1945{
1946 if (!PagePrivate(page)) {
1947 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001948 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04001949 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05001950 }
1951}
1952
Christoph Hellwigb2950862008-12-02 09:54:17 -05001953static void set_page_extent_head(struct page *page, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05001954{
Chris Masoneb14ab82011-02-10 12:35:00 -05001955 WARN_ON(!PagePrivate(page));
Chris Masond1310b22008-01-24 16:13:08 -05001956 set_page_private(page, EXTENT_PAGE_PRIVATE_FIRST_PAGE | len << 2);
1957}
1958
1959/*
1960 * basic readpage implementation. Locked extent state structs are inserted
1961 * into the tree that are removed when the IO is done (by the end_io
1962 * handlers)
1963 */
1964static int __extent_read_full_page(struct extent_io_tree *tree,
1965 struct page *page,
1966 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04001967 struct bio **bio, int mirror_num,
1968 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001969{
1970 struct inode *inode = page->mapping->host;
1971 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1972 u64 page_end = start + PAGE_CACHE_SIZE - 1;
1973 u64 end;
1974 u64 cur = start;
1975 u64 extent_offset;
1976 u64 last_byte = i_size_read(inode);
1977 u64 block_start;
1978 u64 cur_end;
1979 sector_t sector;
1980 struct extent_map *em;
1981 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001982 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05001983 int ret;
1984 int nr = 0;
1985 size_t page_offset = 0;
1986 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04001987 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05001988 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04001989 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001990
1991 set_page_extent_mapped(page);
1992
1993 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001994 while (1) {
1995 lock_extent(tree, start, end, GFP_NOFS);
1996 ordered = btrfs_lookup_ordered_extent(inode, start);
1997 if (!ordered)
1998 break;
1999 unlock_extent(tree, start, end, GFP_NOFS);
2000 btrfs_start_ordered_extent(inode, ordered, 1);
2001 btrfs_put_ordered_extent(ordered);
2002 }
Chris Masond1310b22008-01-24 16:13:08 -05002003
Chris Masonc8b97812008-10-29 14:49:59 -04002004 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
2005 char *userpage;
2006 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
2007
2008 if (zero_offset) {
2009 iosize = PAGE_CACHE_SIZE - zero_offset;
2010 userpage = kmap_atomic(page, KM_USER0);
2011 memset(userpage + zero_offset, 0, iosize);
2012 flush_dcache_page(page);
2013 kunmap_atomic(userpage, KM_USER0);
2014 }
2015 }
Chris Masond1310b22008-01-24 16:13:08 -05002016 while (cur <= end) {
2017 if (cur >= last_byte) {
2018 char *userpage;
2019 iosize = PAGE_CACHE_SIZE - page_offset;
2020 userpage = kmap_atomic(page, KM_USER0);
2021 memset(userpage + page_offset, 0, iosize);
2022 flush_dcache_page(page);
2023 kunmap_atomic(userpage, KM_USER0);
2024 set_extent_uptodate(tree, cur, cur + iosize - 1,
2025 GFP_NOFS);
2026 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2027 break;
2028 }
2029 em = get_extent(inode, page, page_offset, cur,
2030 end - cur + 1, 0);
2031 if (IS_ERR(em) || !em) {
2032 SetPageError(page);
2033 unlock_extent(tree, cur, end, GFP_NOFS);
2034 break;
2035 }
Chris Masond1310b22008-01-24 16:13:08 -05002036 extent_offset = cur - em->start;
2037 BUG_ON(extent_map_end(em) <= cur);
2038 BUG_ON(end < cur);
2039
Li Zefan261507a02010-12-17 14:21:50 +08002040 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002041 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002042 extent_set_compress_type(&this_bio_flag,
2043 em->compress_type);
2044 }
Chris Masonc8b97812008-10-29 14:49:59 -04002045
Chris Masond1310b22008-01-24 16:13:08 -05002046 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2047 cur_end = min(extent_map_end(em) - 1, end);
2048 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002049 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2050 disk_io_size = em->block_len;
2051 sector = em->block_start >> 9;
2052 } else {
2053 sector = (em->block_start + extent_offset) >> 9;
2054 disk_io_size = iosize;
2055 }
Chris Masond1310b22008-01-24 16:13:08 -05002056 bdev = em->bdev;
2057 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002058 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2059 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002060 free_extent_map(em);
2061 em = NULL;
2062
2063 /* we've found a hole, just zero and go on */
2064 if (block_start == EXTENT_MAP_HOLE) {
2065 char *userpage;
2066 userpage = kmap_atomic(page, KM_USER0);
2067 memset(userpage + page_offset, 0, iosize);
2068 flush_dcache_page(page);
2069 kunmap_atomic(userpage, KM_USER0);
2070
2071 set_extent_uptodate(tree, cur, cur + iosize - 1,
2072 GFP_NOFS);
2073 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2074 cur = cur + iosize;
2075 page_offset += iosize;
2076 continue;
2077 }
2078 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002079 if (test_range_bit(tree, cur, cur_end,
2080 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002081 check_page_uptodate(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002082 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2083 cur = cur + iosize;
2084 page_offset += iosize;
2085 continue;
2086 }
Chris Mason70dec802008-01-29 09:59:12 -05002087 /* we have an inline extent but it didn't get marked up
2088 * to date. Error out
2089 */
2090 if (block_start == EXTENT_MAP_INLINE) {
2091 SetPageError(page);
2092 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2093 cur = cur + iosize;
2094 page_offset += iosize;
2095 continue;
2096 }
Chris Masond1310b22008-01-24 16:13:08 -05002097
2098 ret = 0;
2099 if (tree->ops && tree->ops->readpage_io_hook) {
2100 ret = tree->ops->readpage_io_hook(page, cur,
2101 cur + iosize - 1);
2102 }
2103 if (!ret) {
Chris Mason89642222008-07-24 09:41:53 -04002104 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2105 pnr -= page->index;
Chris Masond1310b22008-01-24 16:13:08 -05002106 ret = submit_extent_page(READ, tree, page,
Chris Masonc8b97812008-10-29 14:49:59 -04002107 sector, disk_io_size, page_offset,
Chris Mason89642222008-07-24 09:41:53 -04002108 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002109 end_bio_extent_readpage, mirror_num,
2110 *bio_flags,
2111 this_bio_flag);
Chris Mason89642222008-07-24 09:41:53 -04002112 nr++;
Chris Masonc8b97812008-10-29 14:49:59 -04002113 *bio_flags = this_bio_flag;
Chris Masond1310b22008-01-24 16:13:08 -05002114 }
2115 if (ret)
2116 SetPageError(page);
2117 cur = cur + iosize;
2118 page_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002119 }
2120 if (!nr) {
2121 if (!PageError(page))
2122 SetPageUptodate(page);
2123 unlock_page(page);
2124 }
2125 return 0;
2126}
2127
2128int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
2129 get_extent_t *get_extent)
2130{
2131 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002132 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002133 int ret;
2134
Chris Masonc8b97812008-10-29 14:49:59 -04002135 ret = __extent_read_full_page(tree, page, get_extent, &bio, 0,
2136 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002137 if (bio)
liubo6b82ce82011-01-26 06:21:39 +00002138 ret = submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002139 return ret;
2140}
Chris Masond1310b22008-01-24 16:13:08 -05002141
Chris Mason11c83492009-04-20 15:50:09 -04002142static noinline void update_nr_written(struct page *page,
2143 struct writeback_control *wbc,
2144 unsigned long nr_written)
2145{
2146 wbc->nr_to_write -= nr_written;
2147 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2148 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2149 page->mapping->writeback_index = page->index + nr_written;
2150}
2151
Chris Masond1310b22008-01-24 16:13:08 -05002152/*
2153 * the writepage semantics are similar to regular writepage. extent
2154 * records are inserted to lock ranges in the tree, and as dirty areas
2155 * are found, they are marked writeback. Then the lock bits are removed
2156 * and the end_io handler clears the writeback ranges
2157 */
2158static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2159 void *data)
2160{
2161 struct inode *inode = page->mapping->host;
2162 struct extent_page_data *epd = data;
2163 struct extent_io_tree *tree = epd->tree;
2164 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2165 u64 delalloc_start;
2166 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2167 u64 end;
2168 u64 cur = start;
2169 u64 extent_offset;
2170 u64 last_byte = i_size_read(inode);
2171 u64 block_start;
2172 u64 iosize;
2173 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002174 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002175 struct extent_map *em;
2176 struct block_device *bdev;
2177 int ret;
2178 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002179 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002180 size_t blocksize;
2181 loff_t i_size = i_size_read(inode);
2182 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2183 u64 nr_delalloc;
2184 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002185 int page_started;
2186 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002187 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002188 unsigned long nr_written = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002189
Chris Masonffbd5172009-04-20 15:50:09 -04002190 if (wbc->sync_mode == WB_SYNC_ALL)
2191 write_flags = WRITE_SYNC_PLUG;
2192 else
2193 write_flags = WRITE;
2194
Chris Masond1310b22008-01-24 16:13:08 -05002195 WARN_ON(!PageLocked(page));
Chris Mason7f3c74f2008-07-18 12:01:11 -04002196 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002197 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002198 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002199 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002200 unlock_page(page);
2201 return 0;
2202 }
2203
2204 if (page->index == end_index) {
2205 char *userpage;
2206
Chris Masond1310b22008-01-24 16:13:08 -05002207 userpage = kmap_atomic(page, KM_USER0);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002208 memset(userpage + pg_offset, 0,
2209 PAGE_CACHE_SIZE - pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002210 kunmap_atomic(userpage, KM_USER0);
Chris Mason211c17f2008-05-15 09:13:45 -04002211 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002212 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002213 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002214
2215 set_page_extent_mapped(page);
2216
2217 delalloc_start = start;
2218 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002219 page_started = 0;
Chris Mason771ed682008-11-06 22:02:51 -05002220 if (!epd->extent_locked) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002221 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002222 /*
2223 * make sure the wbc mapping index is at least updated
2224 * to this page.
2225 */
2226 update_nr_written(page, wbc, 0);
2227
Chris Masond3977122009-01-05 21:25:51 -05002228 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002229 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002230 page,
2231 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002232 &delalloc_end,
2233 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002234 if (nr_delalloc == 0) {
2235 delalloc_start = delalloc_end + 1;
2236 continue;
2237 }
2238 tree->ops->fill_delalloc(inode, page, delalloc_start,
2239 delalloc_end, &page_started,
2240 &nr_written);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002241 /*
2242 * delalloc_end is already one less than the total
2243 * length, so we don't subtract one from
2244 * PAGE_CACHE_SIZE
2245 */
2246 delalloc_to_write += (delalloc_end - delalloc_start +
2247 PAGE_CACHE_SIZE) >>
2248 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002249 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002250 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002251 if (wbc->nr_to_write < delalloc_to_write) {
2252 int thresh = 8192;
2253
2254 if (delalloc_to_write < thresh * 2)
2255 thresh = delalloc_to_write;
2256 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2257 thresh);
2258 }
Chris Masonc8b97812008-10-29 14:49:59 -04002259
Chris Mason771ed682008-11-06 22:02:51 -05002260 /* did the fill delalloc function already unlock and start
2261 * the IO?
2262 */
2263 if (page_started) {
2264 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002265 /*
2266 * we've unlocked the page, so we can't update
2267 * the mapping's writeback index, just update
2268 * nr_to_write.
2269 */
2270 wbc->nr_to_write -= nr_written;
2271 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002272 }
Chris Masonc8b97812008-10-29 14:49:59 -04002273 }
Chris Mason247e7432008-07-17 12:53:51 -04002274 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002275 ret = tree->ops->writepage_start_hook(page, start,
2276 page_end);
Chris Mason247e7432008-07-17 12:53:51 -04002277 if (ret == -EAGAIN) {
Chris Mason247e7432008-07-17 12:53:51 -04002278 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002279 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002280 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002281 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002282 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002283 }
2284 }
2285
Chris Mason11c83492009-04-20 15:50:09 -04002286 /*
2287 * we don't want to touch the inode after unlocking the page,
2288 * so we update the mapping writeback index now
2289 */
2290 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002291
Chris Masond1310b22008-01-24 16:13:08 -05002292 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002293 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002294 if (tree->ops && tree->ops->writepage_end_io_hook)
2295 tree->ops->writepage_end_io_hook(page, start,
2296 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002297 goto done;
2298 }
2299
Chris Masond1310b22008-01-24 16:13:08 -05002300 blocksize = inode->i_sb->s_blocksize;
2301
2302 while (cur <= end) {
2303 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002304 if (tree->ops && tree->ops->writepage_end_io_hook)
2305 tree->ops->writepage_end_io_hook(page, cur,
2306 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002307 break;
2308 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002309 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002310 end - cur + 1, 1);
2311 if (IS_ERR(em) || !em) {
2312 SetPageError(page);
2313 break;
2314 }
2315
2316 extent_offset = cur - em->start;
2317 BUG_ON(extent_map_end(em) <= cur);
2318 BUG_ON(end < cur);
2319 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2320 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2321 sector = (em->block_start + extent_offset) >> 9;
2322 bdev = em->bdev;
2323 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002324 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002325 free_extent_map(em);
2326 em = NULL;
2327
Chris Masonc8b97812008-10-29 14:49:59 -04002328 /*
2329 * compressed and inline extents are written through other
2330 * paths in the FS
2331 */
2332 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002333 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002334 /*
2335 * end_io notification does not happen here for
2336 * compressed extents
2337 */
2338 if (!compressed && tree->ops &&
2339 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002340 tree->ops->writepage_end_io_hook(page, cur,
2341 cur + iosize - 1,
2342 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002343 else if (compressed) {
2344 /* we don't want to end_page_writeback on
2345 * a compressed extent. this happens
2346 * elsewhere
2347 */
2348 nr++;
2349 }
2350
2351 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002352 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002353 continue;
2354 }
Chris Masond1310b22008-01-24 16:13:08 -05002355 /* leave this out until we have a page_mkwrite call */
2356 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04002357 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002358 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002359 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002360 continue;
2361 }
Chris Masonc8b97812008-10-29 14:49:59 -04002362
Chris Masond1310b22008-01-24 16:13:08 -05002363 if (tree->ops && tree->ops->writepage_io_hook) {
2364 ret = tree->ops->writepage_io_hook(page, cur,
2365 cur + iosize - 1);
2366 } else {
2367 ret = 0;
2368 }
Chris Mason1259ab72008-05-12 13:39:03 -04002369 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05002370 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04002371 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002372 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002373
Chris Masond1310b22008-01-24 16:13:08 -05002374 set_range_writeback(tree, cur, cur + iosize - 1);
2375 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05002376 printk(KERN_ERR "btrfs warning page %lu not "
2377 "writeback, cur %llu end %llu\n",
2378 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05002379 (unsigned long long)end);
2380 }
2381
Chris Masonffbd5172009-04-20 15:50:09 -04002382 ret = submit_extent_page(write_flags, tree, page,
2383 sector, iosize, pg_offset,
2384 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04002385 end_bio_extent_writepage,
2386 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002387 if (ret)
2388 SetPageError(page);
2389 }
2390 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002391 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002392 nr++;
2393 }
2394done:
2395 if (nr == 0) {
2396 /* make sure the mapping tag for page dirty gets cleared */
2397 set_page_writeback(page);
2398 end_page_writeback(page);
2399 }
Chris Masond1310b22008-01-24 16:13:08 -05002400 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002401
Chris Mason11c83492009-04-20 15:50:09 -04002402done_unlocked:
2403
Chris Mason2c64c532009-09-02 15:04:12 -04002404 /* drop our reference on any cached states */
2405 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05002406 return 0;
2407}
2408
Chris Masond1310b22008-01-24 16:13:08 -05002409/**
Chris Mason4bef0842008-09-08 11:18:08 -04002410 * 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 -05002411 * @mapping: address space structure to write
2412 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2413 * @writepage: function called for each page
2414 * @data: data passed to writepage function
2415 *
2416 * If a page is already under I/O, write_cache_pages() skips it, even
2417 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2418 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2419 * and msync() need to guarantee that all the data which was dirty at the time
2420 * the call was made get new I/O started against them. If wbc->sync_mode is
2421 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2422 * existing IO to complete.
2423 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002424static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04002425 struct address_space *mapping,
2426 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002427 writepage_t writepage, void *data,
2428 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05002429{
Chris Masond1310b22008-01-24 16:13:08 -05002430 int ret = 0;
2431 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002432 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002433 struct pagevec pvec;
2434 int nr_pages;
2435 pgoff_t index;
2436 pgoff_t end; /* Inclusive */
2437 int scanned = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002438
Chris Masond1310b22008-01-24 16:13:08 -05002439 pagevec_init(&pvec, 0);
2440 if (wbc->range_cyclic) {
2441 index = mapping->writeback_index; /* Start from prev offset */
2442 end = -1;
2443 } else {
2444 index = wbc->range_start >> PAGE_CACHE_SHIFT;
2445 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002446 scanned = 1;
2447 }
2448retry:
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002449 while (!done && !nr_to_write_done && (index <= end) &&
Chris Masond1310b22008-01-24 16:13:08 -05002450 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
Chris Masond3977122009-01-05 21:25:51 -05002451 PAGECACHE_TAG_DIRTY, min(end - index,
2452 (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05002453 unsigned i;
2454
2455 scanned = 1;
2456 for (i = 0; i < nr_pages; i++) {
2457 struct page *page = pvec.pages[i];
2458
2459 /*
2460 * At this point we hold neither mapping->tree_lock nor
2461 * lock on the page itself: the page may be truncated or
2462 * invalidated (changing page->mapping to NULL), or even
2463 * swizzled back from swapper_space to tmpfs file
2464 * mapping
2465 */
Chris Mason4bef0842008-09-08 11:18:08 -04002466 if (tree->ops && tree->ops->write_cache_pages_lock_hook)
2467 tree->ops->write_cache_pages_lock_hook(page);
2468 else
2469 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002470
2471 if (unlikely(page->mapping != mapping)) {
2472 unlock_page(page);
2473 continue;
2474 }
2475
2476 if (!wbc->range_cyclic && page->index > end) {
2477 done = 1;
2478 unlock_page(page);
2479 continue;
2480 }
2481
Chris Masond2c3f4f2008-11-19 12:44:22 -05002482 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05002483 if (PageWriteback(page))
2484 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05002485 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002486 }
Chris Masond1310b22008-01-24 16:13:08 -05002487
2488 if (PageWriteback(page) ||
2489 !clear_page_dirty_for_io(page)) {
2490 unlock_page(page);
2491 continue;
2492 }
2493
2494 ret = (*writepage)(page, wbc, data);
2495
2496 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
2497 unlock_page(page);
2498 ret = 0;
2499 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002500 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002501 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002502
2503 /*
2504 * the filesystem may choose to bump up nr_to_write.
2505 * We have to make sure to honor the new nr_to_write
2506 * at any time
2507 */
2508 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05002509 }
2510 pagevec_release(&pvec);
2511 cond_resched();
2512 }
2513 if (!scanned && !done) {
2514 /*
2515 * We hit the last page and there is more work to be done: wrap
2516 * back to the start of the file
2517 */
2518 scanned = 1;
2519 index = 0;
2520 goto retry;
2521 }
Chris Masond1310b22008-01-24 16:13:08 -05002522 return ret;
2523}
Chris Masond1310b22008-01-24 16:13:08 -05002524
Chris Masonffbd5172009-04-20 15:50:09 -04002525static void flush_epd_write_bio(struct extent_page_data *epd)
2526{
2527 if (epd->bio) {
2528 if (epd->sync_io)
2529 submit_one_bio(WRITE_SYNC, epd->bio, 0, 0);
2530 else
2531 submit_one_bio(WRITE, epd->bio, 0, 0);
2532 epd->bio = NULL;
2533 }
2534}
2535
Chris Masond2c3f4f2008-11-19 12:44:22 -05002536static noinline void flush_write_bio(void *data)
2537{
2538 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04002539 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002540}
2541
Chris Masond1310b22008-01-24 16:13:08 -05002542int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
2543 get_extent_t *get_extent,
2544 struct writeback_control *wbc)
2545{
2546 int ret;
2547 struct address_space *mapping = page->mapping;
2548 struct extent_page_data epd = {
2549 .bio = NULL,
2550 .tree = tree,
2551 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002552 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002553 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002554 };
2555 struct writeback_control wbc_writepages = {
Chris Masond313d7a2009-04-20 15:50:09 -04002556 .sync_mode = wbc->sync_mode,
Chris Masond1310b22008-01-24 16:13:08 -05002557 .older_than_this = NULL,
2558 .nr_to_write = 64,
2559 .range_start = page_offset(page) + PAGE_CACHE_SIZE,
2560 .range_end = (loff_t)-1,
2561 };
2562
Chris Masond1310b22008-01-24 16:13:08 -05002563 ret = __extent_writepage(page, wbc, &epd);
2564
Chris Mason4bef0842008-09-08 11:18:08 -04002565 extent_write_cache_pages(tree, mapping, &wbc_writepages,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002566 __extent_writepage, &epd, flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002567 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002568 return ret;
2569}
Chris Masond1310b22008-01-24 16:13:08 -05002570
Chris Mason771ed682008-11-06 22:02:51 -05002571int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
2572 u64 start, u64 end, get_extent_t *get_extent,
2573 int mode)
2574{
2575 int ret = 0;
2576 struct address_space *mapping = inode->i_mapping;
2577 struct page *page;
2578 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
2579 PAGE_CACHE_SHIFT;
2580
2581 struct extent_page_data epd = {
2582 .bio = NULL,
2583 .tree = tree,
2584 .get_extent = get_extent,
2585 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04002586 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05002587 };
2588 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05002589 .sync_mode = mode,
2590 .older_than_this = NULL,
2591 .nr_to_write = nr_pages * 2,
2592 .range_start = start,
2593 .range_end = end + 1,
2594 };
2595
Chris Masond3977122009-01-05 21:25:51 -05002596 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05002597 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
2598 if (clear_page_dirty_for_io(page))
2599 ret = __extent_writepage(page, &wbc_writepages, &epd);
2600 else {
2601 if (tree->ops && tree->ops->writepage_end_io_hook)
2602 tree->ops->writepage_end_io_hook(page, start,
2603 start + PAGE_CACHE_SIZE - 1,
2604 NULL, 1);
2605 unlock_page(page);
2606 }
2607 page_cache_release(page);
2608 start += PAGE_CACHE_SIZE;
2609 }
2610
Chris Masonffbd5172009-04-20 15:50:09 -04002611 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05002612 return ret;
2613}
Chris Masond1310b22008-01-24 16:13:08 -05002614
2615int extent_writepages(struct extent_io_tree *tree,
2616 struct address_space *mapping,
2617 get_extent_t *get_extent,
2618 struct writeback_control *wbc)
2619{
2620 int ret = 0;
2621 struct extent_page_data epd = {
2622 .bio = NULL,
2623 .tree = tree,
2624 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002625 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002626 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002627 };
2628
Chris Mason4bef0842008-09-08 11:18:08 -04002629 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002630 __extent_writepage, &epd,
2631 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002632 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002633 return ret;
2634}
Chris Masond1310b22008-01-24 16:13:08 -05002635
2636int extent_readpages(struct extent_io_tree *tree,
2637 struct address_space *mapping,
2638 struct list_head *pages, unsigned nr_pages,
2639 get_extent_t get_extent)
2640{
2641 struct bio *bio = NULL;
2642 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04002643 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002644
Chris Masond1310b22008-01-24 16:13:08 -05002645 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
2646 struct page *page = list_entry(pages->prev, struct page, lru);
2647
2648 prefetchw(&page->flags);
2649 list_del(&page->lru);
Nick Piggin28ecb6092010-03-17 13:31:04 +00002650 if (!add_to_page_cache_lru(page, mapping,
Chris Masond1310b22008-01-24 16:13:08 -05002651 page->index, GFP_KERNEL)) {
Chris Masonf1885912008-04-09 16:28:12 -04002652 __extent_read_full_page(tree, page, get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002653 &bio, 0, &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002654 }
2655 page_cache_release(page);
2656 }
Chris Masond1310b22008-01-24 16:13:08 -05002657 BUG_ON(!list_empty(pages));
2658 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002659 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002660 return 0;
2661}
Chris Masond1310b22008-01-24 16:13:08 -05002662
2663/*
2664 * basic invalidatepage code, this waits on any locked or writeback
2665 * ranges corresponding to the page, and then deletes any extent state
2666 * records from the tree
2667 */
2668int extent_invalidatepage(struct extent_io_tree *tree,
2669 struct page *page, unsigned long offset)
2670{
Josef Bacik2ac55d42010-02-03 19:33:23 +00002671 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002672 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
2673 u64 end = start + PAGE_CACHE_SIZE - 1;
2674 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
2675
Chris Masond3977122009-01-05 21:25:51 -05002676 start += (offset + blocksize - 1) & ~(blocksize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002677 if (start > end)
2678 return 0;
2679
Josef Bacik2ac55d42010-02-03 19:33:23 +00002680 lock_extent_bits(tree, start, end, 0, &cached_state, GFP_NOFS);
Chris Mason1edbb732009-09-02 13:24:36 -04002681 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002682 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04002683 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2684 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00002685 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002686 return 0;
2687}
Chris Masond1310b22008-01-24 16:13:08 -05002688
2689/*
2690 * simple commit_write call, set_range_dirty is used to mark both
2691 * the pages and the extent records as dirty
2692 */
2693int extent_commit_write(struct extent_io_tree *tree,
2694 struct inode *inode, struct page *page,
2695 unsigned from, unsigned to)
2696{
2697 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2698
2699 set_page_extent_mapped(page);
2700 set_page_dirty(page);
2701
2702 if (pos > inode->i_size) {
2703 i_size_write(inode, pos);
2704 mark_inode_dirty(inode);
2705 }
2706 return 0;
2707}
Chris Masond1310b22008-01-24 16:13:08 -05002708
2709int extent_prepare_write(struct extent_io_tree *tree,
2710 struct inode *inode, struct page *page,
2711 unsigned from, unsigned to, get_extent_t *get_extent)
2712{
2713 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
2714 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
2715 u64 block_start;
2716 u64 orig_block_start;
2717 u64 block_end;
2718 u64 cur_end;
2719 struct extent_map *em;
2720 unsigned blocksize = 1 << inode->i_blkbits;
2721 size_t page_offset = 0;
2722 size_t block_off_start;
2723 size_t block_off_end;
2724 int err = 0;
2725 int iocount = 0;
2726 int ret = 0;
2727 int isnew;
2728
2729 set_page_extent_mapped(page);
2730
2731 block_start = (page_start + from) & ~((u64)blocksize - 1);
2732 block_end = (page_start + to - 1) | (blocksize - 1);
2733 orig_block_start = block_start;
2734
2735 lock_extent(tree, page_start, page_end, GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05002736 while (block_start <= block_end) {
Chris Masond1310b22008-01-24 16:13:08 -05002737 em = get_extent(inode, page, page_offset, block_start,
2738 block_end - block_start + 1, 1);
Chris Masond3977122009-01-05 21:25:51 -05002739 if (IS_ERR(em) || !em)
Chris Masond1310b22008-01-24 16:13:08 -05002740 goto err;
Chris Masond3977122009-01-05 21:25:51 -05002741
Chris Masond1310b22008-01-24 16:13:08 -05002742 cur_end = min(block_end, extent_map_end(em) - 1);
2743 block_off_start = block_start & (PAGE_CACHE_SIZE - 1);
2744 block_off_end = block_off_start + blocksize;
2745 isnew = clear_extent_new(tree, block_start, cur_end, GFP_NOFS);
2746
2747 if (!PageUptodate(page) && isnew &&
2748 (block_off_end > to || block_off_start < from)) {
2749 void *kaddr;
2750
2751 kaddr = kmap_atomic(page, KM_USER0);
2752 if (block_off_end > to)
2753 memset(kaddr + to, 0, block_off_end - to);
2754 if (block_off_start < from)
2755 memset(kaddr + block_off_start, 0,
2756 from - block_off_start);
2757 flush_dcache_page(page);
2758 kunmap_atomic(kaddr, KM_USER0);
2759 }
2760 if ((em->block_start != EXTENT_MAP_HOLE &&
2761 em->block_start != EXTENT_MAP_INLINE) &&
2762 !isnew && !PageUptodate(page) &&
2763 (block_off_end > to || block_off_start < from) &&
2764 !test_range_bit(tree, block_start, cur_end,
Chris Mason9655d292009-09-02 15:22:30 -04002765 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002766 u64 sector;
2767 u64 extent_offset = block_start - em->start;
2768 size_t iosize;
2769 sector = (em->block_start + extent_offset) >> 9;
2770 iosize = (cur_end - block_start + blocksize) &
2771 ~((u64)blocksize - 1);
2772 /*
2773 * we've already got the extent locked, but we
2774 * need to split the state such that our end_bio
2775 * handler can clear the lock.
2776 */
2777 set_extent_bit(tree, block_start,
2778 block_start + iosize - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04002779 EXTENT_LOCKED, 0, NULL, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002780 ret = submit_extent_page(READ, tree, page,
2781 sector, iosize, page_offset, em->bdev,
2782 NULL, 1,
Chris Masonc8b97812008-10-29 14:49:59 -04002783 end_bio_extent_preparewrite, 0,
2784 0, 0);
Andi Kleen411fc6b2010-10-29 15:14:31 -04002785 if (ret && !err)
2786 err = ret;
Chris Masond1310b22008-01-24 16:13:08 -05002787 iocount++;
2788 block_start = block_start + iosize;
2789 } else {
2790 set_extent_uptodate(tree, block_start, cur_end,
2791 GFP_NOFS);
2792 unlock_extent(tree, block_start, cur_end, GFP_NOFS);
2793 block_start = cur_end + 1;
2794 }
2795 page_offset = block_start & (PAGE_CACHE_SIZE - 1);
2796 free_extent_map(em);
2797 }
2798 if (iocount) {
2799 wait_extent_bit(tree, orig_block_start,
2800 block_end, EXTENT_LOCKED);
2801 }
2802 check_page_uptodate(tree, page);
2803err:
2804 /* FIXME, zero out newly allocated blocks on error */
2805 return err;
2806}
Chris Masond1310b22008-01-24 16:13:08 -05002807
2808/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04002809 * a helper for releasepage, this tests for areas of the page that
2810 * are locked or under IO and drops the related state bits if it is safe
2811 * to drop the page.
2812 */
2813int try_release_extent_state(struct extent_map_tree *map,
2814 struct extent_io_tree *tree, struct page *page,
2815 gfp_t mask)
2816{
2817 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2818 u64 end = start + PAGE_CACHE_SIZE - 1;
2819 int ret = 1;
2820
Chris Mason211f90e2008-07-18 11:56:15 -04002821 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04002822 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04002823 ret = 0;
2824 else {
2825 if ((mask & GFP_NOFS) == GFP_NOFS)
2826 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04002827 /*
2828 * at this point we can safely clear everything except the
2829 * locked bit and the nodatasum bit
2830 */
Chris Masone3f24cc2011-02-14 12:52:08 -05002831 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04002832 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
2833 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05002834
2835 /* if clear_extent_bit failed for enomem reasons,
2836 * we can't allow the release to continue.
2837 */
2838 if (ret < 0)
2839 ret = 0;
2840 else
2841 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002842 }
2843 return ret;
2844}
Chris Mason7b13b7b2008-04-18 10:29:50 -04002845
2846/*
Chris Masond1310b22008-01-24 16:13:08 -05002847 * a helper for releasepage. As long as there are no locked extents
2848 * in the range corresponding to the page, both state records and extent
2849 * map records are removed
2850 */
2851int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05002852 struct extent_io_tree *tree, struct page *page,
2853 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05002854{
2855 struct extent_map *em;
2856 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2857 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002858
Chris Mason70dec802008-01-29 09:59:12 -05002859 if ((mask & __GFP_WAIT) &&
2860 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05002861 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05002862 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05002863 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04002864 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05002865 em = lookup_extent_mapping(map, start, len);
Chris Mason70dec802008-01-29 09:59:12 -05002866 if (!em || IS_ERR(em)) {
Chris Mason890871b2009-09-02 16:24:52 -04002867 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002868 break;
2869 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002870 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
2871 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04002872 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002873 free_extent_map(em);
2874 break;
2875 }
2876 if (!test_range_bit(tree, em->start,
2877 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04002878 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04002879 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05002880 remove_extent_mapping(map, em);
2881 /* once for the rb tree */
2882 free_extent_map(em);
2883 }
2884 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04002885 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002886
2887 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05002888 free_extent_map(em);
2889 }
Chris Masond1310b22008-01-24 16:13:08 -05002890 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04002891 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05002892}
Chris Masond1310b22008-01-24 16:13:08 -05002893
2894sector_t extent_bmap(struct address_space *mapping, sector_t iblock,
2895 get_extent_t *get_extent)
2896{
2897 struct inode *inode = mapping->host;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002898 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002899 u64 start = iblock << inode->i_blkbits;
2900 sector_t sector = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04002901 size_t blksize = (1 << inode->i_blkbits);
Chris Masond1310b22008-01-24 16:13:08 -05002902 struct extent_map *em;
2903
Josef Bacik2ac55d42010-02-03 19:33:23 +00002904 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + blksize - 1,
2905 0, &cached_state, GFP_NOFS);
Yan Zhengd899e052008-10-30 14:25:28 -04002906 em = get_extent(inode, NULL, 0, start, blksize, 0);
Josef Bacik2ac55d42010-02-03 19:33:23 +00002907 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start,
2908 start + blksize - 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002909 if (!em || IS_ERR(em))
2910 return 0;
2911
Yan Zhengd899e052008-10-30 14:25:28 -04002912 if (em->block_start > EXTENT_MAP_LAST_BYTE)
Chris Masond1310b22008-01-24 16:13:08 -05002913 goto out;
2914
2915 sector = (em->block_start + start - em->start) >> inode->i_blkbits;
Chris Masond1310b22008-01-24 16:13:08 -05002916out:
2917 free_extent_map(em);
2918 return sector;
2919}
2920
Chris Masonec29ed52011-02-23 16:23:20 -05002921/*
2922 * helper function for fiemap, which doesn't want to see any holes.
2923 * This maps until we find something past 'last'
2924 */
2925static struct extent_map *get_extent_skip_holes(struct inode *inode,
2926 u64 offset,
2927 u64 last,
2928 get_extent_t *get_extent)
2929{
2930 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
2931 struct extent_map *em;
2932 u64 len;
2933
2934 if (offset >= last)
2935 return NULL;
2936
2937 while(1) {
2938 len = last - offset;
2939 if (len == 0)
2940 break;
2941 len = (len + sectorsize - 1) & ~(sectorsize - 1);
2942 em = get_extent(inode, NULL, 0, offset, len, 0);
2943 if (!em || IS_ERR(em))
2944 return em;
2945
2946 /* if this isn't a hole return it */
2947 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
2948 em->block_start != EXTENT_MAP_HOLE) {
2949 return em;
2950 }
2951
2952 /* this is a hole, advance to the next extent */
2953 offset = extent_map_end(em);
2954 free_extent_map(em);
2955 if (offset >= last)
2956 break;
2957 }
2958 return NULL;
2959}
2960
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002961int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2962 __u64 start, __u64 len, get_extent_t *get_extent)
2963{
Josef Bacik975f84f2010-11-23 19:36:57 +00002964 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002965 u64 off = start;
2966 u64 max = start + len;
2967 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00002968 u32 found_type;
2969 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05002970 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002971 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05002972 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00002973 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002974 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002975 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00002976 struct btrfs_path *path;
2977 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002978 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05002979 u64 em_start = 0;
2980 u64 em_len = 0;
2981 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002982 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002983
2984 if (len == 0)
2985 return -EINVAL;
2986
Josef Bacik975f84f2010-11-23 19:36:57 +00002987 path = btrfs_alloc_path();
2988 if (!path)
2989 return -ENOMEM;
2990 path->leave_spinning = 1;
2991
Chris Masonec29ed52011-02-23 16:23:20 -05002992 /*
2993 * lookup the last file extent. We're not using i_size here
2994 * because there might be preallocation past i_size
2995 */
Josef Bacik975f84f2010-11-23 19:36:57 +00002996 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
2997 path, inode->i_ino, -1, 0);
2998 if (ret < 0) {
2999 btrfs_free_path(path);
3000 return ret;
3001 }
3002 WARN_ON(!ret);
3003 path->slots[0]--;
3004 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3005 struct btrfs_file_extent_item);
3006 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
3007 found_type = btrfs_key_type(&found_key);
3008
Chris Masonec29ed52011-02-23 16:23:20 -05003009 /* No extents, but there might be delalloc bits */
Josef Bacik975f84f2010-11-23 19:36:57 +00003010 if (found_key.objectid != inode->i_ino ||
3011 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05003012 /* have to trust i_size as the end */
3013 last = (u64)-1;
3014 last_for_get_extent = isize;
3015 } else {
3016 /*
3017 * remember the start of the last extent. There are a
3018 * bunch of different factors that go into the length of the
3019 * extent, so its much less complex to remember where it started
3020 */
3021 last = found_key.offset;
3022 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00003023 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003024 btrfs_free_path(path);
3025
Chris Masonec29ed52011-02-23 16:23:20 -05003026 /*
3027 * we might have some extents allocated but more delalloc past those
3028 * extents. so, we trust isize unless the start of the last extent is
3029 * beyond isize
3030 */
3031 if (last < isize) {
3032 last = (u64)-1;
3033 last_for_get_extent = isize;
3034 }
3035
Josef Bacik2ac55d42010-02-03 19:33:23 +00003036 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
3037 &cached_state, GFP_NOFS);
Chris Masonec29ed52011-02-23 16:23:20 -05003038
3039 em = get_extent_skip_holes(inode, off, last_for_get_extent,
3040 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003041 if (!em)
3042 goto out;
3043 if (IS_ERR(em)) {
3044 ret = PTR_ERR(em);
3045 goto out;
3046 }
Josef Bacik975f84f2010-11-23 19:36:57 +00003047
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003048 while (!end) {
Chris Masonec29ed52011-02-23 16:23:20 -05003049 off = extent_map_end(em);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003050 if (off >= max)
3051 end = 1;
3052
3053 em_start = em->start;
3054 em_len = em->len;
Chris Masonec29ed52011-02-23 16:23:20 -05003055 em_end = extent_map_end(em);
3056 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003057 disko = 0;
3058 flags = 0;
3059
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003060 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003061 end = 1;
3062 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003063 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003064 flags |= (FIEMAP_EXTENT_DATA_INLINE |
3065 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003066 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003067 flags |= (FIEMAP_EXTENT_DELALLOC |
3068 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04003069 } else {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003070 disko = em->block_start;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003071 }
3072 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
3073 flags |= FIEMAP_EXTENT_ENCODED;
3074
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003075 free_extent_map(em);
3076 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05003077 if ((em_start >= last) || em_len == (u64)-1 ||
3078 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003079 flags |= FIEMAP_EXTENT_LAST;
3080 end = 1;
3081 }
3082
Chris Masonec29ed52011-02-23 16:23:20 -05003083 /* now scan forward to see if this is really the last extent. */
3084 em = get_extent_skip_holes(inode, off, last_for_get_extent,
3085 get_extent);
3086 if (IS_ERR(em)) {
3087 ret = PTR_ERR(em);
3088 goto out;
3089 }
3090 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00003091 flags |= FIEMAP_EXTENT_LAST;
3092 end = 1;
3093 }
Chris Masonec29ed52011-02-23 16:23:20 -05003094 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
3095 em_len, flags);
3096 if (ret)
3097 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003098 }
3099out_free:
3100 free_extent_map(em);
3101out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00003102 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
3103 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05003104 return ret;
3105}
3106
Chris Masond1310b22008-01-24 16:13:08 -05003107static inline struct page *extent_buffer_page(struct extent_buffer *eb,
3108 unsigned long i)
3109{
3110 struct page *p;
3111 struct address_space *mapping;
3112
3113 if (i == 0)
3114 return eb->first_page;
3115 i += eb->start >> PAGE_CACHE_SHIFT;
3116 mapping = eb->first_page->mapping;
Chris Mason33958dc2008-07-30 10:29:12 -04003117 if (!mapping)
3118 return NULL;
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003119
3120 /*
3121 * extent_buffer_page is only called after pinning the page
3122 * by increasing the reference count. So we know the page must
3123 * be in the radix tree.
3124 */
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003125 rcu_read_lock();
Chris Masond1310b22008-01-24 16:13:08 -05003126 p = radix_tree_lookup(&mapping->page_tree, i);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003127 rcu_read_unlock();
Chris Mason2b1f55b2008-09-24 11:48:04 -04003128
Chris Masond1310b22008-01-24 16:13:08 -05003129 return p;
3130}
3131
Chris Mason6af118ce2008-07-22 11:18:07 -04003132static inline unsigned long num_extent_pages(u64 start, u64 len)
Chris Masonce9adaa2008-04-09 16:28:12 -04003133{
Chris Mason6af118ce2008-07-22 11:18:07 -04003134 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3135 (start >> PAGE_CACHE_SHIFT);
Chris Mason728131d2008-04-09 16:28:12 -04003136}
3137
Chris Masond1310b22008-01-24 16:13:08 -05003138static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3139 u64 start,
3140 unsigned long len,
3141 gfp_t mask)
3142{
3143 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003144#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003145 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003146#endif
Chris Masond1310b22008-01-24 16:13:08 -05003147
Chris Masond1310b22008-01-24 16:13:08 -05003148 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003149 if (eb == NULL)
3150 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003151 eb->start = start;
3152 eb->len = len;
Chris Masonb4ce94d2009-02-04 09:25:08 -05003153 spin_lock_init(&eb->lock);
3154 init_waitqueue_head(&eb->lock_wq);
Miao Xie19fe0a82010-10-26 20:57:29 -04003155 INIT_RCU_HEAD(&eb->rcu_head);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003156
Chris Mason39351272009-02-04 09:24:05 -05003157#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003158 spin_lock_irqsave(&leak_lock, flags);
3159 list_add(&eb->leak_list, &buffers);
3160 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003161#endif
Chris Masond1310b22008-01-24 16:13:08 -05003162 atomic_set(&eb->refs, 1);
3163
3164 return eb;
3165}
3166
3167static void __free_extent_buffer(struct extent_buffer *eb)
3168{
Chris Mason39351272009-02-04 09:24:05 -05003169#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003170 unsigned long flags;
3171 spin_lock_irqsave(&leak_lock, flags);
3172 list_del(&eb->leak_list);
3173 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003174#endif
Chris Masond1310b22008-01-24 16:13:08 -05003175 kmem_cache_free(extent_buffer_cache, eb);
3176}
3177
Miao Xie897ca6e2010-10-26 20:57:29 -04003178/*
3179 * Helper for releasing extent buffer page.
3180 */
3181static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
3182 unsigned long start_idx)
3183{
3184 unsigned long index;
3185 struct page *page;
3186
3187 if (!eb->first_page)
3188 return;
3189
3190 index = num_extent_pages(eb->start, eb->len);
3191 if (start_idx >= index)
3192 return;
3193
3194 do {
3195 index--;
3196 page = extent_buffer_page(eb, index);
3197 if (page)
3198 page_cache_release(page);
3199 } while (index != start_idx);
3200}
3201
3202/*
3203 * Helper for releasing the extent buffer.
3204 */
3205static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
3206{
3207 btrfs_release_extent_buffer_page(eb, 0);
3208 __free_extent_buffer(eb);
3209}
3210
Chris Masond1310b22008-01-24 16:13:08 -05003211struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
3212 u64 start, unsigned long len,
3213 struct page *page0,
3214 gfp_t mask)
3215{
3216 unsigned long num_pages = num_extent_pages(start, len);
3217 unsigned long i;
3218 unsigned long index = start >> PAGE_CACHE_SHIFT;
3219 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04003220 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003221 struct page *p;
3222 struct address_space *mapping = tree->mapping;
3223 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04003224 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003225
Miao Xie19fe0a82010-10-26 20:57:29 -04003226 rcu_read_lock();
3227 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
3228 if (eb && atomic_inc_not_zero(&eb->refs)) {
3229 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003230 mark_page_accessed(eb->first_page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003231 return eb;
3232 }
Miao Xie19fe0a82010-10-26 20:57:29 -04003233 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04003234
Chris Masond1310b22008-01-24 16:13:08 -05003235 eb = __alloc_extent_buffer(tree, start, len, mask);
Peter2b114d12008-04-01 11:21:40 -04003236 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05003237 return NULL;
3238
Chris Masond1310b22008-01-24 16:13:08 -05003239 if (page0) {
3240 eb->first_page = page0;
3241 i = 1;
3242 index++;
3243 page_cache_get(page0);
3244 mark_page_accessed(page0);
3245 set_page_extent_mapped(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003246 set_page_extent_head(page0, len);
Chris Masonf1885912008-04-09 16:28:12 -04003247 uptodate = PageUptodate(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003248 } else {
3249 i = 0;
3250 }
3251 for (; i < num_pages; i++, index++) {
3252 p = find_or_create_page(mapping, index, mask | __GFP_HIGHMEM);
3253 if (!p) {
3254 WARN_ON(1);
Chris Mason6af118ce2008-07-22 11:18:07 -04003255 goto free_eb;
Chris Masond1310b22008-01-24 16:13:08 -05003256 }
3257 set_page_extent_mapped(p);
3258 mark_page_accessed(p);
3259 if (i == 0) {
3260 eb->first_page = p;
3261 set_page_extent_head(p, len);
3262 } else {
3263 set_page_private(p, EXTENT_PAGE_PRIVATE);
3264 }
3265 if (!PageUptodate(p))
3266 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05003267
3268 /*
3269 * see below about how we avoid a nasty race with release page
3270 * and why we unlock later
3271 */
3272 if (i != 0)
3273 unlock_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05003274 }
3275 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003276 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003277
Miao Xie19fe0a82010-10-26 20:57:29 -04003278 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
3279 if (ret)
3280 goto free_eb;
3281
Chris Mason6af118ce2008-07-22 11:18:07 -04003282 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003283 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
3284 if (ret == -EEXIST) {
3285 exists = radix_tree_lookup(&tree->buffer,
3286 start >> PAGE_CACHE_SHIFT);
Chris Mason6af118ce2008-07-22 11:18:07 -04003287 /* add one reference for the caller */
3288 atomic_inc(&exists->refs);
3289 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003290 radix_tree_preload_end();
Chris Mason6af118ce2008-07-22 11:18:07 -04003291 goto free_eb;
3292 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003293 /* add one reference for the tree */
3294 atomic_inc(&eb->refs);
Yan, Zhengf044ba72010-02-04 08:46:56 +00003295 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003296 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05003297
3298 /*
3299 * there is a race where release page may have
3300 * tried to find this extent buffer in the radix
3301 * but failed. It will tell the VM it is safe to
3302 * reclaim the, and it will clear the page private bit.
3303 * We must make sure to set the page private bit properly
3304 * after the extent buffer is in the radix tree so
3305 * it doesn't get lost
3306 */
3307 set_page_extent_mapped(eb->first_page);
3308 set_page_extent_head(eb->first_page, eb->len);
3309 if (!page0)
3310 unlock_page(eb->first_page);
Chris Masond1310b22008-01-24 16:13:08 -05003311 return eb;
3312
Chris Mason6af118ce2008-07-22 11:18:07 -04003313free_eb:
Chris Masoneb14ab82011-02-10 12:35:00 -05003314 if (eb->first_page && !page0)
3315 unlock_page(eb->first_page);
3316
Chris Masond1310b22008-01-24 16:13:08 -05003317 if (!atomic_dec_and_test(&eb->refs))
Chris Mason6af118ce2008-07-22 11:18:07 -04003318 return exists;
Miao Xie897ca6e2010-10-26 20:57:29 -04003319 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04003320 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05003321}
Chris Masond1310b22008-01-24 16:13:08 -05003322
3323struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
3324 u64 start, unsigned long len,
3325 gfp_t mask)
3326{
Chris Masond1310b22008-01-24 16:13:08 -05003327 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05003328
Miao Xie19fe0a82010-10-26 20:57:29 -04003329 rcu_read_lock();
3330 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
3331 if (eb && atomic_inc_not_zero(&eb->refs)) {
3332 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003333 mark_page_accessed(eb->first_page);
Miao Xie19fe0a82010-10-26 20:57:29 -04003334 return eb;
3335 }
3336 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003337
Miao Xie19fe0a82010-10-26 20:57:29 -04003338 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003339}
Chris Masond1310b22008-01-24 16:13:08 -05003340
3341void free_extent_buffer(struct extent_buffer *eb)
3342{
Chris Masond1310b22008-01-24 16:13:08 -05003343 if (!eb)
3344 return;
3345
3346 if (!atomic_dec_and_test(&eb->refs))
3347 return;
3348
Chris Mason6af118ce2008-07-22 11:18:07 -04003349 WARN_ON(1);
Chris Masond1310b22008-01-24 16:13:08 -05003350}
Chris Masond1310b22008-01-24 16:13:08 -05003351
3352int clear_extent_buffer_dirty(struct extent_io_tree *tree,
3353 struct extent_buffer *eb)
3354{
Chris Masond1310b22008-01-24 16:13:08 -05003355 unsigned long i;
3356 unsigned long num_pages;
3357 struct page *page;
3358
Chris Masond1310b22008-01-24 16:13:08 -05003359 num_pages = num_extent_pages(eb->start, eb->len);
3360
3361 for (i = 0; i < num_pages; i++) {
3362 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04003363 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05003364 continue;
3365
Chris Masona61e6f22008-07-22 11:18:08 -04003366 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05003367 WARN_ON(!PagePrivate(page));
3368
3369 set_page_extent_mapped(page);
Chris Masond1310b22008-01-24 16:13:08 -05003370 if (i == 0)
3371 set_page_extent_head(page, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05003372
Chris Masond1310b22008-01-24 16:13:08 -05003373 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003374 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003375 if (!PageDirty(page)) {
3376 radix_tree_tag_clear(&page->mapping->page_tree,
3377 page_index(page),
3378 PAGECACHE_TAG_DIRTY);
3379 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003380 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masona61e6f22008-07-22 11:18:08 -04003381 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003382 }
3383 return 0;
3384}
Chris Masond1310b22008-01-24 16:13:08 -05003385
3386int wait_on_extent_buffer_writeback(struct extent_io_tree *tree,
3387 struct extent_buffer *eb)
3388{
3389 return wait_on_extent_writeback(tree, eb->start,
3390 eb->start + eb->len - 1);
3391}
Chris Masond1310b22008-01-24 16:13:08 -05003392
3393int set_extent_buffer_dirty(struct extent_io_tree *tree,
3394 struct extent_buffer *eb)
3395{
3396 unsigned long i;
3397 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04003398 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003399
Chris Masonb9473432009-03-13 11:00:37 -04003400 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003401 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb9473432009-03-13 11:00:37 -04003402 for (i = 0; i < num_pages; i++)
Chris Masond1310b22008-01-24 16:13:08 -05003403 __set_page_dirty_nobuffers(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04003404 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05003405}
Chris Masond1310b22008-01-24 16:13:08 -05003406
Chris Mason1259ab72008-05-12 13:39:03 -04003407int clear_extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003408 struct extent_buffer *eb,
3409 struct extent_state **cached_state)
Chris Mason1259ab72008-05-12 13:39:03 -04003410{
3411 unsigned long i;
3412 struct page *page;
3413 unsigned long num_pages;
3414
3415 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003416 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Mason1259ab72008-05-12 13:39:03 -04003417
3418 clear_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003419 cached_state, GFP_NOFS);
Chris Mason1259ab72008-05-12 13:39:03 -04003420 for (i = 0; i < num_pages; i++) {
3421 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04003422 if (page)
3423 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003424 }
3425 return 0;
3426}
3427
Chris Masond1310b22008-01-24 16:13:08 -05003428int set_extent_buffer_uptodate(struct extent_io_tree *tree,
3429 struct extent_buffer *eb)
3430{
3431 unsigned long i;
3432 struct page *page;
3433 unsigned long num_pages;
3434
3435 num_pages = num_extent_pages(eb->start, eb->len);
3436
3437 set_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3438 GFP_NOFS);
3439 for (i = 0; i < num_pages; i++) {
3440 page = extent_buffer_page(eb, i);
3441 if ((i == 0 && (eb->start & (PAGE_CACHE_SIZE - 1))) ||
3442 ((i == num_pages - 1) &&
3443 ((eb->start + eb->len) & (PAGE_CACHE_SIZE - 1)))) {
3444 check_page_uptodate(tree, page);
3445 continue;
3446 }
3447 SetPageUptodate(page);
3448 }
3449 return 0;
3450}
Chris Masond1310b22008-01-24 16:13:08 -05003451
Chris Masonce9adaa2008-04-09 16:28:12 -04003452int extent_range_uptodate(struct extent_io_tree *tree,
3453 u64 start, u64 end)
3454{
3455 struct page *page;
3456 int ret;
3457 int pg_uptodate = 1;
3458 int uptodate;
3459 unsigned long index;
3460
Chris Mason9655d292009-09-02 15:22:30 -04003461 ret = test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL);
Chris Masonce9adaa2008-04-09 16:28:12 -04003462 if (ret)
3463 return 1;
Chris Masond3977122009-01-05 21:25:51 -05003464 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003465 index = start >> PAGE_CACHE_SHIFT;
3466 page = find_get_page(tree->mapping, index);
3467 uptodate = PageUptodate(page);
3468 page_cache_release(page);
3469 if (!uptodate) {
3470 pg_uptodate = 0;
3471 break;
3472 }
3473 start += PAGE_CACHE_SIZE;
3474 }
3475 return pg_uptodate;
3476}
3477
Chris Masond1310b22008-01-24 16:13:08 -05003478int extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003479 struct extent_buffer *eb,
3480 struct extent_state *cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05003481{
Chris Mason728131d2008-04-09 16:28:12 -04003482 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003483 unsigned long num_pages;
3484 unsigned long i;
Chris Mason728131d2008-04-09 16:28:12 -04003485 struct page *page;
3486 int pg_uptodate = 1;
3487
Chris Masonb4ce94d2009-02-04 09:25:08 -05003488 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Mason42352982008-04-28 16:40:52 -04003489 return 1;
Chris Mason728131d2008-04-09 16:28:12 -04003490
Chris Mason42352982008-04-28 16:40:52 -04003491 ret = test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003492 EXTENT_UPTODATE, 1, cached_state);
Chris Mason42352982008-04-28 16:40:52 -04003493 if (ret)
3494 return ret;
Chris Mason728131d2008-04-09 16:28:12 -04003495
3496 num_pages = num_extent_pages(eb->start, eb->len);
3497 for (i = 0; i < num_pages; i++) {
3498 page = extent_buffer_page(eb, i);
3499 if (!PageUptodate(page)) {
3500 pg_uptodate = 0;
3501 break;
3502 }
3503 }
Chris Mason42352982008-04-28 16:40:52 -04003504 return pg_uptodate;
Chris Masond1310b22008-01-24 16:13:08 -05003505}
Chris Masond1310b22008-01-24 16:13:08 -05003506
3507int read_extent_buffer_pages(struct extent_io_tree *tree,
3508 struct extent_buffer *eb,
Chris Masona86c12c2008-02-07 10:50:54 -05003509 u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04003510 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003511{
3512 unsigned long i;
3513 unsigned long start_i;
3514 struct page *page;
3515 int err;
3516 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003517 int locked_pages = 0;
3518 int all_uptodate = 1;
3519 int inc_all_pages = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003520 unsigned long num_pages;
Chris Masona86c12c2008-02-07 10:50:54 -05003521 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003522 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05003523
Chris Masonb4ce94d2009-02-04 09:25:08 -05003524 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05003525 return 0;
3526
Chris Masonce9adaa2008-04-09 16:28:12 -04003527 if (test_range_bit(tree, eb->start, eb->start + eb->len - 1,
Chris Mason9655d292009-09-02 15:22:30 -04003528 EXTENT_UPTODATE, 1, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05003529 return 0;
3530 }
3531
3532 if (start) {
3533 WARN_ON(start < eb->start);
3534 start_i = (start >> PAGE_CACHE_SHIFT) -
3535 (eb->start >> PAGE_CACHE_SHIFT);
3536 } else {
3537 start_i = 0;
3538 }
3539
3540 num_pages = num_extent_pages(eb->start, eb->len);
3541 for (i = start_i; i < num_pages; i++) {
3542 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003543 if (!wait) {
David Woodhouse2db04962008-08-07 11:19:43 -04003544 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003545 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05003546 } else {
3547 lock_page(page);
3548 }
Chris Masonce9adaa2008-04-09 16:28:12 -04003549 locked_pages++;
Chris Masond3977122009-01-05 21:25:51 -05003550 if (!PageUptodate(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003551 all_uptodate = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003552 }
3553 if (all_uptodate) {
3554 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003555 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04003556 goto unlock_exit;
3557 }
3558
3559 for (i = start_i; i < num_pages; i++) {
3560 page = extent_buffer_page(eb, i);
Chris Masoneb14ab82011-02-10 12:35:00 -05003561
3562 WARN_ON(!PagePrivate(page));
3563
3564 set_page_extent_mapped(page);
3565 if (i == 0)
3566 set_page_extent_head(page, eb->len);
3567
Chris Masonce9adaa2008-04-09 16:28:12 -04003568 if (inc_all_pages)
3569 page_cache_get(page);
3570 if (!PageUptodate(page)) {
3571 if (start_i == 0)
3572 inc_all_pages = 1;
Chris Masonf1885912008-04-09 16:28:12 -04003573 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05003574 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04003575 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003576 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05003577 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05003578 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05003579 } else {
3580 unlock_page(page);
3581 }
3582 }
3583
Chris Masona86c12c2008-02-07 10:50:54 -05003584 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04003585 submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masona86c12c2008-02-07 10:50:54 -05003586
Chris Masond3977122009-01-05 21:25:51 -05003587 if (ret || !wait)
Chris Masond1310b22008-01-24 16:13:08 -05003588 return ret;
Chris Masond3977122009-01-05 21:25:51 -05003589
Chris Masond1310b22008-01-24 16:13:08 -05003590 for (i = start_i; i < num_pages; i++) {
3591 page = extent_buffer_page(eb, i);
3592 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05003593 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05003594 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05003595 }
Chris Masond3977122009-01-05 21:25:51 -05003596
Chris Masond1310b22008-01-24 16:13:08 -05003597 if (!ret)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003598 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003599 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04003600
3601unlock_exit:
3602 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05003603 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003604 page = extent_buffer_page(eb, i);
3605 i++;
3606 unlock_page(page);
3607 locked_pages--;
3608 }
3609 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003610}
Chris Masond1310b22008-01-24 16:13:08 -05003611
3612void read_extent_buffer(struct extent_buffer *eb, void *dstv,
3613 unsigned long start,
3614 unsigned long len)
3615{
3616 size_t cur;
3617 size_t offset;
3618 struct page *page;
3619 char *kaddr;
3620 char *dst = (char *)dstv;
3621 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3622 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003623
3624 WARN_ON(start > eb->len);
3625 WARN_ON(start + len > eb->start + eb->len);
3626
3627 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3628
Chris Masond3977122009-01-05 21:25:51 -05003629 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003630 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003631
3632 cur = min(len, (PAGE_CACHE_SIZE - offset));
3633 kaddr = kmap_atomic(page, KM_USER1);
3634 memcpy(dst, kaddr + offset, cur);
3635 kunmap_atomic(kaddr, KM_USER1);
3636
3637 dst += cur;
3638 len -= cur;
3639 offset = 0;
3640 i++;
3641 }
3642}
Chris Masond1310b22008-01-24 16:13:08 -05003643
3644int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
3645 unsigned long min_len, char **token, char **map,
3646 unsigned long *map_start,
3647 unsigned long *map_len, int km)
3648{
3649 size_t offset = start & (PAGE_CACHE_SIZE - 1);
3650 char *kaddr;
3651 struct page *p;
3652 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3653 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3654 unsigned long end_i = (start_offset + start + min_len - 1) >>
3655 PAGE_CACHE_SHIFT;
3656
3657 if (i != end_i)
3658 return -EINVAL;
3659
3660 if (i == 0) {
3661 offset = start_offset;
3662 *map_start = 0;
3663 } else {
3664 offset = 0;
3665 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
3666 }
Chris Masond3977122009-01-05 21:25:51 -05003667
Chris Masond1310b22008-01-24 16:13:08 -05003668 if (start + min_len > eb->len) {
Chris Masond3977122009-01-05 21:25:51 -05003669 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
3670 "wanted %lu %lu\n", (unsigned long long)eb->start,
3671 eb->len, start, min_len);
Chris Masond1310b22008-01-24 16:13:08 -05003672 WARN_ON(1);
3673 }
3674
3675 p = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003676 kaddr = kmap_atomic(p, km);
3677 *token = kaddr;
3678 *map = kaddr + offset;
3679 *map_len = PAGE_CACHE_SIZE - offset;
3680 return 0;
3681}
Chris Masond1310b22008-01-24 16:13:08 -05003682
3683int map_extent_buffer(struct extent_buffer *eb, unsigned long start,
3684 unsigned long min_len,
3685 char **token, char **map,
3686 unsigned long *map_start,
3687 unsigned long *map_len, int km)
3688{
3689 int err;
3690 int save = 0;
3691 if (eb->map_token) {
3692 unmap_extent_buffer(eb, eb->map_token, km);
3693 eb->map_token = NULL;
3694 save = 1;
3695 }
3696 err = map_private_extent_buffer(eb, start, min_len, token, map,
3697 map_start, map_len, km);
3698 if (!err && save) {
3699 eb->map_token = *token;
3700 eb->kaddr = *map;
3701 eb->map_start = *map_start;
3702 eb->map_len = *map_len;
3703 }
3704 return err;
3705}
Chris Masond1310b22008-01-24 16:13:08 -05003706
3707void unmap_extent_buffer(struct extent_buffer *eb, char *token, int km)
3708{
3709 kunmap_atomic(token, km);
3710}
Chris Masond1310b22008-01-24 16:13:08 -05003711
3712int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
3713 unsigned long start,
3714 unsigned long len)
3715{
3716 size_t cur;
3717 size_t offset;
3718 struct page *page;
3719 char *kaddr;
3720 char *ptr = (char *)ptrv;
3721 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3722 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3723 int ret = 0;
3724
3725 WARN_ON(start > eb->len);
3726 WARN_ON(start + len > eb->start + eb->len);
3727
3728 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3729
Chris Masond3977122009-01-05 21:25:51 -05003730 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003731 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003732
3733 cur = min(len, (PAGE_CACHE_SIZE - offset));
3734
3735 kaddr = kmap_atomic(page, KM_USER0);
3736 ret = memcmp(ptr, kaddr + offset, cur);
3737 kunmap_atomic(kaddr, KM_USER0);
3738 if (ret)
3739 break;
3740
3741 ptr += cur;
3742 len -= cur;
3743 offset = 0;
3744 i++;
3745 }
3746 return ret;
3747}
Chris Masond1310b22008-01-24 16:13:08 -05003748
3749void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
3750 unsigned long start, unsigned long len)
3751{
3752 size_t cur;
3753 size_t offset;
3754 struct page *page;
3755 char *kaddr;
3756 char *src = (char *)srcv;
3757 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3758 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3759
3760 WARN_ON(start > eb->len);
3761 WARN_ON(start + len > eb->start + eb->len);
3762
3763 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3764
Chris Masond3977122009-01-05 21:25:51 -05003765 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003766 page = extent_buffer_page(eb, i);
3767 WARN_ON(!PageUptodate(page));
3768
3769 cur = min(len, PAGE_CACHE_SIZE - offset);
3770 kaddr = kmap_atomic(page, KM_USER1);
3771 memcpy(kaddr + offset, src, cur);
3772 kunmap_atomic(kaddr, KM_USER1);
3773
3774 src += cur;
3775 len -= cur;
3776 offset = 0;
3777 i++;
3778 }
3779}
Chris Masond1310b22008-01-24 16:13:08 -05003780
3781void memset_extent_buffer(struct extent_buffer *eb, char c,
3782 unsigned long start, unsigned long len)
3783{
3784 size_t cur;
3785 size_t offset;
3786 struct page *page;
3787 char *kaddr;
3788 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3789 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3790
3791 WARN_ON(start > eb->len);
3792 WARN_ON(start + len > eb->start + eb->len);
3793
3794 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3795
Chris Masond3977122009-01-05 21:25:51 -05003796 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003797 page = extent_buffer_page(eb, i);
3798 WARN_ON(!PageUptodate(page));
3799
3800 cur = min(len, PAGE_CACHE_SIZE - offset);
3801 kaddr = kmap_atomic(page, KM_USER0);
3802 memset(kaddr + offset, c, cur);
3803 kunmap_atomic(kaddr, KM_USER0);
3804
3805 len -= cur;
3806 offset = 0;
3807 i++;
3808 }
3809}
Chris Masond1310b22008-01-24 16:13:08 -05003810
3811void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
3812 unsigned long dst_offset, unsigned long src_offset,
3813 unsigned long len)
3814{
3815 u64 dst_len = dst->len;
3816 size_t cur;
3817 size_t offset;
3818 struct page *page;
3819 char *kaddr;
3820 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3821 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3822
3823 WARN_ON(src->len != dst_len);
3824
3825 offset = (start_offset + dst_offset) &
3826 ((unsigned long)PAGE_CACHE_SIZE - 1);
3827
Chris Masond3977122009-01-05 21:25:51 -05003828 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003829 page = extent_buffer_page(dst, i);
3830 WARN_ON(!PageUptodate(page));
3831
3832 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
3833
3834 kaddr = kmap_atomic(page, KM_USER0);
3835 read_extent_buffer(src, kaddr + offset, src_offset, cur);
3836 kunmap_atomic(kaddr, KM_USER0);
3837
3838 src_offset += cur;
3839 len -= cur;
3840 offset = 0;
3841 i++;
3842 }
3843}
Chris Masond1310b22008-01-24 16:13:08 -05003844
3845static void move_pages(struct page *dst_page, struct page *src_page,
3846 unsigned long dst_off, unsigned long src_off,
3847 unsigned long len)
3848{
3849 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3850 if (dst_page == src_page) {
3851 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
3852 } else {
3853 char *src_kaddr = kmap_atomic(src_page, KM_USER1);
3854 char *p = dst_kaddr + dst_off + len;
3855 char *s = src_kaddr + src_off + len;
3856
3857 while (len--)
3858 *--p = *--s;
3859
3860 kunmap_atomic(src_kaddr, KM_USER1);
3861 }
3862 kunmap_atomic(dst_kaddr, KM_USER0);
3863}
3864
3865static void copy_pages(struct page *dst_page, struct page *src_page,
3866 unsigned long dst_off, unsigned long src_off,
3867 unsigned long len)
3868{
3869 char *dst_kaddr = kmap_atomic(dst_page, KM_USER0);
3870 char *src_kaddr;
3871
3872 if (dst_page != src_page)
3873 src_kaddr = kmap_atomic(src_page, KM_USER1);
3874 else
3875 src_kaddr = dst_kaddr;
3876
3877 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
3878 kunmap_atomic(dst_kaddr, KM_USER0);
3879 if (dst_page != src_page)
3880 kunmap_atomic(src_kaddr, KM_USER1);
3881}
3882
3883void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3884 unsigned long src_offset, unsigned long len)
3885{
3886 size_t cur;
3887 size_t dst_off_in_page;
3888 size_t src_off_in_page;
3889 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3890 unsigned long dst_i;
3891 unsigned long src_i;
3892
3893 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003894 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3895 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003896 BUG_ON(1);
3897 }
3898 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003899 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3900 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003901 BUG_ON(1);
3902 }
3903
Chris Masond3977122009-01-05 21:25:51 -05003904 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003905 dst_off_in_page = (start_offset + dst_offset) &
3906 ((unsigned long)PAGE_CACHE_SIZE - 1);
3907 src_off_in_page = (start_offset + src_offset) &
3908 ((unsigned long)PAGE_CACHE_SIZE - 1);
3909
3910 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3911 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
3912
3913 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
3914 src_off_in_page));
3915 cur = min_t(unsigned long, cur,
3916 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
3917
3918 copy_pages(extent_buffer_page(dst, dst_i),
3919 extent_buffer_page(dst, src_i),
3920 dst_off_in_page, src_off_in_page, cur);
3921
3922 src_offset += cur;
3923 dst_offset += cur;
3924 len -= cur;
3925 }
3926}
Chris Masond1310b22008-01-24 16:13:08 -05003927
3928void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3929 unsigned long src_offset, unsigned long len)
3930{
3931 size_t cur;
3932 size_t dst_off_in_page;
3933 size_t src_off_in_page;
3934 unsigned long dst_end = dst_offset + len - 1;
3935 unsigned long src_end = src_offset + len - 1;
3936 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3937 unsigned long dst_i;
3938 unsigned long src_i;
3939
3940 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003941 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3942 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003943 BUG_ON(1);
3944 }
3945 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003946 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3947 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003948 BUG_ON(1);
3949 }
3950 if (dst_offset < src_offset) {
3951 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
3952 return;
3953 }
Chris Masond3977122009-01-05 21:25:51 -05003954 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003955 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
3956 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
3957
3958 dst_off_in_page = (start_offset + dst_end) &
3959 ((unsigned long)PAGE_CACHE_SIZE - 1);
3960 src_off_in_page = (start_offset + src_end) &
3961 ((unsigned long)PAGE_CACHE_SIZE - 1);
3962
3963 cur = min_t(unsigned long, len, src_off_in_page + 1);
3964 cur = min(cur, dst_off_in_page + 1);
3965 move_pages(extent_buffer_page(dst, dst_i),
3966 extent_buffer_page(dst, src_i),
3967 dst_off_in_page - cur + 1,
3968 src_off_in_page - cur + 1, cur);
3969
3970 dst_end -= cur;
3971 src_end -= cur;
3972 len -= cur;
3973 }
3974}
Chris Mason6af118ce2008-07-22 11:18:07 -04003975
Miao Xie19fe0a82010-10-26 20:57:29 -04003976static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
3977{
3978 struct extent_buffer *eb =
3979 container_of(head, struct extent_buffer, rcu_head);
3980
3981 btrfs_release_extent_buffer(eb);
3982}
3983
Chris Mason6af118ce2008-07-22 11:18:07 -04003984int try_release_extent_buffer(struct extent_io_tree *tree, struct page *page)
3985{
3986 u64 start = page_offset(page);
3987 struct extent_buffer *eb;
3988 int ret = 1;
Chris Mason6af118ce2008-07-22 11:18:07 -04003989
3990 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003991 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
Chris Mason45f49bc2010-11-21 22:27:44 -05003992 if (!eb) {
3993 spin_unlock(&tree->buffer_lock);
3994 return ret;
3995 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003996
Chris Masonb9473432009-03-13 11:00:37 -04003997 if (test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3998 ret = 0;
3999 goto out;
4000 }
Miao Xie897ca6e2010-10-26 20:57:29 -04004001
Miao Xie19fe0a82010-10-26 20:57:29 -04004002 /*
4003 * set @eb->refs to 0 if it is already 1, and then release the @eb.
4004 * Or go back.
4005 */
4006 if (atomic_cmpxchg(&eb->refs, 1, 0) != 1) {
4007 ret = 0;
4008 goto out;
4009 }
4010
4011 radix_tree_delete(&tree->buffer, start >> PAGE_CACHE_SHIFT);
Chris Mason6af118ce2008-07-22 11:18:07 -04004012out:
4013 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04004014
4015 /* at this point we can safely release the extent buffer */
4016 if (atomic_read(&eb->refs) == 0)
4017 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Chris Mason6af118ce2008-07-22 11:18:07 -04004018 return ret;
4019}