blob: 7b60f621e7612d3abf53a0f4483eedff431db2e5 [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,
David Sterbaf993c882011-04-20 23:35:57 +0200104 struct address_space *mapping)
Chris Masond1310b22008-01-24 16:13:08 -0500105{
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);
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400282 state->end = other->end;
283 other->tree = NULL;
284 rb_erase(&other->rb_node, &tree->state);
285 free_extent_state(other);
Chris Masond1310b22008-01-24 16:13:08 -0500286 }
287 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400288
Chris Masond1310b22008-01-24 16:13:08 -0500289 return 0;
290}
291
Josef Bacik9ed74f22009-09-11 16:12:44 -0400292static int set_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400293 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500294{
295 if (tree->ops && tree->ops->set_bit_hook) {
Josef Bacik9ed74f22009-09-11 16:12:44 -0400296 return tree->ops->set_bit_hook(tree->mapping->host,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400297 state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500298 }
Josef Bacik9ed74f22009-09-11 16:12:44 -0400299
300 return 0;
Chris Mason291d6732008-01-29 15:55:23 -0500301}
302
303static void clear_state_cb(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400304 struct extent_state *state, int *bits)
Chris Mason291d6732008-01-29 15:55:23 -0500305{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400306 if (tree->ops && tree->ops->clear_bit_hook)
307 tree->ops->clear_bit_hook(tree->mapping->host, state, bits);
Chris Mason291d6732008-01-29 15:55:23 -0500308}
309
Chris Masond1310b22008-01-24 16:13:08 -0500310/*
311 * insert an extent_state struct into the tree. 'bits' are set on the
312 * struct before it is inserted.
313 *
314 * This may return -EEXIST if the extent is already there, in which case the
315 * state struct is freed.
316 *
317 * The tree lock is not taken internally. This is a utility function and
318 * probably isn't what you want to call (see set/clear_extent_bit).
319 */
320static int insert_state(struct extent_io_tree *tree,
321 struct extent_state *state, u64 start, u64 end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400322 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500323{
324 struct rb_node *node;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400325 int bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400326 int ret;
Chris Masond1310b22008-01-24 16:13:08 -0500327
328 if (end < start) {
Chris Masond3977122009-01-05 21:25:51 -0500329 printk(KERN_ERR "btrfs end < start %llu %llu\n",
330 (unsigned long long)end,
331 (unsigned long long)start);
Chris Masond1310b22008-01-24 16:13:08 -0500332 WARN_ON(1);
333 }
Chris Masond1310b22008-01-24 16:13:08 -0500334 state->start = start;
335 state->end = end;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400336 ret = set_state_cb(tree, state, bits);
337 if (ret)
338 return ret;
339
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400340 if (bits_to_set & EXTENT_DIRTY)
Josef Bacik9ed74f22009-09-11 16:12:44 -0400341 tree->dirty_bytes += end - start + 1;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400342 state->state |= bits_to_set;
Chris Masond1310b22008-01-24 16:13:08 -0500343 node = tree_insert(&tree->state, end, &state->rb_node);
344 if (node) {
345 struct extent_state *found;
346 found = rb_entry(node, struct extent_state, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500347 printk(KERN_ERR "btrfs found node %llu %llu on insert of "
348 "%llu %llu\n", (unsigned long long)found->start,
349 (unsigned long long)found->end,
350 (unsigned long long)start, (unsigned long long)end);
Chris Masond1310b22008-01-24 16:13:08 -0500351 return -EEXIST;
352 }
Chris Mason70dec802008-01-29 09:59:12 -0500353 state->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500354 merge_state(tree, state);
355 return 0;
356}
357
Josef Bacik9ed74f22009-09-11 16:12:44 -0400358static int split_cb(struct extent_io_tree *tree, struct extent_state *orig,
359 u64 split)
360{
361 if (tree->ops && tree->ops->split_extent_hook)
362 return tree->ops->split_extent_hook(tree->mapping->host,
363 orig, split);
364 return 0;
365}
366
Chris Masond1310b22008-01-24 16:13:08 -0500367/*
368 * split a given extent state struct in two, inserting the preallocated
369 * struct 'prealloc' as the newly created second half. 'split' indicates an
370 * offset inside 'orig' where it should be split.
371 *
372 * Before calling,
373 * the tree has 'orig' at [orig->start, orig->end]. After calling, there
374 * are two extent state structs in the tree:
375 * prealloc: [orig->start, split - 1]
376 * orig: [ split, orig->end ]
377 *
378 * The tree locks are not taken by this function. They need to be held
379 * by the caller.
380 */
381static int split_state(struct extent_io_tree *tree, struct extent_state *orig,
382 struct extent_state *prealloc, u64 split)
383{
384 struct rb_node *node;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400385
386 split_cb(tree, orig, split);
387
Chris Masond1310b22008-01-24 16:13:08 -0500388 prealloc->start = orig->start;
389 prealloc->end = split - 1;
390 prealloc->state = orig->state;
391 orig->start = split;
392
393 node = tree_insert(&tree->state, prealloc->end, &prealloc->rb_node);
394 if (node) {
Chris Masond1310b22008-01-24 16:13:08 -0500395 free_extent_state(prealloc);
396 return -EEXIST;
397 }
Chris Mason70dec802008-01-29 09:59:12 -0500398 prealloc->tree = tree;
Chris Masond1310b22008-01-24 16:13:08 -0500399 return 0;
400}
401
402/*
403 * utility function to clear some bits in an extent state struct.
404 * it will optionally wake up any one waiting on this state (wake == 1), or
405 * forcibly remove the state from the tree (delete == 1).
406 *
407 * If no bits are set on the state struct after clearing things, the
408 * struct is freed and removed from the tree
409 */
410static int clear_state_bit(struct extent_io_tree *tree,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400411 struct extent_state *state,
412 int *bits, int wake)
Chris Masond1310b22008-01-24 16:13:08 -0500413{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400414 int bits_to_clear = *bits & ~EXTENT_CTLBITS;
Josef Bacik32c00af2009-10-08 13:34:05 -0400415 int ret = state->state & bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500416
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400417 if ((bits_to_clear & EXTENT_DIRTY) && (state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500418 u64 range = state->end - state->start + 1;
419 WARN_ON(range > tree->dirty_bytes);
420 tree->dirty_bytes -= range;
421 }
Chris Mason291d6732008-01-29 15:55:23 -0500422 clear_state_cb(tree, state, bits);
Josef Bacik32c00af2009-10-08 13:34:05 -0400423 state->state &= ~bits_to_clear;
Chris Masond1310b22008-01-24 16:13:08 -0500424 if (wake)
425 wake_up(&state->wq);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400426 if (state->state == 0) {
Chris Mason70dec802008-01-29 09:59:12 -0500427 if (state->tree) {
Chris Masond1310b22008-01-24 16:13:08 -0500428 rb_erase(&state->rb_node, &tree->state);
Chris Mason70dec802008-01-29 09:59:12 -0500429 state->tree = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500430 free_extent_state(state);
431 } else {
432 WARN_ON(1);
433 }
434 } else {
435 merge_state(tree, state);
436 }
437 return ret;
438}
439
Xiao Guangrong82337672011-04-20 06:44:57 +0000440static struct extent_state *
441alloc_extent_state_atomic(struct extent_state *prealloc)
442{
443 if (!prealloc)
444 prealloc = alloc_extent_state(GFP_ATOMIC);
445
446 return prealloc;
447}
448
Chris Masond1310b22008-01-24 16:13:08 -0500449/*
450 * clear some bits on a range in the tree. This may require splitting
451 * or inserting elements in the tree, so the gfp mask is used to
452 * indicate which allocations or sleeping are allowed.
453 *
454 * pass 'wake' == 1 to kick any sleepers, and 'delete' == 1 to remove
455 * the given range from the tree regardless of state (ie for truncate).
456 *
457 * the range [start, end] is inclusive.
458 *
459 * This takes the tree lock, and returns < 0 on error, > 0 if any of the
460 * bits were already set, or zero if none of the bits were already set.
461 */
462int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400463 int bits, int wake, int delete,
464 struct extent_state **cached_state,
465 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500466{
467 struct extent_state *state;
Chris Mason2c64c532009-09-02 15:04:12 -0400468 struct extent_state *cached;
Chris Masond1310b22008-01-24 16:13:08 -0500469 struct extent_state *prealloc = NULL;
Chris Mason2c64c532009-09-02 15:04:12 -0400470 struct rb_node *next_node;
Chris Masond1310b22008-01-24 16:13:08 -0500471 struct rb_node *node;
Yan Zheng5c939df2009-05-27 09:16:03 -0400472 u64 last_end;
Chris Masond1310b22008-01-24 16:13:08 -0500473 int err;
474 int set = 0;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000475 int clear = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500476
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400477 if (delete)
478 bits |= ~EXTENT_CTLBITS;
479 bits |= EXTENT_FIRST_DELALLOC;
480
Josef Bacik2ac55d42010-02-03 19:33:23 +0000481 if (bits & (EXTENT_IOBITS | EXTENT_BOUNDARY))
482 clear = 1;
Chris Masond1310b22008-01-24 16:13:08 -0500483again:
484 if (!prealloc && (mask & __GFP_WAIT)) {
485 prealloc = alloc_extent_state(mask);
Chris Masonc309df02011-05-26 17:43:59 -0400486 if (!prealloc)
487 return -ENOMEM;
Chris Masond1310b22008-01-24 16:13:08 -0500488 }
489
Chris Masoncad321a2008-12-17 14:51:42 -0500490 spin_lock(&tree->lock);
Chris Mason2c64c532009-09-02 15:04:12 -0400491 if (cached_state) {
492 cached = *cached_state;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000493
494 if (clear) {
495 *cached_state = NULL;
496 cached_state = NULL;
497 }
498
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400499 if (cached && cached->tree && cached->start <= start &&
500 cached->end > start) {
Josef Bacik2ac55d42010-02-03 19:33:23 +0000501 if (clear)
502 atomic_dec(&cached->refs);
Chris Mason2c64c532009-09-02 15:04:12 -0400503 state = cached;
Chris Mason42daec22009-09-23 19:51:09 -0400504 goto hit_next;
Chris Mason2c64c532009-09-02 15:04:12 -0400505 }
Josef Bacik2ac55d42010-02-03 19:33:23 +0000506 if (clear)
507 free_extent_state(cached);
Chris Mason2c64c532009-09-02 15:04:12 -0400508 }
Chris Masond1310b22008-01-24 16:13:08 -0500509 /*
510 * this search will find the extents that end after
511 * our range starts
512 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500513 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500514 if (!node)
515 goto out;
516 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason2c64c532009-09-02 15:04:12 -0400517hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500518 if (state->start > end)
519 goto out;
520 WARN_ON(state->end < start);
Yan Zheng5c939df2009-05-27 09:16:03 -0400521 last_end = state->end;
Chris Masond1310b22008-01-24 16:13:08 -0500522
523 /*
524 * | ---- desired range ---- |
525 * | state | or
526 * | ------------- state -------------- |
527 *
528 * We need to split the extent we found, and may flip
529 * bits on second half.
530 *
531 * If the extent we found extends past our range, we
532 * just split and search again. It'll get split again
533 * the next time though.
534 *
535 * If the extent we found is inside our range, we clear
536 * the desired bit on it.
537 */
538
539 if (state->start < start) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000540 prealloc = alloc_extent_state_atomic(prealloc);
541 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500542 err = split_state(tree, state, prealloc, start);
543 BUG_ON(err == -EEXIST);
544 prealloc = NULL;
545 if (err)
546 goto out;
547 if (state->end <= end) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400548 set |= clear_state_bit(tree, state, &bits, wake);
Yan Zheng5c939df2009-05-27 09:16:03 -0400549 if (last_end == (u64)-1)
550 goto out;
551 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500552 }
553 goto search_again;
554 }
555 /*
556 * | ---- desired range ---- |
557 * | state |
558 * We need to split the extent, and clear the bit
559 * on the first half
560 */
561 if (state->start <= end && state->end > end) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000562 prealloc = alloc_extent_state_atomic(prealloc);
563 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500564 err = split_state(tree, state, prealloc, end + 1);
565 BUG_ON(err == -EEXIST);
Chris Masond1310b22008-01-24 16:13:08 -0500566 if (wake)
567 wake_up(&state->wq);
Chris Mason42daec22009-09-23 19:51:09 -0400568
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400569 set |= clear_state_bit(tree, prealloc, &bits, wake);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400570
Chris Masond1310b22008-01-24 16:13:08 -0500571 prealloc = NULL;
572 goto out;
573 }
Chris Mason42daec22009-09-23 19:51:09 -0400574
Chris Mason2c64c532009-09-02 15:04:12 -0400575 if (state->end < end && prealloc && !need_resched())
576 next_node = rb_next(&state->rb_node);
577 else
578 next_node = NULL;
Chris Mason42daec22009-09-23 19:51:09 -0400579
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400580 set |= clear_state_bit(tree, state, &bits, wake);
Yan Zheng5c939df2009-05-27 09:16:03 -0400581 if (last_end == (u64)-1)
582 goto out;
583 start = last_end + 1;
Chris Mason2c64c532009-09-02 15:04:12 -0400584 if (start <= end && next_node) {
585 state = rb_entry(next_node, struct extent_state,
586 rb_node);
587 if (state->start == start)
588 goto hit_next;
589 }
Chris Masond1310b22008-01-24 16:13:08 -0500590 goto search_again;
591
592out:
Chris Masoncad321a2008-12-17 14:51:42 -0500593 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500594 if (prealloc)
595 free_extent_state(prealloc);
596
597 return set;
598
599search_again:
600 if (start > end)
601 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500602 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500603 if (mask & __GFP_WAIT)
604 cond_resched();
605 goto again;
606}
Chris Masond1310b22008-01-24 16:13:08 -0500607
608static int wait_on_state(struct extent_io_tree *tree,
609 struct extent_state *state)
Christoph Hellwig641f5212008-12-02 06:36:10 -0500610 __releases(tree->lock)
611 __acquires(tree->lock)
Chris Masond1310b22008-01-24 16:13:08 -0500612{
613 DEFINE_WAIT(wait);
614 prepare_to_wait(&state->wq, &wait, TASK_UNINTERRUPTIBLE);
Chris Masoncad321a2008-12-17 14:51:42 -0500615 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500616 schedule();
Chris Masoncad321a2008-12-17 14:51:42 -0500617 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500618 finish_wait(&state->wq, &wait);
619 return 0;
620}
621
622/*
623 * waits for one or more bits to clear on a range in the state tree.
624 * The range [start, end] is inclusive.
625 * The tree lock is taken by this function
626 */
627int wait_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, int bits)
628{
629 struct extent_state *state;
630 struct rb_node *node;
631
Chris Masoncad321a2008-12-17 14:51:42 -0500632 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500633again:
634 while (1) {
635 /*
636 * this search will find all the extents that end after
637 * our range starts
638 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500639 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500640 if (!node)
641 break;
642
643 state = rb_entry(node, struct extent_state, rb_node);
644
645 if (state->start > end)
646 goto out;
647
648 if (state->state & bits) {
649 start = state->start;
650 atomic_inc(&state->refs);
651 wait_on_state(tree, state);
652 free_extent_state(state);
653 goto again;
654 }
655 start = state->end + 1;
656
657 if (start > end)
658 break;
659
660 if (need_resched()) {
Chris Masoncad321a2008-12-17 14:51:42 -0500661 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500662 cond_resched();
Chris Masoncad321a2008-12-17 14:51:42 -0500663 spin_lock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500664 }
665 }
666out:
Chris Masoncad321a2008-12-17 14:51:42 -0500667 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500668 return 0;
669}
Chris Masond1310b22008-01-24 16:13:08 -0500670
Josef Bacik9ed74f22009-09-11 16:12:44 -0400671static int set_state_bits(struct extent_io_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500672 struct extent_state *state,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400673 int *bits)
Chris Masond1310b22008-01-24 16:13:08 -0500674{
Josef Bacik9ed74f22009-09-11 16:12:44 -0400675 int ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400676 int bits_to_set = *bits & ~EXTENT_CTLBITS;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400677
678 ret = set_state_cb(tree, state, bits);
679 if (ret)
680 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400681 if ((bits_to_set & EXTENT_DIRTY) && !(state->state & EXTENT_DIRTY)) {
Chris Masond1310b22008-01-24 16:13:08 -0500682 u64 range = state->end - state->start + 1;
683 tree->dirty_bytes += range;
684 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400685 state->state |= bits_to_set;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400686
687 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500688}
689
Chris Mason2c64c532009-09-02 15:04:12 -0400690static void cache_state(struct extent_state *state,
691 struct extent_state **cached_ptr)
692{
693 if (cached_ptr && !(*cached_ptr)) {
694 if (state->state & (EXTENT_IOBITS | EXTENT_BOUNDARY)) {
695 *cached_ptr = state;
696 atomic_inc(&state->refs);
697 }
698 }
699}
700
Arne Jansen507903b2011-04-06 10:02:20 +0000701static void uncache_state(struct extent_state **cached_ptr)
702{
703 if (cached_ptr && (*cached_ptr)) {
704 struct extent_state *state = *cached_ptr;
Chris Mason109b36a2011-04-12 13:57:39 -0400705 *cached_ptr = NULL;
706 free_extent_state(state);
Arne Jansen507903b2011-04-06 10:02:20 +0000707 }
708}
709
Chris Masond1310b22008-01-24 16:13:08 -0500710/*
Chris Mason1edbb732009-09-02 13:24:36 -0400711 * set some bits on a range in the tree. This may require allocations or
712 * sleeping, so the gfp mask is used to indicate what is allowed.
Chris Masond1310b22008-01-24 16:13:08 -0500713 *
Chris Mason1edbb732009-09-02 13:24:36 -0400714 * If any of the exclusive bits are set, this will fail with -EEXIST if some
715 * part of the range already has the desired bits set. The start of the
716 * existing range is returned in failed_start in this case.
Chris Masond1310b22008-01-24 16:13:08 -0500717 *
Chris Mason1edbb732009-09-02 13:24:36 -0400718 * [start, end] is inclusive This takes the tree lock.
Chris Masond1310b22008-01-24 16:13:08 -0500719 */
Chris Mason1edbb732009-09-02 13:24:36 -0400720
Chris Mason4845e442010-05-25 20:56:50 -0400721int set_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
722 int bits, int exclusive_bits, u64 *failed_start,
723 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500724{
725 struct extent_state *state;
726 struct extent_state *prealloc = NULL;
727 struct rb_node *node;
Chris Masond1310b22008-01-24 16:13:08 -0500728 int err = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500729 u64 last_start;
730 u64 last_end;
Chris Mason42daec22009-09-23 19:51:09 -0400731
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400732 bits |= EXTENT_FIRST_DELALLOC;
Chris Masond1310b22008-01-24 16:13:08 -0500733again:
734 if (!prealloc && (mask & __GFP_WAIT)) {
735 prealloc = alloc_extent_state(mask);
Xiao Guangrong82337672011-04-20 06:44:57 +0000736 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500737 }
738
Chris Masoncad321a2008-12-17 14:51:42 -0500739 spin_lock(&tree->lock);
Chris Mason9655d292009-09-02 15:22:30 -0400740 if (cached_state && *cached_state) {
741 state = *cached_state;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400742 if (state->start <= start && state->end > start &&
743 state->tree) {
Chris Mason9655d292009-09-02 15:22:30 -0400744 node = &state->rb_node;
745 goto hit_next;
746 }
747 }
Chris Masond1310b22008-01-24 16:13:08 -0500748 /*
749 * this search will find all the extents that end after
750 * our range starts.
751 */
Chris Mason80ea96b2008-02-01 14:51:59 -0500752 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -0500753 if (!node) {
Xiao Guangrong82337672011-04-20 06:44:57 +0000754 prealloc = alloc_extent_state_atomic(prealloc);
755 BUG_ON(!prealloc);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400756 err = insert_state(tree, prealloc, start, end, &bits);
Chris Masond1310b22008-01-24 16:13:08 -0500757 prealloc = NULL;
758 BUG_ON(err == -EEXIST);
759 goto out;
760 }
Chris Masond1310b22008-01-24 16:13:08 -0500761 state = rb_entry(node, struct extent_state, rb_node);
Chris Mason40431d62009-08-05 12:57:59 -0400762hit_next:
Chris Masond1310b22008-01-24 16:13:08 -0500763 last_start = state->start;
764 last_end = state->end;
765
766 /*
767 * | ---- desired range ---- |
768 * | state |
769 *
770 * Just lock what we found and keep going
771 */
772 if (state->start == start && state->end <= end) {
Chris Mason40431d62009-08-05 12:57:59 -0400773 struct rb_node *next_node;
Chris Mason1edbb732009-09-02 13:24:36 -0400774 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500775 *failed_start = state->start;
776 err = -EEXIST;
777 goto out;
778 }
Chris Mason42daec22009-09-23 19:51:09 -0400779
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400780 err = set_state_bits(tree, state, &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400781 if (err)
782 goto out;
783
Chris Mason2c64c532009-09-02 15:04:12 -0400784 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500785 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400786 if (last_end == (u64)-1)
787 goto out;
Chris Mason40431d62009-08-05 12:57:59 -0400788
Yan Zheng5c939df2009-05-27 09:16:03 -0400789 start = last_end + 1;
Josef Bacikdf98b6e2011-06-20 14:53:48 -0400790 next_node = rb_next(&state->rb_node);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000791 if (next_node && start < end && prealloc && !need_resched()) {
792 state = rb_entry(next_node, struct extent_state,
793 rb_node);
794 if (state->start == start)
795 goto hit_next;
Chris Mason40431d62009-08-05 12:57:59 -0400796 }
Chris Masond1310b22008-01-24 16:13:08 -0500797 goto search_again;
798 }
799
800 /*
801 * | ---- desired range ---- |
802 * | state |
803 * or
804 * | ------------- state -------------- |
805 *
806 * We need to split the extent we found, and may flip bits on
807 * second half.
808 *
809 * If the extent we found extends past our
810 * range, we just split and search again. It'll get split
811 * again the next time though.
812 *
813 * If the extent we found is inside our range, we set the
814 * desired bit on it.
815 */
816 if (state->start < start) {
Chris Mason1edbb732009-09-02 13:24:36 -0400817 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500818 *failed_start = start;
819 err = -EEXIST;
820 goto out;
821 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000822
823 prealloc = alloc_extent_state_atomic(prealloc);
824 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500825 err = split_state(tree, state, prealloc, start);
826 BUG_ON(err == -EEXIST);
827 prealloc = NULL;
828 if (err)
829 goto out;
830 if (state->end <= end) {
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400831 err = set_state_bits(tree, state, &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400832 if (err)
833 goto out;
Chris Mason2c64c532009-09-02 15:04:12 -0400834 cache_state(state, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500835 merge_state(tree, state);
Yan Zheng5c939df2009-05-27 09:16:03 -0400836 if (last_end == (u64)-1)
837 goto out;
838 start = last_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -0500839 }
840 goto search_again;
841 }
842 /*
843 * | ---- desired range ---- |
844 * | state | or | state |
845 *
846 * There's a hole, we need to insert something in it and
847 * ignore the extent we found.
848 */
849 if (state->start > start) {
850 u64 this_end;
851 if (end < last_start)
852 this_end = end;
853 else
Chris Masond3977122009-01-05 21:25:51 -0500854 this_end = last_start - 1;
Xiao Guangrong82337672011-04-20 06:44:57 +0000855
856 prealloc = alloc_extent_state_atomic(prealloc);
857 BUG_ON(!prealloc);
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000858
859 /*
860 * Avoid to free 'prealloc' if it can be merged with
861 * the later extent.
862 */
Chris Masond1310b22008-01-24 16:13:08 -0500863 err = insert_state(tree, prealloc, start, this_end,
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400864 &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400865 BUG_ON(err == -EEXIST);
866 if (err) {
Xiao Guangrongc7f895a2011-04-20 06:45:49 +0000867 free_extent_state(prealloc);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400868 prealloc = NULL;
869 goto out;
870 }
Chris Mason2c64c532009-09-02 15:04:12 -0400871 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500872 prealloc = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500873 start = this_end + 1;
874 goto search_again;
875 }
876 /*
877 * | ---- desired range ---- |
878 * | state |
879 * We need to split the extent, and set the bit
880 * on the first half
881 */
882 if (state->start <= end && state->end > end) {
Chris Mason1edbb732009-09-02 13:24:36 -0400883 if (state->state & exclusive_bits) {
Chris Masond1310b22008-01-24 16:13:08 -0500884 *failed_start = start;
885 err = -EEXIST;
886 goto out;
887 }
Xiao Guangrong82337672011-04-20 06:44:57 +0000888
889 prealloc = alloc_extent_state_atomic(prealloc);
890 BUG_ON(!prealloc);
Chris Masond1310b22008-01-24 16:13:08 -0500891 err = split_state(tree, state, prealloc, end + 1);
892 BUG_ON(err == -EEXIST);
893
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400894 err = set_state_bits(tree, prealloc, &bits);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400895 if (err) {
896 prealloc = NULL;
897 goto out;
898 }
Chris Mason2c64c532009-09-02 15:04:12 -0400899 cache_state(prealloc, cached_state);
Chris Masond1310b22008-01-24 16:13:08 -0500900 merge_state(tree, prealloc);
901 prealloc = NULL;
902 goto out;
903 }
904
905 goto search_again;
906
907out:
Chris Masoncad321a2008-12-17 14:51:42 -0500908 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500909 if (prealloc)
910 free_extent_state(prealloc);
911
912 return err;
913
914search_again:
915 if (start > end)
916 goto out;
Chris Masoncad321a2008-12-17 14:51:42 -0500917 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500918 if (mask & __GFP_WAIT)
919 cond_resched();
920 goto again;
921}
Chris Masond1310b22008-01-24 16:13:08 -0500922
923/* wrappers around set/clear extent bit */
924int set_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
925 gfp_t mask)
926{
927 return set_extent_bit(tree, start, end, EXTENT_DIRTY, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400928 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500929}
Chris Masond1310b22008-01-24 16:13:08 -0500930
931int set_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
932 int bits, gfp_t mask)
933{
934 return set_extent_bit(tree, start, end, bits, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400935 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500936}
Chris Masond1310b22008-01-24 16:13:08 -0500937
938int clear_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
939 int bits, gfp_t mask)
940{
Chris Mason2c64c532009-09-02 15:04:12 -0400941 return clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500942}
Chris Masond1310b22008-01-24 16:13:08 -0500943
944int set_extent_delalloc(struct extent_io_tree *tree, u64 start, u64 end,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000945 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500946{
947 return set_extent_bit(tree, start, end,
Chris Mason40431d62009-08-05 12:57:59 -0400948 EXTENT_DELALLOC | EXTENT_DIRTY | EXTENT_UPTODATE,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000949 0, NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500950}
Chris Masond1310b22008-01-24 16:13:08 -0500951
952int clear_extent_dirty(struct extent_io_tree *tree, u64 start, u64 end,
953 gfp_t mask)
954{
955 return clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -0400956 EXTENT_DIRTY | EXTENT_DELALLOC |
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -0400957 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500958}
Chris Masond1310b22008-01-24 16:13:08 -0500959
960int set_extent_new(struct extent_io_tree *tree, u64 start, u64 end,
961 gfp_t mask)
962{
963 return set_extent_bit(tree, start, end, EXTENT_NEW, 0, NULL,
Chris Mason2c64c532009-09-02 15:04:12 -0400964 NULL, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500965}
Chris Masond1310b22008-01-24 16:13:08 -0500966
Chris Masond1310b22008-01-24 16:13:08 -0500967int set_extent_uptodate(struct extent_io_tree *tree, u64 start, u64 end,
Arne Jansen507903b2011-04-06 10:02:20 +0000968 struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500969{
Arne Jansen507903b2011-04-06 10:02:20 +0000970 return set_extent_bit(tree, start, end, EXTENT_UPTODATE, 0,
971 NULL, cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500972}
Chris Masond1310b22008-01-24 16:13:08 -0500973
Chris Masond3977122009-01-05 21:25:51 -0500974static int clear_extent_uptodate(struct extent_io_tree *tree, u64 start,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000975 u64 end, struct extent_state **cached_state,
976 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500977{
Chris Mason2c64c532009-09-02 15:04:12 -0400978 return clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
Josef Bacik2ac55d42010-02-03 19:33:23 +0000979 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500980}
Chris Masond1310b22008-01-24 16:13:08 -0500981
Chris Masond352ac62008-09-29 15:18:18 -0400982/*
983 * either insert or lock state struct between start and end use mask to tell
984 * us if waiting is desired.
985 */
Chris Mason1edbb732009-09-02 13:24:36 -0400986int lock_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
Chris Mason2c64c532009-09-02 15:04:12 -0400987 int bits, struct extent_state **cached_state, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -0500988{
989 int err;
990 u64 failed_start;
991 while (1) {
Chris Mason1edbb732009-09-02 13:24:36 -0400992 err = set_extent_bit(tree, start, end, EXTENT_LOCKED | bits,
Chris Mason2c64c532009-09-02 15:04:12 -0400993 EXTENT_LOCKED, &failed_start,
994 cached_state, mask);
Chris Masond1310b22008-01-24 16:13:08 -0500995 if (err == -EEXIST && (mask & __GFP_WAIT)) {
996 wait_extent_bit(tree, failed_start, end, EXTENT_LOCKED);
997 start = failed_start;
998 } else {
999 break;
1000 }
1001 WARN_ON(start > end);
1002 }
1003 return err;
1004}
Chris Masond1310b22008-01-24 16:13:08 -05001005
Chris Mason1edbb732009-09-02 13:24:36 -04001006int lock_extent(struct extent_io_tree *tree, u64 start, u64 end, gfp_t mask)
1007{
Chris Mason2c64c532009-09-02 15:04:12 -04001008 return lock_extent_bits(tree, start, end, 0, NULL, mask);
Chris Mason1edbb732009-09-02 13:24:36 -04001009}
1010
Josef Bacik25179202008-10-29 14:49:05 -04001011int try_lock_extent(struct extent_io_tree *tree, u64 start, u64 end,
1012 gfp_t mask)
1013{
1014 int err;
1015 u64 failed_start;
1016
Chris Mason2c64c532009-09-02 15:04:12 -04001017 err = set_extent_bit(tree, start, end, EXTENT_LOCKED, EXTENT_LOCKED,
1018 &failed_start, NULL, mask);
Yan Zheng66435582008-10-30 14:19:50 -04001019 if (err == -EEXIST) {
1020 if (failed_start > start)
1021 clear_extent_bit(tree, start, failed_start - 1,
Chris Mason2c64c532009-09-02 15:04:12 -04001022 EXTENT_LOCKED, 1, 0, NULL, mask);
Josef Bacik25179202008-10-29 14:49:05 -04001023 return 0;
Yan Zheng66435582008-10-30 14:19:50 -04001024 }
Josef Bacik25179202008-10-29 14:49:05 -04001025 return 1;
1026}
Josef Bacik25179202008-10-29 14:49:05 -04001027
Chris Mason2c64c532009-09-02 15:04:12 -04001028int unlock_extent_cached(struct extent_io_tree *tree, u64 start, u64 end,
1029 struct extent_state **cached, gfp_t mask)
1030{
1031 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, cached,
1032 mask);
1033}
1034
Arne Jansen507903b2011-04-06 10:02:20 +00001035int unlock_extent(struct extent_io_tree *tree, u64 start, u64 end, gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05001036{
Chris Mason2c64c532009-09-02 15:04:12 -04001037 return clear_extent_bit(tree, start, end, EXTENT_LOCKED, 1, 0, NULL,
1038 mask);
Chris Masond1310b22008-01-24 16:13:08 -05001039}
Chris Masond1310b22008-01-24 16:13:08 -05001040
1041/*
Chris Masond1310b22008-01-24 16:13:08 -05001042 * 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) {
Josef Bacikaf60bed2011-05-04 11:11:17 -04001475 *start = max(cur_start, state->start);
Chris Masond1310b22008-01-24 16:13:08 -05001476 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);
Josef Bacikdf98b6e2011-06-20 14:53:48 -04001563 if (cached && cached->tree && cached->start <= start &&
1564 cached->end > start)
Chris Mason9655d292009-09-02 15:22:30 -04001565 node = &cached->rb_node;
1566 else
1567 node = tree_search(tree, start);
Chris Masond1310b22008-01-24 16:13:08 -05001568 while (node && start <= end) {
1569 state = rb_entry(node, struct extent_state, rb_node);
1570
1571 if (filled && state->start > start) {
1572 bitset = 0;
1573 break;
1574 }
1575
1576 if (state->start > end)
1577 break;
1578
1579 if (state->state & bits) {
1580 bitset = 1;
1581 if (!filled)
1582 break;
1583 } else if (filled) {
1584 bitset = 0;
1585 break;
1586 }
Chris Mason46562cec2009-09-23 20:23:16 -04001587
1588 if (state->end == (u64)-1)
1589 break;
1590
Chris Masond1310b22008-01-24 16:13:08 -05001591 start = state->end + 1;
1592 if (start > end)
1593 break;
1594 node = rb_next(node);
1595 if (!node) {
1596 if (filled)
1597 bitset = 0;
1598 break;
1599 }
1600 }
Chris Masoncad321a2008-12-17 14:51:42 -05001601 spin_unlock(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -05001602 return bitset;
1603}
Chris Masond1310b22008-01-24 16:13:08 -05001604
1605/*
1606 * helper function to set a given page up to date if all the
1607 * extents in the tree for that page are up to date
1608 */
1609static int check_page_uptodate(struct extent_io_tree *tree,
1610 struct page *page)
1611{
1612 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1613 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001614 if (test_range_bit(tree, start, end, EXTENT_UPTODATE, 1, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001615 SetPageUptodate(page);
1616 return 0;
1617}
1618
1619/*
1620 * helper function to unlock a page if all the extents in the tree
1621 * for that page are unlocked
1622 */
1623static int check_page_locked(struct extent_io_tree *tree,
1624 struct page *page)
1625{
1626 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1627 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason9655d292009-09-02 15:22:30 -04001628 if (!test_range_bit(tree, start, end, EXTENT_LOCKED, 0, NULL))
Chris Masond1310b22008-01-24 16:13:08 -05001629 unlock_page(page);
1630 return 0;
1631}
1632
1633/*
1634 * helper function to end page writeback if all the extents
1635 * in the tree for that page are done with writeback
1636 */
1637static int check_page_writeback(struct extent_io_tree *tree,
1638 struct page *page)
1639{
Chris Mason1edbb732009-09-02 13:24:36 -04001640 end_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05001641 return 0;
1642}
1643
1644/* lots and lots of room for performance fixes in the end_bio funcs */
1645
1646/*
1647 * after a writepage IO is done, we need to:
1648 * clear the uptodate bits on error
1649 * clear the writeback bits in the extent tree for this IO
1650 * end_page_writeback if the page has no more pending IO
1651 *
1652 * Scheduling is not allowed, so the extent state tree is expected
1653 * to have one and only one object corresponding to this IO.
1654 */
Chris Masond1310b22008-01-24 16:13:08 -05001655static void end_bio_extent_writepage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001656{
Chris Mason1259ab72008-05-12 13:39:03 -04001657 int uptodate = err == 0;
Chris Masond1310b22008-01-24 16:13:08 -05001658 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
David Woodhouse902b22f2008-08-20 08:51:49 -04001659 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001660 u64 start;
1661 u64 end;
1662 int whole_page;
Chris Mason1259ab72008-05-12 13:39:03 -04001663 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05001664
Chris Masond1310b22008-01-24 16:13:08 -05001665 do {
1666 struct page *page = bvec->bv_page;
David Woodhouse902b22f2008-08-20 08:51:49 -04001667 tree = &BTRFS_I(page->mapping->host)->io_tree;
1668
Chris Masond1310b22008-01-24 16:13:08 -05001669 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1670 bvec->bv_offset;
1671 end = start + bvec->bv_len - 1;
1672
1673 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1674 whole_page = 1;
1675 else
1676 whole_page = 0;
1677
1678 if (--bvec >= bio->bi_io_vec)
1679 prefetchw(&bvec->bv_page->flags);
Chris Mason1259ab72008-05-12 13:39:03 -04001680 if (tree->ops && tree->ops->writepage_end_io_hook) {
1681 ret = tree->ops->writepage_end_io_hook(page, start,
David Woodhouse902b22f2008-08-20 08:51:49 -04001682 end, NULL, uptodate);
Chris Mason1259ab72008-05-12 13:39:03 -04001683 if (ret)
1684 uptodate = 0;
1685 }
1686
1687 if (!uptodate && tree->ops &&
1688 tree->ops->writepage_io_failed_hook) {
1689 ret = tree->ops->writepage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001690 start, end, NULL);
Chris Mason1259ab72008-05-12 13:39:03 -04001691 if (ret == 0) {
Chris Mason1259ab72008-05-12 13:39:03 -04001692 uptodate = (err == 0);
1693 continue;
1694 }
1695 }
1696
Chris Masond1310b22008-01-24 16:13:08 -05001697 if (!uptodate) {
Josef Bacik2ac55d42010-02-03 19:33:23 +00001698 clear_extent_uptodate(tree, start, end, NULL, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001699 ClearPageUptodate(page);
1700 SetPageError(page);
1701 }
Chris Mason70dec802008-01-29 09:59:12 -05001702
Chris Masond1310b22008-01-24 16:13:08 -05001703 if (whole_page)
1704 end_page_writeback(page);
1705 else
1706 check_page_writeback(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05001707 } while (bvec >= bio->bi_io_vec);
Chris Mason2b1f55b2008-09-24 11:48:04 -04001708
Chris Masond1310b22008-01-24 16:13:08 -05001709 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001710}
1711
1712/*
1713 * after a readpage IO is done, we need to:
1714 * clear the uptodate bits on error
1715 * set the uptodate bits if things worked
1716 * set the page up to date if all extents in the tree are uptodate
1717 * clear the lock bit in the extent tree
1718 * unlock the page if there are no other extents locked for it
1719 *
1720 * Scheduling is not allowed, so the extent state tree is expected
1721 * to have one and only one object corresponding to this IO.
1722 */
Chris Masond1310b22008-01-24 16:13:08 -05001723static void end_bio_extent_readpage(struct bio *bio, int err)
Chris Masond1310b22008-01-24 16:13:08 -05001724{
1725 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Mason4125bf72010-02-03 18:18:45 +00001726 struct bio_vec *bvec_end = bio->bi_io_vec + bio->bi_vcnt - 1;
1727 struct bio_vec *bvec = bio->bi_io_vec;
David Woodhouse902b22f2008-08-20 08:51:49 -04001728 struct extent_io_tree *tree;
Chris Masond1310b22008-01-24 16:13:08 -05001729 u64 start;
1730 u64 end;
1731 int whole_page;
1732 int ret;
1733
Chris Masond20f7042008-12-08 16:58:54 -05001734 if (err)
1735 uptodate = 0;
1736
Chris Masond1310b22008-01-24 16:13:08 -05001737 do {
1738 struct page *page = bvec->bv_page;
Arne Jansen507903b2011-04-06 10:02:20 +00001739 struct extent_state *cached = NULL;
1740 struct extent_state *state;
1741
David Woodhouse902b22f2008-08-20 08:51:49 -04001742 tree = &BTRFS_I(page->mapping->host)->io_tree;
1743
Chris Masond1310b22008-01-24 16:13:08 -05001744 start = ((u64)page->index << PAGE_CACHE_SHIFT) +
1745 bvec->bv_offset;
1746 end = start + bvec->bv_len - 1;
1747
1748 if (bvec->bv_offset == 0 && bvec->bv_len == PAGE_CACHE_SIZE)
1749 whole_page = 1;
1750 else
1751 whole_page = 0;
1752
Chris Mason4125bf72010-02-03 18:18:45 +00001753 if (++bvec <= bvec_end)
Chris Masond1310b22008-01-24 16:13:08 -05001754 prefetchw(&bvec->bv_page->flags);
1755
Arne Jansen507903b2011-04-06 10:02:20 +00001756 spin_lock(&tree->lock);
Chris Mason0d399202011-04-16 06:55:39 -04001757 state = find_first_extent_bit_state(tree, start, EXTENT_LOCKED);
Chris Mason109b36a2011-04-12 13:57:39 -04001758 if (state && state->start == start) {
Arne Jansen507903b2011-04-06 10:02:20 +00001759 /*
1760 * take a reference on the state, unlock will drop
1761 * the ref
1762 */
1763 cache_state(state, &cached);
1764 }
1765 spin_unlock(&tree->lock);
1766
Chris Masond1310b22008-01-24 16:13:08 -05001767 if (uptodate && tree->ops && tree->ops->readpage_end_io_hook) {
Chris Mason70dec802008-01-29 09:59:12 -05001768 ret = tree->ops->readpage_end_io_hook(page, start, end,
Arne Jansen507903b2011-04-06 10:02:20 +00001769 state);
Chris Masond1310b22008-01-24 16:13:08 -05001770 if (ret)
1771 uptodate = 0;
1772 }
Chris Mason7e383262008-04-09 16:28:12 -04001773 if (!uptodate && tree->ops &&
1774 tree->ops->readpage_io_failed_hook) {
1775 ret = tree->ops->readpage_io_failed_hook(bio, page,
David Woodhouse902b22f2008-08-20 08:51:49 -04001776 start, end, NULL);
Chris Mason7e383262008-04-09 16:28:12 -04001777 if (ret == 0) {
Chris Mason3b951512008-04-17 11:29:12 -04001778 uptodate =
1779 test_bit(BIO_UPTODATE, &bio->bi_flags);
Chris Masond20f7042008-12-08 16:58:54 -05001780 if (err)
1781 uptodate = 0;
Arne Jansen507903b2011-04-06 10:02:20 +00001782 uncache_state(&cached);
Chris Mason7e383262008-04-09 16:28:12 -04001783 continue;
1784 }
1785 }
Chris Mason70dec802008-01-29 09:59:12 -05001786
Chris Mason771ed682008-11-06 22:02:51 -05001787 if (uptodate) {
Arne Jansen507903b2011-04-06 10:02:20 +00001788 set_extent_uptodate(tree, start, end, &cached,
David Woodhouse902b22f2008-08-20 08:51:49 -04001789 GFP_ATOMIC);
Chris Mason771ed682008-11-06 22:02:51 -05001790 }
Arne Jansen507903b2011-04-06 10:02:20 +00001791 unlock_extent_cached(tree, start, end, &cached, GFP_ATOMIC);
Chris Masond1310b22008-01-24 16:13:08 -05001792
Chris Mason70dec802008-01-29 09:59:12 -05001793 if (whole_page) {
1794 if (uptodate) {
1795 SetPageUptodate(page);
1796 } else {
1797 ClearPageUptodate(page);
1798 SetPageError(page);
1799 }
Chris Masond1310b22008-01-24 16:13:08 -05001800 unlock_page(page);
Chris Mason70dec802008-01-29 09:59:12 -05001801 } else {
1802 if (uptodate) {
1803 check_page_uptodate(tree, page);
1804 } else {
1805 ClearPageUptodate(page);
1806 SetPageError(page);
1807 }
Chris Masond1310b22008-01-24 16:13:08 -05001808 check_page_locked(tree, page);
Chris Mason70dec802008-01-29 09:59:12 -05001809 }
Chris Mason4125bf72010-02-03 18:18:45 +00001810 } while (bvec <= bvec_end);
Chris Masond1310b22008-01-24 16:13:08 -05001811
1812 bio_put(bio);
Chris Masond1310b22008-01-24 16:13:08 -05001813}
1814
Miao Xie88f794e2010-11-22 03:02:55 +00001815struct bio *
1816btrfs_bio_alloc(struct block_device *bdev, u64 first_sector, int nr_vecs,
1817 gfp_t gfp_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001818{
1819 struct bio *bio;
1820
1821 bio = bio_alloc(gfp_flags, nr_vecs);
1822
1823 if (bio == NULL && (current->flags & PF_MEMALLOC)) {
1824 while (!bio && (nr_vecs /= 2))
1825 bio = bio_alloc(gfp_flags, nr_vecs);
1826 }
1827
1828 if (bio) {
Chris Masone1c4b742008-04-22 13:26:46 -04001829 bio->bi_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001830 bio->bi_bdev = bdev;
1831 bio->bi_sector = first_sector;
1832 }
1833 return bio;
1834}
1835
Chris Masonc8b97812008-10-29 14:49:59 -04001836static int submit_one_bio(int rw, struct bio *bio, int mirror_num,
1837 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001838{
Chris Masond1310b22008-01-24 16:13:08 -05001839 int ret = 0;
Chris Mason70dec802008-01-29 09:59:12 -05001840 struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1;
1841 struct page *page = bvec->bv_page;
1842 struct extent_io_tree *tree = bio->bi_private;
Chris Mason70dec802008-01-29 09:59:12 -05001843 u64 start;
Chris Mason70dec802008-01-29 09:59:12 -05001844
1845 start = ((u64)page->index << PAGE_CACHE_SHIFT) + bvec->bv_offset;
Chris Mason70dec802008-01-29 09:59:12 -05001846
David Woodhouse902b22f2008-08-20 08:51:49 -04001847 bio->bi_private = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05001848
1849 bio_get(bio);
1850
Chris Mason065631f2008-02-20 12:07:25 -05001851 if (tree->ops && tree->ops->submit_bio_hook)
liubo6b82ce82011-01-26 06:21:39 +00001852 ret = tree->ops->submit_bio_hook(page->mapping->host, rw, bio,
Chris Masoneaf25d92010-05-25 09:48:28 -04001853 mirror_num, bio_flags, start);
Chris Mason0b86a832008-03-24 15:01:56 -04001854 else
1855 submit_bio(rw, bio);
Chris Masond1310b22008-01-24 16:13:08 -05001856 if (bio_flagged(bio, BIO_EOPNOTSUPP))
1857 ret = -EOPNOTSUPP;
1858 bio_put(bio);
1859 return ret;
1860}
1861
1862static int submit_extent_page(int rw, struct extent_io_tree *tree,
1863 struct page *page, sector_t sector,
1864 size_t size, unsigned long offset,
1865 struct block_device *bdev,
1866 struct bio **bio_ret,
1867 unsigned long max_pages,
Chris Masonf1885912008-04-09 16:28:12 -04001868 bio_end_io_t end_io_func,
Chris Masonc8b97812008-10-29 14:49:59 -04001869 int mirror_num,
1870 unsigned long prev_bio_flags,
1871 unsigned long bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001872{
1873 int ret = 0;
1874 struct bio *bio;
1875 int nr;
Chris Masonc8b97812008-10-29 14:49:59 -04001876 int contig = 0;
1877 int this_compressed = bio_flags & EXTENT_BIO_COMPRESSED;
1878 int old_compressed = prev_bio_flags & EXTENT_BIO_COMPRESSED;
Chris Mason5b050f02008-11-11 09:34:41 -05001879 size_t page_size = min_t(size_t, size, PAGE_CACHE_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -05001880
1881 if (bio_ret && *bio_ret) {
1882 bio = *bio_ret;
Chris Masonc8b97812008-10-29 14:49:59 -04001883 if (old_compressed)
1884 contig = bio->bi_sector == sector;
1885 else
1886 contig = bio->bi_sector + (bio->bi_size >> 9) ==
1887 sector;
1888
1889 if (prev_bio_flags != bio_flags || !contig ||
Chris Mason239b14b2008-03-24 15:02:07 -04001890 (tree->ops && tree->ops->merge_bio_hook &&
Chris Masonc8b97812008-10-29 14:49:59 -04001891 tree->ops->merge_bio_hook(page, offset, page_size, bio,
1892 bio_flags)) ||
1893 bio_add_page(bio, page, page_size, offset) < page_size) {
1894 ret = submit_one_bio(rw, bio, mirror_num,
1895 prev_bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001896 bio = NULL;
1897 } else {
1898 return 0;
1899 }
1900 }
Chris Masonc8b97812008-10-29 14:49:59 -04001901 if (this_compressed)
1902 nr = BIO_MAX_PAGES;
1903 else
1904 nr = bio_get_nr_vecs(bdev);
1905
Miao Xie88f794e2010-11-22 03:02:55 +00001906 bio = btrfs_bio_alloc(bdev, sector, nr, GFP_NOFS | __GFP_HIGH);
Tsutomu Itoh5df67082011-02-01 09:17:35 +00001907 if (!bio)
1908 return -ENOMEM;
Chris Mason70dec802008-01-29 09:59:12 -05001909
Chris Masonc8b97812008-10-29 14:49:59 -04001910 bio_add_page(bio, page, page_size, offset);
Chris Masond1310b22008-01-24 16:13:08 -05001911 bio->bi_end_io = end_io_func;
1912 bio->bi_private = tree;
Chris Mason70dec802008-01-29 09:59:12 -05001913
Chris Masond3977122009-01-05 21:25:51 -05001914 if (bio_ret)
Chris Masond1310b22008-01-24 16:13:08 -05001915 *bio_ret = bio;
Chris Masond3977122009-01-05 21:25:51 -05001916 else
Chris Masonc8b97812008-10-29 14:49:59 -04001917 ret = submit_one_bio(rw, bio, mirror_num, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05001918
1919 return ret;
1920}
1921
1922void set_page_extent_mapped(struct page *page)
1923{
1924 if (!PagePrivate(page)) {
1925 SetPagePrivate(page);
Chris Masond1310b22008-01-24 16:13:08 -05001926 page_cache_get(page);
Chris Mason6af118ce2008-07-22 11:18:07 -04001927 set_page_private(page, EXTENT_PAGE_PRIVATE);
Chris Masond1310b22008-01-24 16:13:08 -05001928 }
1929}
1930
Christoph Hellwigb2950862008-12-02 09:54:17 -05001931static void set_page_extent_head(struct page *page, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05001932{
Chris Masoneb14ab82011-02-10 12:35:00 -05001933 WARN_ON(!PagePrivate(page));
Chris Masond1310b22008-01-24 16:13:08 -05001934 set_page_private(page, EXTENT_PAGE_PRIVATE_FIRST_PAGE | len << 2);
1935}
1936
1937/*
1938 * basic readpage implementation. Locked extent state structs are inserted
1939 * into the tree that are removed when the IO is done (by the end_io
1940 * handlers)
1941 */
1942static int __extent_read_full_page(struct extent_io_tree *tree,
1943 struct page *page,
1944 get_extent_t *get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04001945 struct bio **bio, int mirror_num,
1946 unsigned long *bio_flags)
Chris Masond1310b22008-01-24 16:13:08 -05001947{
1948 struct inode *inode = page->mapping->host;
1949 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
1950 u64 page_end = start + PAGE_CACHE_SIZE - 1;
1951 u64 end;
1952 u64 cur = start;
1953 u64 extent_offset;
1954 u64 last_byte = i_size_read(inode);
1955 u64 block_start;
1956 u64 cur_end;
1957 sector_t sector;
1958 struct extent_map *em;
1959 struct block_device *bdev;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001960 struct btrfs_ordered_extent *ordered;
Chris Masond1310b22008-01-24 16:13:08 -05001961 int ret;
1962 int nr = 0;
David Sterba306e16c2011-04-19 14:29:38 +02001963 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001964 size_t iosize;
Chris Masonc8b97812008-10-29 14:49:59 -04001965 size_t disk_io_size;
Chris Masond1310b22008-01-24 16:13:08 -05001966 size_t blocksize = inode->i_sb->s_blocksize;
Chris Masonc8b97812008-10-29 14:49:59 -04001967 unsigned long this_bio_flag = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001968
1969 set_page_extent_mapped(page);
1970
1971 end = page_end;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001972 while (1) {
1973 lock_extent(tree, start, end, GFP_NOFS);
1974 ordered = btrfs_lookup_ordered_extent(inode, start);
1975 if (!ordered)
1976 break;
1977 unlock_extent(tree, start, end, GFP_NOFS);
1978 btrfs_start_ordered_extent(inode, ordered, 1);
1979 btrfs_put_ordered_extent(ordered);
1980 }
Chris Masond1310b22008-01-24 16:13:08 -05001981
Chris Masonc8b97812008-10-29 14:49:59 -04001982 if (page->index == last_byte >> PAGE_CACHE_SHIFT) {
1983 char *userpage;
1984 size_t zero_offset = last_byte & (PAGE_CACHE_SIZE - 1);
1985
1986 if (zero_offset) {
1987 iosize = PAGE_CACHE_SIZE - zero_offset;
1988 userpage = kmap_atomic(page, KM_USER0);
1989 memset(userpage + zero_offset, 0, iosize);
1990 flush_dcache_page(page);
1991 kunmap_atomic(userpage, KM_USER0);
1992 }
1993 }
Chris Masond1310b22008-01-24 16:13:08 -05001994 while (cur <= end) {
1995 if (cur >= last_byte) {
1996 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00001997 struct extent_state *cached = NULL;
1998
David Sterba306e16c2011-04-19 14:29:38 +02001999 iosize = PAGE_CACHE_SIZE - pg_offset;
Chris Masond1310b22008-01-24 16:13:08 -05002000 userpage = kmap_atomic(page, KM_USER0);
David Sterba306e16c2011-04-19 14:29:38 +02002001 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002002 flush_dcache_page(page);
2003 kunmap_atomic(userpage, KM_USER0);
2004 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002005 &cached, GFP_NOFS);
2006 unlock_extent_cached(tree, cur, cur + iosize - 1,
2007 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002008 break;
2009 }
David Sterba306e16c2011-04-19 14:29:38 +02002010 em = get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002011 end - cur + 1, 0);
David Sterbac7040052011-04-19 18:00:01 +02002012 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002013 SetPageError(page);
2014 unlock_extent(tree, cur, end, GFP_NOFS);
2015 break;
2016 }
Chris Masond1310b22008-01-24 16:13:08 -05002017 extent_offset = cur - em->start;
2018 BUG_ON(extent_map_end(em) <= cur);
2019 BUG_ON(end < cur);
2020
Li Zefan261507a02010-12-17 14:21:50 +08002021 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
Chris Masonc8b97812008-10-29 14:49:59 -04002022 this_bio_flag = EXTENT_BIO_COMPRESSED;
Li Zefan261507a02010-12-17 14:21:50 +08002023 extent_set_compress_type(&this_bio_flag,
2024 em->compress_type);
2025 }
Chris Masonc8b97812008-10-29 14:49:59 -04002026
Chris Masond1310b22008-01-24 16:13:08 -05002027 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2028 cur_end = min(extent_map_end(em) - 1, end);
2029 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002030 if (this_bio_flag & EXTENT_BIO_COMPRESSED) {
2031 disk_io_size = em->block_len;
2032 sector = em->block_start >> 9;
2033 } else {
2034 sector = (em->block_start + extent_offset) >> 9;
2035 disk_io_size = iosize;
2036 }
Chris Masond1310b22008-01-24 16:13:08 -05002037 bdev = em->bdev;
2038 block_start = em->block_start;
Yan Zhengd899e052008-10-30 14:25:28 -04002039 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2040 block_start = EXTENT_MAP_HOLE;
Chris Masond1310b22008-01-24 16:13:08 -05002041 free_extent_map(em);
2042 em = NULL;
2043
2044 /* we've found a hole, just zero and go on */
2045 if (block_start == EXTENT_MAP_HOLE) {
2046 char *userpage;
Arne Jansen507903b2011-04-06 10:02:20 +00002047 struct extent_state *cached = NULL;
2048
Chris Masond1310b22008-01-24 16:13:08 -05002049 userpage = kmap_atomic(page, KM_USER0);
David Sterba306e16c2011-04-19 14:29:38 +02002050 memset(userpage + pg_offset, 0, iosize);
Chris Masond1310b22008-01-24 16:13:08 -05002051 flush_dcache_page(page);
2052 kunmap_atomic(userpage, KM_USER0);
2053
2054 set_extent_uptodate(tree, cur, cur + iosize - 1,
Arne Jansen507903b2011-04-06 10:02:20 +00002055 &cached, GFP_NOFS);
2056 unlock_extent_cached(tree, cur, cur + iosize - 1,
2057 &cached, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002058 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002059 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002060 continue;
2061 }
2062 /* the get_extent function already copied into the page */
Chris Mason9655d292009-09-02 15:22:30 -04002063 if (test_range_bit(tree, cur, cur_end,
2064 EXTENT_UPTODATE, 1, NULL)) {
Chris Masona1b32a52008-09-05 16:09:51 -04002065 check_page_uptodate(tree, page);
Chris Masond1310b22008-01-24 16:13:08 -05002066 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2067 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002068 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002069 continue;
2070 }
Chris Mason70dec802008-01-29 09:59:12 -05002071 /* we have an inline extent but it didn't get marked up
2072 * to date. Error out
2073 */
2074 if (block_start == EXTENT_MAP_INLINE) {
2075 SetPageError(page);
2076 unlock_extent(tree, cur, cur + iosize - 1, GFP_NOFS);
2077 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002078 pg_offset += iosize;
Chris Mason70dec802008-01-29 09:59:12 -05002079 continue;
2080 }
Chris Masond1310b22008-01-24 16:13:08 -05002081
2082 ret = 0;
2083 if (tree->ops && tree->ops->readpage_io_hook) {
2084 ret = tree->ops->readpage_io_hook(page, cur,
2085 cur + iosize - 1);
2086 }
2087 if (!ret) {
Chris Mason89642222008-07-24 09:41:53 -04002088 unsigned long pnr = (last_byte >> PAGE_CACHE_SHIFT) + 1;
2089 pnr -= page->index;
Chris Masond1310b22008-01-24 16:13:08 -05002090 ret = submit_extent_page(READ, tree, page,
David Sterba306e16c2011-04-19 14:29:38 +02002091 sector, disk_io_size, pg_offset,
Chris Mason89642222008-07-24 09:41:53 -04002092 bdev, bio, pnr,
Chris Masonc8b97812008-10-29 14:49:59 -04002093 end_bio_extent_readpage, mirror_num,
2094 *bio_flags,
2095 this_bio_flag);
Chris Mason89642222008-07-24 09:41:53 -04002096 nr++;
Chris Masonc8b97812008-10-29 14:49:59 -04002097 *bio_flags = this_bio_flag;
Chris Masond1310b22008-01-24 16:13:08 -05002098 }
2099 if (ret)
2100 SetPageError(page);
2101 cur = cur + iosize;
David Sterba306e16c2011-04-19 14:29:38 +02002102 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002103 }
2104 if (!nr) {
2105 if (!PageError(page))
2106 SetPageUptodate(page);
2107 unlock_page(page);
2108 }
2109 return 0;
2110}
2111
2112int extent_read_full_page(struct extent_io_tree *tree, struct page *page,
2113 get_extent_t *get_extent)
2114{
2115 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04002116 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002117 int ret;
2118
Chris Masonc8b97812008-10-29 14:49:59 -04002119 ret = __extent_read_full_page(tree, page, get_extent, &bio, 0,
2120 &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002121 if (bio)
liubo6b82ce82011-01-26 06:21:39 +00002122 ret = submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002123 return ret;
2124}
Chris Masond1310b22008-01-24 16:13:08 -05002125
Chris Mason11c83492009-04-20 15:50:09 -04002126static noinline void update_nr_written(struct page *page,
2127 struct writeback_control *wbc,
2128 unsigned long nr_written)
2129{
2130 wbc->nr_to_write -= nr_written;
2131 if (wbc->range_cyclic || (wbc->nr_to_write > 0 &&
2132 wbc->range_start == 0 && wbc->range_end == LLONG_MAX))
2133 page->mapping->writeback_index = page->index + nr_written;
2134}
2135
Chris Masond1310b22008-01-24 16:13:08 -05002136/*
2137 * the writepage semantics are similar to regular writepage. extent
2138 * records are inserted to lock ranges in the tree, and as dirty areas
2139 * are found, they are marked writeback. Then the lock bits are removed
2140 * and the end_io handler clears the writeback ranges
2141 */
2142static int __extent_writepage(struct page *page, struct writeback_control *wbc,
2143 void *data)
2144{
2145 struct inode *inode = page->mapping->host;
2146 struct extent_page_data *epd = data;
2147 struct extent_io_tree *tree = epd->tree;
2148 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2149 u64 delalloc_start;
2150 u64 page_end = start + PAGE_CACHE_SIZE - 1;
2151 u64 end;
2152 u64 cur = start;
2153 u64 extent_offset;
2154 u64 last_byte = i_size_read(inode);
2155 u64 block_start;
2156 u64 iosize;
2157 sector_t sector;
Chris Mason2c64c532009-09-02 15:04:12 -04002158 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002159 struct extent_map *em;
2160 struct block_device *bdev;
2161 int ret;
2162 int nr = 0;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002163 size_t pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002164 size_t blocksize;
2165 loff_t i_size = i_size_read(inode);
2166 unsigned long end_index = i_size >> PAGE_CACHE_SHIFT;
2167 u64 nr_delalloc;
2168 u64 delalloc_end;
Chris Masonc8b97812008-10-29 14:49:59 -04002169 int page_started;
2170 int compressed;
Chris Masonffbd5172009-04-20 15:50:09 -04002171 int write_flags;
Chris Mason771ed682008-11-06 22:02:51 -05002172 unsigned long nr_written = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002173
Chris Masonffbd5172009-04-20 15:50:09 -04002174 if (wbc->sync_mode == WB_SYNC_ALL)
Jens Axboe721a9602011-03-09 11:56:30 +01002175 write_flags = WRITE_SYNC;
Chris Masonffbd5172009-04-20 15:50:09 -04002176 else
2177 write_flags = WRITE;
2178
liubo1abe9b82011-03-24 11:18:59 +00002179 trace___extent_writepage(page, inode, wbc);
2180
Chris Masond1310b22008-01-24 16:13:08 -05002181 WARN_ON(!PageLocked(page));
Chris Mason7f3c74f2008-07-18 12:01:11 -04002182 pg_offset = i_size & (PAGE_CACHE_SIZE - 1);
Chris Mason211c17f2008-05-15 09:13:45 -04002183 if (page->index > end_index ||
Chris Mason7f3c74f2008-07-18 12:01:11 -04002184 (page->index == end_index && !pg_offset)) {
Chris Mason39be25c2008-11-10 11:50:50 -05002185 page->mapping->a_ops->invalidatepage(page, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002186 unlock_page(page);
2187 return 0;
2188 }
2189
2190 if (page->index == end_index) {
2191 char *userpage;
2192
Chris Masond1310b22008-01-24 16:13:08 -05002193 userpage = kmap_atomic(page, KM_USER0);
Chris Mason7f3c74f2008-07-18 12:01:11 -04002194 memset(userpage + pg_offset, 0,
2195 PAGE_CACHE_SIZE - pg_offset);
Chris Masond1310b22008-01-24 16:13:08 -05002196 kunmap_atomic(userpage, KM_USER0);
Chris Mason211c17f2008-05-15 09:13:45 -04002197 flush_dcache_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002198 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002199 pg_offset = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002200
2201 set_page_extent_mapped(page);
2202
2203 delalloc_start = start;
2204 delalloc_end = 0;
Chris Masonc8b97812008-10-29 14:49:59 -04002205 page_started = 0;
Chris Mason771ed682008-11-06 22:02:51 -05002206 if (!epd->extent_locked) {
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002207 u64 delalloc_to_write = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002208 /*
2209 * make sure the wbc mapping index is at least updated
2210 * to this page.
2211 */
2212 update_nr_written(page, wbc, 0);
2213
Chris Masond3977122009-01-05 21:25:51 -05002214 while (delalloc_end < page_end) {
Chris Mason771ed682008-11-06 22:02:51 -05002215 nr_delalloc = find_lock_delalloc_range(inode, tree,
Chris Masonc8b97812008-10-29 14:49:59 -04002216 page,
2217 &delalloc_start,
Chris Masond1310b22008-01-24 16:13:08 -05002218 &delalloc_end,
2219 128 * 1024 * 1024);
Chris Mason771ed682008-11-06 22:02:51 -05002220 if (nr_delalloc == 0) {
2221 delalloc_start = delalloc_end + 1;
2222 continue;
2223 }
2224 tree->ops->fill_delalloc(inode, page, delalloc_start,
2225 delalloc_end, &page_started,
2226 &nr_written);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002227 /*
2228 * delalloc_end is already one less than the total
2229 * length, so we don't subtract one from
2230 * PAGE_CACHE_SIZE
2231 */
2232 delalloc_to_write += (delalloc_end - delalloc_start +
2233 PAGE_CACHE_SIZE) >>
2234 PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002235 delalloc_start = delalloc_end + 1;
Chris Masond1310b22008-01-24 16:13:08 -05002236 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002237 if (wbc->nr_to_write < delalloc_to_write) {
2238 int thresh = 8192;
2239
2240 if (delalloc_to_write < thresh * 2)
2241 thresh = delalloc_to_write;
2242 wbc->nr_to_write = min_t(u64, delalloc_to_write,
2243 thresh);
2244 }
Chris Masonc8b97812008-10-29 14:49:59 -04002245
Chris Mason771ed682008-11-06 22:02:51 -05002246 /* did the fill delalloc function already unlock and start
2247 * the IO?
2248 */
2249 if (page_started) {
2250 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002251 /*
2252 * we've unlocked the page, so we can't update
2253 * the mapping's writeback index, just update
2254 * nr_to_write.
2255 */
2256 wbc->nr_to_write -= nr_written;
2257 goto done_unlocked;
Chris Mason771ed682008-11-06 22:02:51 -05002258 }
Chris Masonc8b97812008-10-29 14:49:59 -04002259 }
Chris Mason247e7432008-07-17 12:53:51 -04002260 if (tree->ops && tree->ops->writepage_start_hook) {
Chris Masonc8b97812008-10-29 14:49:59 -04002261 ret = tree->ops->writepage_start_hook(page, start,
2262 page_end);
Chris Mason247e7432008-07-17 12:53:51 -04002263 if (ret == -EAGAIN) {
Chris Mason247e7432008-07-17 12:53:51 -04002264 redirty_page_for_writepage(wbc, page);
Chris Mason11c83492009-04-20 15:50:09 -04002265 update_nr_written(page, wbc, nr_written);
Chris Mason247e7432008-07-17 12:53:51 -04002266 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002267 ret = 0;
Chris Mason11c83492009-04-20 15:50:09 -04002268 goto done_unlocked;
Chris Mason247e7432008-07-17 12:53:51 -04002269 }
2270 }
2271
Chris Mason11c83492009-04-20 15:50:09 -04002272 /*
2273 * we don't want to touch the inode after unlocking the page,
2274 * so we update the mapping writeback index now
2275 */
2276 update_nr_written(page, wbc, nr_written + 1);
Chris Mason771ed682008-11-06 22:02:51 -05002277
Chris Masond1310b22008-01-24 16:13:08 -05002278 end = page_end;
Chris Masond1310b22008-01-24 16:13:08 -05002279 if (last_byte <= start) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002280 if (tree->ops && tree->ops->writepage_end_io_hook)
2281 tree->ops->writepage_end_io_hook(page, start,
2282 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002283 goto done;
2284 }
2285
Chris Masond1310b22008-01-24 16:13:08 -05002286 blocksize = inode->i_sb->s_blocksize;
2287
2288 while (cur <= end) {
2289 if (cur >= last_byte) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002290 if (tree->ops && tree->ops->writepage_end_io_hook)
2291 tree->ops->writepage_end_io_hook(page, cur,
2292 page_end, NULL, 1);
Chris Masond1310b22008-01-24 16:13:08 -05002293 break;
2294 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002295 em = epd->get_extent(inode, page, pg_offset, cur,
Chris Masond1310b22008-01-24 16:13:08 -05002296 end - cur + 1, 1);
David Sterbac7040052011-04-19 18:00:01 +02002297 if (IS_ERR_OR_NULL(em)) {
Chris Masond1310b22008-01-24 16:13:08 -05002298 SetPageError(page);
2299 break;
2300 }
2301
2302 extent_offset = cur - em->start;
2303 BUG_ON(extent_map_end(em) <= cur);
2304 BUG_ON(end < cur);
2305 iosize = min(extent_map_end(em) - cur, end - cur + 1);
2306 iosize = (iosize + blocksize - 1) & ~((u64)blocksize - 1);
2307 sector = (em->block_start + extent_offset) >> 9;
2308 bdev = em->bdev;
2309 block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -04002310 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Masond1310b22008-01-24 16:13:08 -05002311 free_extent_map(em);
2312 em = NULL;
2313
Chris Masonc8b97812008-10-29 14:49:59 -04002314 /*
2315 * compressed and inline extents are written through other
2316 * paths in the FS
2317 */
2318 if (compressed || block_start == EXTENT_MAP_HOLE ||
Chris Masond1310b22008-01-24 16:13:08 -05002319 block_start == EXTENT_MAP_INLINE) {
Chris Masonc8b97812008-10-29 14:49:59 -04002320 /*
2321 * end_io notification does not happen here for
2322 * compressed extents
2323 */
2324 if (!compressed && tree->ops &&
2325 tree->ops->writepage_end_io_hook)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002326 tree->ops->writepage_end_io_hook(page, cur,
2327 cur + iosize - 1,
2328 NULL, 1);
Chris Masonc8b97812008-10-29 14:49:59 -04002329 else if (compressed) {
2330 /* we don't want to end_page_writeback on
2331 * a compressed extent. this happens
2332 * elsewhere
2333 */
2334 nr++;
2335 }
2336
2337 cur += iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002338 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002339 continue;
2340 }
Chris Masond1310b22008-01-24 16:13:08 -05002341 /* leave this out until we have a page_mkwrite call */
2342 if (0 && !test_range_bit(tree, cur, cur + iosize - 1,
Chris Mason9655d292009-09-02 15:22:30 -04002343 EXTENT_DIRTY, 0, NULL)) {
Chris Masond1310b22008-01-24 16:13:08 -05002344 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002345 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002346 continue;
2347 }
Chris Masonc8b97812008-10-29 14:49:59 -04002348
Chris Masond1310b22008-01-24 16:13:08 -05002349 if (tree->ops && tree->ops->writepage_io_hook) {
2350 ret = tree->ops->writepage_io_hook(page, cur,
2351 cur + iosize - 1);
2352 } else {
2353 ret = 0;
2354 }
Chris Mason1259ab72008-05-12 13:39:03 -04002355 if (ret) {
Chris Masond1310b22008-01-24 16:13:08 -05002356 SetPageError(page);
Chris Mason1259ab72008-05-12 13:39:03 -04002357 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002358 unsigned long max_nr = end_index + 1;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002359
Chris Masond1310b22008-01-24 16:13:08 -05002360 set_range_writeback(tree, cur, cur + iosize - 1);
2361 if (!PageWriteback(page)) {
Chris Masond3977122009-01-05 21:25:51 -05002362 printk(KERN_ERR "btrfs warning page %lu not "
2363 "writeback, cur %llu end %llu\n",
2364 page->index, (unsigned long long)cur,
Chris Masond1310b22008-01-24 16:13:08 -05002365 (unsigned long long)end);
2366 }
2367
Chris Masonffbd5172009-04-20 15:50:09 -04002368 ret = submit_extent_page(write_flags, tree, page,
2369 sector, iosize, pg_offset,
2370 bdev, &epd->bio, max_nr,
Chris Masonc8b97812008-10-29 14:49:59 -04002371 end_bio_extent_writepage,
2372 0, 0, 0);
Chris Masond1310b22008-01-24 16:13:08 -05002373 if (ret)
2374 SetPageError(page);
2375 }
2376 cur = cur + iosize;
Chris Mason7f3c74f2008-07-18 12:01:11 -04002377 pg_offset += iosize;
Chris Masond1310b22008-01-24 16:13:08 -05002378 nr++;
2379 }
2380done:
2381 if (nr == 0) {
2382 /* make sure the mapping tag for page dirty gets cleared */
2383 set_page_writeback(page);
2384 end_page_writeback(page);
2385 }
Chris Masond1310b22008-01-24 16:13:08 -05002386 unlock_page(page);
Chris Mason771ed682008-11-06 22:02:51 -05002387
Chris Mason11c83492009-04-20 15:50:09 -04002388done_unlocked:
2389
Chris Mason2c64c532009-09-02 15:04:12 -04002390 /* drop our reference on any cached states */
2391 free_extent_state(cached_state);
Chris Masond1310b22008-01-24 16:13:08 -05002392 return 0;
2393}
2394
Chris Masond1310b22008-01-24 16:13:08 -05002395/**
Chris Mason4bef0842008-09-08 11:18:08 -04002396 * 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 -05002397 * @mapping: address space structure to write
2398 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2399 * @writepage: function called for each page
2400 * @data: data passed to writepage function
2401 *
2402 * If a page is already under I/O, write_cache_pages() skips it, even
2403 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2404 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2405 * and msync() need to guarantee that all the data which was dirty at the time
2406 * the call was made get new I/O started against them. If wbc->sync_mode is
2407 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2408 * existing IO to complete.
2409 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002410static int extent_write_cache_pages(struct extent_io_tree *tree,
Chris Mason4bef0842008-09-08 11:18:08 -04002411 struct address_space *mapping,
2412 struct writeback_control *wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002413 writepage_t writepage, void *data,
2414 void (*flush_fn)(void *))
Chris Masond1310b22008-01-24 16:13:08 -05002415{
Chris Masond1310b22008-01-24 16:13:08 -05002416 int ret = 0;
2417 int done = 0;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002418 int nr_to_write_done = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002419 struct pagevec pvec;
2420 int nr_pages;
2421 pgoff_t index;
2422 pgoff_t end; /* Inclusive */
2423 int scanned = 0;
Josef Bacikf7aaa062011-07-15 21:26:38 +00002424 int tag;
Chris Masond1310b22008-01-24 16:13:08 -05002425
Chris Masond1310b22008-01-24 16:13:08 -05002426 pagevec_init(&pvec, 0);
2427 if (wbc->range_cyclic) {
2428 index = mapping->writeback_index; /* Start from prev offset */
2429 end = -1;
2430 } else {
2431 index = wbc->range_start >> PAGE_CACHE_SHIFT;
2432 end = wbc->range_end >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05002433 scanned = 1;
2434 }
Josef Bacikf7aaa062011-07-15 21:26:38 +00002435 if (wbc->sync_mode == WB_SYNC_ALL)
2436 tag = PAGECACHE_TAG_TOWRITE;
2437 else
2438 tag = PAGECACHE_TAG_DIRTY;
Chris Masond1310b22008-01-24 16:13:08 -05002439retry:
Josef Bacikf7aaa062011-07-15 21:26:38 +00002440 if (wbc->sync_mode == WB_SYNC_ALL)
2441 tag_pages_for_writeback(mapping, index, end);
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002442 while (!done && !nr_to_write_done && (index <= end) &&
Josef Bacikf7aaa062011-07-15 21:26:38 +00002443 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
2444 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
Chris Masond1310b22008-01-24 16:13:08 -05002445 unsigned i;
2446
2447 scanned = 1;
2448 for (i = 0; i < nr_pages; i++) {
2449 struct page *page = pvec.pages[i];
2450
2451 /*
2452 * At this point we hold neither mapping->tree_lock nor
2453 * lock on the page itself: the page may be truncated or
2454 * invalidated (changing page->mapping to NULL), or even
2455 * swizzled back from swapper_space to tmpfs file
2456 * mapping
2457 */
Chris Mason4bef0842008-09-08 11:18:08 -04002458 if (tree->ops && tree->ops->write_cache_pages_lock_hook)
2459 tree->ops->write_cache_pages_lock_hook(page);
2460 else
2461 lock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05002462
2463 if (unlikely(page->mapping != mapping)) {
2464 unlock_page(page);
2465 continue;
2466 }
2467
2468 if (!wbc->range_cyclic && page->index > end) {
2469 done = 1;
2470 unlock_page(page);
2471 continue;
2472 }
2473
Chris Masond2c3f4f2008-11-19 12:44:22 -05002474 if (wbc->sync_mode != WB_SYNC_NONE) {
Chris Mason0e6bd952008-11-20 10:46:35 -05002475 if (PageWriteback(page))
2476 flush_fn(data);
Chris Masond1310b22008-01-24 16:13:08 -05002477 wait_on_page_writeback(page);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002478 }
Chris Masond1310b22008-01-24 16:13:08 -05002479
2480 if (PageWriteback(page) ||
2481 !clear_page_dirty_for_io(page)) {
2482 unlock_page(page);
2483 continue;
2484 }
2485
2486 ret = (*writepage)(page, wbc, data);
2487
2488 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
2489 unlock_page(page);
2490 ret = 0;
2491 }
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002492 if (ret)
Chris Masond1310b22008-01-24 16:13:08 -05002493 done = 1;
Chris Masonf85d7d6c2009-09-18 16:03:16 -04002494
2495 /*
2496 * the filesystem may choose to bump up nr_to_write.
2497 * We have to make sure to honor the new nr_to_write
2498 * at any time
2499 */
2500 nr_to_write_done = wbc->nr_to_write <= 0;
Chris Masond1310b22008-01-24 16:13:08 -05002501 }
2502 pagevec_release(&pvec);
2503 cond_resched();
2504 }
2505 if (!scanned && !done) {
2506 /*
2507 * We hit the last page and there is more work to be done: wrap
2508 * back to the start of the file
2509 */
2510 scanned = 1;
2511 index = 0;
2512 goto retry;
2513 }
Chris Masond1310b22008-01-24 16:13:08 -05002514 return ret;
2515}
Chris Masond1310b22008-01-24 16:13:08 -05002516
Chris Masonffbd5172009-04-20 15:50:09 -04002517static void flush_epd_write_bio(struct extent_page_data *epd)
2518{
2519 if (epd->bio) {
2520 if (epd->sync_io)
2521 submit_one_bio(WRITE_SYNC, epd->bio, 0, 0);
2522 else
2523 submit_one_bio(WRITE, epd->bio, 0, 0);
2524 epd->bio = NULL;
2525 }
2526}
2527
Chris Masond2c3f4f2008-11-19 12:44:22 -05002528static noinline void flush_write_bio(void *data)
2529{
2530 struct extent_page_data *epd = data;
Chris Masonffbd5172009-04-20 15:50:09 -04002531 flush_epd_write_bio(epd);
Chris Masond2c3f4f2008-11-19 12:44:22 -05002532}
2533
Chris Masond1310b22008-01-24 16:13:08 -05002534int extent_write_full_page(struct extent_io_tree *tree, struct page *page,
2535 get_extent_t *get_extent,
2536 struct writeback_control *wbc)
2537{
2538 int ret;
2539 struct address_space *mapping = page->mapping;
2540 struct extent_page_data epd = {
2541 .bio = NULL,
2542 .tree = tree,
2543 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002544 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002545 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002546 };
2547 struct writeback_control wbc_writepages = {
Chris Masond313d7a2009-04-20 15:50:09 -04002548 .sync_mode = wbc->sync_mode,
Chris Masond1310b22008-01-24 16:13:08 -05002549 .older_than_this = NULL,
2550 .nr_to_write = 64,
2551 .range_start = page_offset(page) + PAGE_CACHE_SIZE,
2552 .range_end = (loff_t)-1,
2553 };
2554
Chris Masond1310b22008-01-24 16:13:08 -05002555 ret = __extent_writepage(page, wbc, &epd);
2556
Chris Mason4bef0842008-09-08 11:18:08 -04002557 extent_write_cache_pages(tree, mapping, &wbc_writepages,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002558 __extent_writepage, &epd, flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002559 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002560 return ret;
2561}
Chris Masond1310b22008-01-24 16:13:08 -05002562
Chris Mason771ed682008-11-06 22:02:51 -05002563int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode,
2564 u64 start, u64 end, get_extent_t *get_extent,
2565 int mode)
2566{
2567 int ret = 0;
2568 struct address_space *mapping = inode->i_mapping;
2569 struct page *page;
2570 unsigned long nr_pages = (end - start + PAGE_CACHE_SIZE) >>
2571 PAGE_CACHE_SHIFT;
2572
2573 struct extent_page_data epd = {
2574 .bio = NULL,
2575 .tree = tree,
2576 .get_extent = get_extent,
2577 .extent_locked = 1,
Chris Masonffbd5172009-04-20 15:50:09 -04002578 .sync_io = mode == WB_SYNC_ALL,
Chris Mason771ed682008-11-06 22:02:51 -05002579 };
2580 struct writeback_control wbc_writepages = {
Chris Mason771ed682008-11-06 22:02:51 -05002581 .sync_mode = mode,
2582 .older_than_this = NULL,
2583 .nr_to_write = nr_pages * 2,
2584 .range_start = start,
2585 .range_end = end + 1,
2586 };
2587
Chris Masond3977122009-01-05 21:25:51 -05002588 while (start <= end) {
Chris Mason771ed682008-11-06 22:02:51 -05002589 page = find_get_page(mapping, start >> PAGE_CACHE_SHIFT);
2590 if (clear_page_dirty_for_io(page))
2591 ret = __extent_writepage(page, &wbc_writepages, &epd);
2592 else {
2593 if (tree->ops && tree->ops->writepage_end_io_hook)
2594 tree->ops->writepage_end_io_hook(page, start,
2595 start + PAGE_CACHE_SIZE - 1,
2596 NULL, 1);
2597 unlock_page(page);
2598 }
2599 page_cache_release(page);
2600 start += PAGE_CACHE_SIZE;
2601 }
2602
Chris Masonffbd5172009-04-20 15:50:09 -04002603 flush_epd_write_bio(&epd);
Chris Mason771ed682008-11-06 22:02:51 -05002604 return ret;
2605}
Chris Masond1310b22008-01-24 16:13:08 -05002606
2607int extent_writepages(struct extent_io_tree *tree,
2608 struct address_space *mapping,
2609 get_extent_t *get_extent,
2610 struct writeback_control *wbc)
2611{
2612 int ret = 0;
2613 struct extent_page_data epd = {
2614 .bio = NULL,
2615 .tree = tree,
2616 .get_extent = get_extent,
Chris Mason771ed682008-11-06 22:02:51 -05002617 .extent_locked = 0,
Chris Masonffbd5172009-04-20 15:50:09 -04002618 .sync_io = wbc->sync_mode == WB_SYNC_ALL,
Chris Masond1310b22008-01-24 16:13:08 -05002619 };
2620
Chris Mason4bef0842008-09-08 11:18:08 -04002621 ret = extent_write_cache_pages(tree, mapping, wbc,
Chris Masond2c3f4f2008-11-19 12:44:22 -05002622 __extent_writepage, &epd,
2623 flush_write_bio);
Chris Masonffbd5172009-04-20 15:50:09 -04002624 flush_epd_write_bio(&epd);
Chris Masond1310b22008-01-24 16:13:08 -05002625 return ret;
2626}
Chris Masond1310b22008-01-24 16:13:08 -05002627
2628int extent_readpages(struct extent_io_tree *tree,
2629 struct address_space *mapping,
2630 struct list_head *pages, unsigned nr_pages,
2631 get_extent_t get_extent)
2632{
2633 struct bio *bio = NULL;
2634 unsigned page_idx;
Chris Masonc8b97812008-10-29 14:49:59 -04002635 unsigned long bio_flags = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002636
Chris Masond1310b22008-01-24 16:13:08 -05002637 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
2638 struct page *page = list_entry(pages->prev, struct page, lru);
2639
2640 prefetchw(&page->flags);
2641 list_del(&page->lru);
Nick Piggin28ecb6092010-03-17 13:31:04 +00002642 if (!add_to_page_cache_lru(page, mapping,
Itaru Kitayama43e817a2011-04-25 19:43:51 -04002643 page->index, GFP_NOFS)) {
Chris Masonf1885912008-04-09 16:28:12 -04002644 __extent_read_full_page(tree, page, get_extent,
Chris Masonc8b97812008-10-29 14:49:59 -04002645 &bio, 0, &bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002646 }
2647 page_cache_release(page);
2648 }
Chris Masond1310b22008-01-24 16:13:08 -05002649 BUG_ON(!list_empty(pages));
2650 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04002651 submit_one_bio(READ, bio, 0, bio_flags);
Chris Masond1310b22008-01-24 16:13:08 -05002652 return 0;
2653}
Chris Masond1310b22008-01-24 16:13:08 -05002654
2655/*
2656 * basic invalidatepage code, this waits on any locked or writeback
2657 * ranges corresponding to the page, and then deletes any extent state
2658 * records from the tree
2659 */
2660int extent_invalidatepage(struct extent_io_tree *tree,
2661 struct page *page, unsigned long offset)
2662{
Josef Bacik2ac55d42010-02-03 19:33:23 +00002663 struct extent_state *cached_state = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05002664 u64 start = ((u64)page->index << PAGE_CACHE_SHIFT);
2665 u64 end = start + PAGE_CACHE_SIZE - 1;
2666 size_t blocksize = page->mapping->host->i_sb->s_blocksize;
2667
Chris Masond3977122009-01-05 21:25:51 -05002668 start += (offset + blocksize - 1) & ~(blocksize - 1);
Chris Masond1310b22008-01-24 16:13:08 -05002669 if (start > end)
2670 return 0;
2671
Josef Bacik2ac55d42010-02-03 19:33:23 +00002672 lock_extent_bits(tree, start, end, 0, &cached_state, GFP_NOFS);
Chris Mason1edbb732009-09-02 13:24:36 -04002673 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002674 clear_extent_bit(tree, start, end,
Josef Bacik32c00af2009-10-08 13:34:05 -04002675 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2676 EXTENT_DO_ACCOUNTING,
Josef Bacik2ac55d42010-02-03 19:33:23 +00002677 1, 1, &cached_state, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002678 return 0;
2679}
Chris Masond1310b22008-01-24 16:13:08 -05002680
2681/*
Chris Mason7b13b7b2008-04-18 10:29:50 -04002682 * a helper for releasepage, this tests for areas of the page that
2683 * are locked or under IO and drops the related state bits if it is safe
2684 * to drop the page.
2685 */
2686int try_release_extent_state(struct extent_map_tree *map,
2687 struct extent_io_tree *tree, struct page *page,
2688 gfp_t mask)
2689{
2690 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2691 u64 end = start + PAGE_CACHE_SIZE - 1;
2692 int ret = 1;
2693
Chris Mason211f90e2008-07-18 11:56:15 -04002694 if (test_range_bit(tree, start, end,
Chris Mason8b62b722009-09-02 16:53:46 -04002695 EXTENT_IOBITS, 0, NULL))
Chris Mason7b13b7b2008-04-18 10:29:50 -04002696 ret = 0;
2697 else {
2698 if ((mask & GFP_NOFS) == GFP_NOFS)
2699 mask = GFP_NOFS;
Chris Mason11ef1602009-09-23 20:28:46 -04002700 /*
2701 * at this point we can safely clear everything except the
2702 * locked bit and the nodatasum bit
2703 */
Chris Masone3f24cc2011-02-14 12:52:08 -05002704 ret = clear_extent_bit(tree, start, end,
Chris Mason11ef1602009-09-23 20:28:46 -04002705 ~(EXTENT_LOCKED | EXTENT_NODATASUM),
2706 0, 0, NULL, mask);
Chris Masone3f24cc2011-02-14 12:52:08 -05002707
2708 /* if clear_extent_bit failed for enomem reasons,
2709 * we can't allow the release to continue.
2710 */
2711 if (ret < 0)
2712 ret = 0;
2713 else
2714 ret = 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002715 }
2716 return ret;
2717}
Chris Mason7b13b7b2008-04-18 10:29:50 -04002718
2719/*
Chris Masond1310b22008-01-24 16:13:08 -05002720 * a helper for releasepage. As long as there are no locked extents
2721 * in the range corresponding to the page, both state records and extent
2722 * map records are removed
2723 */
2724int try_release_extent_mapping(struct extent_map_tree *map,
Chris Mason70dec802008-01-29 09:59:12 -05002725 struct extent_io_tree *tree, struct page *page,
2726 gfp_t mask)
Chris Masond1310b22008-01-24 16:13:08 -05002727{
2728 struct extent_map *em;
2729 u64 start = (u64)page->index << PAGE_CACHE_SHIFT;
2730 u64 end = start + PAGE_CACHE_SIZE - 1;
Chris Mason7b13b7b2008-04-18 10:29:50 -04002731
Chris Mason70dec802008-01-29 09:59:12 -05002732 if ((mask & __GFP_WAIT) &&
2733 page->mapping->host->i_size > 16 * 1024 * 1024) {
Yan39b56372008-02-15 10:40:50 -05002734 u64 len;
Chris Mason70dec802008-01-29 09:59:12 -05002735 while (start <= end) {
Yan39b56372008-02-15 10:40:50 -05002736 len = end - start + 1;
Chris Mason890871b2009-09-02 16:24:52 -04002737 write_lock(&map->lock);
Yan39b56372008-02-15 10:40:50 -05002738 em = lookup_extent_mapping(map, start, len);
David Sterbac7040052011-04-19 18:00:01 +02002739 if (IS_ERR_OR_NULL(em)) {
Chris Mason890871b2009-09-02 16:24:52 -04002740 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002741 break;
2742 }
Chris Mason7f3c74f2008-07-18 12:01:11 -04002743 if (test_bit(EXTENT_FLAG_PINNED, &em->flags) ||
2744 em->start != start) {
Chris Mason890871b2009-09-02 16:24:52 -04002745 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002746 free_extent_map(em);
2747 break;
2748 }
2749 if (!test_range_bit(tree, em->start,
2750 extent_map_end(em) - 1,
Chris Mason8b62b722009-09-02 16:53:46 -04002751 EXTENT_LOCKED | EXTENT_WRITEBACK,
Chris Mason9655d292009-09-02 15:22:30 -04002752 0, NULL)) {
Chris Mason70dec802008-01-29 09:59:12 -05002753 remove_extent_mapping(map, em);
2754 /* once for the rb tree */
2755 free_extent_map(em);
2756 }
2757 start = extent_map_end(em);
Chris Mason890871b2009-09-02 16:24:52 -04002758 write_unlock(&map->lock);
Chris Mason70dec802008-01-29 09:59:12 -05002759
2760 /* once for us */
Chris Masond1310b22008-01-24 16:13:08 -05002761 free_extent_map(em);
2762 }
Chris Masond1310b22008-01-24 16:13:08 -05002763 }
Chris Mason7b13b7b2008-04-18 10:29:50 -04002764 return try_release_extent_state(map, tree, page, mask);
Chris Masond1310b22008-01-24 16:13:08 -05002765}
Chris Masond1310b22008-01-24 16:13:08 -05002766
Chris Masonec29ed52011-02-23 16:23:20 -05002767/*
2768 * helper function for fiemap, which doesn't want to see any holes.
2769 * This maps until we find something past 'last'
2770 */
2771static struct extent_map *get_extent_skip_holes(struct inode *inode,
2772 u64 offset,
2773 u64 last,
2774 get_extent_t *get_extent)
2775{
2776 u64 sectorsize = BTRFS_I(inode)->root->sectorsize;
2777 struct extent_map *em;
2778 u64 len;
2779
2780 if (offset >= last)
2781 return NULL;
2782
2783 while(1) {
2784 len = last - offset;
2785 if (len == 0)
2786 break;
2787 len = (len + sectorsize - 1) & ~(sectorsize - 1);
2788 em = get_extent(inode, NULL, 0, offset, len, 0);
David Sterbac7040052011-04-19 18:00:01 +02002789 if (IS_ERR_OR_NULL(em))
Chris Masonec29ed52011-02-23 16:23:20 -05002790 return em;
2791
2792 /* if this isn't a hole return it */
2793 if (!test_bit(EXTENT_FLAG_VACANCY, &em->flags) &&
2794 em->block_start != EXTENT_MAP_HOLE) {
2795 return em;
2796 }
2797
2798 /* this is a hole, advance to the next extent */
2799 offset = extent_map_end(em);
2800 free_extent_map(em);
2801 if (offset >= last)
2802 break;
2803 }
2804 return NULL;
2805}
2806
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002807int extent_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
2808 __u64 start, __u64 len, get_extent_t *get_extent)
2809{
Josef Bacik975f84f2010-11-23 19:36:57 +00002810 int ret = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002811 u64 off = start;
2812 u64 max = start + len;
2813 u32 flags = 0;
Josef Bacik975f84f2010-11-23 19:36:57 +00002814 u32 found_type;
2815 u64 last;
Chris Masonec29ed52011-02-23 16:23:20 -05002816 u64 last_for_get_extent = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002817 u64 disko = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05002818 u64 isize = i_size_read(inode);
Josef Bacik975f84f2010-11-23 19:36:57 +00002819 struct btrfs_key found_key;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002820 struct extent_map *em = NULL;
Josef Bacik2ac55d42010-02-03 19:33:23 +00002821 struct extent_state *cached_state = NULL;
Josef Bacik975f84f2010-11-23 19:36:57 +00002822 struct btrfs_path *path;
2823 struct btrfs_file_extent_item *item;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002824 int end = 0;
Chris Masonec29ed52011-02-23 16:23:20 -05002825 u64 em_start = 0;
2826 u64 em_len = 0;
2827 u64 em_end = 0;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002828 unsigned long emflags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002829
2830 if (len == 0)
2831 return -EINVAL;
2832
Josef Bacik975f84f2010-11-23 19:36:57 +00002833 path = btrfs_alloc_path();
2834 if (!path)
2835 return -ENOMEM;
2836 path->leave_spinning = 1;
2837
Chris Masonec29ed52011-02-23 16:23:20 -05002838 /*
2839 * lookup the last file extent. We're not using i_size here
2840 * because there might be preallocation past i_size
2841 */
Josef Bacik975f84f2010-11-23 19:36:57 +00002842 ret = btrfs_lookup_file_extent(NULL, BTRFS_I(inode)->root,
Li Zefan33345d012011-04-20 10:31:50 +08002843 path, btrfs_ino(inode), -1, 0);
Josef Bacik975f84f2010-11-23 19:36:57 +00002844 if (ret < 0) {
2845 btrfs_free_path(path);
2846 return ret;
2847 }
2848 WARN_ON(!ret);
2849 path->slots[0]--;
2850 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2851 struct btrfs_file_extent_item);
2852 btrfs_item_key_to_cpu(path->nodes[0], &found_key, path->slots[0]);
2853 found_type = btrfs_key_type(&found_key);
2854
Chris Masonec29ed52011-02-23 16:23:20 -05002855 /* No extents, but there might be delalloc bits */
Li Zefan33345d012011-04-20 10:31:50 +08002856 if (found_key.objectid != btrfs_ino(inode) ||
Josef Bacik975f84f2010-11-23 19:36:57 +00002857 found_type != BTRFS_EXTENT_DATA_KEY) {
Chris Masonec29ed52011-02-23 16:23:20 -05002858 /* have to trust i_size as the end */
2859 last = (u64)-1;
2860 last_for_get_extent = isize;
2861 } else {
2862 /*
2863 * remember the start of the last extent. There are a
2864 * bunch of different factors that go into the length of the
2865 * extent, so its much less complex to remember where it started
2866 */
2867 last = found_key.offset;
2868 last_for_get_extent = last + 1;
Josef Bacik975f84f2010-11-23 19:36:57 +00002869 }
Josef Bacik975f84f2010-11-23 19:36:57 +00002870 btrfs_free_path(path);
2871
Chris Masonec29ed52011-02-23 16:23:20 -05002872 /*
2873 * we might have some extents allocated but more delalloc past those
2874 * extents. so, we trust isize unless the start of the last extent is
2875 * beyond isize
2876 */
2877 if (last < isize) {
2878 last = (u64)-1;
2879 last_for_get_extent = isize;
2880 }
2881
Josef Bacik2ac55d42010-02-03 19:33:23 +00002882 lock_extent_bits(&BTRFS_I(inode)->io_tree, start, start + len, 0,
2883 &cached_state, GFP_NOFS);
Chris Masonec29ed52011-02-23 16:23:20 -05002884
2885 em = get_extent_skip_holes(inode, off, last_for_get_extent,
2886 get_extent);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002887 if (!em)
2888 goto out;
2889 if (IS_ERR(em)) {
2890 ret = PTR_ERR(em);
2891 goto out;
2892 }
Josef Bacik975f84f2010-11-23 19:36:57 +00002893
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002894 while (!end) {
Chris Masonea8efc72011-03-08 11:54:40 -05002895 u64 offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002896
Chris Masonea8efc72011-03-08 11:54:40 -05002897 /* break if the extent we found is outside the range */
2898 if (em->start >= max || extent_map_end(em) < off)
2899 break;
2900
2901 /*
2902 * get_extent may return an extent that starts before our
2903 * requested range. We have to make sure the ranges
2904 * we return to fiemap always move forward and don't
2905 * overlap, so adjust the offsets here
2906 */
2907 em_start = max(em->start, off);
2908
2909 /*
2910 * record the offset from the start of the extent
2911 * for adjusting the disk offset below
2912 */
2913 offset_in_extent = em_start - em->start;
Chris Masonec29ed52011-02-23 16:23:20 -05002914 em_end = extent_map_end(em);
Chris Masonea8efc72011-03-08 11:54:40 -05002915 em_len = em_end - em_start;
Chris Masonec29ed52011-02-23 16:23:20 -05002916 emflags = em->flags;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002917 disko = 0;
2918 flags = 0;
2919
Chris Masonea8efc72011-03-08 11:54:40 -05002920 /*
2921 * bump off for our next call to get_extent
2922 */
2923 off = extent_map_end(em);
2924 if (off >= max)
2925 end = 1;
2926
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002927 if (em->block_start == EXTENT_MAP_LAST_BYTE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002928 end = 1;
2929 flags |= FIEMAP_EXTENT_LAST;
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002930 } else if (em->block_start == EXTENT_MAP_INLINE) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002931 flags |= (FIEMAP_EXTENT_DATA_INLINE |
2932 FIEMAP_EXTENT_NOT_ALIGNED);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002933 } else if (em->block_start == EXTENT_MAP_DELALLOC) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002934 flags |= (FIEMAP_EXTENT_DELALLOC |
2935 FIEMAP_EXTENT_UNKNOWN);
Heiko Carstens93dbfad2009-04-03 10:33:45 -04002936 } else {
Chris Masonea8efc72011-03-08 11:54:40 -05002937 disko = em->block_start + offset_in_extent;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002938 }
2939 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags))
2940 flags |= FIEMAP_EXTENT_ENCODED;
2941
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002942 free_extent_map(em);
2943 em = NULL;
Chris Masonec29ed52011-02-23 16:23:20 -05002944 if ((em_start >= last) || em_len == (u64)-1 ||
2945 (last == (u64)-1 && isize <= em_end)) {
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002946 flags |= FIEMAP_EXTENT_LAST;
2947 end = 1;
2948 }
2949
Chris Masonec29ed52011-02-23 16:23:20 -05002950 /* now scan forward to see if this is really the last extent. */
2951 em = get_extent_skip_holes(inode, off, last_for_get_extent,
2952 get_extent);
2953 if (IS_ERR(em)) {
2954 ret = PTR_ERR(em);
2955 goto out;
2956 }
2957 if (!em) {
Josef Bacik975f84f2010-11-23 19:36:57 +00002958 flags |= FIEMAP_EXTENT_LAST;
2959 end = 1;
2960 }
Chris Masonec29ed52011-02-23 16:23:20 -05002961 ret = fiemap_fill_next_extent(fieinfo, em_start, disko,
2962 em_len, flags);
2963 if (ret)
2964 goto out_free;
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002965 }
2966out_free:
2967 free_extent_map(em);
2968out:
Josef Bacik2ac55d42010-02-03 19:33:23 +00002969 unlock_extent_cached(&BTRFS_I(inode)->io_tree, start, start + len,
2970 &cached_state, GFP_NOFS);
Yehuda Sadeh1506fcc2009-01-21 14:39:14 -05002971 return ret;
2972}
2973
Chris Masond1310b22008-01-24 16:13:08 -05002974static inline struct page *extent_buffer_page(struct extent_buffer *eb,
2975 unsigned long i)
2976{
2977 struct page *p;
2978 struct address_space *mapping;
2979
2980 if (i == 0)
2981 return eb->first_page;
2982 i += eb->start >> PAGE_CACHE_SHIFT;
2983 mapping = eb->first_page->mapping;
Chris Mason33958dc2008-07-30 10:29:12 -04002984 if (!mapping)
2985 return NULL;
Sven Wegener0ee0fda2008-07-30 16:54:26 -04002986
2987 /*
2988 * extent_buffer_page is only called after pinning the page
2989 * by increasing the reference count. So we know the page must
2990 * be in the radix tree.
2991 */
Sven Wegener0ee0fda2008-07-30 16:54:26 -04002992 rcu_read_lock();
Chris Masond1310b22008-01-24 16:13:08 -05002993 p = radix_tree_lookup(&mapping->page_tree, i);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04002994 rcu_read_unlock();
Chris Mason2b1f55b2008-09-24 11:48:04 -04002995
Chris Masond1310b22008-01-24 16:13:08 -05002996 return p;
2997}
2998
Chris Mason6af118ce2008-07-22 11:18:07 -04002999static inline unsigned long num_extent_pages(u64 start, u64 len)
Chris Masonce9adaa2008-04-09 16:28:12 -04003000{
Chris Mason6af118ce2008-07-22 11:18:07 -04003001 return ((start + len + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT) -
3002 (start >> PAGE_CACHE_SHIFT);
Chris Mason728131d2008-04-09 16:28:12 -04003003}
3004
Chris Masond1310b22008-01-24 16:13:08 -05003005static struct extent_buffer *__alloc_extent_buffer(struct extent_io_tree *tree,
3006 u64 start,
3007 unsigned long len,
3008 gfp_t mask)
3009{
3010 struct extent_buffer *eb = NULL;
Chris Mason39351272009-02-04 09:24:05 -05003011#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003012 unsigned long flags;
Chris Mason4bef0842008-09-08 11:18:08 -04003013#endif
Chris Masond1310b22008-01-24 16:13:08 -05003014
Chris Masond1310b22008-01-24 16:13:08 -05003015 eb = kmem_cache_zalloc(extent_buffer_cache, mask);
Tsutomu Itoh91ca3382011-01-05 02:32:22 +00003016 if (eb == NULL)
3017 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003018 eb->start = start;
3019 eb->len = len;
Chris Masonbd681512011-07-16 15:23:14 -04003020 rwlock_init(&eb->lock);
3021 atomic_set(&eb->write_locks, 0);
3022 atomic_set(&eb->read_locks, 0);
3023 atomic_set(&eb->blocking_readers, 0);
3024 atomic_set(&eb->blocking_writers, 0);
3025 atomic_set(&eb->spinning_readers, 0);
3026 atomic_set(&eb->spinning_writers, 0);
3027 init_waitqueue_head(&eb->write_lock_wq);
3028 init_waitqueue_head(&eb->read_lock_wq);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003029
Chris Mason39351272009-02-04 09:24:05 -05003030#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003031 spin_lock_irqsave(&leak_lock, flags);
3032 list_add(&eb->leak_list, &buffers);
3033 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003034#endif
Chris Masond1310b22008-01-24 16:13:08 -05003035 atomic_set(&eb->refs, 1);
3036
3037 return eb;
3038}
3039
3040static void __free_extent_buffer(struct extent_buffer *eb)
3041{
Chris Mason39351272009-02-04 09:24:05 -05003042#if LEAK_DEBUG
Chris Mason2d2ae542008-03-26 16:24:23 -04003043 unsigned long flags;
3044 spin_lock_irqsave(&leak_lock, flags);
3045 list_del(&eb->leak_list);
3046 spin_unlock_irqrestore(&leak_lock, flags);
Chris Mason4bef0842008-09-08 11:18:08 -04003047#endif
Chris Masond1310b22008-01-24 16:13:08 -05003048 kmem_cache_free(extent_buffer_cache, eb);
3049}
3050
Miao Xie897ca6e2010-10-26 20:57:29 -04003051/*
3052 * Helper for releasing extent buffer page.
3053 */
3054static void btrfs_release_extent_buffer_page(struct extent_buffer *eb,
3055 unsigned long start_idx)
3056{
3057 unsigned long index;
3058 struct page *page;
3059
3060 if (!eb->first_page)
3061 return;
3062
3063 index = num_extent_pages(eb->start, eb->len);
3064 if (start_idx >= index)
3065 return;
3066
3067 do {
3068 index--;
3069 page = extent_buffer_page(eb, index);
3070 if (page)
3071 page_cache_release(page);
3072 } while (index != start_idx);
3073}
3074
3075/*
3076 * Helper for releasing the extent buffer.
3077 */
3078static inline void btrfs_release_extent_buffer(struct extent_buffer *eb)
3079{
3080 btrfs_release_extent_buffer_page(eb, 0);
3081 __free_extent_buffer(eb);
3082}
3083
Chris Masond1310b22008-01-24 16:13:08 -05003084struct extent_buffer *alloc_extent_buffer(struct extent_io_tree *tree,
3085 u64 start, unsigned long len,
David Sterbaba144192011-04-21 01:12:06 +02003086 struct page *page0)
Chris Masond1310b22008-01-24 16:13:08 -05003087{
3088 unsigned long num_pages = num_extent_pages(start, len);
3089 unsigned long i;
3090 unsigned long index = start >> PAGE_CACHE_SHIFT;
3091 struct extent_buffer *eb;
Chris Mason6af118ce2008-07-22 11:18:07 -04003092 struct extent_buffer *exists = NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003093 struct page *p;
3094 struct address_space *mapping = tree->mapping;
3095 int uptodate = 1;
Miao Xie19fe0a82010-10-26 20:57:29 -04003096 int ret;
Chris Masond1310b22008-01-24 16:13:08 -05003097
Miao Xie19fe0a82010-10-26 20:57:29 -04003098 rcu_read_lock();
3099 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
3100 if (eb && atomic_inc_not_zero(&eb->refs)) {
3101 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003102 mark_page_accessed(eb->first_page);
Chris Mason6af118ce2008-07-22 11:18:07 -04003103 return eb;
3104 }
Miao Xie19fe0a82010-10-26 20:57:29 -04003105 rcu_read_unlock();
Chris Mason6af118ce2008-07-22 11:18:07 -04003106
David Sterbaba144192011-04-21 01:12:06 +02003107 eb = __alloc_extent_buffer(tree, start, len, GFP_NOFS);
Peter2b114d12008-04-01 11:21:40 -04003108 if (!eb)
Chris Masond1310b22008-01-24 16:13:08 -05003109 return NULL;
3110
Chris Masond1310b22008-01-24 16:13:08 -05003111 if (page0) {
3112 eb->first_page = page0;
3113 i = 1;
3114 index++;
3115 page_cache_get(page0);
3116 mark_page_accessed(page0);
3117 set_page_extent_mapped(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003118 set_page_extent_head(page0, len);
Chris Masonf1885912008-04-09 16:28:12 -04003119 uptodate = PageUptodate(page0);
Chris Masond1310b22008-01-24 16:13:08 -05003120 } else {
3121 i = 0;
3122 }
3123 for (; i < num_pages; i++, index++) {
Chris Masona6591712011-07-19 12:04:14 -04003124 p = find_or_create_page(mapping, index, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05003125 if (!p) {
3126 WARN_ON(1);
Chris Mason6af118ce2008-07-22 11:18:07 -04003127 goto free_eb;
Chris Masond1310b22008-01-24 16:13:08 -05003128 }
3129 set_page_extent_mapped(p);
3130 mark_page_accessed(p);
3131 if (i == 0) {
3132 eb->first_page = p;
3133 set_page_extent_head(p, len);
3134 } else {
3135 set_page_private(p, EXTENT_PAGE_PRIVATE);
3136 }
3137 if (!PageUptodate(p))
3138 uptodate = 0;
Chris Masoneb14ab82011-02-10 12:35:00 -05003139
3140 /*
3141 * see below about how we avoid a nasty race with release page
3142 * and why we unlock later
3143 */
3144 if (i != 0)
3145 unlock_page(p);
Chris Masond1310b22008-01-24 16:13:08 -05003146 }
3147 if (uptodate)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003148 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003149
Miao Xie19fe0a82010-10-26 20:57:29 -04003150 ret = radix_tree_preload(GFP_NOFS & ~__GFP_HIGHMEM);
3151 if (ret)
3152 goto free_eb;
3153
Chris Mason6af118ce2008-07-22 11:18:07 -04003154 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003155 ret = radix_tree_insert(&tree->buffer, start >> PAGE_CACHE_SHIFT, eb);
3156 if (ret == -EEXIST) {
3157 exists = radix_tree_lookup(&tree->buffer,
3158 start >> PAGE_CACHE_SHIFT);
Chris Mason6af118ce2008-07-22 11:18:07 -04003159 /* add one reference for the caller */
3160 atomic_inc(&exists->refs);
3161 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003162 radix_tree_preload_end();
Chris Mason6af118ce2008-07-22 11:18:07 -04003163 goto free_eb;
3164 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003165 /* add one reference for the tree */
3166 atomic_inc(&eb->refs);
Yan, Zhengf044ba72010-02-04 08:46:56 +00003167 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003168 radix_tree_preload_end();
Chris Masoneb14ab82011-02-10 12:35:00 -05003169
3170 /*
3171 * there is a race where release page may have
3172 * tried to find this extent buffer in the radix
3173 * but failed. It will tell the VM it is safe to
3174 * reclaim the, and it will clear the page private bit.
3175 * We must make sure to set the page private bit properly
3176 * after the extent buffer is in the radix tree so
3177 * it doesn't get lost
3178 */
3179 set_page_extent_mapped(eb->first_page);
3180 set_page_extent_head(eb->first_page, eb->len);
3181 if (!page0)
3182 unlock_page(eb->first_page);
Chris Masond1310b22008-01-24 16:13:08 -05003183 return eb;
3184
Chris Mason6af118ce2008-07-22 11:18:07 -04003185free_eb:
Chris Masoneb14ab82011-02-10 12:35:00 -05003186 if (eb->first_page && !page0)
3187 unlock_page(eb->first_page);
3188
Chris Masond1310b22008-01-24 16:13:08 -05003189 if (!atomic_dec_and_test(&eb->refs))
Chris Mason6af118ce2008-07-22 11:18:07 -04003190 return exists;
Miao Xie897ca6e2010-10-26 20:57:29 -04003191 btrfs_release_extent_buffer(eb);
Chris Mason6af118ce2008-07-22 11:18:07 -04003192 return exists;
Chris Masond1310b22008-01-24 16:13:08 -05003193}
Chris Masond1310b22008-01-24 16:13:08 -05003194
3195struct extent_buffer *find_extent_buffer(struct extent_io_tree *tree,
David Sterbaf09d1f62011-04-21 01:08:01 +02003196 u64 start, unsigned long len)
Chris Masond1310b22008-01-24 16:13:08 -05003197{
Chris Masond1310b22008-01-24 16:13:08 -05003198 struct extent_buffer *eb;
Chris Masond1310b22008-01-24 16:13:08 -05003199
Miao Xie19fe0a82010-10-26 20:57:29 -04003200 rcu_read_lock();
3201 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
3202 if (eb && atomic_inc_not_zero(&eb->refs)) {
3203 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003204 mark_page_accessed(eb->first_page);
Miao Xie19fe0a82010-10-26 20:57:29 -04003205 return eb;
3206 }
3207 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -04003208
Miao Xie19fe0a82010-10-26 20:57:29 -04003209 return NULL;
Chris Masond1310b22008-01-24 16:13:08 -05003210}
Chris Masond1310b22008-01-24 16:13:08 -05003211
3212void free_extent_buffer(struct extent_buffer *eb)
3213{
Chris Masond1310b22008-01-24 16:13:08 -05003214 if (!eb)
3215 return;
3216
3217 if (!atomic_dec_and_test(&eb->refs))
3218 return;
3219
Chris Mason6af118ce2008-07-22 11:18:07 -04003220 WARN_ON(1);
Chris Masond1310b22008-01-24 16:13:08 -05003221}
Chris Masond1310b22008-01-24 16:13:08 -05003222
3223int clear_extent_buffer_dirty(struct extent_io_tree *tree,
3224 struct extent_buffer *eb)
3225{
Chris Masond1310b22008-01-24 16:13:08 -05003226 unsigned long i;
3227 unsigned long num_pages;
3228 struct page *page;
3229
Chris Masond1310b22008-01-24 16:13:08 -05003230 num_pages = num_extent_pages(eb->start, eb->len);
3231
3232 for (i = 0; i < num_pages; i++) {
3233 page = extent_buffer_page(eb, i);
Chris Masonb9473432009-03-13 11:00:37 -04003234 if (!PageDirty(page))
Chris Masond2c3f4f2008-11-19 12:44:22 -05003235 continue;
3236
Chris Masona61e6f22008-07-22 11:18:08 -04003237 lock_page(page);
Chris Masoneb14ab82011-02-10 12:35:00 -05003238 WARN_ON(!PagePrivate(page));
3239
3240 set_page_extent_mapped(page);
Chris Masond1310b22008-01-24 16:13:08 -05003241 if (i == 0)
3242 set_page_extent_head(page, eb->len);
Chris Masond1310b22008-01-24 16:13:08 -05003243
Chris Masond1310b22008-01-24 16:13:08 -05003244 clear_page_dirty_for_io(page);
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003245 spin_lock_irq(&page->mapping->tree_lock);
Chris Masond1310b22008-01-24 16:13:08 -05003246 if (!PageDirty(page)) {
3247 radix_tree_tag_clear(&page->mapping->page_tree,
3248 page_index(page),
3249 PAGECACHE_TAG_DIRTY);
3250 }
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003251 spin_unlock_irq(&page->mapping->tree_lock);
Chris Masona61e6f22008-07-22 11:18:08 -04003252 unlock_page(page);
Chris Masond1310b22008-01-24 16:13:08 -05003253 }
3254 return 0;
3255}
Chris Masond1310b22008-01-24 16:13:08 -05003256
Chris Masond1310b22008-01-24 16:13:08 -05003257int set_extent_buffer_dirty(struct extent_io_tree *tree,
3258 struct extent_buffer *eb)
3259{
3260 unsigned long i;
3261 unsigned long num_pages;
Chris Masonb9473432009-03-13 11:00:37 -04003262 int was_dirty = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003263
Chris Masonb9473432009-03-13 11:00:37 -04003264 was_dirty = test_and_set_bit(EXTENT_BUFFER_DIRTY, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003265 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb9473432009-03-13 11:00:37 -04003266 for (i = 0; i < num_pages; i++)
Chris Masond1310b22008-01-24 16:13:08 -05003267 __set_page_dirty_nobuffers(extent_buffer_page(eb, i));
Chris Masonb9473432009-03-13 11:00:37 -04003268 return was_dirty;
Chris Masond1310b22008-01-24 16:13:08 -05003269}
Chris Masond1310b22008-01-24 16:13:08 -05003270
Chris Mason19b6caf2011-07-25 06:50:50 -04003271static int __eb_straddles_pages(u64 start, u64 len)
3272{
3273 if (len < PAGE_CACHE_SIZE)
3274 return 1;
3275 if (start & (PAGE_CACHE_SIZE - 1))
3276 return 1;
3277 if ((start + len) & (PAGE_CACHE_SIZE - 1))
3278 return 1;
3279 return 0;
3280}
3281
3282static int eb_straddles_pages(struct extent_buffer *eb)
3283{
3284 return __eb_straddles_pages(eb->start, eb->len);
3285}
3286
Chris Mason1259ab72008-05-12 13:39:03 -04003287int clear_extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003288 struct extent_buffer *eb,
3289 struct extent_state **cached_state)
Chris Mason1259ab72008-05-12 13:39:03 -04003290{
3291 unsigned long i;
3292 struct page *page;
3293 unsigned long num_pages;
3294
3295 num_pages = num_extent_pages(eb->start, eb->len);
Chris Masonb4ce94d2009-02-04 09:25:08 -05003296 clear_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Mason1259ab72008-05-12 13:39:03 -04003297
Chris Mason19b6caf2011-07-25 06:50:50 -04003298 if (eb_straddles_pages(eb)) {
3299 clear_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3300 cached_state, GFP_NOFS);
3301 }
Chris Mason1259ab72008-05-12 13:39:03 -04003302 for (i = 0; i < num_pages; i++) {
3303 page = extent_buffer_page(eb, i);
Chris Mason33958dc2008-07-30 10:29:12 -04003304 if (page)
3305 ClearPageUptodate(page);
Chris Mason1259ab72008-05-12 13:39:03 -04003306 }
3307 return 0;
3308}
3309
Chris Masond1310b22008-01-24 16:13:08 -05003310int set_extent_buffer_uptodate(struct extent_io_tree *tree,
3311 struct extent_buffer *eb)
3312{
3313 unsigned long i;
3314 struct page *page;
3315 unsigned long num_pages;
3316
3317 num_pages = num_extent_pages(eb->start, eb->len);
3318
Chris Mason19b6caf2011-07-25 06:50:50 -04003319 if (eb_straddles_pages(eb)) {
3320 set_extent_uptodate(tree, eb->start, eb->start + eb->len - 1,
3321 NULL, GFP_NOFS);
3322 }
Chris Masond1310b22008-01-24 16:13:08 -05003323 for (i = 0; i < num_pages; i++) {
3324 page = extent_buffer_page(eb, i);
3325 if ((i == 0 && (eb->start & (PAGE_CACHE_SIZE - 1))) ||
3326 ((i == num_pages - 1) &&
3327 ((eb->start + eb->len) & (PAGE_CACHE_SIZE - 1)))) {
3328 check_page_uptodate(tree, page);
3329 continue;
3330 }
3331 SetPageUptodate(page);
3332 }
3333 return 0;
3334}
Chris Masond1310b22008-01-24 16:13:08 -05003335
Chris Masonce9adaa2008-04-09 16:28:12 -04003336int extent_range_uptodate(struct extent_io_tree *tree,
3337 u64 start, u64 end)
3338{
3339 struct page *page;
3340 int ret;
3341 int pg_uptodate = 1;
3342 int uptodate;
3343 unsigned long index;
3344
Chris Mason19b6caf2011-07-25 06:50:50 -04003345 if (__eb_straddles_pages(start, end - start + 1)) {
3346 ret = test_range_bit(tree, start, end,
3347 EXTENT_UPTODATE, 1, NULL);
3348 if (ret)
3349 return 1;
3350 }
Chris Masond3977122009-01-05 21:25:51 -05003351 while (start <= end) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003352 index = start >> PAGE_CACHE_SHIFT;
3353 page = find_get_page(tree->mapping, index);
3354 uptodate = PageUptodate(page);
3355 page_cache_release(page);
3356 if (!uptodate) {
3357 pg_uptodate = 0;
3358 break;
3359 }
3360 start += PAGE_CACHE_SIZE;
3361 }
3362 return pg_uptodate;
3363}
3364
Chris Masond1310b22008-01-24 16:13:08 -05003365int extent_buffer_uptodate(struct extent_io_tree *tree,
Josef Bacik2ac55d42010-02-03 19:33:23 +00003366 struct extent_buffer *eb,
3367 struct extent_state *cached_state)
Chris Masond1310b22008-01-24 16:13:08 -05003368{
Chris Mason728131d2008-04-09 16:28:12 -04003369 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003370 unsigned long num_pages;
3371 unsigned long i;
Chris Mason728131d2008-04-09 16:28:12 -04003372 struct page *page;
3373 int pg_uptodate = 1;
3374
Chris Masonb4ce94d2009-02-04 09:25:08 -05003375 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Mason42352982008-04-28 16:40:52 -04003376 return 1;
Chris Mason728131d2008-04-09 16:28:12 -04003377
Chris Mason19b6caf2011-07-25 06:50:50 -04003378 if (eb_straddles_pages(eb)) {
3379 ret = test_range_bit(tree, eb->start, eb->start + eb->len - 1,
3380 EXTENT_UPTODATE, 1, cached_state);
3381 if (ret)
3382 return ret;
3383 }
Chris Mason728131d2008-04-09 16:28:12 -04003384
3385 num_pages = num_extent_pages(eb->start, eb->len);
3386 for (i = 0; i < num_pages; i++) {
3387 page = extent_buffer_page(eb, i);
3388 if (!PageUptodate(page)) {
3389 pg_uptodate = 0;
3390 break;
3391 }
3392 }
Chris Mason42352982008-04-28 16:40:52 -04003393 return pg_uptodate;
Chris Masond1310b22008-01-24 16:13:08 -05003394}
Chris Masond1310b22008-01-24 16:13:08 -05003395
3396int read_extent_buffer_pages(struct extent_io_tree *tree,
3397 struct extent_buffer *eb,
Chris Masona86c12c2008-02-07 10:50:54 -05003398 u64 start, int wait,
Chris Masonf1885912008-04-09 16:28:12 -04003399 get_extent_t *get_extent, int mirror_num)
Chris Masond1310b22008-01-24 16:13:08 -05003400{
3401 unsigned long i;
3402 unsigned long start_i;
3403 struct page *page;
3404 int err;
3405 int ret = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003406 int locked_pages = 0;
3407 int all_uptodate = 1;
3408 int inc_all_pages = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003409 unsigned long num_pages;
Chris Masona86c12c2008-02-07 10:50:54 -05003410 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -04003411 unsigned long bio_flags = 0;
Chris Masona86c12c2008-02-07 10:50:54 -05003412
Chris Masonb4ce94d2009-02-04 09:25:08 -05003413 if (test_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags))
Chris Masond1310b22008-01-24 16:13:08 -05003414 return 0;
3415
Chris Mason19b6caf2011-07-25 06:50:50 -04003416 if (eb_straddles_pages(eb)) {
3417 if (test_range_bit(tree, eb->start, eb->start + eb->len - 1,
3418 EXTENT_UPTODATE, 1, NULL)) {
3419 return 0;
3420 }
Chris Masond1310b22008-01-24 16:13:08 -05003421 }
3422
3423 if (start) {
3424 WARN_ON(start < eb->start);
3425 start_i = (start >> PAGE_CACHE_SHIFT) -
3426 (eb->start >> PAGE_CACHE_SHIFT);
3427 } else {
3428 start_i = 0;
3429 }
3430
3431 num_pages = num_extent_pages(eb->start, eb->len);
3432 for (i = start_i; i < num_pages; i++) {
3433 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003434 if (!wait) {
David Woodhouse2db04962008-08-07 11:19:43 -04003435 if (!trylock_page(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003436 goto unlock_exit;
Chris Masond1310b22008-01-24 16:13:08 -05003437 } else {
3438 lock_page(page);
3439 }
Chris Masonce9adaa2008-04-09 16:28:12 -04003440 locked_pages++;
Chris Masond3977122009-01-05 21:25:51 -05003441 if (!PageUptodate(page))
Chris Masonce9adaa2008-04-09 16:28:12 -04003442 all_uptodate = 0;
Chris Masonce9adaa2008-04-09 16:28:12 -04003443 }
3444 if (all_uptodate) {
3445 if (start_i == 0)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003446 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masonce9adaa2008-04-09 16:28:12 -04003447 goto unlock_exit;
3448 }
3449
3450 for (i = start_i; i < num_pages; i++) {
3451 page = extent_buffer_page(eb, i);
Chris Masoneb14ab82011-02-10 12:35:00 -05003452
3453 WARN_ON(!PagePrivate(page));
3454
3455 set_page_extent_mapped(page);
3456 if (i == 0)
3457 set_page_extent_head(page, eb->len);
3458
Chris Masonce9adaa2008-04-09 16:28:12 -04003459 if (inc_all_pages)
3460 page_cache_get(page);
3461 if (!PageUptodate(page)) {
3462 if (start_i == 0)
3463 inc_all_pages = 1;
Chris Masonf1885912008-04-09 16:28:12 -04003464 ClearPageError(page);
Chris Masona86c12c2008-02-07 10:50:54 -05003465 err = __extent_read_full_page(tree, page,
Chris Masonf1885912008-04-09 16:28:12 -04003466 get_extent, &bio,
Chris Masonc8b97812008-10-29 14:49:59 -04003467 mirror_num, &bio_flags);
Chris Masond3977122009-01-05 21:25:51 -05003468 if (err)
Chris Masond1310b22008-01-24 16:13:08 -05003469 ret = err;
Chris Masond1310b22008-01-24 16:13:08 -05003470 } else {
3471 unlock_page(page);
3472 }
3473 }
3474
Chris Masona86c12c2008-02-07 10:50:54 -05003475 if (bio)
Chris Masonc8b97812008-10-29 14:49:59 -04003476 submit_one_bio(READ, bio, mirror_num, bio_flags);
Chris Masona86c12c2008-02-07 10:50:54 -05003477
Chris Masond3977122009-01-05 21:25:51 -05003478 if (ret || !wait)
Chris Masond1310b22008-01-24 16:13:08 -05003479 return ret;
Chris Masond3977122009-01-05 21:25:51 -05003480
Chris Masond1310b22008-01-24 16:13:08 -05003481 for (i = start_i; i < num_pages; i++) {
3482 page = extent_buffer_page(eb, i);
3483 wait_on_page_locked(page);
Chris Masond3977122009-01-05 21:25:51 -05003484 if (!PageUptodate(page))
Chris Masond1310b22008-01-24 16:13:08 -05003485 ret = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05003486 }
Chris Masond3977122009-01-05 21:25:51 -05003487
Chris Masond1310b22008-01-24 16:13:08 -05003488 if (!ret)
Chris Masonb4ce94d2009-02-04 09:25:08 -05003489 set_bit(EXTENT_BUFFER_UPTODATE, &eb->bflags);
Chris Masond1310b22008-01-24 16:13:08 -05003490 return ret;
Chris Masonce9adaa2008-04-09 16:28:12 -04003491
3492unlock_exit:
3493 i = start_i;
Chris Masond3977122009-01-05 21:25:51 -05003494 while (locked_pages > 0) {
Chris Masonce9adaa2008-04-09 16:28:12 -04003495 page = extent_buffer_page(eb, i);
3496 i++;
3497 unlock_page(page);
3498 locked_pages--;
3499 }
3500 return ret;
Chris Masond1310b22008-01-24 16:13:08 -05003501}
Chris Masond1310b22008-01-24 16:13:08 -05003502
3503void read_extent_buffer(struct extent_buffer *eb, void *dstv,
3504 unsigned long start,
3505 unsigned long len)
3506{
3507 size_t cur;
3508 size_t offset;
3509 struct page *page;
3510 char *kaddr;
3511 char *dst = (char *)dstv;
3512 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3513 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
Chris Masond1310b22008-01-24 16:13:08 -05003514
3515 WARN_ON(start > eb->len);
3516 WARN_ON(start + len > eb->start + eb->len);
3517
3518 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3519
Chris Masond3977122009-01-05 21:25:51 -05003520 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003521 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003522
3523 cur = min(len, (PAGE_CACHE_SIZE - offset));
Chris Masona6591712011-07-19 12:04:14 -04003524 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05003525 memcpy(dst, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05003526
3527 dst += cur;
3528 len -= cur;
3529 offset = 0;
3530 i++;
3531 }
3532}
Chris Masond1310b22008-01-24 16:13:08 -05003533
3534int map_private_extent_buffer(struct extent_buffer *eb, unsigned long start,
Chris Masona6591712011-07-19 12:04:14 -04003535 unsigned long min_len, char **map,
Chris Masond1310b22008-01-24 16:13:08 -05003536 unsigned long *map_start,
Chris Masona6591712011-07-19 12:04:14 -04003537 unsigned long *map_len)
Chris Masond1310b22008-01-24 16:13:08 -05003538{
3539 size_t offset = start & (PAGE_CACHE_SIZE - 1);
3540 char *kaddr;
3541 struct page *p;
3542 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3543 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3544 unsigned long end_i = (start_offset + start + min_len - 1) >>
3545 PAGE_CACHE_SHIFT;
3546
3547 if (i != end_i)
3548 return -EINVAL;
3549
3550 if (i == 0) {
3551 offset = start_offset;
3552 *map_start = 0;
3553 } else {
3554 offset = 0;
3555 *map_start = ((u64)i << PAGE_CACHE_SHIFT) - start_offset;
3556 }
Chris Masond3977122009-01-05 21:25:51 -05003557
Chris Masond1310b22008-01-24 16:13:08 -05003558 if (start + min_len > eb->len) {
Chris Masond3977122009-01-05 21:25:51 -05003559 printk(KERN_ERR "btrfs bad mapping eb start %llu len %lu, "
3560 "wanted %lu %lu\n", (unsigned long long)eb->start,
3561 eb->len, start, min_len);
Chris Masond1310b22008-01-24 16:13:08 -05003562 WARN_ON(1);
Josef Bacik850265332011-03-15 14:52:12 -04003563 return -EINVAL;
Chris Masond1310b22008-01-24 16:13:08 -05003564 }
3565
3566 p = extent_buffer_page(eb, i);
Chris Masona6591712011-07-19 12:04:14 -04003567 kaddr = page_address(p);
Chris Masond1310b22008-01-24 16:13:08 -05003568 *map = kaddr + offset;
3569 *map_len = PAGE_CACHE_SIZE - offset;
3570 return 0;
3571}
Chris Masond1310b22008-01-24 16:13:08 -05003572
Chris Masond1310b22008-01-24 16:13:08 -05003573int memcmp_extent_buffer(struct extent_buffer *eb, const void *ptrv,
3574 unsigned long start,
3575 unsigned long len)
3576{
3577 size_t cur;
3578 size_t offset;
3579 struct page *page;
3580 char *kaddr;
3581 char *ptr = (char *)ptrv;
3582 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3583 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3584 int ret = 0;
3585
3586 WARN_ON(start > eb->len);
3587 WARN_ON(start + len > eb->start + eb->len);
3588
3589 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3590
Chris Masond3977122009-01-05 21:25:51 -05003591 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003592 page = extent_buffer_page(eb, i);
Chris Masond1310b22008-01-24 16:13:08 -05003593
3594 cur = min(len, (PAGE_CACHE_SIZE - offset));
3595
Chris Masona6591712011-07-19 12:04:14 -04003596 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05003597 ret = memcmp(ptr, kaddr + offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05003598 if (ret)
3599 break;
3600
3601 ptr += cur;
3602 len -= cur;
3603 offset = 0;
3604 i++;
3605 }
3606 return ret;
3607}
Chris Masond1310b22008-01-24 16:13:08 -05003608
3609void write_extent_buffer(struct extent_buffer *eb, const void *srcv,
3610 unsigned long start, unsigned long len)
3611{
3612 size_t cur;
3613 size_t offset;
3614 struct page *page;
3615 char *kaddr;
3616 char *src = (char *)srcv;
3617 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3618 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3619
3620 WARN_ON(start > eb->len);
3621 WARN_ON(start + len > eb->start + eb->len);
3622
3623 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3624
Chris Masond3977122009-01-05 21:25:51 -05003625 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003626 page = extent_buffer_page(eb, i);
3627 WARN_ON(!PageUptodate(page));
3628
3629 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04003630 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05003631 memcpy(kaddr + offset, src, cur);
Chris Masond1310b22008-01-24 16:13:08 -05003632
3633 src += cur;
3634 len -= cur;
3635 offset = 0;
3636 i++;
3637 }
3638}
Chris Masond1310b22008-01-24 16:13:08 -05003639
3640void memset_extent_buffer(struct extent_buffer *eb, char c,
3641 unsigned long start, unsigned long len)
3642{
3643 size_t cur;
3644 size_t offset;
3645 struct page *page;
3646 char *kaddr;
3647 size_t start_offset = eb->start & ((u64)PAGE_CACHE_SIZE - 1);
3648 unsigned long i = (start_offset + start) >> PAGE_CACHE_SHIFT;
3649
3650 WARN_ON(start > eb->len);
3651 WARN_ON(start + len > eb->start + eb->len);
3652
3653 offset = (start_offset + start) & ((unsigned long)PAGE_CACHE_SIZE - 1);
3654
Chris Masond3977122009-01-05 21:25:51 -05003655 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003656 page = extent_buffer_page(eb, i);
3657 WARN_ON(!PageUptodate(page));
3658
3659 cur = min(len, PAGE_CACHE_SIZE - offset);
Chris Masona6591712011-07-19 12:04:14 -04003660 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05003661 memset(kaddr + offset, c, cur);
Chris Masond1310b22008-01-24 16:13:08 -05003662
3663 len -= cur;
3664 offset = 0;
3665 i++;
3666 }
3667}
Chris Masond1310b22008-01-24 16:13:08 -05003668
3669void copy_extent_buffer(struct extent_buffer *dst, struct extent_buffer *src,
3670 unsigned long dst_offset, unsigned long src_offset,
3671 unsigned long len)
3672{
3673 u64 dst_len = dst->len;
3674 size_t cur;
3675 size_t offset;
3676 struct page *page;
3677 char *kaddr;
3678 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3679 unsigned long i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3680
3681 WARN_ON(src->len != dst_len);
3682
3683 offset = (start_offset + dst_offset) &
3684 ((unsigned long)PAGE_CACHE_SIZE - 1);
3685
Chris Masond3977122009-01-05 21:25:51 -05003686 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003687 page = extent_buffer_page(dst, i);
3688 WARN_ON(!PageUptodate(page));
3689
3690 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE - offset));
3691
Chris Masona6591712011-07-19 12:04:14 -04003692 kaddr = page_address(page);
Chris Masond1310b22008-01-24 16:13:08 -05003693 read_extent_buffer(src, kaddr + offset, src_offset, cur);
Chris Masond1310b22008-01-24 16:13:08 -05003694
3695 src_offset += cur;
3696 len -= cur;
3697 offset = 0;
3698 i++;
3699 }
3700}
Chris Masond1310b22008-01-24 16:13:08 -05003701
3702static void move_pages(struct page *dst_page, struct page *src_page,
3703 unsigned long dst_off, unsigned long src_off,
3704 unsigned long len)
3705{
Chris Masona6591712011-07-19 12:04:14 -04003706 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05003707 if (dst_page == src_page) {
3708 memmove(dst_kaddr + dst_off, dst_kaddr + src_off, len);
3709 } else {
Chris Masona6591712011-07-19 12:04:14 -04003710 char *src_kaddr = page_address(src_page);
Chris Masond1310b22008-01-24 16:13:08 -05003711 char *p = dst_kaddr + dst_off + len;
3712 char *s = src_kaddr + src_off + len;
3713
3714 while (len--)
3715 *--p = *--s;
Chris Masond1310b22008-01-24 16:13:08 -05003716 }
Chris Masond1310b22008-01-24 16:13:08 -05003717}
3718
Sergei Trofimovich33872062011-04-11 21:52:52 +00003719static inline bool areas_overlap(unsigned long src, unsigned long dst, unsigned long len)
3720{
3721 unsigned long distance = (src > dst) ? src - dst : dst - src;
3722 return distance < len;
3723}
3724
Chris Masond1310b22008-01-24 16:13:08 -05003725static void copy_pages(struct page *dst_page, struct page *src_page,
3726 unsigned long dst_off, unsigned long src_off,
3727 unsigned long len)
3728{
Chris Masona6591712011-07-19 12:04:14 -04003729 char *dst_kaddr = page_address(dst_page);
Chris Masond1310b22008-01-24 16:13:08 -05003730 char *src_kaddr;
3731
Sergei Trofimovich33872062011-04-11 21:52:52 +00003732 if (dst_page != src_page) {
Chris Masona6591712011-07-19 12:04:14 -04003733 src_kaddr = page_address(src_page);
Sergei Trofimovich33872062011-04-11 21:52:52 +00003734 } else {
Chris Masond1310b22008-01-24 16:13:08 -05003735 src_kaddr = dst_kaddr;
Sergei Trofimovich33872062011-04-11 21:52:52 +00003736 BUG_ON(areas_overlap(src_off, dst_off, len));
3737 }
Chris Masond1310b22008-01-24 16:13:08 -05003738
3739 memcpy(dst_kaddr + dst_off, src_kaddr + src_off, len);
Chris Masond1310b22008-01-24 16:13:08 -05003740}
3741
3742void memcpy_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3743 unsigned long src_offset, unsigned long len)
3744{
3745 size_t cur;
3746 size_t dst_off_in_page;
3747 size_t src_off_in_page;
3748 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3749 unsigned long dst_i;
3750 unsigned long src_i;
3751
3752 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003753 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3754 "len %lu dst len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003755 BUG_ON(1);
3756 }
3757 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003758 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3759 "len %lu dst len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003760 BUG_ON(1);
3761 }
3762
Chris Masond3977122009-01-05 21:25:51 -05003763 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003764 dst_off_in_page = (start_offset + dst_offset) &
3765 ((unsigned long)PAGE_CACHE_SIZE - 1);
3766 src_off_in_page = (start_offset + src_offset) &
3767 ((unsigned long)PAGE_CACHE_SIZE - 1);
3768
3769 dst_i = (start_offset + dst_offset) >> PAGE_CACHE_SHIFT;
3770 src_i = (start_offset + src_offset) >> PAGE_CACHE_SHIFT;
3771
3772 cur = min(len, (unsigned long)(PAGE_CACHE_SIZE -
3773 src_off_in_page));
3774 cur = min_t(unsigned long, cur,
3775 (unsigned long)(PAGE_CACHE_SIZE - dst_off_in_page));
3776
3777 copy_pages(extent_buffer_page(dst, dst_i),
3778 extent_buffer_page(dst, src_i),
3779 dst_off_in_page, src_off_in_page, cur);
3780
3781 src_offset += cur;
3782 dst_offset += cur;
3783 len -= cur;
3784 }
3785}
Chris Masond1310b22008-01-24 16:13:08 -05003786
3787void memmove_extent_buffer(struct extent_buffer *dst, unsigned long dst_offset,
3788 unsigned long src_offset, unsigned long len)
3789{
3790 size_t cur;
3791 size_t dst_off_in_page;
3792 size_t src_off_in_page;
3793 unsigned long dst_end = dst_offset + len - 1;
3794 unsigned long src_end = src_offset + len - 1;
3795 size_t start_offset = dst->start & ((u64)PAGE_CACHE_SIZE - 1);
3796 unsigned long dst_i;
3797 unsigned long src_i;
3798
3799 if (src_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003800 printk(KERN_ERR "btrfs memmove bogus src_offset %lu move "
3801 "len %lu len %lu\n", src_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003802 BUG_ON(1);
3803 }
3804 if (dst_offset + len > dst->len) {
Chris Masond3977122009-01-05 21:25:51 -05003805 printk(KERN_ERR "btrfs memmove bogus dst_offset %lu move "
3806 "len %lu len %lu\n", dst_offset, len, dst->len);
Chris Masond1310b22008-01-24 16:13:08 -05003807 BUG_ON(1);
3808 }
Sergei Trofimovich33872062011-04-11 21:52:52 +00003809 if (!areas_overlap(src_offset, dst_offset, len)) {
Chris Masond1310b22008-01-24 16:13:08 -05003810 memcpy_extent_buffer(dst, dst_offset, src_offset, len);
3811 return;
3812 }
Chris Masond3977122009-01-05 21:25:51 -05003813 while (len > 0) {
Chris Masond1310b22008-01-24 16:13:08 -05003814 dst_i = (start_offset + dst_end) >> PAGE_CACHE_SHIFT;
3815 src_i = (start_offset + src_end) >> PAGE_CACHE_SHIFT;
3816
3817 dst_off_in_page = (start_offset + dst_end) &
3818 ((unsigned long)PAGE_CACHE_SIZE - 1);
3819 src_off_in_page = (start_offset + src_end) &
3820 ((unsigned long)PAGE_CACHE_SIZE - 1);
3821
3822 cur = min_t(unsigned long, len, src_off_in_page + 1);
3823 cur = min(cur, dst_off_in_page + 1);
3824 move_pages(extent_buffer_page(dst, dst_i),
3825 extent_buffer_page(dst, src_i),
3826 dst_off_in_page - cur + 1,
3827 src_off_in_page - cur + 1, cur);
3828
3829 dst_end -= cur;
3830 src_end -= cur;
3831 len -= cur;
3832 }
3833}
Chris Mason6af118ce2008-07-22 11:18:07 -04003834
Miao Xie19fe0a82010-10-26 20:57:29 -04003835static inline void btrfs_release_extent_buffer_rcu(struct rcu_head *head)
3836{
3837 struct extent_buffer *eb =
3838 container_of(head, struct extent_buffer, rcu_head);
3839
3840 btrfs_release_extent_buffer(eb);
3841}
3842
Chris Mason6af118ce2008-07-22 11:18:07 -04003843int try_release_extent_buffer(struct extent_io_tree *tree, struct page *page)
3844{
3845 u64 start = page_offset(page);
3846 struct extent_buffer *eb;
3847 int ret = 1;
Chris Mason6af118ce2008-07-22 11:18:07 -04003848
3849 spin_lock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003850 eb = radix_tree_lookup(&tree->buffer, start >> PAGE_CACHE_SHIFT);
Chris Mason45f49bc2010-11-21 22:27:44 -05003851 if (!eb) {
3852 spin_unlock(&tree->buffer_lock);
3853 return ret;
3854 }
Chris Mason6af118ce2008-07-22 11:18:07 -04003855
Chris Masonb9473432009-03-13 11:00:37 -04003856 if (test_bit(EXTENT_BUFFER_DIRTY, &eb->bflags)) {
3857 ret = 0;
3858 goto out;
3859 }
Miao Xie897ca6e2010-10-26 20:57:29 -04003860
Miao Xie19fe0a82010-10-26 20:57:29 -04003861 /*
3862 * set @eb->refs to 0 if it is already 1, and then release the @eb.
3863 * Or go back.
3864 */
3865 if (atomic_cmpxchg(&eb->refs, 1, 0) != 1) {
3866 ret = 0;
3867 goto out;
3868 }
3869
3870 radix_tree_delete(&tree->buffer, start >> PAGE_CACHE_SHIFT);
Chris Mason6af118ce2008-07-22 11:18:07 -04003871out:
3872 spin_unlock(&tree->buffer_lock);
Miao Xie19fe0a82010-10-26 20:57:29 -04003873
3874 /* at this point we can safely release the extent buffer */
3875 if (atomic_read(&eb->refs) == 0)
3876 call_rcu(&eb->rcu_head, btrfs_release_extent_buffer_rcu);
Chris Mason6af118ce2008-07-22 11:18:07 -04003877 return ret;
3878}