Btrfs: replace: cache rbio when rebuild data on missing device
[linux-2.6-block.git] / fs / btrfs / file.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
39279cc3
CM
19#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
39279cc3
CM
25#include <linux/backing-dev.h>
26#include <linux/mpage.h>
2fe17c10 27#include <linux/falloc.h>
39279cc3
CM
28#include <linux/swap.h>
29#include <linux/writeback.h>
39279cc3 30#include <linux/compat.h>
5a0e3ad6 31#include <linux/slab.h>
55e301fd 32#include <linux/btrfs.h>
e2e40f2c 33#include <linux/uio.h>
ae5e165d 34#include <linux/iversion.h>
39279cc3
CM
35#include "ctree.h"
36#include "disk-io.h"
37#include "transaction.h"
38#include "btrfs_inode.h"
39279cc3 39#include "print-tree.h"
e02119d5
CM
40#include "tree-log.h"
41#include "locking.h"
2aaa6655 42#include "volumes.h"
fcebe456 43#include "qgroup.h"
ebb8765b 44#include "compression.h"
39279cc3 45
9247f317 46static struct kmem_cache *btrfs_inode_defrag_cachep;
4cb5300b
CM
47/*
48 * when auto defrag is enabled we
49 * queue up these defrag structs to remember which
50 * inodes need defragging passes
51 */
52struct inode_defrag {
53 struct rb_node rb_node;
54 /* objectid */
55 u64 ino;
56 /*
57 * transid where the defrag was added, we search for
58 * extents newer than this
59 */
60 u64 transid;
61
62 /* root objectid */
63 u64 root;
64
65 /* last offset we were able to defrag */
66 u64 last_offset;
67
68 /* if we've wrapped around back to zero once already */
69 int cycled;
70};
71
762f2263
MX
72static int __compare_inode_defrag(struct inode_defrag *defrag1,
73 struct inode_defrag *defrag2)
74{
75 if (defrag1->root > defrag2->root)
76 return 1;
77 else if (defrag1->root < defrag2->root)
78 return -1;
79 else if (defrag1->ino > defrag2->ino)
80 return 1;
81 else if (defrag1->ino < defrag2->ino)
82 return -1;
83 else
84 return 0;
85}
86
4cb5300b
CM
87/* pop a record for an inode into the defrag tree. The lock
88 * must be held already
89 *
90 * If you're inserting a record for an older transid than an
91 * existing record, the transid already in the tree is lowered
92 *
93 * If an existing record is found the defrag item you
94 * pass in is freed
95 */
6158e1ce 96static int __btrfs_add_inode_defrag(struct btrfs_inode *inode,
4cb5300b
CM
97 struct inode_defrag *defrag)
98{
6158e1ce 99 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
4cb5300b
CM
100 struct inode_defrag *entry;
101 struct rb_node **p;
102 struct rb_node *parent = NULL;
762f2263 103 int ret;
4cb5300b 104
0b246afa 105 p = &fs_info->defrag_inodes.rb_node;
4cb5300b
CM
106 while (*p) {
107 parent = *p;
108 entry = rb_entry(parent, struct inode_defrag, rb_node);
109
762f2263
MX
110 ret = __compare_inode_defrag(defrag, entry);
111 if (ret < 0)
4cb5300b 112 p = &parent->rb_left;
762f2263 113 else if (ret > 0)
4cb5300b
CM
114 p = &parent->rb_right;
115 else {
116 /* if we're reinserting an entry for
117 * an old defrag run, make sure to
118 * lower the transid of our existing record
119 */
120 if (defrag->transid < entry->transid)
121 entry->transid = defrag->transid;
122 if (defrag->last_offset > entry->last_offset)
123 entry->last_offset = defrag->last_offset;
8ddc4734 124 return -EEXIST;
4cb5300b
CM
125 }
126 }
6158e1ce 127 set_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags);
4cb5300b 128 rb_link_node(&defrag->rb_node, parent, p);
0b246afa 129 rb_insert_color(&defrag->rb_node, &fs_info->defrag_inodes);
8ddc4734
MX
130 return 0;
131}
4cb5300b 132
2ff7e61e 133static inline int __need_auto_defrag(struct btrfs_fs_info *fs_info)
8ddc4734 134{
0b246afa 135 if (!btrfs_test_opt(fs_info, AUTO_DEFRAG))
8ddc4734
MX
136 return 0;
137
0b246afa 138 if (btrfs_fs_closing(fs_info))
8ddc4734 139 return 0;
4cb5300b 140
8ddc4734 141 return 1;
4cb5300b
CM
142}
143
144/*
145 * insert a defrag record for this inode if auto defrag is
146 * enabled
147 */
148int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
6158e1ce 149 struct btrfs_inode *inode)
4cb5300b 150{
6158e1ce
NB
151 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
152 struct btrfs_root *root = inode->root;
4cb5300b 153 struct inode_defrag *defrag;
4cb5300b 154 u64 transid;
8ddc4734 155 int ret;
4cb5300b 156
2ff7e61e 157 if (!__need_auto_defrag(fs_info))
4cb5300b
CM
158 return 0;
159
6158e1ce 160 if (test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags))
4cb5300b
CM
161 return 0;
162
163 if (trans)
164 transid = trans->transid;
165 else
6158e1ce 166 transid = inode->root->last_trans;
4cb5300b 167
9247f317 168 defrag = kmem_cache_zalloc(btrfs_inode_defrag_cachep, GFP_NOFS);
4cb5300b
CM
169 if (!defrag)
170 return -ENOMEM;
171
6158e1ce 172 defrag->ino = btrfs_ino(inode);
4cb5300b
CM
173 defrag->transid = transid;
174 defrag->root = root->root_key.objectid;
175
0b246afa 176 spin_lock(&fs_info->defrag_inodes_lock);
6158e1ce 177 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &inode->runtime_flags)) {
8ddc4734
MX
178 /*
179 * If we set IN_DEFRAG flag and evict the inode from memory,
180 * and then re-read this inode, this new inode doesn't have
181 * IN_DEFRAG flag. At the case, we may find the existed defrag.
182 */
183 ret = __btrfs_add_inode_defrag(inode, defrag);
184 if (ret)
185 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
186 } else {
9247f317 187 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
8ddc4734 188 }
0b246afa 189 spin_unlock(&fs_info->defrag_inodes_lock);
a0f98dde 190 return 0;
4cb5300b
CM
191}
192
193/*
8ddc4734
MX
194 * Requeue the defrag object. If there is a defrag object that points to
195 * the same inode in the tree, we will merge them together (by
196 * __btrfs_add_inode_defrag()) and free the one that we want to requeue.
4cb5300b 197 */
46e59791 198static void btrfs_requeue_inode_defrag(struct btrfs_inode *inode,
48a3b636 199 struct inode_defrag *defrag)
8ddc4734 200{
46e59791 201 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
8ddc4734
MX
202 int ret;
203
2ff7e61e 204 if (!__need_auto_defrag(fs_info))
8ddc4734
MX
205 goto out;
206
207 /*
208 * Here we don't check the IN_DEFRAG flag, because we need merge
209 * them together.
210 */
0b246afa 211 spin_lock(&fs_info->defrag_inodes_lock);
8ddc4734 212 ret = __btrfs_add_inode_defrag(inode, defrag);
0b246afa 213 spin_unlock(&fs_info->defrag_inodes_lock);
8ddc4734
MX
214 if (ret)
215 goto out;
216 return;
217out:
218 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
219}
220
4cb5300b 221/*
26176e7c
MX
222 * pick the defragable inode that we want, if it doesn't exist, we will get
223 * the next one.
4cb5300b 224 */
26176e7c
MX
225static struct inode_defrag *
226btrfs_pick_defrag_inode(struct btrfs_fs_info *fs_info, u64 root, u64 ino)
4cb5300b
CM
227{
228 struct inode_defrag *entry = NULL;
762f2263 229 struct inode_defrag tmp;
4cb5300b
CM
230 struct rb_node *p;
231 struct rb_node *parent = NULL;
762f2263
MX
232 int ret;
233
234 tmp.ino = ino;
235 tmp.root = root;
4cb5300b 236
26176e7c
MX
237 spin_lock(&fs_info->defrag_inodes_lock);
238 p = fs_info->defrag_inodes.rb_node;
4cb5300b
CM
239 while (p) {
240 parent = p;
241 entry = rb_entry(parent, struct inode_defrag, rb_node);
242
762f2263
MX
243 ret = __compare_inode_defrag(&tmp, entry);
244 if (ret < 0)
4cb5300b 245 p = parent->rb_left;
762f2263 246 else if (ret > 0)
4cb5300b
CM
247 p = parent->rb_right;
248 else
26176e7c 249 goto out;
4cb5300b
CM
250 }
251
26176e7c
MX
252 if (parent && __compare_inode_defrag(&tmp, entry) > 0) {
253 parent = rb_next(parent);
254 if (parent)
4cb5300b 255 entry = rb_entry(parent, struct inode_defrag, rb_node);
26176e7c
MX
256 else
257 entry = NULL;
4cb5300b 258 }
26176e7c
MX
259out:
260 if (entry)
261 rb_erase(parent, &fs_info->defrag_inodes);
262 spin_unlock(&fs_info->defrag_inodes_lock);
263 return entry;
4cb5300b
CM
264}
265
26176e7c 266void btrfs_cleanup_defrag_inodes(struct btrfs_fs_info *fs_info)
4cb5300b
CM
267{
268 struct inode_defrag *defrag;
26176e7c
MX
269 struct rb_node *node;
270
271 spin_lock(&fs_info->defrag_inodes_lock);
272 node = rb_first(&fs_info->defrag_inodes);
273 while (node) {
274 rb_erase(node, &fs_info->defrag_inodes);
275 defrag = rb_entry(node, struct inode_defrag, rb_node);
276 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
277
351810c1 278 cond_resched_lock(&fs_info->defrag_inodes_lock);
26176e7c
MX
279
280 node = rb_first(&fs_info->defrag_inodes);
281 }
282 spin_unlock(&fs_info->defrag_inodes_lock);
283}
284
285#define BTRFS_DEFRAG_BATCH 1024
286
287static int __btrfs_run_defrag_inode(struct btrfs_fs_info *fs_info,
288 struct inode_defrag *defrag)
289{
4cb5300b
CM
290 struct btrfs_root *inode_root;
291 struct inode *inode;
4cb5300b
CM
292 struct btrfs_key key;
293 struct btrfs_ioctl_defrag_range_args range;
4cb5300b 294 int num_defrag;
6f1c3605
LB
295 int index;
296 int ret;
4cb5300b 297
26176e7c
MX
298 /* get the inode */
299 key.objectid = defrag->root;
962a298f 300 key.type = BTRFS_ROOT_ITEM_KEY;
26176e7c 301 key.offset = (u64)-1;
6f1c3605
LB
302
303 index = srcu_read_lock(&fs_info->subvol_srcu);
304
26176e7c
MX
305 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
306 if (IS_ERR(inode_root)) {
6f1c3605
LB
307 ret = PTR_ERR(inode_root);
308 goto cleanup;
309 }
26176e7c
MX
310
311 key.objectid = defrag->ino;
962a298f 312 key.type = BTRFS_INODE_ITEM_KEY;
26176e7c
MX
313 key.offset = 0;
314 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
315 if (IS_ERR(inode)) {
6f1c3605
LB
316 ret = PTR_ERR(inode);
317 goto cleanup;
26176e7c 318 }
6f1c3605 319 srcu_read_unlock(&fs_info->subvol_srcu, index);
26176e7c
MX
320
321 /* do a chunk of defrag */
322 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
4cb5300b
CM
323 memset(&range, 0, sizeof(range));
324 range.len = (u64)-1;
26176e7c 325 range.start = defrag->last_offset;
b66f00da
MX
326
327 sb_start_write(fs_info->sb);
26176e7c
MX
328 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
329 BTRFS_DEFRAG_BATCH);
b66f00da 330 sb_end_write(fs_info->sb);
26176e7c
MX
331 /*
332 * if we filled the whole defrag batch, there
333 * must be more work to do. Queue this defrag
334 * again
335 */
336 if (num_defrag == BTRFS_DEFRAG_BATCH) {
337 defrag->last_offset = range.start;
46e59791 338 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
26176e7c
MX
339 } else if (defrag->last_offset && !defrag->cycled) {
340 /*
341 * we didn't fill our defrag batch, but
342 * we didn't start at zero. Make sure we loop
343 * around to the start of the file.
344 */
345 defrag->last_offset = 0;
346 defrag->cycled = 1;
46e59791 347 btrfs_requeue_inode_defrag(BTRFS_I(inode), defrag);
26176e7c
MX
348 } else {
349 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
350 }
351
352 iput(inode);
353 return 0;
6f1c3605
LB
354cleanup:
355 srcu_read_unlock(&fs_info->subvol_srcu, index);
356 kmem_cache_free(btrfs_inode_defrag_cachep, defrag);
357 return ret;
26176e7c
MX
358}
359
360/*
361 * run through the list of inodes in the FS that need
362 * defragging
363 */
364int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
365{
366 struct inode_defrag *defrag;
367 u64 first_ino = 0;
368 u64 root_objectid = 0;
4cb5300b
CM
369
370 atomic_inc(&fs_info->defrag_running);
67871254 371 while (1) {
dc81cdc5
MX
372 /* Pause the auto defragger. */
373 if (test_bit(BTRFS_FS_STATE_REMOUNTING,
374 &fs_info->fs_state))
375 break;
376
2ff7e61e 377 if (!__need_auto_defrag(fs_info))
26176e7c 378 break;
4cb5300b
CM
379
380 /* find an inode to defrag */
26176e7c
MX
381 defrag = btrfs_pick_defrag_inode(fs_info, root_objectid,
382 first_ino);
4cb5300b 383 if (!defrag) {
26176e7c 384 if (root_objectid || first_ino) {
762f2263 385 root_objectid = 0;
4cb5300b
CM
386 first_ino = 0;
387 continue;
388 } else {
389 break;
390 }
391 }
392
4cb5300b 393 first_ino = defrag->ino + 1;
762f2263 394 root_objectid = defrag->root;
4cb5300b 395
26176e7c 396 __btrfs_run_defrag_inode(fs_info, defrag);
4cb5300b 397 }
4cb5300b
CM
398 atomic_dec(&fs_info->defrag_running);
399
400 /*
401 * during unmount, we use the transaction_wait queue to
402 * wait for the defragger to stop
403 */
404 wake_up(&fs_info->transaction_wait);
405 return 0;
406}
39279cc3 407
d352ac68
CM
408/* simple helper to fault in pages and copy. This should go away
409 * and be replaced with calls into generic code.
410 */
ee22f0c4 411static noinline int btrfs_copy_from_user(loff_t pos, size_t write_bytes,
a1b32a59 412 struct page **prepared_pages,
11c65dcc 413 struct iov_iter *i)
39279cc3 414{
914ee295 415 size_t copied = 0;
d0215f3e 416 size_t total_copied = 0;
11c65dcc 417 int pg = 0;
09cbfeaf 418 int offset = pos & (PAGE_SIZE - 1);
39279cc3 419
11c65dcc 420 while (write_bytes > 0) {
39279cc3 421 size_t count = min_t(size_t,
09cbfeaf 422 PAGE_SIZE - offset, write_bytes);
11c65dcc 423 struct page *page = prepared_pages[pg];
914ee295
XZ
424 /*
425 * Copy data from userspace to the current page
914ee295 426 */
914ee295 427 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
11c65dcc 428
39279cc3
CM
429 /* Flush processor's dcache for this page */
430 flush_dcache_page(page);
31339acd
CM
431
432 /*
433 * if we get a partial write, we can end up with
434 * partially up to date pages. These add
435 * a lot of complexity, so make sure they don't
436 * happen by forcing this copy to be retried.
437 *
438 * The rest of the btrfs_file_write code will fall
439 * back to page at a time copies after we return 0.
440 */
441 if (!PageUptodate(page) && copied < count)
442 copied = 0;
443
11c65dcc
JB
444 iov_iter_advance(i, copied);
445 write_bytes -= copied;
914ee295 446 total_copied += copied;
39279cc3 447
b30ac0fc 448 /* Return to btrfs_file_write_iter to fault page */
9f570b8d 449 if (unlikely(copied == 0))
914ee295 450 break;
11c65dcc 451
09cbfeaf 452 if (copied < PAGE_SIZE - offset) {
11c65dcc
JB
453 offset += copied;
454 } else {
455 pg++;
456 offset = 0;
457 }
39279cc3 458 }
914ee295 459 return total_copied;
39279cc3
CM
460}
461
d352ac68
CM
462/*
463 * unlocks pages after btrfs_file_write is done with them
464 */
48a3b636 465static void btrfs_drop_pages(struct page **pages, size_t num_pages)
39279cc3
CM
466{
467 size_t i;
468 for (i = 0; i < num_pages; i++) {
d352ac68
CM
469 /* page checked is some magic around finding pages that
470 * have been modified without going through btrfs_set_page_dirty
2457aec6
MG
471 * clear it here. There should be no need to mark the pages
472 * accessed as prepare_pages should have marked them accessed
473 * in prepare_pages via find_or_create_page()
d352ac68 474 */
4a096752 475 ClearPageChecked(pages[i]);
39279cc3 476 unlock_page(pages[i]);
09cbfeaf 477 put_page(pages[i]);
39279cc3
CM
478 }
479}
480
f48bf66b
FM
481static int btrfs_find_new_delalloc_bytes(struct btrfs_inode *inode,
482 const u64 start,
483 const u64 len,
484 struct extent_state **cached_state)
485{
486 u64 search_start = start;
487 const u64 end = start + len - 1;
488
489 while (search_start < end) {
490 const u64 search_len = end - search_start + 1;
491 struct extent_map *em;
492 u64 em_len;
493 int ret = 0;
494
495 em = btrfs_get_extent(inode, NULL, 0, search_start,
496 search_len, 0);
497 if (IS_ERR(em))
498 return PTR_ERR(em);
499
500 if (em->block_start != EXTENT_MAP_HOLE)
501 goto next;
502
503 em_len = em->len;
504 if (em->start < search_start)
505 em_len -= search_start - em->start;
506 if (em_len > search_len)
507 em_len = search_len;
508
509 ret = set_extent_bit(&inode->io_tree, search_start,
510 search_start + em_len - 1,
511 EXTENT_DELALLOC_NEW,
512 NULL, cached_state, GFP_NOFS);
513next:
514 search_start = extent_map_end(em);
515 free_extent_map(em);
516 if (ret)
517 return ret;
518 }
519 return 0;
520}
521
d352ac68
CM
522/*
523 * after copy_from_user, pages need to be dirtied and we need to make
524 * sure holes are created between the current EOF and the start of
525 * any next extents (if required).
526 *
527 * this also makes the decision about creating an inline extent vs
528 * doing real data extents, marking pages dirty and delalloc as required.
529 */
2ff7e61e
JM
530int btrfs_dirty_pages(struct inode *inode, struct page **pages,
531 size_t num_pages, loff_t pos, size_t write_bytes,
532 struct extent_state **cached)
39279cc3 533{
0b246afa 534 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
39279cc3 535 int err = 0;
a52d9a80 536 int i;
db94535d 537 u64 num_bytes;
a52d9a80
CM
538 u64 start_pos;
539 u64 end_of_last_block;
540 u64 end_pos = pos + write_bytes;
541 loff_t isize = i_size_read(inode);
e3b8a485 542 unsigned int extra_bits = 0;
39279cc3 543
0b246afa 544 start_pos = pos & ~((u64) fs_info->sectorsize - 1);
da17066c 545 num_bytes = round_up(write_bytes + pos - start_pos,
0b246afa 546 fs_info->sectorsize);
39279cc3 547
db94535d 548 end_of_last_block = start_pos + num_bytes - 1;
e3b8a485
FM
549
550 if (!btrfs_is_free_space_inode(BTRFS_I(inode))) {
551 if (start_pos >= isize &&
552 !(BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC)) {
553 /*
554 * There can't be any extents following eof in this case
555 * so just set the delalloc new bit for the range
556 * directly.
557 */
558 extra_bits |= EXTENT_DELALLOC_NEW;
559 } else {
560 err = btrfs_find_new_delalloc_bytes(BTRFS_I(inode),
561 start_pos,
562 num_bytes, cached);
563 if (err)
564 return err;
565 }
566 }
567
2ac55d41 568 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
e3b8a485 569 extra_bits, cached, 0);
d0215f3e
JB
570 if (err)
571 return err;
9ed74f2d 572
c8b97818
CM
573 for (i = 0; i < num_pages; i++) {
574 struct page *p = pages[i];
575 SetPageUptodate(p);
576 ClearPageChecked(p);
577 set_page_dirty(p);
a52d9a80 578 }
9f570b8d
JB
579
580 /*
581 * we've only changed i_size in ram, and we haven't updated
582 * the disk i_size. There is no need to log the inode
583 * at this time.
584 */
585 if (end_pos > isize)
a52d9a80 586 i_size_write(inode, end_pos);
a22285a6 587 return 0;
39279cc3
CM
588}
589
d352ac68
CM
590/*
591 * this drops all the extents in the cache that intersect the range
592 * [start, end]. Existing extents are split as required.
593 */
dcdbc059 594void btrfs_drop_extent_cache(struct btrfs_inode *inode, u64 start, u64 end,
7014cdb4 595 int skip_pinned)
a52d9a80
CM
596{
597 struct extent_map *em;
3b951516
CM
598 struct extent_map *split = NULL;
599 struct extent_map *split2 = NULL;
dcdbc059 600 struct extent_map_tree *em_tree = &inode->extent_tree;
39b5637f 601 u64 len = end - start + 1;
5dc562c5 602 u64 gen;
3b951516
CM
603 int ret;
604 int testend = 1;
5b21f2ed 605 unsigned long flags;
c8b97818 606 int compressed = 0;
09a2a8f9 607 bool modified;
a52d9a80 608
e6dcd2dc 609 WARN_ON(end < start);
3b951516 610 if (end == (u64)-1) {
39b5637f 611 len = (u64)-1;
3b951516
CM
612 testend = 0;
613 }
d397712b 614 while (1) {
7014cdb4
JB
615 int no_splits = 0;
616
09a2a8f9 617 modified = false;
3b951516 618 if (!split)
172ddd60 619 split = alloc_extent_map();
3b951516 620 if (!split2)
172ddd60 621 split2 = alloc_extent_map();
7014cdb4
JB
622 if (!split || !split2)
623 no_splits = 1;
3b951516 624
890871be 625 write_lock(&em_tree->lock);
39b5637f 626 em = lookup_extent_mapping(em_tree, start, len);
d1310b2e 627 if (!em) {
890871be 628 write_unlock(&em_tree->lock);
a52d9a80 629 break;
d1310b2e 630 }
5b21f2ed 631 flags = em->flags;
5dc562c5 632 gen = em->generation;
5b21f2ed 633 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
55ef6899 634 if (testend && em->start + em->len >= start + len) {
5b21f2ed 635 free_extent_map(em);
a1ed835e 636 write_unlock(&em_tree->lock);
5b21f2ed
ZY
637 break;
638 }
55ef6899
YZ
639 start = em->start + em->len;
640 if (testend)
5b21f2ed 641 len = start + len - (em->start + em->len);
5b21f2ed 642 free_extent_map(em);
a1ed835e 643 write_unlock(&em_tree->lock);
5b21f2ed
ZY
644 continue;
645 }
c8b97818 646 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3ce7e67a 647 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
3b277594 648 clear_bit(EXTENT_FLAG_LOGGING, &flags);
09a2a8f9 649 modified = !list_empty(&em->list);
7014cdb4
JB
650 if (no_splits)
651 goto next;
3b951516 652
ee20a983 653 if (em->start < start) {
3b951516
CM
654 split->start = em->start;
655 split->len = start - em->start;
ee20a983
JB
656
657 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
658 split->orig_start = em->orig_start;
659 split->block_start = em->block_start;
660
661 if (compressed)
662 split->block_len = em->block_len;
663 else
664 split->block_len = split->len;
665 split->orig_block_len = max(split->block_len,
666 em->orig_block_len);
667 split->ram_bytes = em->ram_bytes;
668 } else {
669 split->orig_start = split->start;
670 split->block_len = 0;
671 split->block_start = em->block_start;
672 split->orig_block_len = 0;
673 split->ram_bytes = split->len;
674 }
675
5dc562c5 676 split->generation = gen;
3b951516 677 split->bdev = em->bdev;
5b21f2ed 678 split->flags = flags;
261507a0 679 split->compress_type = em->compress_type;
176840b3 680 replace_extent_mapping(em_tree, em, split, modified);
3b951516
CM
681 free_extent_map(split);
682 split = split2;
683 split2 = NULL;
684 }
ee20a983 685 if (testend && em->start + em->len > start + len) {
3b951516
CM
686 u64 diff = start + len - em->start;
687
688 split->start = start + len;
689 split->len = em->start + em->len - (start + len);
690 split->bdev = em->bdev;
5b21f2ed 691 split->flags = flags;
261507a0 692 split->compress_type = em->compress_type;
5dc562c5 693 split->generation = gen;
ee20a983
JB
694
695 if (em->block_start < EXTENT_MAP_LAST_BYTE) {
696 split->orig_block_len = max(em->block_len,
b4939680 697 em->orig_block_len);
3b951516 698
ee20a983
JB
699 split->ram_bytes = em->ram_bytes;
700 if (compressed) {
701 split->block_len = em->block_len;
702 split->block_start = em->block_start;
703 split->orig_start = em->orig_start;
704 } else {
705 split->block_len = split->len;
706 split->block_start = em->block_start
707 + diff;
708 split->orig_start = em->orig_start;
709 }
c8b97818 710 } else {
ee20a983
JB
711 split->ram_bytes = split->len;
712 split->orig_start = split->start;
713 split->block_len = 0;
714 split->block_start = em->block_start;
715 split->orig_block_len = 0;
c8b97818 716 }
3b951516 717
176840b3
FM
718 if (extent_map_in_tree(em)) {
719 replace_extent_mapping(em_tree, em, split,
720 modified);
721 } else {
722 ret = add_extent_mapping(em_tree, split,
723 modified);
724 ASSERT(ret == 0); /* Logic error */
725 }
3b951516
CM
726 free_extent_map(split);
727 split = NULL;
728 }
7014cdb4 729next:
176840b3
FM
730 if (extent_map_in_tree(em))
731 remove_extent_mapping(em_tree, em);
890871be 732 write_unlock(&em_tree->lock);
d1310b2e 733
a52d9a80
CM
734 /* once for us */
735 free_extent_map(em);
736 /* once for the tree*/
737 free_extent_map(em);
738 }
3b951516
CM
739 if (split)
740 free_extent_map(split);
741 if (split2)
742 free_extent_map(split2);
a52d9a80
CM
743}
744
39279cc3
CM
745/*
746 * this is very complex, but the basic idea is to drop all extents
747 * in the range start - end. hint_block is filled in with a block number
748 * that would be a good hint to the block allocator for this file.
749 *
750 * If an extent intersects the range but is not entirely inside the range
751 * it is either truncated or split. Anything entirely inside the range
752 * is deleted from the tree.
753 */
5dc562c5
JB
754int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
755 struct btrfs_root *root, struct inode *inode,
756 struct btrfs_path *path, u64 start, u64 end,
1acae57b
FDBM
757 u64 *drop_end, int drop_cache,
758 int replace_extent,
759 u32 extent_item_size,
760 int *key_inserted)
39279cc3 761{
0b246afa 762 struct btrfs_fs_info *fs_info = root->fs_info;
5f39d397 763 struct extent_buffer *leaf;
920bbbfb 764 struct btrfs_file_extent_item *fi;
00f5c795 765 struct btrfs_key key;
920bbbfb 766 struct btrfs_key new_key;
4a0cc7ca 767 u64 ino = btrfs_ino(BTRFS_I(inode));
920bbbfb
YZ
768 u64 search_start = start;
769 u64 disk_bytenr = 0;
770 u64 num_bytes = 0;
771 u64 extent_offset = 0;
772 u64 extent_end = 0;
62fe51c1 773 u64 last_end = start;
920bbbfb
YZ
774 int del_nr = 0;
775 int del_slot = 0;
776 int extent_type;
ccd467d6 777 int recow;
00f5c795 778 int ret;
dc7fdde3 779 int modify_tree = -1;
27cdeb70 780 int update_refs;
c3308f84 781 int found = 0;
1acae57b 782 int leafs_visited = 0;
39279cc3 783
a1ed835e 784 if (drop_cache)
dcdbc059 785 btrfs_drop_extent_cache(BTRFS_I(inode), start, end - 1, 0);
a52d9a80 786
d5f37527 787 if (start >= BTRFS_I(inode)->disk_i_size && !replace_extent)
dc7fdde3
CM
788 modify_tree = 0;
789
27cdeb70 790 update_refs = (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
0b246afa 791 root == fs_info->tree_root);
d397712b 792 while (1) {
ccd467d6 793 recow = 0;
33345d01 794 ret = btrfs_lookup_file_extent(trans, root, path, ino,
dc7fdde3 795 search_start, modify_tree);
39279cc3 796 if (ret < 0)
920bbbfb
YZ
797 break;
798 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
799 leaf = path->nodes[0];
800 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
33345d01 801 if (key.objectid == ino &&
920bbbfb
YZ
802 key.type == BTRFS_EXTENT_DATA_KEY)
803 path->slots[0]--;
39279cc3 804 }
920bbbfb 805 ret = 0;
1acae57b 806 leafs_visited++;
8c2383c3 807next_slot:
5f39d397 808 leaf = path->nodes[0];
920bbbfb
YZ
809 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
810 BUG_ON(del_nr > 0);
811 ret = btrfs_next_leaf(root, path);
812 if (ret < 0)
813 break;
814 if (ret > 0) {
815 ret = 0;
816 break;
8c2383c3 817 }
1acae57b 818 leafs_visited++;
920bbbfb
YZ
819 leaf = path->nodes[0];
820 recow = 1;
821 }
822
823 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
aeafbf84
FM
824
825 if (key.objectid > ino)
826 break;
827 if (WARN_ON_ONCE(key.objectid < ino) ||
828 key.type < BTRFS_EXTENT_DATA_KEY) {
829 ASSERT(del_nr == 0);
830 path->slots[0]++;
831 goto next_slot;
832 }
833 if (key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
920bbbfb
YZ
834 break;
835
836 fi = btrfs_item_ptr(leaf, path->slots[0],
837 struct btrfs_file_extent_item);
838 extent_type = btrfs_file_extent_type(leaf, fi);
839
840 if (extent_type == BTRFS_FILE_EXTENT_REG ||
841 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
842 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
843 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
844 extent_offset = btrfs_file_extent_offset(leaf, fi);
845 extent_end = key.offset +
846 btrfs_file_extent_num_bytes(leaf, fi);
847 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
848 extent_end = key.offset +
514ac8ad
CM
849 btrfs_file_extent_inline_len(leaf,
850 path->slots[0], fi);
8c2383c3 851 } else {
aeafbf84
FM
852 /* can't happen */
853 BUG();
39279cc3
CM
854 }
855
fc19c5e7
FM
856 /*
857 * Don't skip extent items representing 0 byte lengths. They
858 * used to be created (bug) if while punching holes we hit
859 * -ENOSPC condition. So if we find one here, just ensure we
860 * delete it, otherwise we would insert a new file extent item
861 * with the same key (offset) as that 0 bytes length file
862 * extent item in the call to setup_items_for_insert() later
863 * in this function.
864 */
62fe51c1
JB
865 if (extent_end == key.offset && extent_end >= search_start) {
866 last_end = extent_end;
fc19c5e7 867 goto delete_extent_item;
62fe51c1 868 }
fc19c5e7 869
920bbbfb
YZ
870 if (extent_end <= search_start) {
871 path->slots[0]++;
8c2383c3 872 goto next_slot;
39279cc3
CM
873 }
874
c3308f84 875 found = 1;
920bbbfb 876 search_start = max(key.offset, start);
dc7fdde3
CM
877 if (recow || !modify_tree) {
878 modify_tree = -1;
b3b4aa74 879 btrfs_release_path(path);
920bbbfb 880 continue;
39279cc3 881 }
6643558d 882
920bbbfb
YZ
883 /*
884 * | - range to drop - |
885 * | -------- extent -------- |
886 */
887 if (start > key.offset && end < extent_end) {
888 BUG_ON(del_nr > 0);
00fdf13a 889 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
3f9e3df8 890 ret = -EOPNOTSUPP;
00fdf13a
LB
891 break;
892 }
920bbbfb
YZ
893
894 memcpy(&new_key, &key, sizeof(new_key));
895 new_key.offset = start;
896 ret = btrfs_duplicate_item(trans, root, path,
897 &new_key);
898 if (ret == -EAGAIN) {
b3b4aa74 899 btrfs_release_path(path);
920bbbfb 900 continue;
6643558d 901 }
920bbbfb
YZ
902 if (ret < 0)
903 break;
904
905 leaf = path->nodes[0];
906 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
907 struct btrfs_file_extent_item);
908 btrfs_set_file_extent_num_bytes(leaf, fi,
909 start - key.offset);
910
911 fi = btrfs_item_ptr(leaf, path->slots[0],
912 struct btrfs_file_extent_item);
913
914 extent_offset += start - key.offset;
915 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
916 btrfs_set_file_extent_num_bytes(leaf, fi,
917 extent_end - start);
918 btrfs_mark_buffer_dirty(leaf);
919
5dc562c5 920 if (update_refs && disk_bytenr > 0) {
84f7d8e6 921 ret = btrfs_inc_extent_ref(trans, root,
920bbbfb
YZ
922 disk_bytenr, num_bytes, 0,
923 root->root_key.objectid,
924 new_key.objectid,
b06c4bf5 925 start - extent_offset);
79787eaa 926 BUG_ON(ret); /* -ENOMEM */
771ed689 927 }
920bbbfb 928 key.offset = start;
6643558d 929 }
62fe51c1
JB
930 /*
931 * From here on out we will have actually dropped something, so
932 * last_end can be updated.
933 */
934 last_end = extent_end;
935
920bbbfb
YZ
936 /*
937 * | ---- range to drop ----- |
938 * | -------- extent -------- |
939 */
940 if (start <= key.offset && end < extent_end) {
00fdf13a 941 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
3f9e3df8 942 ret = -EOPNOTSUPP;
00fdf13a
LB
943 break;
944 }
6643558d 945
920bbbfb
YZ
946 memcpy(&new_key, &key, sizeof(new_key));
947 new_key.offset = end;
0b246afa 948 btrfs_set_item_key_safe(fs_info, path, &new_key);
6643558d 949
920bbbfb
YZ
950 extent_offset += end - key.offset;
951 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
952 btrfs_set_file_extent_num_bytes(leaf, fi,
953 extent_end - end);
954 btrfs_mark_buffer_dirty(leaf);
2671485d 955 if (update_refs && disk_bytenr > 0)
920bbbfb 956 inode_sub_bytes(inode, end - key.offset);
920bbbfb 957 break;
39279cc3 958 }
771ed689 959
920bbbfb
YZ
960 search_start = extent_end;
961 /*
962 * | ---- range to drop ----- |
963 * | -------- extent -------- |
964 */
965 if (start > key.offset && end >= extent_end) {
966 BUG_ON(del_nr > 0);
00fdf13a 967 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
3f9e3df8 968 ret = -EOPNOTSUPP;
00fdf13a
LB
969 break;
970 }
8c2383c3 971
920bbbfb
YZ
972 btrfs_set_file_extent_num_bytes(leaf, fi,
973 start - key.offset);
974 btrfs_mark_buffer_dirty(leaf);
2671485d 975 if (update_refs && disk_bytenr > 0)
920bbbfb 976 inode_sub_bytes(inode, extent_end - start);
920bbbfb
YZ
977 if (end == extent_end)
978 break;
c8b97818 979
920bbbfb
YZ
980 path->slots[0]++;
981 goto next_slot;
31840ae1
ZY
982 }
983
920bbbfb
YZ
984 /*
985 * | ---- range to drop ----- |
986 * | ------ extent ------ |
987 */
988 if (start <= key.offset && end >= extent_end) {
fc19c5e7 989delete_extent_item:
920bbbfb
YZ
990 if (del_nr == 0) {
991 del_slot = path->slots[0];
992 del_nr = 1;
993 } else {
994 BUG_ON(del_slot + del_nr != path->slots[0]);
995 del_nr++;
996 }
31840ae1 997
5dc562c5
JB
998 if (update_refs &&
999 extent_type == BTRFS_FILE_EXTENT_INLINE) {
a76a3cd4 1000 inode_sub_bytes(inode,
920bbbfb
YZ
1001 extent_end - key.offset);
1002 extent_end = ALIGN(extent_end,
0b246afa 1003 fs_info->sectorsize);
5dc562c5 1004 } else if (update_refs && disk_bytenr > 0) {
84f7d8e6 1005 ret = btrfs_free_extent(trans, root,
920bbbfb
YZ
1006 disk_bytenr, num_bytes, 0,
1007 root->root_key.objectid,
5d4f98a2 1008 key.objectid, key.offset -
b06c4bf5 1009 extent_offset);
79787eaa 1010 BUG_ON(ret); /* -ENOMEM */
920bbbfb
YZ
1011 inode_sub_bytes(inode,
1012 extent_end - key.offset);
31840ae1 1013 }
31840ae1 1014
920bbbfb
YZ
1015 if (end == extent_end)
1016 break;
1017
1018 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
1019 path->slots[0]++;
1020 goto next_slot;
1021 }
1022
1023 ret = btrfs_del_items(trans, root, path, del_slot,
1024 del_nr);
79787eaa 1025 if (ret) {
66642832 1026 btrfs_abort_transaction(trans, ret);
5dc562c5 1027 break;
79787eaa 1028 }
920bbbfb
YZ
1029
1030 del_nr = 0;
1031 del_slot = 0;
1032
b3b4aa74 1033 btrfs_release_path(path);
920bbbfb 1034 continue;
39279cc3 1035 }
920bbbfb
YZ
1036
1037 BUG_ON(1);
39279cc3 1038 }
920bbbfb 1039
79787eaa 1040 if (!ret && del_nr > 0) {
1acae57b
FDBM
1041 /*
1042 * Set path->slots[0] to first slot, so that after the delete
1043 * if items are move off from our leaf to its immediate left or
1044 * right neighbor leafs, we end up with a correct and adjusted
d5f37527 1045 * path->slots[0] for our insertion (if replace_extent != 0).
1acae57b
FDBM
1046 */
1047 path->slots[0] = del_slot;
920bbbfb 1048 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
79787eaa 1049 if (ret)
66642832 1050 btrfs_abort_transaction(trans, ret);
d5f37527 1051 }
1acae57b 1052
d5f37527
FDBM
1053 leaf = path->nodes[0];
1054 /*
1055 * If btrfs_del_items() was called, it might have deleted a leaf, in
1056 * which case it unlocked our path, so check path->locks[0] matches a
1057 * write lock.
1058 */
1059 if (!ret && replace_extent && leafs_visited == 1 &&
1060 (path->locks[0] == BTRFS_WRITE_LOCK_BLOCKING ||
1061 path->locks[0] == BTRFS_WRITE_LOCK) &&
2ff7e61e 1062 btrfs_leaf_free_space(fs_info, leaf) >=
d5f37527
FDBM
1063 sizeof(struct btrfs_item) + extent_item_size) {
1064
1065 key.objectid = ino;
1066 key.type = BTRFS_EXTENT_DATA_KEY;
1067 key.offset = start;
1068 if (!del_nr && path->slots[0] < btrfs_header_nritems(leaf)) {
1069 struct btrfs_key slot_key;
1070
1071 btrfs_item_key_to_cpu(leaf, &slot_key, path->slots[0]);
1072 if (btrfs_comp_cpu_keys(&key, &slot_key) > 0)
1073 path->slots[0]++;
1acae57b 1074 }
d5f37527
FDBM
1075 setup_items_for_insert(root, path, &key,
1076 &extent_item_size,
1077 extent_item_size,
1078 sizeof(struct btrfs_item) +
1079 extent_item_size, 1);
1080 *key_inserted = 1;
6643558d 1081 }
920bbbfb 1082
1acae57b
FDBM
1083 if (!replace_extent || !(*key_inserted))
1084 btrfs_release_path(path);
2aaa6655 1085 if (drop_end)
62fe51c1 1086 *drop_end = found ? min(end, last_end) : end;
5dc562c5
JB
1087 return ret;
1088}
1089
1090int btrfs_drop_extents(struct btrfs_trans_handle *trans,
1091 struct btrfs_root *root, struct inode *inode, u64 start,
2671485d 1092 u64 end, int drop_cache)
5dc562c5
JB
1093{
1094 struct btrfs_path *path;
1095 int ret;
1096
1097 path = btrfs_alloc_path();
1098 if (!path)
1099 return -ENOMEM;
2aaa6655 1100 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
1acae57b 1101 drop_cache, 0, 0, NULL);
920bbbfb 1102 btrfs_free_path(path);
39279cc3
CM
1103 return ret;
1104}
1105
d899e052 1106static int extent_mergeable(struct extent_buffer *leaf, int slot,
6c7d54ac
YZ
1107 u64 objectid, u64 bytenr, u64 orig_offset,
1108 u64 *start, u64 *end)
d899e052
YZ
1109{
1110 struct btrfs_file_extent_item *fi;
1111 struct btrfs_key key;
1112 u64 extent_end;
1113
1114 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1115 return 0;
1116
1117 btrfs_item_key_to_cpu(leaf, &key, slot);
1118 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
1119 return 0;
1120
1121 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1122 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
1123 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
6c7d54ac 1124 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
d899e052
YZ
1125 btrfs_file_extent_compression(leaf, fi) ||
1126 btrfs_file_extent_encryption(leaf, fi) ||
1127 btrfs_file_extent_other_encoding(leaf, fi))
1128 return 0;
1129
1130 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
1131 if ((*start && *start != key.offset) || (*end && *end != extent_end))
1132 return 0;
1133
1134 *start = key.offset;
1135 *end = extent_end;
1136 return 1;
1137}
1138
1139/*
1140 * Mark extent in the range start - end as written.
1141 *
1142 * This changes extent type from 'pre-allocated' to 'regular'. If only
1143 * part of extent is marked as written, the extent will be split into
1144 * two or three.
1145 */
1146int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
7a6d7067 1147 struct btrfs_inode *inode, u64 start, u64 end)
d899e052 1148{
7a6d7067
NB
1149 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1150 struct btrfs_root *root = inode->root;
d899e052
YZ
1151 struct extent_buffer *leaf;
1152 struct btrfs_path *path;
1153 struct btrfs_file_extent_item *fi;
1154 struct btrfs_key key;
920bbbfb 1155 struct btrfs_key new_key;
d899e052
YZ
1156 u64 bytenr;
1157 u64 num_bytes;
1158 u64 extent_end;
5d4f98a2 1159 u64 orig_offset;
d899e052
YZ
1160 u64 other_start;
1161 u64 other_end;
920bbbfb
YZ
1162 u64 split;
1163 int del_nr = 0;
1164 int del_slot = 0;
6c7d54ac 1165 int recow;
d899e052 1166 int ret;
7a6d7067 1167 u64 ino = btrfs_ino(inode);
d899e052 1168
d899e052 1169 path = btrfs_alloc_path();
d8926bb3
MF
1170 if (!path)
1171 return -ENOMEM;
d899e052 1172again:
6c7d54ac 1173 recow = 0;
920bbbfb 1174 split = start;
33345d01 1175 key.objectid = ino;
d899e052 1176 key.type = BTRFS_EXTENT_DATA_KEY;
920bbbfb 1177 key.offset = split;
d899e052
YZ
1178
1179 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
41415730
JB
1180 if (ret < 0)
1181 goto out;
d899e052
YZ
1182 if (ret > 0 && path->slots[0] > 0)
1183 path->slots[0]--;
1184
1185 leaf = path->nodes[0];
1186 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
9c8e63db
JB
1187 if (key.objectid != ino ||
1188 key.type != BTRFS_EXTENT_DATA_KEY) {
1189 ret = -EINVAL;
1190 btrfs_abort_transaction(trans, ret);
1191 goto out;
1192 }
d899e052
YZ
1193 fi = btrfs_item_ptr(leaf, path->slots[0],
1194 struct btrfs_file_extent_item);
9c8e63db
JB
1195 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_PREALLOC) {
1196 ret = -EINVAL;
1197 btrfs_abort_transaction(trans, ret);
1198 goto out;
1199 }
d899e052 1200 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
9c8e63db
JB
1201 if (key.offset > start || extent_end < end) {
1202 ret = -EINVAL;
1203 btrfs_abort_transaction(trans, ret);
1204 goto out;
1205 }
d899e052
YZ
1206
1207 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1208 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
5d4f98a2 1209 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
6c7d54ac
YZ
1210 memcpy(&new_key, &key, sizeof(new_key));
1211
1212 if (start == key.offset && end < extent_end) {
1213 other_start = 0;
1214 other_end = start;
1215 if (extent_mergeable(leaf, path->slots[0] - 1,
33345d01 1216 ino, bytenr, orig_offset,
6c7d54ac
YZ
1217 &other_start, &other_end)) {
1218 new_key.offset = end;
0b246afa 1219 btrfs_set_item_key_safe(fs_info, path, &new_key);
6c7d54ac
YZ
1220 fi = btrfs_item_ptr(leaf, path->slots[0],
1221 struct btrfs_file_extent_item);
224ecce5
JB
1222 btrfs_set_file_extent_generation(leaf, fi,
1223 trans->transid);
6c7d54ac
YZ
1224 btrfs_set_file_extent_num_bytes(leaf, fi,
1225 extent_end - end);
1226 btrfs_set_file_extent_offset(leaf, fi,
1227 end - orig_offset);
1228 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
1229 struct btrfs_file_extent_item);
224ecce5
JB
1230 btrfs_set_file_extent_generation(leaf, fi,
1231 trans->transid);
6c7d54ac
YZ
1232 btrfs_set_file_extent_num_bytes(leaf, fi,
1233 end - other_start);
1234 btrfs_mark_buffer_dirty(leaf);
1235 goto out;
1236 }
1237 }
1238
1239 if (start > key.offset && end == extent_end) {
1240 other_start = end;
1241 other_end = 0;
1242 if (extent_mergeable(leaf, path->slots[0] + 1,
33345d01 1243 ino, bytenr, orig_offset,
6c7d54ac
YZ
1244 &other_start, &other_end)) {
1245 fi = btrfs_item_ptr(leaf, path->slots[0],
1246 struct btrfs_file_extent_item);
1247 btrfs_set_file_extent_num_bytes(leaf, fi,
1248 start - key.offset);
224ecce5
JB
1249 btrfs_set_file_extent_generation(leaf, fi,
1250 trans->transid);
6c7d54ac
YZ
1251 path->slots[0]++;
1252 new_key.offset = start;
0b246afa 1253 btrfs_set_item_key_safe(fs_info, path, &new_key);
6c7d54ac
YZ
1254
1255 fi = btrfs_item_ptr(leaf, path->slots[0],
1256 struct btrfs_file_extent_item);
224ecce5
JB
1257 btrfs_set_file_extent_generation(leaf, fi,
1258 trans->transid);
6c7d54ac
YZ
1259 btrfs_set_file_extent_num_bytes(leaf, fi,
1260 other_end - start);
1261 btrfs_set_file_extent_offset(leaf, fi,
1262 start - orig_offset);
1263 btrfs_mark_buffer_dirty(leaf);
1264 goto out;
1265 }
1266 }
d899e052 1267
920bbbfb
YZ
1268 while (start > key.offset || end < extent_end) {
1269 if (key.offset == start)
1270 split = end;
1271
920bbbfb
YZ
1272 new_key.offset = split;
1273 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1274 if (ret == -EAGAIN) {
b3b4aa74 1275 btrfs_release_path(path);
920bbbfb 1276 goto again;
d899e052 1277 }
79787eaa 1278 if (ret < 0) {
66642832 1279 btrfs_abort_transaction(trans, ret);
79787eaa
JM
1280 goto out;
1281 }
d899e052 1282
920bbbfb
YZ
1283 leaf = path->nodes[0];
1284 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
d899e052 1285 struct btrfs_file_extent_item);
224ecce5 1286 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
d899e052 1287 btrfs_set_file_extent_num_bytes(leaf, fi,
920bbbfb
YZ
1288 split - key.offset);
1289
1290 fi = btrfs_item_ptr(leaf, path->slots[0],
1291 struct btrfs_file_extent_item);
1292
224ecce5 1293 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
920bbbfb
YZ
1294 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1295 btrfs_set_file_extent_num_bytes(leaf, fi,
1296 extent_end - split);
d899e052
YZ
1297 btrfs_mark_buffer_dirty(leaf);
1298
84f7d8e6 1299 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes,
2ff7e61e 1300 0, root->root_key.objectid,
b06c4bf5 1301 ino, orig_offset);
9c8e63db
JB
1302 if (ret) {
1303 btrfs_abort_transaction(trans, ret);
1304 goto out;
1305 }
d899e052 1306
920bbbfb
YZ
1307 if (split == start) {
1308 key.offset = start;
1309 } else {
9c8e63db
JB
1310 if (start != key.offset) {
1311 ret = -EINVAL;
1312 btrfs_abort_transaction(trans, ret);
1313 goto out;
1314 }
d899e052 1315 path->slots[0]--;
920bbbfb 1316 extent_end = end;
d899e052 1317 }
6c7d54ac 1318 recow = 1;
d899e052
YZ
1319 }
1320
920bbbfb
YZ
1321 other_start = end;
1322 other_end = 0;
6c7d54ac 1323 if (extent_mergeable(leaf, path->slots[0] + 1,
33345d01 1324 ino, bytenr, orig_offset,
6c7d54ac
YZ
1325 &other_start, &other_end)) {
1326 if (recow) {
b3b4aa74 1327 btrfs_release_path(path);
6c7d54ac
YZ
1328 goto again;
1329 }
920bbbfb
YZ
1330 extent_end = other_end;
1331 del_slot = path->slots[0] + 1;
1332 del_nr++;
84f7d8e6 1333 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
920bbbfb 1334 0, root->root_key.objectid,
b06c4bf5 1335 ino, orig_offset);
9c8e63db
JB
1336 if (ret) {
1337 btrfs_abort_transaction(trans, ret);
1338 goto out;
1339 }
d899e052 1340 }
920bbbfb
YZ
1341 other_start = 0;
1342 other_end = start;
6c7d54ac 1343 if (extent_mergeable(leaf, path->slots[0] - 1,
33345d01 1344 ino, bytenr, orig_offset,
6c7d54ac
YZ
1345 &other_start, &other_end)) {
1346 if (recow) {
b3b4aa74 1347 btrfs_release_path(path);
6c7d54ac
YZ
1348 goto again;
1349 }
920bbbfb
YZ
1350 key.offset = other_start;
1351 del_slot = path->slots[0];
1352 del_nr++;
84f7d8e6 1353 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
920bbbfb 1354 0, root->root_key.objectid,
b06c4bf5 1355 ino, orig_offset);
9c8e63db
JB
1356 if (ret) {
1357 btrfs_abort_transaction(trans, ret);
1358 goto out;
1359 }
920bbbfb
YZ
1360 }
1361 if (del_nr == 0) {
3f6fae95
SL
1362 fi = btrfs_item_ptr(leaf, path->slots[0],
1363 struct btrfs_file_extent_item);
920bbbfb
YZ
1364 btrfs_set_file_extent_type(leaf, fi,
1365 BTRFS_FILE_EXTENT_REG);
224ecce5 1366 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
920bbbfb 1367 btrfs_mark_buffer_dirty(leaf);
6c7d54ac 1368 } else {
3f6fae95
SL
1369 fi = btrfs_item_ptr(leaf, del_slot - 1,
1370 struct btrfs_file_extent_item);
6c7d54ac
YZ
1371 btrfs_set_file_extent_type(leaf, fi,
1372 BTRFS_FILE_EXTENT_REG);
224ecce5 1373 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
6c7d54ac
YZ
1374 btrfs_set_file_extent_num_bytes(leaf, fi,
1375 extent_end - key.offset);
1376 btrfs_mark_buffer_dirty(leaf);
920bbbfb 1377
6c7d54ac 1378 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
79787eaa 1379 if (ret < 0) {
66642832 1380 btrfs_abort_transaction(trans, ret);
79787eaa
JM
1381 goto out;
1382 }
6c7d54ac 1383 }
920bbbfb 1384out:
d899e052
YZ
1385 btrfs_free_path(path);
1386 return 0;
1387}
1388
b1bf862e
CM
1389/*
1390 * on error we return an unlocked page and the error value
1391 * on success we return a locked page and 0
1392 */
bb1591b4
CM
1393static int prepare_uptodate_page(struct inode *inode,
1394 struct page *page, u64 pos,
b6316429 1395 bool force_uptodate)
b1bf862e
CM
1396{
1397 int ret = 0;
1398
09cbfeaf 1399 if (((pos & (PAGE_SIZE - 1)) || force_uptodate) &&
b6316429 1400 !PageUptodate(page)) {
b1bf862e
CM
1401 ret = btrfs_readpage(NULL, page);
1402 if (ret)
1403 return ret;
1404 lock_page(page);
1405 if (!PageUptodate(page)) {
1406 unlock_page(page);
1407 return -EIO;
1408 }
bb1591b4
CM
1409 if (page->mapping != inode->i_mapping) {
1410 unlock_page(page);
1411 return -EAGAIN;
1412 }
b1bf862e
CM
1413 }
1414 return 0;
1415}
1416
39279cc3 1417/*
376cc685 1418 * this just gets pages into the page cache and locks them down.
39279cc3 1419 */
b37392ea
MX
1420static noinline int prepare_pages(struct inode *inode, struct page **pages,
1421 size_t num_pages, loff_t pos,
1422 size_t write_bytes, bool force_uptodate)
39279cc3
CM
1423{
1424 int i;
09cbfeaf 1425 unsigned long index = pos >> PAGE_SHIFT;
3b16a4e3 1426 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
fc28b62d 1427 int err = 0;
376cc685 1428 int faili;
8c2383c3 1429
39279cc3 1430 for (i = 0; i < num_pages; i++) {
bb1591b4 1431again:
a94733d0 1432 pages[i] = find_or_create_page(inode->i_mapping, index + i,
e3a41a5b 1433 mask | __GFP_WRITE);
39279cc3 1434 if (!pages[i]) {
b1bf862e
CM
1435 faili = i - 1;
1436 err = -ENOMEM;
1437 goto fail;
1438 }
1439
1440 if (i == 0)
bb1591b4 1441 err = prepare_uptodate_page(inode, pages[i], pos,
b6316429 1442 force_uptodate);
bb1591b4
CM
1443 if (!err && i == num_pages - 1)
1444 err = prepare_uptodate_page(inode, pages[i],
b6316429 1445 pos + write_bytes, false);
b1bf862e 1446 if (err) {
09cbfeaf 1447 put_page(pages[i]);
bb1591b4
CM
1448 if (err == -EAGAIN) {
1449 err = 0;
1450 goto again;
1451 }
b1bf862e
CM
1452 faili = i - 1;
1453 goto fail;
39279cc3 1454 }
ccd467d6 1455 wait_on_page_writeback(pages[i]);
39279cc3 1456 }
376cc685
MX
1457
1458 return 0;
1459fail:
1460 while (faili >= 0) {
1461 unlock_page(pages[faili]);
09cbfeaf 1462 put_page(pages[faili]);
376cc685
MX
1463 faili--;
1464 }
1465 return err;
1466
1467}
1468
1469/*
1470 * This function locks the extent and properly waits for data=ordered extents
1471 * to finish before allowing the pages to be modified if need.
1472 *
1473 * The return value:
1474 * 1 - the extent is locked
1475 * 0 - the extent is not locked, and everything is OK
1476 * -EAGAIN - need re-prepare the pages
1477 * the other < 0 number - Something wrong happens
1478 */
1479static noinline int
2cff578c 1480lock_and_cleanup_extent_if_need(struct btrfs_inode *inode, struct page **pages,
376cc685 1481 size_t num_pages, loff_t pos,
2e78c927 1482 size_t write_bytes,
376cc685
MX
1483 u64 *lockstart, u64 *lockend,
1484 struct extent_state **cached_state)
1485{
2cff578c 1486 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
376cc685
MX
1487 u64 start_pos;
1488 u64 last_pos;
1489 int i;
1490 int ret = 0;
1491
0b246afa 1492 start_pos = round_down(pos, fs_info->sectorsize);
2e78c927 1493 last_pos = start_pos
da17066c 1494 + round_up(pos + write_bytes - start_pos,
0b246afa 1495 fs_info->sectorsize) - 1;
376cc685 1496
e3b8a485 1497 if (start_pos < inode->vfs_inode.i_size) {
e6dcd2dc 1498 struct btrfs_ordered_extent *ordered;
a7e3b975 1499
2cff578c
NB
1500 lock_extent_bits(&inode->io_tree, start_pos, last_pos,
1501 cached_state);
b88935bf
MX
1502 ordered = btrfs_lookup_ordered_range(inode, start_pos,
1503 last_pos - start_pos + 1);
e6dcd2dc
CM
1504 if (ordered &&
1505 ordered->file_offset + ordered->len > start_pos &&
376cc685 1506 ordered->file_offset <= last_pos) {
2cff578c 1507 unlock_extent_cached(&inode->io_tree, start_pos,
e43bbe5e 1508 last_pos, cached_state);
e6dcd2dc
CM
1509 for (i = 0; i < num_pages; i++) {
1510 unlock_page(pages[i]);
09cbfeaf 1511 put_page(pages[i]);
e6dcd2dc 1512 }
2cff578c
NB
1513 btrfs_start_ordered_extent(&inode->vfs_inode,
1514 ordered, 1);
b88935bf
MX
1515 btrfs_put_ordered_extent(ordered);
1516 return -EAGAIN;
e6dcd2dc
CM
1517 }
1518 if (ordered)
1519 btrfs_put_ordered_extent(ordered);
e3b8a485
FM
1520 clear_extent_bit(&inode->io_tree, start_pos, last_pos,
1521 EXTENT_DIRTY | EXTENT_DELALLOC |
1522 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
ae0f1625 1523 0, 0, cached_state);
376cc685
MX
1524 *lockstart = start_pos;
1525 *lockend = last_pos;
1526 ret = 1;
0762704b 1527 }
376cc685 1528
e6dcd2dc 1529 for (i = 0; i < num_pages; i++) {
32c7f202
WF
1530 if (clear_page_dirty_for_io(pages[i]))
1531 account_page_redirty(pages[i]);
e6dcd2dc
CM
1532 set_page_extent_mapped(pages[i]);
1533 WARN_ON(!PageLocked(pages[i]));
1534 }
b1bf862e 1535
376cc685 1536 return ret;
39279cc3
CM
1537}
1538
85b7ab67 1539static noinline int check_can_nocow(struct btrfs_inode *inode, loff_t pos,
7ee9e440
JB
1540 size_t *write_bytes)
1541{
85b7ab67
NB
1542 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
1543 struct btrfs_root *root = inode->root;
7ee9e440
JB
1544 struct btrfs_ordered_extent *ordered;
1545 u64 lockstart, lockend;
1546 u64 num_bytes;
1547 int ret;
1548
ea14b57f 1549 ret = btrfs_start_write_no_snapshotting(root);
8257b2dc
MX
1550 if (!ret)
1551 return -ENOSPC;
1552
0b246afa 1553 lockstart = round_down(pos, fs_info->sectorsize);
da17066c 1554 lockend = round_up(pos + *write_bytes,
0b246afa 1555 fs_info->sectorsize) - 1;
7ee9e440
JB
1556
1557 while (1) {
85b7ab67 1558 lock_extent(&inode->io_tree, lockstart, lockend);
7ee9e440
JB
1559 ordered = btrfs_lookup_ordered_range(inode, lockstart,
1560 lockend - lockstart + 1);
1561 if (!ordered) {
1562 break;
1563 }
85b7ab67
NB
1564 unlock_extent(&inode->io_tree, lockstart, lockend);
1565 btrfs_start_ordered_extent(&inode->vfs_inode, ordered, 1);
7ee9e440
JB
1566 btrfs_put_ordered_extent(ordered);
1567 }
1568
7ee9e440 1569 num_bytes = lockend - lockstart + 1;
85b7ab67
NB
1570 ret = can_nocow_extent(&inode->vfs_inode, lockstart, &num_bytes,
1571 NULL, NULL, NULL);
7ee9e440
JB
1572 if (ret <= 0) {
1573 ret = 0;
ea14b57f 1574 btrfs_end_write_no_snapshotting(root);
7ee9e440 1575 } else {
c933956d
MX
1576 *write_bytes = min_t(size_t, *write_bytes ,
1577 num_bytes - pos + lockstart);
7ee9e440
JB
1578 }
1579
85b7ab67 1580 unlock_extent(&inode->io_tree, lockstart, lockend);
7ee9e440
JB
1581
1582 return ret;
1583}
1584
d0215f3e
JB
1585static noinline ssize_t __btrfs_buffered_write(struct file *file,
1586 struct iov_iter *i,
1587 loff_t pos)
4b46fce2 1588{
496ad9aa 1589 struct inode *inode = file_inode(file);
0b246afa 1590 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
11c65dcc 1591 struct btrfs_root *root = BTRFS_I(inode)->root;
11c65dcc 1592 struct page **pages = NULL;
376cc685 1593 struct extent_state *cached_state = NULL;
364ecf36 1594 struct extent_changeset *data_reserved = NULL;
7ee9e440 1595 u64 release_bytes = 0;
376cc685
MX
1596 u64 lockstart;
1597 u64 lockend;
d0215f3e
JB
1598 size_t num_written = 0;
1599 int nrptrs;
c9149235 1600 int ret = 0;
7ee9e440 1601 bool only_release_metadata = false;
b6316429 1602 bool force_page_uptodate = false;
4b46fce2 1603
09cbfeaf
KS
1604 nrptrs = min(DIV_ROUND_UP(iov_iter_count(i), PAGE_SIZE),
1605 PAGE_SIZE / (sizeof(struct page *)));
142349f5
WF
1606 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1607 nrptrs = max(nrptrs, 8);
31e818fe 1608 pages = kmalloc_array(nrptrs, sizeof(struct page *), GFP_KERNEL);
d0215f3e
JB
1609 if (!pages)
1610 return -ENOMEM;
ab93dbec 1611
d0215f3e 1612 while (iov_iter_count(i) > 0) {
09cbfeaf 1613 size_t offset = pos & (PAGE_SIZE - 1);
2e78c927 1614 size_t sector_offset;
d0215f3e 1615 size_t write_bytes = min(iov_iter_count(i),
09cbfeaf 1616 nrptrs * (size_t)PAGE_SIZE -
8c2383c3 1617 offset);
ed6078f7 1618 size_t num_pages = DIV_ROUND_UP(write_bytes + offset,
09cbfeaf 1619 PAGE_SIZE);
7ee9e440 1620 size_t reserve_bytes;
d0215f3e
JB
1621 size_t dirty_pages;
1622 size_t copied;
2e78c927
CR
1623 size_t dirty_sectors;
1624 size_t num_sectors;
79f015f2 1625 int extents_locked;
39279cc3 1626
8c2383c3 1627 WARN_ON(num_pages > nrptrs);
1832a6d5 1628
914ee295
XZ
1629 /*
1630 * Fault pages before locking them in prepare_pages
1631 * to avoid recursive lock
1632 */
d0215f3e 1633 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
914ee295 1634 ret = -EFAULT;
d0215f3e 1635 break;
914ee295
XZ
1636 }
1637
da17066c 1638 sector_offset = pos & (fs_info->sectorsize - 1);
2e78c927 1639 reserve_bytes = round_up(write_bytes + sector_offset,
da17066c 1640 fs_info->sectorsize);
d9d8b2a5 1641
364ecf36
QW
1642 extent_changeset_release(data_reserved);
1643 ret = btrfs_check_data_free_space(inode, &data_reserved, pos,
1644 write_bytes);
c6887cd1
JB
1645 if (ret < 0) {
1646 if ((BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1647 BTRFS_INODE_PREALLOC)) &&
85b7ab67
NB
1648 check_can_nocow(BTRFS_I(inode), pos,
1649 &write_bytes) > 0) {
c6887cd1
JB
1650 /*
1651 * For nodata cow case, no need to reserve
1652 * data space.
1653 */
1654 only_release_metadata = true;
1655 /*
1656 * our prealloc extent may be smaller than
1657 * write_bytes, so scale down.
1658 */
1659 num_pages = DIV_ROUND_UP(write_bytes + offset,
1660 PAGE_SIZE);
1661 reserve_bytes = round_up(write_bytes +
1662 sector_offset,
da17066c 1663 fs_info->sectorsize);
c6887cd1
JB
1664 } else {
1665 break;
1666 }
1667 }
1832a6d5 1668
8b62f87b 1669 WARN_ON(reserve_bytes == 0);
9f3db423
NB
1670 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
1671 reserve_bytes);
7ee9e440
JB
1672 if (ret) {
1673 if (!only_release_metadata)
bc42bda2
QW
1674 btrfs_free_reserved_data_space(inode,
1675 data_reserved, pos,
1676 write_bytes);
8257b2dc 1677 else
ea14b57f 1678 btrfs_end_write_no_snapshotting(root);
7ee9e440
JB
1679 break;
1680 }
1681
1682 release_bytes = reserve_bytes;
376cc685 1683again:
4a64001f
JB
1684 /*
1685 * This is going to setup the pages array with the number of
1686 * pages we want, so we don't really need to worry about the
1687 * contents of pages from loop to loop
1688 */
b37392ea
MX
1689 ret = prepare_pages(inode, pages, num_pages,
1690 pos, write_bytes,
b6316429 1691 force_page_uptodate);
8b62f87b
JB
1692 if (ret) {
1693 btrfs_delalloc_release_extents(BTRFS_I(inode),
1694 reserve_bytes);
d0215f3e 1695 break;
8b62f87b 1696 }
39279cc3 1697
79f015f2
GR
1698 extents_locked = lock_and_cleanup_extent_if_need(
1699 BTRFS_I(inode), pages,
2cff578c
NB
1700 num_pages, pos, write_bytes, &lockstart,
1701 &lockend, &cached_state);
79f015f2
GR
1702 if (extents_locked < 0) {
1703 if (extents_locked == -EAGAIN)
376cc685 1704 goto again;
8b62f87b
JB
1705 btrfs_delalloc_release_extents(BTRFS_I(inode),
1706 reserve_bytes);
79f015f2 1707 ret = extents_locked;
376cc685 1708 break;
376cc685
MX
1709 }
1710
ee22f0c4 1711 copied = btrfs_copy_from_user(pos, write_bytes, pages, i);
b1bf862e 1712
0b246afa 1713 num_sectors = BTRFS_BYTES_TO_BLKS(fs_info, reserve_bytes);
56244ef1 1714 dirty_sectors = round_up(copied + sector_offset,
0b246afa
JM
1715 fs_info->sectorsize);
1716 dirty_sectors = BTRFS_BYTES_TO_BLKS(fs_info, dirty_sectors);
56244ef1 1717
b1bf862e
CM
1718 /*
1719 * if we have trouble faulting in the pages, fall
1720 * back to one page at a time
1721 */
1722 if (copied < write_bytes)
1723 nrptrs = 1;
1724
b6316429
JB
1725 if (copied == 0) {
1726 force_page_uptodate = true;
56244ef1 1727 dirty_sectors = 0;
b1bf862e 1728 dirty_pages = 0;
b6316429
JB
1729 } else {
1730 force_page_uptodate = false;
ed6078f7 1731 dirty_pages = DIV_ROUND_UP(copied + offset,
09cbfeaf 1732 PAGE_SIZE);
b6316429 1733 }
914ee295 1734
2e78c927 1735 if (num_sectors > dirty_sectors) {
8b8b08cb
CM
1736 /* release everything except the sectors we dirtied */
1737 release_bytes -= dirty_sectors <<
0b246afa 1738 fs_info->sb->s_blocksize_bits;
485290a7 1739 if (only_release_metadata) {
691fa059 1740 btrfs_delalloc_release_metadata(BTRFS_I(inode),
7ee9e440 1741 release_bytes);
485290a7
QW
1742 } else {
1743 u64 __pos;
1744
da17066c 1745 __pos = round_down(pos,
0b246afa 1746 fs_info->sectorsize) +
09cbfeaf 1747 (dirty_pages << PAGE_SHIFT);
bc42bda2
QW
1748 btrfs_delalloc_release_space(inode,
1749 data_reserved, __pos,
1750 release_bytes);
485290a7 1751 }
914ee295
XZ
1752 }
1753
2e78c927 1754 release_bytes = round_up(copied + sector_offset,
0b246afa 1755 fs_info->sectorsize);
376cc685
MX
1756
1757 if (copied > 0)
2ff7e61e 1758 ret = btrfs_dirty_pages(inode, pages, dirty_pages,
94f45071 1759 pos, copied, &cached_state);
79f015f2 1760 if (extents_locked)
376cc685 1761 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
e43bbe5e 1762 lockstart, lockend, &cached_state);
8b62f87b 1763 btrfs_delalloc_release_extents(BTRFS_I(inode), reserve_bytes);
f1de9683
MX
1764 if (ret) {
1765 btrfs_drop_pages(pages, num_pages);
376cc685 1766 break;
f1de9683 1767 }
39279cc3 1768
376cc685 1769 release_bytes = 0;
8257b2dc 1770 if (only_release_metadata)
ea14b57f 1771 btrfs_end_write_no_snapshotting(root);
8257b2dc 1772
7ee9e440 1773 if (only_release_metadata && copied > 0) {
da17066c 1774 lockstart = round_down(pos,
0b246afa 1775 fs_info->sectorsize);
da17066c 1776 lockend = round_up(pos + copied,
0b246afa 1777 fs_info->sectorsize) - 1;
7ee9e440
JB
1778
1779 set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
1780 lockend, EXTENT_NORESERVE, NULL,
1781 NULL, GFP_NOFS);
1782 only_release_metadata = false;
1783 }
1784
f1de9683
MX
1785 btrfs_drop_pages(pages, num_pages);
1786
d0215f3e
JB
1787 cond_resched();
1788
d0e1d66b 1789 balance_dirty_pages_ratelimited(inode->i_mapping);
0b246afa 1790 if (dirty_pages < (fs_info->nodesize >> PAGE_SHIFT) + 1)
2ff7e61e 1791 btrfs_btree_balance_dirty(fs_info);
cb843a6f 1792
914ee295
XZ
1793 pos += copied;
1794 num_written += copied;
d0215f3e 1795 }
39279cc3 1796
d0215f3e
JB
1797 kfree(pages);
1798
7ee9e440 1799 if (release_bytes) {
8257b2dc 1800 if (only_release_metadata) {
ea14b57f 1801 btrfs_end_write_no_snapshotting(root);
691fa059
NB
1802 btrfs_delalloc_release_metadata(BTRFS_I(inode),
1803 release_bytes);
8257b2dc 1804 } else {
bc42bda2
QW
1805 btrfs_delalloc_release_space(inode, data_reserved,
1806 round_down(pos, fs_info->sectorsize),
1807 release_bytes);
8257b2dc 1808 }
7ee9e440
JB
1809 }
1810
364ecf36 1811 extent_changeset_free(data_reserved);
d0215f3e
JB
1812 return num_written ? num_written : ret;
1813}
1814
1af5bb49 1815static ssize_t __btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from)
d0215f3e
JB
1816{
1817 struct file *file = iocb->ki_filp;
728404da 1818 struct inode *inode = file_inode(file);
1af5bb49 1819 loff_t pos = iocb->ki_pos;
d0215f3e
JB
1820 ssize_t written;
1821 ssize_t written_buffered;
1822 loff_t endbyte;
1823 int err;
1824
1af5bb49 1825 written = generic_file_direct_write(iocb, from);
d0215f3e 1826
0c949334 1827 if (written < 0 || !iov_iter_count(from))
d0215f3e
JB
1828 return written;
1829
1830 pos += written;
0ae5e4d3 1831 written_buffered = __btrfs_buffered_write(file, from, pos);
d0215f3e
JB
1832 if (written_buffered < 0) {
1833 err = written_buffered;
1834 goto out;
39279cc3 1835 }
075bdbdb
FM
1836 /*
1837 * Ensure all data is persisted. We want the next direct IO read to be
1838 * able to read what was just written.
1839 */
d0215f3e 1840 endbyte = pos + written_buffered - 1;
728404da 1841 err = btrfs_fdatawrite_range(inode, pos, endbyte);
075bdbdb
FM
1842 if (err)
1843 goto out;
728404da 1844 err = filemap_fdatawait_range(inode->i_mapping, pos, endbyte);
d0215f3e
JB
1845 if (err)
1846 goto out;
1847 written += written_buffered;
867c4f93 1848 iocb->ki_pos = pos + written_buffered;
09cbfeaf
KS
1849 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_SHIFT,
1850 endbyte >> PAGE_SHIFT);
39279cc3 1851out:
d0215f3e
JB
1852 return written ? written : err;
1853}
5b92ee72 1854
6c760c07
JB
1855static void update_time_for_write(struct inode *inode)
1856{
1857 struct timespec now;
1858
1859 if (IS_NOCMTIME(inode))
1860 return;
1861
c2050a45 1862 now = current_time(inode);
6c760c07
JB
1863 if (!timespec_equal(&inode->i_mtime, &now))
1864 inode->i_mtime = now;
1865
1866 if (!timespec_equal(&inode->i_ctime, &now))
1867 inode->i_ctime = now;
1868
1869 if (IS_I_VERSION(inode))
1870 inode_inc_iversion(inode);
1871}
1872
b30ac0fc
AV
1873static ssize_t btrfs_file_write_iter(struct kiocb *iocb,
1874 struct iov_iter *from)
d0215f3e
JB
1875{
1876 struct file *file = iocb->ki_filp;
496ad9aa 1877 struct inode *inode = file_inode(file);
0b246afa 1878 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
d0215f3e 1879 struct btrfs_root *root = BTRFS_I(inode)->root;
0c1a98c8 1880 u64 start_pos;
3ac0d7b9 1881 u64 end_pos;
d0215f3e 1882 ssize_t num_written = 0;
b812ce28 1883 bool sync = (file->f_flags & O_DSYNC) || IS_SYNC(file->f_mapping->host);
3309dd04 1884 ssize_t err;
ff0fa732 1885 loff_t pos;
edf064e7 1886 size_t count = iov_iter_count(from);
27772b68
CR
1887 loff_t oldsize;
1888 int clean_page = 0;
d0215f3e 1889
91f9943e
CH
1890 if (!(iocb->ki_flags & IOCB_DIRECT) &&
1891 (iocb->ki_flags & IOCB_NOWAIT))
1892 return -EOPNOTSUPP;
1893
ff0fa732
GR
1894 if (!inode_trylock(inode)) {
1895 if (iocb->ki_flags & IOCB_NOWAIT)
edf064e7 1896 return -EAGAIN;
ff0fa732
GR
1897 inode_lock(inode);
1898 }
1899
1900 err = generic_write_checks(iocb, from);
1901 if (err <= 0) {
1902 inode_unlock(inode);
1903 return err;
1904 }
1905
1906 pos = iocb->ki_pos;
1907 if (iocb->ki_flags & IOCB_NOWAIT) {
edf064e7
GR
1908 /*
1909 * We will allocate space in case nodatacow is not set,
1910 * so bail
1911 */
1912 if (!(BTRFS_I(inode)->flags & (BTRFS_INODE_NODATACOW |
1913 BTRFS_INODE_PREALLOC)) ||
1914 check_can_nocow(BTRFS_I(inode), pos, &count) <= 0) {
1915 inode_unlock(inode);
1916 return -EAGAIN;
1917 }
d0215f3e
JB
1918 }
1919
3309dd04 1920 current->backing_dev_info = inode_to_bdi(inode);
5fa8e0a1 1921 err = file_remove_privs(file);
d0215f3e 1922 if (err) {
5955102c 1923 inode_unlock(inode);
d0215f3e
JB
1924 goto out;
1925 }
1926
1927 /*
1928 * If BTRFS flips readonly due to some impossible error
1929 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1930 * although we have opened a file as writable, we have
1931 * to stop this write operation to ensure FS consistency.
1932 */
0b246afa 1933 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
5955102c 1934 inode_unlock(inode);
d0215f3e
JB
1935 err = -EROFS;
1936 goto out;
1937 }
1938
6c760c07
JB
1939 /*
1940 * We reserve space for updating the inode when we reserve space for the
1941 * extent we are going to write, so we will enospc out there. We don't
1942 * need to start yet another transaction to update the inode as we will
1943 * update the inode when we finish writing whatever data we write.
1944 */
1945 update_time_for_write(inode);
d0215f3e 1946
0b246afa 1947 start_pos = round_down(pos, fs_info->sectorsize);
27772b68
CR
1948 oldsize = i_size_read(inode);
1949 if (start_pos > oldsize) {
3ac0d7b9 1950 /* Expand hole size to cover write data, preventing empty gap */
da17066c 1951 end_pos = round_up(pos + count,
0b246afa 1952 fs_info->sectorsize);
27772b68 1953 err = btrfs_cont_expand(inode, oldsize, end_pos);
0c1a98c8 1954 if (err) {
5955102c 1955 inode_unlock(inode);
0c1a98c8
MX
1956 goto out;
1957 }
0b246afa 1958 if (start_pos > round_up(oldsize, fs_info->sectorsize))
27772b68 1959 clean_page = 1;
0c1a98c8
MX
1960 }
1961
b812ce28
JB
1962 if (sync)
1963 atomic_inc(&BTRFS_I(inode)->sync_writers);
1964
2ba48ce5 1965 if (iocb->ki_flags & IOCB_DIRECT) {
1af5bb49 1966 num_written = __btrfs_direct_write(iocb, from);
d0215f3e 1967 } else {
b30ac0fc 1968 num_written = __btrfs_buffered_write(file, from, pos);
d0215f3e 1969 if (num_written > 0)
867c4f93 1970 iocb->ki_pos = pos + num_written;
27772b68
CR
1971 if (clean_page)
1972 pagecache_isize_extended(inode, oldsize,
1973 i_size_read(inode));
d0215f3e
JB
1974 }
1975
5955102c 1976 inode_unlock(inode);
2ff3e9b6 1977
5a3f23d5 1978 /*
6c760c07
JB
1979 * We also have to set last_sub_trans to the current log transid,
1980 * otherwise subsequent syncs to a file that's been synced in this
bb7ab3b9 1981 * transaction will appear to have already occurred.
5a3f23d5 1982 */
2f2ff0ee 1983 spin_lock(&BTRFS_I(inode)->lock);
6c760c07 1984 BTRFS_I(inode)->last_sub_trans = root->log_transid;
2f2ff0ee 1985 spin_unlock(&BTRFS_I(inode)->lock);
e2592217
CH
1986 if (num_written > 0)
1987 num_written = generic_write_sync(iocb, num_written);
0a3404dc 1988
b812ce28
JB
1989 if (sync)
1990 atomic_dec(&BTRFS_I(inode)->sync_writers);
0a3404dc 1991out:
39279cc3 1992 current->backing_dev_info = NULL;
39279cc3
CM
1993 return num_written ? num_written : err;
1994}
1995
d397712b 1996int btrfs_release_file(struct inode *inode, struct file *filp)
e1b81e67 1997{
23b5ec74
JB
1998 struct btrfs_file_private *private = filp->private_data;
1999
23b5ec74
JB
2000 if (private && private->filldir_buf)
2001 kfree(private->filldir_buf);
2002 kfree(private);
2003 filp->private_data = NULL;
2004
f6dc45c7
CM
2005 /*
2006 * ordered_data_close is set by settattr when we are about to truncate
2007 * a file from a non-zero size to a zero size. This tries to
2008 * flush down new bytes that may have been written if the
2009 * application were using truncate to replace a file in place.
2010 */
2011 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
2012 &BTRFS_I(inode)->runtime_flags))
2013 filemap_flush(inode->i_mapping);
e1b81e67
M
2014 return 0;
2015}
2016
669249ee
FM
2017static int start_ordered_ops(struct inode *inode, loff_t start, loff_t end)
2018{
2019 int ret;
343e4fc1 2020 struct blk_plug plug;
669249ee 2021
343e4fc1
LB
2022 /*
2023 * This is only called in fsync, which would do synchronous writes, so
2024 * a plug can merge adjacent IOs as much as possible. Esp. in case of
2025 * multiple disks using raid profile, a large IO can be split to
2026 * several segments of stripe length (currently 64K).
2027 */
2028 blk_start_plug(&plug);
669249ee 2029 atomic_inc(&BTRFS_I(inode)->sync_writers);
728404da 2030 ret = btrfs_fdatawrite_range(inode, start, end);
669249ee 2031 atomic_dec(&BTRFS_I(inode)->sync_writers);
343e4fc1 2032 blk_finish_plug(&plug);
669249ee
FM
2033
2034 return ret;
2035}
2036
d352ac68
CM
2037/*
2038 * fsync call for both files and directories. This logs the inode into
2039 * the tree log instead of forcing full commits whenever possible.
2040 *
2041 * It needs to call filemap_fdatawait so that all ordered extent updates are
2042 * in the metadata btree are up to date for copying to the log.
2043 *
2044 * It drops the inode mutex before doing the tree log commit. This is an
2045 * important optimization for directories because holding the mutex prevents
2046 * new operations on the dir while we write to disk.
2047 */
02c24a82 2048int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
39279cc3 2049{
de17e793 2050 struct dentry *dentry = file_dentry(file);
2b0143b5 2051 struct inode *inode = d_inode(dentry);
0b246afa 2052 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
39279cc3 2053 struct btrfs_root *root = BTRFS_I(inode)->root;
39279cc3 2054 struct btrfs_trans_handle *trans;
8b050d35 2055 struct btrfs_log_ctx ctx;
333427a5 2056 int ret = 0, err;
897ca819 2057 bool full_sync = false;
9dcbeed4 2058 u64 len;
39279cc3 2059
9dcbeed4
DS
2060 /*
2061 * The range length can be represented by u64, we have to do the typecasts
2062 * to avoid signed overflow if it's [0, LLONG_MAX] eg. from fsync()
2063 */
2064 len = (u64)end - (u64)start + 1;
1abe9b8a 2065 trace_btrfs_sync_file(file, datasync);
257c62e1 2066
ebb70442
LB
2067 btrfs_init_log_ctx(&ctx, inode);
2068
90abccf2
MX
2069 /*
2070 * We write the dirty pages in the range and wait until they complete
2071 * out of the ->i_mutex. If so, we can flush the dirty pages by
2ab28f32
JB
2072 * multi-task, and make the performance up. See
2073 * btrfs_wait_ordered_range for an explanation of the ASYNC check.
90abccf2 2074 */
669249ee 2075 ret = start_ordered_ops(inode, start, end);
90abccf2 2076 if (ret)
333427a5 2077 goto out;
90abccf2 2078
5955102c 2079 inode_lock(inode);
2ecb7923 2080 atomic_inc(&root->log_batch);
2ab28f32
JB
2081 full_sync = test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2082 &BTRFS_I(inode)->runtime_flags);
669249ee
FM
2083 /*
2084 * We might have have had more pages made dirty after calling
2085 * start_ordered_ops and before acquiring the inode's i_mutex.
2086 */
0ef8b726 2087 if (full_sync) {
669249ee
FM
2088 /*
2089 * For a full sync, we need to make sure any ordered operations
2090 * start and finish before we start logging the inode, so that
2091 * all extents are persisted and the respective file extent
2092 * items are in the fs/subvol btree.
2093 */
b659ef02 2094 ret = btrfs_wait_ordered_range(inode, start, len);
669249ee
FM
2095 } else {
2096 /*
2097 * Start any new ordered operations before starting to log the
2098 * inode. We will wait for them to finish in btrfs_sync_log().
2099 *
2100 * Right before acquiring the inode's mutex, we might have new
2101 * writes dirtying pages, which won't immediately start the
2102 * respective ordered operations - that is done through the
2103 * fill_delalloc callbacks invoked from the writepage and
2104 * writepages address space operations. So make sure we start
2105 * all ordered operations before starting to log our inode. Not
2106 * doing this means that while logging the inode, writeback
2107 * could start and invoke writepage/writepages, which would call
2108 * the fill_delalloc callbacks (cow_file_range,
2109 * submit_compressed_extents). These callbacks add first an
2110 * extent map to the modified list of extents and then create
2111 * the respective ordered operation, which means in
2112 * tree-log.c:btrfs_log_inode() we might capture all existing
2113 * ordered operations (with btrfs_get_logged_extents()) before
2114 * the fill_delalloc callback adds its ordered operation, and by
2115 * the time we visit the modified list of extent maps (with
2116 * btrfs_log_changed_extents()), we see and process the extent
2117 * map they created. We then use the extent map to construct a
2118 * file extent item for logging without waiting for the
2119 * respective ordered operation to finish - this file extent
2120 * item points to a disk location that might not have yet been
2121 * written to, containing random data - so after a crash a log
2122 * replay will make our inode have file extent items that point
2123 * to disk locations containing invalid data, as we returned
2124 * success to userspace without waiting for the respective
2125 * ordered operation to finish, because it wasn't captured by
2126 * btrfs_get_logged_extents().
2127 */
2128 ret = start_ordered_ops(inode, start, end);
2129 }
2130 if (ret) {
5955102c 2131 inode_unlock(inode);
669249ee 2132 goto out;
0ef8b726 2133 }
2ecb7923 2134 atomic_inc(&root->log_batch);
257c62e1 2135
39279cc3 2136 /*
3a8b36f3
FM
2137 * If the last transaction that changed this file was before the current
2138 * transaction and we have the full sync flag set in our inode, we can
2139 * bail out now without any syncing.
2140 *
2141 * Note that we can't bail out if the full sync flag isn't set. This is
2142 * because when the full sync flag is set we start all ordered extents
2143 * and wait for them to fully complete - when they complete they update
2144 * the inode's last_trans field through:
2145 *
2146 * btrfs_finish_ordered_io() ->
2147 * btrfs_update_inode_fallback() ->
2148 * btrfs_update_inode() ->
2149 * btrfs_set_inode_last_trans()
2150 *
2151 * So we are sure that last_trans is up to date and can do this check to
2152 * bail out safely. For the fast path, when the full sync flag is not
2153 * set in our inode, we can not do it because we start only our ordered
2154 * extents and don't wait for them to complete (that is when
2155 * btrfs_finish_ordered_io runs), so here at this point their last_trans
2156 * value might be less than or equals to fs_info->last_trans_committed,
2157 * and setting a speculative last_trans for an inode when a buffered
2158 * write is made (such as fs_info->generation + 1 for example) would not
2159 * be reliable since after setting the value and before fsync is called
2160 * any number of transactions can start and commit (transaction kthread
2161 * commits the current transaction periodically), and a transaction
2162 * commit does not start nor waits for ordered extents to complete.
257c62e1 2163 */
a4abeea4 2164 smp_mb();
0f8939b8 2165 if (btrfs_inode_in_log(BTRFS_I(inode), fs_info->generation) ||
affc0ff9 2166 (full_sync && BTRFS_I(inode)->last_trans <=
0b246afa 2167 fs_info->last_trans_committed) ||
affc0ff9
FM
2168 (!btrfs_have_ordered_extents_in_range(inode, start, len) &&
2169 BTRFS_I(inode)->last_trans
0b246afa 2170 <= fs_info->last_trans_committed)) {
5dc562c5 2171 /*
01327610 2172 * We've had everything committed since the last time we were
5dc562c5
JB
2173 * modified so clear this flag in case it was set for whatever
2174 * reason, it's no longer relevant.
2175 */
2176 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
2177 &BTRFS_I(inode)->runtime_flags);
0596a904
FM
2178 /*
2179 * An ordered extent might have started before and completed
2180 * already with io errors, in which case the inode was not
2181 * updated and we end up here. So check the inode's mapping
333427a5
JL
2182 * for any errors that might have happened since we last
2183 * checked called fsync.
0596a904 2184 */
333427a5 2185 ret = filemap_check_wb_err(inode->i_mapping, file->f_wb_err);
5955102c 2186 inode_unlock(inode);
15ee9bc7
JB
2187 goto out;
2188 }
15ee9bc7 2189
5039eddc
JB
2190 /*
2191 * We use start here because we will need to wait on the IO to complete
2192 * in btrfs_sync_log, which could require joining a transaction (for
2193 * example checking cross references in the nocow path). If we use join
2194 * here we could get into a situation where we're waiting on IO to
2195 * happen that is blocked on a transaction trying to commit. With start
2196 * we inc the extwriter counter, so we wait for all extwriters to exit
2197 * before we start blocking join'ers. This comment is to keep somebody
2198 * from thinking they are super smart and changing this to
2199 * btrfs_join_transaction *cough*Josef*cough*.
2200 */
a22285a6
YZ
2201 trans = btrfs_start_transaction(root, 0);
2202 if (IS_ERR(trans)) {
2203 ret = PTR_ERR(trans);
5955102c 2204 inode_unlock(inode);
39279cc3
CM
2205 goto out;
2206 }
5039eddc 2207 trans->sync = true;
e02119d5 2208
e5b84f7a 2209 ret = btrfs_log_dentry_safe(trans, dentry, start, end, &ctx);
02c24a82 2210 if (ret < 0) {
a0634be5
FDBM
2211 /* Fallthrough and commit/free transaction. */
2212 ret = 1;
02c24a82 2213 }
49eb7e46
CM
2214
2215 /* we've logged all the items and now have a consistent
2216 * version of the file in the log. It is possible that
2217 * someone will come in and modify the file, but that's
2218 * fine because the log is consistent on disk, and we
2219 * have references to all of the file's extents
2220 *
2221 * It is possible that someone will come in and log the
2222 * file again, but that will end up using the synchronization
2223 * inside btrfs_sync_log to keep things safe.
2224 */
5955102c 2225 inode_unlock(inode);
49eb7e46 2226
8407f553
FM
2227 /*
2228 * If any of the ordered extents had an error, just return it to user
2229 * space, so that the application knows some writes didn't succeed and
2230 * can take proper action (retry for e.g.). Blindly committing the
2231 * transaction in this case, would fool userspace that everything was
2232 * successful. And we also want to make sure our log doesn't contain
2233 * file extent items pointing to extents that weren't fully written to -
2234 * just like in the non fast fsync path, where we check for the ordered
2235 * operation's error flag before writing to the log tree and return -EIO
2236 * if any of them had this flag set (btrfs_wait_ordered_range) -
2237 * therefore we need to check for errors in the ordered operations,
2238 * which are indicated by ctx.io_err.
2239 */
2240 if (ctx.io_err) {
3a45bb20 2241 btrfs_end_transaction(trans);
8407f553
FM
2242 ret = ctx.io_err;
2243 goto out;
2244 }
2245
257c62e1 2246 if (ret != BTRFS_NO_LOG_SYNC) {
0ef8b726 2247 if (!ret) {
8b050d35 2248 ret = btrfs_sync_log(trans, root, &ctx);
0ef8b726 2249 if (!ret) {
3a45bb20 2250 ret = btrfs_end_transaction(trans);
0ef8b726 2251 goto out;
2ab28f32 2252 }
257c62e1 2253 }
0ef8b726 2254 if (!full_sync) {
9dcbeed4 2255 ret = btrfs_wait_ordered_range(inode, start, len);
b05fd874 2256 if (ret) {
3a45bb20 2257 btrfs_end_transaction(trans);
0ef8b726 2258 goto out;
b05fd874 2259 }
0ef8b726 2260 }
3a45bb20 2261 ret = btrfs_commit_transaction(trans);
257c62e1 2262 } else {
3a45bb20 2263 ret = btrfs_end_transaction(trans);
e02119d5 2264 }
39279cc3 2265out:
ebb70442 2266 ASSERT(list_empty(&ctx.list));
333427a5
JL
2267 err = file_check_and_advance_wb_err(file);
2268 if (!ret)
2269 ret = err;
014e4ac4 2270 return ret > 0 ? -EIO : ret;
39279cc3
CM
2271}
2272
f0f37e2f 2273static const struct vm_operations_struct btrfs_file_vm_ops = {
92fee66d 2274 .fault = filemap_fault,
f1820361 2275 .map_pages = filemap_map_pages,
9ebefb18
CM
2276 .page_mkwrite = btrfs_page_mkwrite,
2277};
2278
2279static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
2280{
058a457e
MX
2281 struct address_space *mapping = filp->f_mapping;
2282
2283 if (!mapping->a_ops->readpage)
2284 return -ENOEXEC;
2285
9ebefb18 2286 file_accessed(filp);
058a457e 2287 vma->vm_ops = &btrfs_file_vm_ops;
058a457e 2288
9ebefb18
CM
2289 return 0;
2290}
2291
35339c24 2292static int hole_mergeable(struct btrfs_inode *inode, struct extent_buffer *leaf,
2aaa6655
JB
2293 int slot, u64 start, u64 end)
2294{
2295 struct btrfs_file_extent_item *fi;
2296 struct btrfs_key key;
2297
2298 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
2299 return 0;
2300
2301 btrfs_item_key_to_cpu(leaf, &key, slot);
35339c24 2302 if (key.objectid != btrfs_ino(inode) ||
2aaa6655
JB
2303 key.type != BTRFS_EXTENT_DATA_KEY)
2304 return 0;
2305
2306 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
2307
2308 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2309 return 0;
2310
2311 if (btrfs_file_extent_disk_bytenr(leaf, fi))
2312 return 0;
2313
2314 if (key.offset == end)
2315 return 1;
2316 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
2317 return 1;
2318 return 0;
2319}
2320
a012a74e
NB
2321static int fill_holes(struct btrfs_trans_handle *trans,
2322 struct btrfs_inode *inode,
2323 struct btrfs_path *path, u64 offset, u64 end)
2aaa6655 2324{
a012a74e
NB
2325 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
2326 struct btrfs_root *root = inode->root;
2aaa6655
JB
2327 struct extent_buffer *leaf;
2328 struct btrfs_file_extent_item *fi;
2329 struct extent_map *hole_em;
a012a74e 2330 struct extent_map_tree *em_tree = &inode->extent_tree;
2aaa6655
JB
2331 struct btrfs_key key;
2332 int ret;
2333
0b246afa 2334 if (btrfs_fs_incompat(fs_info, NO_HOLES))
16e7549f
JB
2335 goto out;
2336
a012a74e 2337 key.objectid = btrfs_ino(inode);
2aaa6655
JB
2338 key.type = BTRFS_EXTENT_DATA_KEY;
2339 key.offset = offset;
2340
2aaa6655 2341 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
f94480bd
JB
2342 if (ret <= 0) {
2343 /*
2344 * We should have dropped this offset, so if we find it then
2345 * something has gone horribly wrong.
2346 */
2347 if (ret == 0)
2348 ret = -EINVAL;
2aaa6655 2349 return ret;
f94480bd 2350 }
2aaa6655
JB
2351
2352 leaf = path->nodes[0];
a012a74e 2353 if (hole_mergeable(inode, leaf, path->slots[0] - 1, offset, end)) {
2aaa6655
JB
2354 u64 num_bytes;
2355
2356 path->slots[0]--;
2357 fi = btrfs_item_ptr(leaf, path->slots[0],
2358 struct btrfs_file_extent_item);
2359 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
2360 end - offset;
2361 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2362 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2363 btrfs_set_file_extent_offset(leaf, fi, 0);
2364 btrfs_mark_buffer_dirty(leaf);
2365 goto out;
2366 }
2367
1707e26d 2368 if (hole_mergeable(inode, leaf, path->slots[0], offset, end)) {
2aaa6655
JB
2369 u64 num_bytes;
2370
2aaa6655 2371 key.offset = offset;
0b246afa 2372 btrfs_set_item_key_safe(fs_info, path, &key);
2aaa6655
JB
2373 fi = btrfs_item_ptr(leaf, path->slots[0],
2374 struct btrfs_file_extent_item);
2375 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
2376 offset;
2377 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
2378 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
2379 btrfs_set_file_extent_offset(leaf, fi, 0);
2380 btrfs_mark_buffer_dirty(leaf);
2381 goto out;
2382 }
2383 btrfs_release_path(path);
2384
a012a74e 2385 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode),
f85b7379 2386 offset, 0, 0, end - offset, 0, end - offset, 0, 0, 0);
2aaa6655
JB
2387 if (ret)
2388 return ret;
2389
2390out:
2391 btrfs_release_path(path);
2392
2393 hole_em = alloc_extent_map();
2394 if (!hole_em) {
2395 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
a012a74e 2396 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
2aaa6655
JB
2397 } else {
2398 hole_em->start = offset;
2399 hole_em->len = end - offset;
cc95bef6 2400 hole_em->ram_bytes = hole_em->len;
2aaa6655
JB
2401 hole_em->orig_start = offset;
2402
2403 hole_em->block_start = EXTENT_MAP_HOLE;
2404 hole_em->block_len = 0;
b4939680 2405 hole_em->orig_block_len = 0;
0b246afa 2406 hole_em->bdev = fs_info->fs_devices->latest_bdev;
2aaa6655
JB
2407 hole_em->compress_type = BTRFS_COMPRESS_NONE;
2408 hole_em->generation = trans->transid;
2409
2410 do {
2411 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
2412 write_lock(&em_tree->lock);
09a2a8f9 2413 ret = add_extent_mapping(em_tree, hole_em, 1);
2aaa6655
JB
2414 write_unlock(&em_tree->lock);
2415 } while (ret == -EEXIST);
2416 free_extent_map(hole_em);
2417 if (ret)
2418 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
a012a74e 2419 &inode->runtime_flags);
2aaa6655
JB
2420 }
2421
2422 return 0;
2423}
2424
d7781546
QW
2425/*
2426 * Find a hole extent on given inode and change start/len to the end of hole
2427 * extent.(hole/vacuum extent whose em->start <= start &&
2428 * em->start + em->len > start)
2429 * When a hole extent is found, return 1 and modify start/len.
2430 */
2431static int find_first_non_hole(struct inode *inode, u64 *start, u64 *len)
2432{
609805d8 2433 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
d7781546
QW
2434 struct extent_map *em;
2435 int ret = 0;
2436
609805d8
FM
2437 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2438 round_down(*start, fs_info->sectorsize),
2439 round_up(*len, fs_info->sectorsize), 0);
9986277e
DC
2440 if (IS_ERR(em))
2441 return PTR_ERR(em);
d7781546
QW
2442
2443 /* Hole or vacuum extent(only exists in no-hole mode) */
2444 if (em->block_start == EXTENT_MAP_HOLE) {
2445 ret = 1;
2446 *len = em->start + em->len > *start + *len ?
2447 0 : *start + *len - em->start - em->len;
2448 *start = em->start + em->len;
2449 }
2450 free_extent_map(em);
2451 return ret;
2452}
2453
f27451f2
FM
2454static int btrfs_punch_hole_lock_range(struct inode *inode,
2455 const u64 lockstart,
2456 const u64 lockend,
2457 struct extent_state **cached_state)
2458{
2459 while (1) {
2460 struct btrfs_ordered_extent *ordered;
2461 int ret;
2462
2463 truncate_pagecache_range(inode, lockstart, lockend);
2464
2465 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2466 cached_state);
2467 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
2468
2469 /*
2470 * We need to make sure we have no ordered extents in this range
2471 * and nobody raced in and read a page in this range, if we did
2472 * we need to try again.
2473 */
2474 if ((!ordered ||
2475 (ordered->file_offset + ordered->len <= lockstart ||
2476 ordered->file_offset > lockend)) &&
051c98eb
DS
2477 !filemap_range_has_page(inode->i_mapping,
2478 lockstart, lockend)) {
f27451f2
FM
2479 if (ordered)
2480 btrfs_put_ordered_extent(ordered);
2481 break;
2482 }
2483 if (ordered)
2484 btrfs_put_ordered_extent(ordered);
2485 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
2486 lockend, cached_state);
2487 ret = btrfs_wait_ordered_range(inode, lockstart,
2488 lockend - lockstart + 1);
2489 if (ret)
2490 return ret;
2491 }
2492 return 0;
2493}
2494
2aaa6655
JB
2495static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
2496{
0b246afa 2497 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2aaa6655
JB
2498 struct btrfs_root *root = BTRFS_I(inode)->root;
2499 struct extent_state *cached_state = NULL;
2500 struct btrfs_path *path;
2501 struct btrfs_block_rsv *rsv;
2502 struct btrfs_trans_handle *trans;
d7781546
QW
2503 u64 lockstart;
2504 u64 lockend;
2505 u64 tail_start;
2506 u64 tail_len;
2507 u64 orig_start = offset;
2508 u64 cur_offset;
5f52a2c5 2509 u64 min_size = btrfs_calc_trans_metadata_size(fs_info, 1);
2aaa6655 2510 u64 drop_end;
2aaa6655
JB
2511 int ret = 0;
2512 int err = 0;
6e4d6fa1 2513 unsigned int rsv_count;
9703fefe 2514 bool same_block;
0b246afa 2515 bool no_holes = btrfs_fs_incompat(fs_info, NO_HOLES);
a1a50f60 2516 u64 ino_size;
9703fefe 2517 bool truncated_block = false;
e8c1c76e 2518 bool updated_inode = false;
2aaa6655 2519
0ef8b726
JB
2520 ret = btrfs_wait_ordered_range(inode, offset, len);
2521 if (ret)
2522 return ret;
2aaa6655 2523
5955102c 2524 inode_lock(inode);
0b246afa 2525 ino_size = round_up(inode->i_size, fs_info->sectorsize);
d7781546
QW
2526 ret = find_first_non_hole(inode, &offset, &len);
2527 if (ret < 0)
2528 goto out_only_mutex;
2529 if (ret && !len) {
2530 /* Already in a large hole */
2531 ret = 0;
2532 goto out_only_mutex;
2533 }
2534
da17066c 2535 lockstart = round_up(offset, btrfs_inode_sectorsize(inode));
d7781546 2536 lockend = round_down(offset + len,
da17066c 2537 btrfs_inode_sectorsize(inode)) - 1;
0b246afa
JM
2538 same_block = (BTRFS_BYTES_TO_BLKS(fs_info, offset))
2539 == (BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1));
7426cc04 2540 /*
9703fefe 2541 * We needn't truncate any block which is beyond the end of the file
7426cc04
MX
2542 * because we are sure there is no data there.
2543 */
2aaa6655 2544 /*
9703fefe
CR
2545 * Only do this if we are in the same block and we aren't doing the
2546 * entire block.
2aaa6655 2547 */
0b246afa 2548 if (same_block && len < fs_info->sectorsize) {
e8c1c76e 2549 if (offset < ino_size) {
9703fefe
CR
2550 truncated_block = true;
2551 ret = btrfs_truncate_block(inode, offset, len, 0);
e8c1c76e
FM
2552 } else {
2553 ret = 0;
2554 }
d7781546 2555 goto out_only_mutex;
2aaa6655
JB
2556 }
2557
9703fefe 2558 /* zero back part of the first block */
12870f1c 2559 if (offset < ino_size) {
9703fefe
CR
2560 truncated_block = true;
2561 ret = btrfs_truncate_block(inode, offset, 0, 0);
7426cc04 2562 if (ret) {
5955102c 2563 inode_unlock(inode);
7426cc04
MX
2564 return ret;
2565 }
2aaa6655
JB
2566 }
2567
d7781546
QW
2568 /* Check the aligned pages after the first unaligned page,
2569 * if offset != orig_start, which means the first unaligned page
01327610 2570 * including several following pages are already in holes,
d7781546
QW
2571 * the extra check can be skipped */
2572 if (offset == orig_start) {
2573 /* after truncate page, check hole again */
2574 len = offset + len - lockstart;
2575 offset = lockstart;
2576 ret = find_first_non_hole(inode, &offset, &len);
2577 if (ret < 0)
2578 goto out_only_mutex;
2579 if (ret && !len) {
2580 ret = 0;
2581 goto out_only_mutex;
2582 }
2583 lockstart = offset;
2584 }
2585
2586 /* Check the tail unaligned part is in a hole */
2587 tail_start = lockend + 1;
2588 tail_len = offset + len - tail_start;
2589 if (tail_len) {
2590 ret = find_first_non_hole(inode, &tail_start, &tail_len);
2591 if (unlikely(ret < 0))
2592 goto out_only_mutex;
2593 if (!ret) {
2594 /* zero the front end of the last page */
2595 if (tail_start + tail_len < ino_size) {
9703fefe
CR
2596 truncated_block = true;
2597 ret = btrfs_truncate_block(inode,
2598 tail_start + tail_len,
2599 0, 1);
d7781546
QW
2600 if (ret)
2601 goto out_only_mutex;
51f395ad 2602 }
0061280d 2603 }
2aaa6655
JB
2604 }
2605
2606 if (lockend < lockstart) {
e8c1c76e
FM
2607 ret = 0;
2608 goto out_only_mutex;
2aaa6655
JB
2609 }
2610
f27451f2
FM
2611 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
2612 &cached_state);
2613 if (ret) {
2614 inode_unlock(inode);
2615 goto out_only_mutex;
2aaa6655
JB
2616 }
2617
2618 path = btrfs_alloc_path();
2619 if (!path) {
2620 ret = -ENOMEM;
2621 goto out;
2622 }
2623
2ff7e61e 2624 rsv = btrfs_alloc_block_rsv(fs_info, BTRFS_BLOCK_RSV_TEMP);
2aaa6655
JB
2625 if (!rsv) {
2626 ret = -ENOMEM;
2627 goto out_free;
2628 }
5f52a2c5 2629 rsv->size = btrfs_calc_trans_metadata_size(fs_info, 1);
2aaa6655
JB
2630 rsv->failfast = 1;
2631
2632 /*
2633 * 1 - update the inode
2634 * 1 - removing the extents in the range
16e7549f 2635 * 1 - adding the hole extent if no_holes isn't set
2aaa6655 2636 */
16e7549f
JB
2637 rsv_count = no_holes ? 2 : 3;
2638 trans = btrfs_start_transaction(root, rsv_count);
2aaa6655
JB
2639 if (IS_ERR(trans)) {
2640 err = PTR_ERR(trans);
2641 goto out_free;
2642 }
2643
0b246afa 2644 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv, rsv,
25d609f8 2645 min_size, 0);
2aaa6655
JB
2646 BUG_ON(ret);
2647 trans->block_rsv = rsv;
2648
d7781546
QW
2649 cur_offset = lockstart;
2650 len = lockend - cur_offset;
2aaa6655
JB
2651 while (cur_offset < lockend) {
2652 ret = __btrfs_drop_extents(trans, root, inode, path,
2653 cur_offset, lockend + 1,
1acae57b 2654 &drop_end, 1, 0, 0, NULL);
2aaa6655
JB
2655 if (ret != -ENOSPC)
2656 break;
2657
0b246afa 2658 trans->block_rsv = &fs_info->trans_block_rsv;
2aaa6655 2659
62fe51c1 2660 if (cur_offset < drop_end && cur_offset < ino_size) {
a012a74e
NB
2661 ret = fill_holes(trans, BTRFS_I(inode), path,
2662 cur_offset, drop_end);
12870f1c 2663 if (ret) {
f94480bd
JB
2664 /*
2665 * If we failed then we didn't insert our hole
2666 * entries for the area we dropped, so now the
2667 * fs is corrupted, so we must abort the
2668 * transaction.
2669 */
2670 btrfs_abort_transaction(trans, ret);
12870f1c
FM
2671 err = ret;
2672 break;
2673 }
2aaa6655
JB
2674 }
2675
2676 cur_offset = drop_end;
2677
2678 ret = btrfs_update_inode(trans, root, inode);
2679 if (ret) {
2680 err = ret;
2681 break;
2682 }
2683
3a45bb20 2684 btrfs_end_transaction(trans);
2ff7e61e 2685 btrfs_btree_balance_dirty(fs_info);
2aaa6655 2686
16e7549f 2687 trans = btrfs_start_transaction(root, rsv_count);
2aaa6655
JB
2688 if (IS_ERR(trans)) {
2689 ret = PTR_ERR(trans);
2690 trans = NULL;
2691 break;
2692 }
2693
0b246afa 2694 ret = btrfs_block_rsv_migrate(&fs_info->trans_block_rsv,
25d609f8 2695 rsv, min_size, 0);
2aaa6655
JB
2696 BUG_ON(ret); /* shouldn't happen */
2697 trans->block_rsv = rsv;
d7781546
QW
2698
2699 ret = find_first_non_hole(inode, &cur_offset, &len);
2700 if (unlikely(ret < 0))
2701 break;
2702 if (ret && !len) {
2703 ret = 0;
2704 break;
2705 }
2aaa6655
JB
2706 }
2707
2708 if (ret) {
2709 err = ret;
2710 goto out_trans;
2711 }
2712
0b246afa 2713 trans->block_rsv = &fs_info->trans_block_rsv;
2959a32a
FM
2714 /*
2715 * If we are using the NO_HOLES feature we might have had already an
2716 * hole that overlaps a part of the region [lockstart, lockend] and
2717 * ends at (or beyond) lockend. Since we have no file extent items to
2718 * represent holes, drop_end can be less than lockend and so we must
2719 * make sure we have an extent map representing the existing hole (the
2720 * call to __btrfs_drop_extents() might have dropped the existing extent
2721 * map representing the existing hole), otherwise the fast fsync path
2722 * will not record the existence of the hole region
2723 * [existing_hole_start, lockend].
2724 */
2725 if (drop_end <= lockend)
2726 drop_end = lockend + 1;
fc19c5e7
FM
2727 /*
2728 * Don't insert file hole extent item if it's for a range beyond eof
2729 * (because it's useless) or if it represents a 0 bytes range (when
2730 * cur_offset == drop_end).
2731 */
2732 if (cur_offset < ino_size && cur_offset < drop_end) {
a012a74e
NB
2733 ret = fill_holes(trans, BTRFS_I(inode), path,
2734 cur_offset, drop_end);
12870f1c 2735 if (ret) {
f94480bd
JB
2736 /* Same comment as above. */
2737 btrfs_abort_transaction(trans, ret);
12870f1c
FM
2738 err = ret;
2739 goto out_trans;
2740 }
2aaa6655
JB
2741 }
2742
2743out_trans:
2744 if (!trans)
2745 goto out_free;
2746
e1f5790e 2747 inode_inc_iversion(inode);
c2050a45 2748 inode->i_mtime = inode->i_ctime = current_time(inode);
e1f5790e 2749
0b246afa 2750 trans->block_rsv = &fs_info->trans_block_rsv;
2aaa6655 2751 ret = btrfs_update_inode(trans, root, inode);
e8c1c76e 2752 updated_inode = true;
3a45bb20 2753 btrfs_end_transaction(trans);
2ff7e61e 2754 btrfs_btree_balance_dirty(fs_info);
2aaa6655
JB
2755out_free:
2756 btrfs_free_path(path);
2ff7e61e 2757 btrfs_free_block_rsv(fs_info, rsv);
2aaa6655
JB
2758out:
2759 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
e43bbe5e 2760 &cached_state);
d7781546 2761out_only_mutex:
9703fefe 2762 if (!updated_inode && truncated_block && !ret && !err) {
e8c1c76e
FM
2763 /*
2764 * If we only end up zeroing part of a page, we still need to
2765 * update the inode item, so that all the time fields are
2766 * updated as well as the necessary btrfs inode in memory fields
2767 * for detecting, at fsync time, if the inode isn't yet in the
2768 * log tree or it's there but not up to date.
2769 */
2770 trans = btrfs_start_transaction(root, 1);
2771 if (IS_ERR(trans)) {
2772 err = PTR_ERR(trans);
2773 } else {
2774 err = btrfs_update_inode(trans, root, inode);
3a45bb20 2775 ret = btrfs_end_transaction(trans);
e8c1c76e
FM
2776 }
2777 }
5955102c 2778 inode_unlock(inode);
2aaa6655
JB
2779 if (ret && !err)
2780 err = ret;
2781 return err;
2782}
2783
14524a84
QW
2784/* Helper structure to record which range is already reserved */
2785struct falloc_range {
2786 struct list_head list;
2787 u64 start;
2788 u64 len;
2789};
2790
2791/*
2792 * Helper function to add falloc range
2793 *
2794 * Caller should have locked the larger range of extent containing
2795 * [start, len)
2796 */
2797static int add_falloc_range(struct list_head *head, u64 start, u64 len)
2798{
2799 struct falloc_range *prev = NULL;
2800 struct falloc_range *range = NULL;
2801
2802 if (list_empty(head))
2803 goto insert;
2804
2805 /*
2806 * As fallocate iterate by bytenr order, we only need to check
2807 * the last range.
2808 */
2809 prev = list_entry(head->prev, struct falloc_range, list);
2810 if (prev->start + prev->len == start) {
2811 prev->len += len;
2812 return 0;
2813 }
2814insert:
32fc932e 2815 range = kmalloc(sizeof(*range), GFP_KERNEL);
14524a84
QW
2816 if (!range)
2817 return -ENOMEM;
2818 range->start = start;
2819 range->len = len;
2820 list_add_tail(&range->list, head);
2821 return 0;
2822}
2823
f27451f2
FM
2824static int btrfs_fallocate_update_isize(struct inode *inode,
2825 const u64 end,
2826 const int mode)
2827{
2828 struct btrfs_trans_handle *trans;
2829 struct btrfs_root *root = BTRFS_I(inode)->root;
2830 int ret;
2831 int ret2;
2832
2833 if (mode & FALLOC_FL_KEEP_SIZE || end <= i_size_read(inode))
2834 return 0;
2835
2836 trans = btrfs_start_transaction(root, 1);
2837 if (IS_ERR(trans))
2838 return PTR_ERR(trans);
2839
2840 inode->i_ctime = current_time(inode);
2841 i_size_write(inode, end);
2842 btrfs_ordered_update_i_size(inode, end, NULL);
2843 ret = btrfs_update_inode(trans, root, inode);
2844 ret2 = btrfs_end_transaction(trans);
2845
2846 return ret ? ret : ret2;
2847}
2848
81fdf638
FM
2849enum {
2850 RANGE_BOUNDARY_WRITTEN_EXTENT = 0,
2851 RANGE_BOUNDARY_PREALLOC_EXTENT = 1,
2852 RANGE_BOUNDARY_HOLE = 2,
2853};
2854
f27451f2
FM
2855static int btrfs_zero_range_check_range_boundary(struct inode *inode,
2856 u64 offset)
2857{
2858 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2859 struct extent_map *em;
81fdf638 2860 int ret;
f27451f2
FM
2861
2862 offset = round_down(offset, sectorsize);
2863 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, offset, sectorsize, 0);
2864 if (IS_ERR(em))
2865 return PTR_ERR(em);
2866
2867 if (em->block_start == EXTENT_MAP_HOLE)
81fdf638
FM
2868 ret = RANGE_BOUNDARY_HOLE;
2869 else if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
2870 ret = RANGE_BOUNDARY_PREALLOC_EXTENT;
2871 else
2872 ret = RANGE_BOUNDARY_WRITTEN_EXTENT;
f27451f2
FM
2873
2874 free_extent_map(em);
2875 return ret;
2876}
2877
2878static int btrfs_zero_range(struct inode *inode,
2879 loff_t offset,
2880 loff_t len,
2881 const int mode)
2882{
2883 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2884 struct extent_map *em;
2885 struct extent_changeset *data_reserved = NULL;
2886 int ret;
2887 u64 alloc_hint = 0;
2888 const u64 sectorsize = btrfs_inode_sectorsize(inode);
2889 u64 alloc_start = round_down(offset, sectorsize);
2890 u64 alloc_end = round_up(offset + len, sectorsize);
2891 u64 bytes_to_reserve = 0;
2892 bool space_reserved = false;
2893
2894 inode_dio_wait(inode);
2895
2896 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2897 alloc_start, alloc_end - alloc_start, 0);
2898 if (IS_ERR(em)) {
2899 ret = PTR_ERR(em);
2900 goto out;
2901 }
2902
2903 /*
2904 * Avoid hole punching and extent allocation for some cases. More cases
2905 * could be considered, but these are unlikely common and we keep things
2906 * as simple as possible for now. Also, intentionally, if the target
2907 * range contains one or more prealloc extents together with regular
2908 * extents and holes, we drop all the existing extents and allocate a
2909 * new prealloc extent, so that we get a larger contiguous disk extent.
2910 */
2911 if (em->start <= alloc_start &&
2912 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2913 const u64 em_end = em->start + em->len;
2914
2915 if (em_end >= offset + len) {
2916 /*
2917 * The whole range is already a prealloc extent,
2918 * do nothing except updating the inode's i_size if
2919 * needed.
2920 */
2921 free_extent_map(em);
2922 ret = btrfs_fallocate_update_isize(inode, offset + len,
2923 mode);
2924 goto out;
2925 }
2926 /*
2927 * Part of the range is already a prealloc extent, so operate
2928 * only on the remaining part of the range.
2929 */
2930 alloc_start = em_end;
2931 ASSERT(IS_ALIGNED(alloc_start, sectorsize));
2932 len = offset + len - alloc_start;
2933 offset = alloc_start;
2934 alloc_hint = em->block_start + em->len;
2935 }
2936 free_extent_map(em);
2937
2938 if (BTRFS_BYTES_TO_BLKS(fs_info, offset) ==
2939 BTRFS_BYTES_TO_BLKS(fs_info, offset + len - 1)) {
2940 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0,
2941 alloc_start, sectorsize, 0);
2942 if (IS_ERR(em)) {
2943 ret = PTR_ERR(em);
2944 goto out;
2945 }
2946
2947 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
2948 free_extent_map(em);
2949 ret = btrfs_fallocate_update_isize(inode, offset + len,
2950 mode);
2951 goto out;
2952 }
2953 if (len < sectorsize && em->block_start != EXTENT_MAP_HOLE) {
2954 free_extent_map(em);
2955 ret = btrfs_truncate_block(inode, offset, len, 0);
2956 if (!ret)
2957 ret = btrfs_fallocate_update_isize(inode,
2958 offset + len,
2959 mode);
2960 return ret;
2961 }
2962 free_extent_map(em);
2963 alloc_start = round_down(offset, sectorsize);
2964 alloc_end = alloc_start + sectorsize;
2965 goto reserve_space;
2966 }
2967
2968 alloc_start = round_up(offset, sectorsize);
2969 alloc_end = round_down(offset + len, sectorsize);
2970
2971 /*
2972 * For unaligned ranges, check the pages at the boundaries, they might
2973 * map to an extent, in which case we need to partially zero them, or
2974 * they might map to a hole, in which case we need our allocation range
2975 * to cover them.
2976 */
2977 if (!IS_ALIGNED(offset, sectorsize)) {
2978 ret = btrfs_zero_range_check_range_boundary(inode, offset);
2979 if (ret < 0)
2980 goto out;
81fdf638 2981 if (ret == RANGE_BOUNDARY_HOLE) {
f27451f2
FM
2982 alloc_start = round_down(offset, sectorsize);
2983 ret = 0;
81fdf638 2984 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
f27451f2
FM
2985 ret = btrfs_truncate_block(inode, offset, 0, 0);
2986 if (ret)
2987 goto out;
81fdf638
FM
2988 } else {
2989 ret = 0;
f27451f2
FM
2990 }
2991 }
2992
2993 if (!IS_ALIGNED(offset + len, sectorsize)) {
2994 ret = btrfs_zero_range_check_range_boundary(inode,
2995 offset + len);
2996 if (ret < 0)
2997 goto out;
81fdf638 2998 if (ret == RANGE_BOUNDARY_HOLE) {
f27451f2
FM
2999 alloc_end = round_up(offset + len, sectorsize);
3000 ret = 0;
81fdf638 3001 } else if (ret == RANGE_BOUNDARY_WRITTEN_EXTENT) {
f27451f2
FM
3002 ret = btrfs_truncate_block(inode, offset + len, 0, 1);
3003 if (ret)
3004 goto out;
81fdf638
FM
3005 } else {
3006 ret = 0;
f27451f2
FM
3007 }
3008 }
3009
3010reserve_space:
3011 if (alloc_start < alloc_end) {
3012 struct extent_state *cached_state = NULL;
3013 const u64 lockstart = alloc_start;
3014 const u64 lockend = alloc_end - 1;
3015
3016 bytes_to_reserve = alloc_end - alloc_start;
3017 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3018 bytes_to_reserve);
3019 if (ret < 0)
3020 goto out;
3021 space_reserved = true;
3022 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3023 alloc_start, bytes_to_reserve);
3024 if (ret)
3025 goto out;
3026 ret = btrfs_punch_hole_lock_range(inode, lockstart, lockend,
3027 &cached_state);
3028 if (ret)
3029 goto out;
3030 ret = btrfs_prealloc_file_range(inode, mode, alloc_start,
3031 alloc_end - alloc_start,
3032 i_blocksize(inode),
3033 offset + len, &alloc_hint);
3034 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
3035 lockend, &cached_state);
3036 /* btrfs_prealloc_file_range releases reserved space on error */
9f13ce74 3037 if (ret) {
f27451f2 3038 space_reserved = false;
9f13ce74
FM
3039 goto out;
3040 }
f27451f2 3041 }
9f13ce74 3042 ret = btrfs_fallocate_update_isize(inode, offset + len, mode);
f27451f2
FM
3043 out:
3044 if (ret && space_reserved)
3045 btrfs_free_reserved_data_space(inode, data_reserved,
3046 alloc_start, bytes_to_reserve);
3047 extent_changeset_free(data_reserved);
3048
3049 return ret;
3050}
3051
2fe17c10
CH
3052static long btrfs_fallocate(struct file *file, int mode,
3053 loff_t offset, loff_t len)
3054{
496ad9aa 3055 struct inode *inode = file_inode(file);
2fe17c10 3056 struct extent_state *cached_state = NULL;
364ecf36 3057 struct extent_changeset *data_reserved = NULL;
14524a84
QW
3058 struct falloc_range *range;
3059 struct falloc_range *tmp;
3060 struct list_head reserve_list;
2fe17c10
CH
3061 u64 cur_offset;
3062 u64 last_byte;
3063 u64 alloc_start;
3064 u64 alloc_end;
3065 u64 alloc_hint = 0;
3066 u64 locked_end;
14524a84 3067 u64 actual_end = 0;
2fe17c10 3068 struct extent_map *em;
da17066c 3069 int blocksize = btrfs_inode_sectorsize(inode);
2fe17c10
CH
3070 int ret;
3071
797f4277
MX
3072 alloc_start = round_down(offset, blocksize);
3073 alloc_end = round_up(offset + len, blocksize);
18513091 3074 cur_offset = alloc_start;
2fe17c10 3075
2aaa6655 3076 /* Make sure we aren't being give some crap mode */
f27451f2
FM
3077 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE |
3078 FALLOC_FL_ZERO_RANGE))
2fe17c10
CH
3079 return -EOPNOTSUPP;
3080
2aaa6655
JB
3081 if (mode & FALLOC_FL_PUNCH_HOLE)
3082 return btrfs_punch_hole(inode, offset, len);
3083
d98456fc 3084 /*
14524a84
QW
3085 * Only trigger disk allocation, don't trigger qgroup reserve
3086 *
3087 * For qgroup space, it will be checked later.
d98456fc 3088 */
f27451f2
FM
3089 if (!(mode & FALLOC_FL_ZERO_RANGE)) {
3090 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode),
3091 alloc_end - alloc_start);
3092 if (ret < 0)
3093 return ret;
3094 }
d98456fc 3095
5955102c 3096 inode_lock(inode);
2a162ce9
DI
3097
3098 if (!(mode & FALLOC_FL_KEEP_SIZE) && offset + len > inode->i_size) {
3099 ret = inode_newsize_ok(inode, offset + len);
3100 if (ret)
3101 goto out;
3102 }
2fe17c10 3103
14524a84
QW
3104 /*
3105 * TODO: Move these two operations after we have checked
3106 * accurate reserved space, or fallocate can still fail but
3107 * with page truncated or size expanded.
3108 *
3109 * But that's a minor problem and won't do much harm BTW.
3110 */
2fe17c10 3111 if (alloc_start > inode->i_size) {
a41ad394
JB
3112 ret = btrfs_cont_expand(inode, i_size_read(inode),
3113 alloc_start);
2fe17c10
CH
3114 if (ret)
3115 goto out;
0f6925fa 3116 } else if (offset + len > inode->i_size) {
a71754fc
JB
3117 /*
3118 * If we are fallocating from the end of the file onward we
9703fefe
CR
3119 * need to zero out the end of the block if i_size lands in the
3120 * middle of a block.
a71754fc 3121 */
9703fefe 3122 ret = btrfs_truncate_block(inode, inode->i_size, 0, 0);
a71754fc
JB
3123 if (ret)
3124 goto out;
2fe17c10
CH
3125 }
3126
a71754fc
JB
3127 /*
3128 * wait for ordered IO before we have any locks. We'll loop again
3129 * below with the locks held.
3130 */
0ef8b726
JB
3131 ret = btrfs_wait_ordered_range(inode, alloc_start,
3132 alloc_end - alloc_start);
3133 if (ret)
3134 goto out;
a71754fc 3135
f27451f2
FM
3136 if (mode & FALLOC_FL_ZERO_RANGE) {
3137 ret = btrfs_zero_range(inode, offset, len, mode);
3138 inode_unlock(inode);
3139 return ret;
3140 }
3141
2fe17c10
CH
3142 locked_end = alloc_end - 1;
3143 while (1) {
3144 struct btrfs_ordered_extent *ordered;
3145
3146 /* the extent lock is ordered inside the running
3147 * transaction
3148 */
3149 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
ff13db41 3150 locked_end, &cached_state);
96b09dde
NB
3151 ordered = btrfs_lookup_first_ordered_extent(inode, locked_end);
3152
2fe17c10
CH
3153 if (ordered &&
3154 ordered->file_offset + ordered->len > alloc_start &&
3155 ordered->file_offset < alloc_end) {
3156 btrfs_put_ordered_extent(ordered);
3157 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
3158 alloc_start, locked_end,
e43bbe5e 3159 &cached_state);
2fe17c10
CH
3160 /*
3161 * we can't wait on the range with the transaction
3162 * running or with the extent lock held
3163 */
0ef8b726
JB
3164 ret = btrfs_wait_ordered_range(inode, alloc_start,
3165 alloc_end - alloc_start);
3166 if (ret)
3167 goto out;
2fe17c10
CH
3168 } else {
3169 if (ordered)
3170 btrfs_put_ordered_extent(ordered);
3171 break;
3172 }
3173 }
3174
14524a84
QW
3175 /* First, check if we exceed the qgroup limit */
3176 INIT_LIST_HEAD(&reserve_list);
6b7d6e93 3177 while (cur_offset < alloc_end) {
fc4f21b1 3178 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, cur_offset,
2fe17c10 3179 alloc_end - cur_offset, 0);
9986277e
DC
3180 if (IS_ERR(em)) {
3181 ret = PTR_ERR(em);
79787eaa
JM
3182 break;
3183 }
2fe17c10 3184 last_byte = min(extent_map_end(em), alloc_end);
f1e490a7 3185 actual_end = min_t(u64, extent_map_end(em), offset + len);
797f4277 3186 last_byte = ALIGN(last_byte, blocksize);
2fe17c10
CH
3187 if (em->block_start == EXTENT_MAP_HOLE ||
3188 (cur_offset >= inode->i_size &&
3189 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
14524a84
QW
3190 ret = add_falloc_range(&reserve_list, cur_offset,
3191 last_byte - cur_offset);
3192 if (ret < 0) {
3193 free_extent_map(em);
3194 break;
3d850dd4 3195 }
364ecf36
QW
3196 ret = btrfs_qgroup_reserve_data(inode, &data_reserved,
3197 cur_offset, last_byte - cur_offset);
be2d253c
FM
3198 if (ret < 0) {
3199 free_extent_map(em);
14524a84 3200 break;
be2d253c 3201 }
18513091
WX
3202 } else {
3203 /*
3204 * Do not need to reserve unwritten extent for this
3205 * range, free reserved data space first, otherwise
3206 * it'll result in false ENOSPC error.
3207 */
bc42bda2
QW
3208 btrfs_free_reserved_data_space(inode, data_reserved,
3209 cur_offset, last_byte - cur_offset);
2fe17c10
CH
3210 }
3211 free_extent_map(em);
2fe17c10 3212 cur_offset = last_byte;
14524a84
QW
3213 }
3214
3215 /*
3216 * If ret is still 0, means we're OK to fallocate.
3217 * Or just cleanup the list and exit.
3218 */
3219 list_for_each_entry_safe(range, tmp, &reserve_list, list) {
3220 if (!ret)
3221 ret = btrfs_prealloc_file_range(inode, mode,
3222 range->start,
93407472 3223 range->len, i_blocksize(inode),
14524a84 3224 offset + len, &alloc_hint);
18513091 3225 else
bc42bda2
QW
3226 btrfs_free_reserved_data_space(inode,
3227 data_reserved, range->start,
3228 range->len);
14524a84
QW
3229 list_del(&range->list);
3230 kfree(range);
3231 }
3232 if (ret < 0)
3233 goto out_unlock;
3234
f27451f2
FM
3235 /*
3236 * We didn't need to allocate any more space, but we still extended the
3237 * size of the file so we need to update i_size and the inode item.
3238 */
3239 ret = btrfs_fallocate_update_isize(inode, actual_end, mode);
14524a84 3240out_unlock:
2fe17c10 3241 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
e43bbe5e 3242 &cached_state);
2fe17c10 3243out:
5955102c 3244 inode_unlock(inode);
d98456fc 3245 /* Let go of our reservation. */
f27451f2 3246 if (ret != 0 && !(mode & FALLOC_FL_ZERO_RANGE))
bc42bda2
QW
3247 btrfs_free_reserved_data_space(inode, data_reserved,
3248 alloc_start, alloc_end - cur_offset);
364ecf36 3249 extent_changeset_free(data_reserved);
2fe17c10
CH
3250 return ret;
3251}
3252
965c8e59 3253static int find_desired_extent(struct inode *inode, loff_t *offset, int whence)
b2675157 3254{
0b246afa 3255 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7f4ca37c 3256 struct extent_map *em = NULL;
b2675157 3257 struct extent_state *cached_state = NULL;
4d1a40c6
LB
3258 u64 lockstart;
3259 u64 lockend;
3260 u64 start;
3261 u64 len;
b2675157
JB
3262 int ret = 0;
3263
4d1a40c6
LB
3264 if (inode->i_size == 0)
3265 return -ENXIO;
3266
3267 /*
3268 * *offset can be negative, in this case we start finding DATA/HOLE from
3269 * the very start of the file.
3270 */
3271 start = max_t(loff_t, 0, *offset);
3272
0b246afa 3273 lockstart = round_down(start, fs_info->sectorsize);
da17066c 3274 lockend = round_up(i_size_read(inode),
0b246afa 3275 fs_info->sectorsize);
b2675157 3276 if (lockend <= lockstart)
0b246afa 3277 lockend = lockstart + fs_info->sectorsize;
1214b53f 3278 lockend--;
b2675157
JB
3279 len = lockend - lockstart + 1;
3280
ff13db41 3281 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
d0082371 3282 &cached_state);
b2675157 3283
7f4ca37c 3284 while (start < inode->i_size) {
fc4f21b1
NB
3285 em = btrfs_get_extent_fiemap(BTRFS_I(inode), NULL, 0,
3286 start, len, 0);
b2675157 3287 if (IS_ERR(em)) {
6af021d8 3288 ret = PTR_ERR(em);
7f4ca37c 3289 em = NULL;
b2675157
JB
3290 break;
3291 }
3292
7f4ca37c
JB
3293 if (whence == SEEK_HOLE &&
3294 (em->block_start == EXTENT_MAP_HOLE ||
3295 test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3296 break;
3297 else if (whence == SEEK_DATA &&
3298 (em->block_start != EXTENT_MAP_HOLE &&
3299 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags)))
3300 break;
b2675157
JB
3301
3302 start = em->start + em->len;
b2675157 3303 free_extent_map(em);
7f4ca37c 3304 em = NULL;
b2675157
JB
3305 cond_resched();
3306 }
7f4ca37c
JB
3307 free_extent_map(em);
3308 if (!ret) {
3309 if (whence == SEEK_DATA && start >= inode->i_size)
3310 ret = -ENXIO;
3311 else
3312 *offset = min_t(loff_t, start, inode->i_size);
3313 }
b2675157 3314 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
e43bbe5e 3315 &cached_state);
b2675157
JB
3316 return ret;
3317}
3318
965c8e59 3319static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int whence)
b2675157
JB
3320{
3321 struct inode *inode = file->f_mapping->host;
3322 int ret;
3323
5955102c 3324 inode_lock(inode);
965c8e59 3325 switch (whence) {
b2675157
JB
3326 case SEEK_END:
3327 case SEEK_CUR:
965c8e59 3328 offset = generic_file_llseek(file, offset, whence);
b2675157
JB
3329 goto out;
3330 case SEEK_DATA:
3331 case SEEK_HOLE:
48802c8a 3332 if (offset >= i_size_read(inode)) {
5955102c 3333 inode_unlock(inode);
48802c8a
JL
3334 return -ENXIO;
3335 }
3336
965c8e59 3337 ret = find_desired_extent(inode, &offset, whence);
b2675157 3338 if (ret) {
5955102c 3339 inode_unlock(inode);
b2675157
JB
3340 return ret;
3341 }
3342 }
3343
46a1c2c7 3344 offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
b2675157 3345out:
5955102c 3346 inode_unlock(inode);
b2675157
JB
3347 return offset;
3348}
3349
edf064e7
GR
3350static int btrfs_file_open(struct inode *inode, struct file *filp)
3351{
91f9943e 3352 filp->f_mode |= FMODE_NOWAIT;
edf064e7
GR
3353 return generic_file_open(inode, filp);
3354}
3355
828c0950 3356const struct file_operations btrfs_file_operations = {
b2675157 3357 .llseek = btrfs_file_llseek,
aad4f8bb 3358 .read_iter = generic_file_read_iter,
e9906a98 3359 .splice_read = generic_file_splice_read,
b30ac0fc 3360 .write_iter = btrfs_file_write_iter,
9ebefb18 3361 .mmap = btrfs_file_mmap,
edf064e7 3362 .open = btrfs_file_open,
e1b81e67 3363 .release = btrfs_release_file,
39279cc3 3364 .fsync = btrfs_sync_file,
2fe17c10 3365 .fallocate = btrfs_fallocate,
34287aa3 3366 .unlocked_ioctl = btrfs_ioctl,
39279cc3 3367#ifdef CONFIG_COMPAT
4c63c245 3368 .compat_ioctl = btrfs_compat_ioctl,
39279cc3 3369#endif
04b38d60 3370 .clone_file_range = btrfs_clone_file_range,
2b3909f8 3371 .dedupe_file_range = btrfs_dedupe_file_range,
39279cc3 3372};
9247f317 3373
e67c718b 3374void __cold btrfs_auto_defrag_exit(void)
9247f317 3375{
5598e900 3376 kmem_cache_destroy(btrfs_inode_defrag_cachep);
9247f317
MX
3377}
3378
f5c29bd9 3379int __init btrfs_auto_defrag_init(void)
9247f317
MX
3380{
3381 btrfs_inode_defrag_cachep = kmem_cache_create("btrfs_inode_defrag",
3382 sizeof(struct inode_defrag), 0,
fba4b697 3383 SLAB_MEM_SPREAD,
9247f317
MX
3384 NULL);
3385 if (!btrfs_inode_defrag_cachep)
3386 return -ENOMEM;
3387
3388 return 0;
3389}
728404da
FM
3390
3391int btrfs_fdatawrite_range(struct inode *inode, loff_t start, loff_t end)
3392{
3393 int ret;
3394
3395 /*
3396 * So with compression we will find and lock a dirty page and clear the
3397 * first one as dirty, setup an async extent, and immediately return
3398 * with the entire range locked but with nobody actually marked with
3399 * writeback. So we can't just filemap_write_and_wait_range() and
3400 * expect it to work since it will just kick off a thread to do the
3401 * actual work. So we need to call filemap_fdatawrite_range _again_
3402 * since it will wait on the page lock, which won't be unlocked until
3403 * after the pages have been marked as writeback and so we're good to go
3404 * from there. We have to do this otherwise we'll miss the ordered
3405 * extents and that results in badness. Please Josef, do not think you
3406 * know better and pull this out at some point in the future, it is
3407 * right and you are wrong.
3408 */
3409 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3410 if (!ret && test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
3411 &BTRFS_I(inode)->runtime_flags))
3412 ret = filemap_fdatawrite_range(inode->i_mapping, start, end);
3413
3414 return ret;
3415}