Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 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 | |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 19 | #include <linux/slab.h> |
Chris Mason | d6bfde8 | 2008-04-30 13:59:35 -0400 | [diff] [blame] | 20 | #include <linux/blkdev.h> |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 21 | #include <linux/writeback.h> |
| 22 | #include <linux/pagevec.h> |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 23 | #include "ctree.h" |
| 24 | #include "transaction.h" |
| 25 | #include "btrfs_inode.h" |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 26 | #include "extent_io.h" |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 27 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 28 | static u64 entry_end(struct btrfs_ordered_extent *entry) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 29 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 30 | if (entry->file_offset + entry->len < entry->file_offset) |
| 31 | return (u64)-1; |
| 32 | return entry->file_offset + entry->len; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 33 | } |
| 34 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 35 | /* returns NULL if the insertion worked, or it returns the node it did find |
| 36 | * in the tree |
| 37 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 38 | static struct rb_node *tree_insert(struct rb_root *root, u64 file_offset, |
| 39 | struct rb_node *node) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 40 | { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 41 | struct rb_node **p = &root->rb_node; |
| 42 | struct rb_node *parent = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 43 | struct btrfs_ordered_extent *entry; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 44 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 45 | while (*p) { |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 46 | parent = *p; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 47 | entry = rb_entry(parent, struct btrfs_ordered_extent, rb_node); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 48 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 49 | if (file_offset < entry->file_offset) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 50 | p = &(*p)->rb_left; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 51 | else if (file_offset >= entry_end(entry)) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 52 | p = &(*p)->rb_right; |
| 53 | else |
| 54 | return parent; |
| 55 | } |
| 56 | |
| 57 | rb_link_node(node, parent, p); |
| 58 | rb_insert_color(node, root); |
| 59 | return NULL; |
| 60 | } |
| 61 | |
Jeff Mahoney | 43c04fb | 2011-10-03 23:22:33 -0400 | [diff] [blame] | 62 | static void ordered_data_tree_panic(struct inode *inode, int errno, |
| 63 | u64 offset) |
| 64 | { |
| 65 | struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb); |
| 66 | btrfs_panic(fs_info, errno, "Inconsistency in ordered tree at offset " |
| 67 | "%llu\n", (unsigned long long)offset); |
| 68 | } |
| 69 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 70 | /* |
| 71 | * look for a given offset in the tree, and if it can't be found return the |
| 72 | * first lesser offset |
| 73 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 74 | static struct rb_node *__tree_search(struct rb_root *root, u64 file_offset, |
| 75 | struct rb_node **prev_ret) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 76 | { |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 77 | struct rb_node *n = root->rb_node; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 78 | struct rb_node *prev = NULL; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 79 | struct rb_node *test; |
| 80 | struct btrfs_ordered_extent *entry; |
| 81 | struct btrfs_ordered_extent *prev_entry = NULL; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 82 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 83 | while (n) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 84 | entry = rb_entry(n, struct btrfs_ordered_extent, rb_node); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 85 | prev = n; |
| 86 | prev_entry = entry; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 87 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 88 | if (file_offset < entry->file_offset) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 89 | n = n->rb_left; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 90 | else if (file_offset >= entry_end(entry)) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 91 | n = n->rb_right; |
| 92 | else |
| 93 | return n; |
| 94 | } |
| 95 | if (!prev_ret) |
| 96 | return NULL; |
| 97 | |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 98 | while (prev && file_offset >= entry_end(prev_entry)) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 99 | test = rb_next(prev); |
| 100 | if (!test) |
| 101 | break; |
| 102 | prev_entry = rb_entry(test, struct btrfs_ordered_extent, |
| 103 | rb_node); |
| 104 | if (file_offset < entry_end(prev_entry)) |
| 105 | break; |
| 106 | |
| 107 | prev = test; |
| 108 | } |
| 109 | if (prev) |
| 110 | prev_entry = rb_entry(prev, struct btrfs_ordered_extent, |
| 111 | rb_node); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 112 | while (prev && file_offset < entry_end(prev_entry)) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 113 | test = rb_prev(prev); |
| 114 | if (!test) |
| 115 | break; |
| 116 | prev_entry = rb_entry(test, struct btrfs_ordered_extent, |
| 117 | rb_node); |
| 118 | prev = test; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 119 | } |
| 120 | *prev_ret = prev; |
| 121 | return NULL; |
| 122 | } |
| 123 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 124 | /* |
| 125 | * helper to check if a given offset is inside a given entry |
| 126 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 127 | static int offset_in_entry(struct btrfs_ordered_extent *entry, u64 file_offset) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 128 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 129 | if (file_offset < entry->file_offset || |
| 130 | entry->file_offset + entry->len <= file_offset) |
| 131 | return 0; |
| 132 | return 1; |
| 133 | } |
| 134 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 135 | static int range_overlaps(struct btrfs_ordered_extent *entry, u64 file_offset, |
| 136 | u64 len) |
| 137 | { |
| 138 | if (file_offset + len <= entry->file_offset || |
| 139 | entry->file_offset + entry->len <= file_offset) |
| 140 | return 0; |
| 141 | return 1; |
| 142 | } |
| 143 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 144 | /* |
| 145 | * look find the first ordered struct that has this offset, otherwise |
| 146 | * the first one less than this offset |
| 147 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 148 | static inline struct rb_node *tree_search(struct btrfs_ordered_inode_tree *tree, |
| 149 | u64 file_offset) |
| 150 | { |
| 151 | struct rb_root *root = &tree->tree; |
Chris Mason | c87fb6f | 2011-01-31 19:54:59 -0500 | [diff] [blame] | 152 | struct rb_node *prev = NULL; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 153 | struct rb_node *ret; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 154 | struct btrfs_ordered_extent *entry; |
| 155 | |
| 156 | if (tree->last) { |
| 157 | entry = rb_entry(tree->last, struct btrfs_ordered_extent, |
| 158 | rb_node); |
| 159 | if (offset_in_entry(entry, file_offset)) |
| 160 | return tree->last; |
| 161 | } |
| 162 | ret = __tree_search(root, file_offset, &prev); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 163 | if (!ret) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 164 | ret = prev; |
| 165 | if (ret) |
| 166 | tree->last = ret; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 167 | return ret; |
| 168 | } |
| 169 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 170 | /* allocate and add a new ordered_extent into the per-inode tree. |
| 171 | * file_offset is the logical offset in the file |
| 172 | * |
| 173 | * start is the disk block number of an extent already reserved in the |
| 174 | * extent allocation tree |
| 175 | * |
| 176 | * len is the length of the extent |
| 177 | * |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 178 | * The tree is given a single reference on the ordered extent that was |
| 179 | * inserted. |
| 180 | */ |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 181 | static int __btrfs_add_ordered_extent(struct inode *inode, u64 file_offset, |
| 182 | u64 start, u64 len, u64 disk_len, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 183 | int type, int dio, int compress_type) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 184 | { |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 185 | struct btrfs_ordered_inode_tree *tree; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 186 | struct rb_node *node; |
| 187 | struct btrfs_ordered_extent *entry; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 188 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 189 | tree = &BTRFS_I(inode)->ordered_tree; |
| 190 | entry = kzalloc(sizeof(*entry), GFP_NOFS); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 191 | if (!entry) |
| 192 | return -ENOMEM; |
| 193 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 194 | entry->file_offset = file_offset; |
| 195 | entry->start = start; |
| 196 | entry->len = len; |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 197 | entry->disk_len = disk_len; |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 198 | entry->bytes_left = len; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 199 | entry->inode = igrab(inode); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 200 | entry->compress_type = compress_type; |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 201 | if (type != BTRFS_ORDERED_IO_DONE && type != BTRFS_ORDERED_COMPLETE) |
Yan Zheng | 80ff385 | 2008-10-30 14:20:02 -0400 | [diff] [blame] | 202 | set_bit(type, &entry->flags); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 203 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 204 | if (dio) |
| 205 | set_bit(BTRFS_ORDERED_DIRECT, &entry->flags); |
| 206 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 207 | /* one ref for the tree */ |
| 208 | atomic_set(&entry->refs, 1); |
| 209 | init_waitqueue_head(&entry->wait); |
| 210 | INIT_LIST_HEAD(&entry->list); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 211 | INIT_LIST_HEAD(&entry->root_extent_list); |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 212 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 213 | trace_btrfs_ordered_extent_add(inode, entry); |
| 214 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 215 | spin_lock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 216 | node = tree_insert(&tree->tree, file_offset, |
| 217 | &entry->rb_node); |
Jeff Mahoney | 43c04fb | 2011-10-03 23:22:33 -0400 | [diff] [blame] | 218 | if (node) |
| 219 | ordered_data_tree_panic(inode, -EEXIST, file_offset); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 220 | spin_unlock_irq(&tree->lock); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 221 | |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 222 | spin_lock(&BTRFS_I(inode)->root->fs_info->ordered_extent_lock); |
| 223 | list_add_tail(&entry->root_extent_list, |
| 224 | &BTRFS_I(inode)->root->fs_info->ordered_extents); |
| 225 | spin_unlock(&BTRFS_I(inode)->root->fs_info->ordered_extent_lock); |
| 226 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 227 | return 0; |
| 228 | } |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 229 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 230 | int btrfs_add_ordered_extent(struct inode *inode, u64 file_offset, |
| 231 | u64 start, u64 len, u64 disk_len, int type) |
| 232 | { |
| 233 | return __btrfs_add_ordered_extent(inode, file_offset, start, len, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 234 | disk_len, type, 0, |
| 235 | BTRFS_COMPRESS_NONE); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | int btrfs_add_ordered_extent_dio(struct inode *inode, u64 file_offset, |
| 239 | u64 start, u64 len, u64 disk_len, int type) |
| 240 | { |
| 241 | return __btrfs_add_ordered_extent(inode, file_offset, start, len, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 242 | disk_len, type, 1, |
| 243 | BTRFS_COMPRESS_NONE); |
| 244 | } |
| 245 | |
| 246 | int btrfs_add_ordered_extent_compress(struct inode *inode, u64 file_offset, |
| 247 | u64 start, u64 len, u64 disk_len, |
| 248 | int type, int compress_type) |
| 249 | { |
| 250 | return __btrfs_add_ordered_extent(inode, file_offset, start, len, |
| 251 | disk_len, type, 0, |
| 252 | compress_type); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 253 | } |
| 254 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 255 | /* |
| 256 | * Add a struct btrfs_ordered_sum into the list of checksums to be inserted |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 257 | * when an ordered extent is finished. If the list covers more than one |
| 258 | * ordered extent, it is split across multiples. |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 259 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 260 | void btrfs_add_ordered_sum(struct inode *inode, |
| 261 | struct btrfs_ordered_extent *entry, |
| 262 | struct btrfs_ordered_sum *sum) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 263 | { |
| 264 | struct btrfs_ordered_inode_tree *tree; |
Chris Mason | 1b1e213 | 2008-06-25 16:01:31 -0400 | [diff] [blame] | 265 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 266 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 267 | spin_lock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 268 | list_add_tail(&sum->list, &entry->list); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 269 | spin_unlock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 270 | } |
| 271 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 272 | /* |
| 273 | * this is used to account for finished IO across a given range |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 274 | * of the file. The IO may span ordered extents. If |
| 275 | * a given ordered_extent is completely done, 1 is returned, otherwise |
| 276 | * 0. |
| 277 | * |
| 278 | * test_and_set_bit on a flag in the struct btrfs_ordered_extent is used |
| 279 | * to make sure this function only returns 1 once for a given ordered extent. |
| 280 | * |
| 281 | * file_offset is updated to one byte past the range that is recorded as |
| 282 | * complete. This allows you to walk forward in the file. |
| 283 | */ |
| 284 | int btrfs_dec_test_first_ordered_pending(struct inode *inode, |
| 285 | struct btrfs_ordered_extent **cached, |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 286 | u64 *file_offset, u64 io_size, int uptodate) |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 287 | { |
| 288 | struct btrfs_ordered_inode_tree *tree; |
| 289 | struct rb_node *node; |
| 290 | struct btrfs_ordered_extent *entry = NULL; |
| 291 | int ret; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 292 | unsigned long flags; |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 293 | u64 dec_end; |
| 294 | u64 dec_start; |
| 295 | u64 to_dec; |
| 296 | |
| 297 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 298 | spin_lock_irqsave(&tree->lock, flags); |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 299 | node = tree_search(tree, *file_offset); |
| 300 | if (!node) { |
| 301 | ret = 1; |
| 302 | goto out; |
| 303 | } |
| 304 | |
| 305 | entry = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
| 306 | if (!offset_in_entry(entry, *file_offset)) { |
| 307 | ret = 1; |
| 308 | goto out; |
| 309 | } |
| 310 | |
| 311 | dec_start = max(*file_offset, entry->file_offset); |
| 312 | dec_end = min(*file_offset + io_size, entry->file_offset + |
| 313 | entry->len); |
| 314 | *file_offset = dec_end; |
| 315 | if (dec_start > dec_end) { |
| 316 | printk(KERN_CRIT "bad ordering dec_start %llu end %llu\n", |
| 317 | (unsigned long long)dec_start, |
| 318 | (unsigned long long)dec_end); |
| 319 | } |
| 320 | to_dec = dec_end - dec_start; |
| 321 | if (to_dec > entry->bytes_left) { |
| 322 | printk(KERN_CRIT "bad ordered accounting left %llu size %llu\n", |
| 323 | (unsigned long long)entry->bytes_left, |
| 324 | (unsigned long long)to_dec); |
| 325 | } |
| 326 | entry->bytes_left -= to_dec; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 327 | if (!uptodate) |
| 328 | set_bit(BTRFS_ORDERED_IOERR, &entry->flags); |
| 329 | |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 330 | if (entry->bytes_left == 0) |
| 331 | ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags); |
| 332 | else |
| 333 | ret = 1; |
| 334 | out: |
| 335 | if (!ret && cached && entry) { |
| 336 | *cached = entry; |
| 337 | atomic_inc(&entry->refs); |
| 338 | } |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 339 | spin_unlock_irqrestore(&tree->lock, flags); |
Chris Mason | 163cf09 | 2010-11-28 19:56:33 -0500 | [diff] [blame] | 340 | return ret == 0; |
| 341 | } |
| 342 | |
| 343 | /* |
| 344 | * this is used to account for finished IO across a given range |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 345 | * of the file. The IO should not span ordered extents. If |
| 346 | * a given ordered_extent is completely done, 1 is returned, otherwise |
| 347 | * 0. |
| 348 | * |
| 349 | * test_and_set_bit on a flag in the struct btrfs_ordered_extent is used |
| 350 | * to make sure this function only returns 1 once for a given ordered extent. |
| 351 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 352 | int btrfs_dec_test_ordered_pending(struct inode *inode, |
Josef Bacik | 5a1a3df | 2010-02-02 20:51:14 +0000 | [diff] [blame] | 353 | struct btrfs_ordered_extent **cached, |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 354 | u64 file_offset, u64 io_size, int uptodate) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 355 | { |
| 356 | struct btrfs_ordered_inode_tree *tree; |
| 357 | struct rb_node *node; |
Josef Bacik | 5a1a3df | 2010-02-02 20:51:14 +0000 | [diff] [blame] | 358 | struct btrfs_ordered_extent *entry = NULL; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 359 | unsigned long flags; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 360 | int ret; |
| 361 | |
| 362 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 363 | spin_lock_irqsave(&tree->lock, flags); |
| 364 | if (cached && *cached) { |
| 365 | entry = *cached; |
| 366 | goto have_entry; |
| 367 | } |
| 368 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 369 | node = tree_search(tree, file_offset); |
| 370 | if (!node) { |
| 371 | ret = 1; |
| 372 | goto out; |
| 373 | } |
| 374 | |
| 375 | entry = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 376 | have_entry: |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 377 | if (!offset_in_entry(entry, file_offset)) { |
| 378 | ret = 1; |
| 379 | goto out; |
| 380 | } |
| 381 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 382 | if (io_size > entry->bytes_left) { |
| 383 | printk(KERN_CRIT "bad ordered accounting left %llu size %llu\n", |
| 384 | (unsigned long long)entry->bytes_left, |
| 385 | (unsigned long long)io_size); |
| 386 | } |
| 387 | entry->bytes_left -= io_size; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 388 | if (!uptodate) |
| 389 | set_bit(BTRFS_ORDERED_IOERR, &entry->flags); |
| 390 | |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 391 | if (entry->bytes_left == 0) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 392 | ret = test_and_set_bit(BTRFS_ORDERED_IO_DONE, &entry->flags); |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 393 | else |
| 394 | ret = 1; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 395 | out: |
Josef Bacik | 5a1a3df | 2010-02-02 20:51:14 +0000 | [diff] [blame] | 396 | if (!ret && cached && entry) { |
| 397 | *cached = entry; |
| 398 | atomic_inc(&entry->refs); |
| 399 | } |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 400 | spin_unlock_irqrestore(&tree->lock, flags); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 401 | return ret == 0; |
| 402 | } |
| 403 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 404 | /* |
| 405 | * used to drop a reference on an ordered extent. This will free |
| 406 | * the extent if the last reference is dropped |
| 407 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 408 | void btrfs_put_ordered_extent(struct btrfs_ordered_extent *entry) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 409 | { |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 410 | struct list_head *cur; |
| 411 | struct btrfs_ordered_sum *sum; |
| 412 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 413 | trace_btrfs_ordered_extent_put(entry->inode, entry); |
| 414 | |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 415 | if (atomic_dec_and_test(&entry->refs)) { |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 416 | if (entry->inode) |
| 417 | btrfs_add_delayed_iput(entry->inode); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 418 | while (!list_empty(&entry->list)) { |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 419 | cur = entry->list.next; |
| 420 | sum = list_entry(cur, struct btrfs_ordered_sum, list); |
| 421 | list_del(&sum->list); |
| 422 | kfree(sum); |
| 423 | } |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 424 | kfree(entry); |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 425 | } |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 426 | } |
| 427 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 428 | /* |
| 429 | * remove an ordered extent from the tree. No references are dropped |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 430 | * and waiters are woken up. |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 431 | */ |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 432 | void btrfs_remove_ordered_extent(struct inode *inode, |
| 433 | struct btrfs_ordered_extent *entry) |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 434 | { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 435 | struct btrfs_ordered_inode_tree *tree; |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 436 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 437 | struct rb_node *node; |
| 438 | |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 439 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 440 | spin_lock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 441 | node = &entry->rb_node; |
Chris Mason | dc17ff8 | 2008-01-08 15:46:30 -0500 | [diff] [blame] | 442 | rb_erase(node, &tree->tree); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 443 | tree->last = NULL; |
| 444 | set_bit(BTRFS_ORDERED_COMPLETE, &entry->flags); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 445 | spin_unlock_irq(&tree->lock); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 446 | |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 447 | spin_lock(&root->fs_info->ordered_extent_lock); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 448 | list_del_init(&entry->root_extent_list); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 449 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 450 | trace_btrfs_ordered_extent_remove(inode, entry); |
| 451 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 452 | /* |
| 453 | * we have no more ordered extents for this inode and |
| 454 | * no dirty pages. We can safely remove it from the |
| 455 | * list of ordered extents |
| 456 | */ |
| 457 | if (RB_EMPTY_ROOT(&tree->tree) && |
| 458 | !mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY)) { |
| 459 | list_del_init(&BTRFS_I(inode)->ordered_operations); |
| 460 | } |
Josef Bacik | 287a0ab | 2010-03-19 18:07:23 +0000 | [diff] [blame] | 461 | spin_unlock(&root->fs_info->ordered_extent_lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 462 | wake_up(&entry->wait); |
Chris Mason | 81d7ed2 | 2008-04-25 08:51:48 -0400 | [diff] [blame] | 463 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 464 | |
Chris Mason | d352ac6 | 2008-09-29 15:18:18 -0400 | [diff] [blame] | 465 | /* |
| 466 | * wait for all the ordered extents in a root. This is done when balancing |
| 467 | * space between drives. |
| 468 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 469 | void btrfs_wait_ordered_extents(struct btrfs_root *root, |
| 470 | int nocow_only, int delay_iput) |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 471 | { |
| 472 | struct list_head splice; |
| 473 | struct list_head *cur; |
| 474 | struct btrfs_ordered_extent *ordered; |
| 475 | struct inode *inode; |
| 476 | |
| 477 | INIT_LIST_HEAD(&splice); |
| 478 | |
| 479 | spin_lock(&root->fs_info->ordered_extent_lock); |
| 480 | list_splice_init(&root->fs_info->ordered_extents, &splice); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 481 | while (!list_empty(&splice)) { |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 482 | cur = splice.next; |
| 483 | ordered = list_entry(cur, struct btrfs_ordered_extent, |
| 484 | root_extent_list); |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 485 | if (nocow_only && |
Yan Zheng | d899e05 | 2008-10-30 14:25:28 -0400 | [diff] [blame] | 486 | !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags) && |
| 487 | !test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags)) { |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 488 | list_move(&ordered->root_extent_list, |
| 489 | &root->fs_info->ordered_extents); |
Yan Zheng | 7ea394f | 2008-08-05 13:05:02 -0400 | [diff] [blame] | 490 | cond_resched_lock(&root->fs_info->ordered_extent_lock); |
| 491 | continue; |
| 492 | } |
| 493 | |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 494 | list_del_init(&ordered->root_extent_list); |
| 495 | atomic_inc(&ordered->refs); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 496 | |
| 497 | /* |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 498 | * the inode may be getting freed (in sys_unlink path). |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 499 | */ |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 500 | inode = igrab(ordered->inode); |
| 501 | |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 502 | spin_unlock(&root->fs_info->ordered_extent_lock); |
| 503 | |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 504 | if (inode) { |
| 505 | btrfs_start_ordered_extent(inode, ordered, 1); |
| 506 | btrfs_put_ordered_extent(ordered); |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 507 | if (delay_iput) |
| 508 | btrfs_add_delayed_iput(inode); |
| 509 | else |
| 510 | iput(inode); |
Zheng Yan | 5b21f2e | 2008-09-26 10:05:38 -0400 | [diff] [blame] | 511 | } else { |
| 512 | btrfs_put_ordered_extent(ordered); |
| 513 | } |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 514 | |
| 515 | spin_lock(&root->fs_info->ordered_extent_lock); |
| 516 | } |
| 517 | spin_unlock(&root->fs_info->ordered_extent_lock); |
Chris Mason | 3eaa288 | 2008-07-24 11:57:52 -0400 | [diff] [blame] | 518 | } |
| 519 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 520 | /* |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 521 | * this is used during transaction commit to write all the inodes |
| 522 | * added to the ordered operation list. These files must be fully on |
| 523 | * disk before the transaction commits. |
| 524 | * |
| 525 | * we have two modes here, one is to just start the IO via filemap_flush |
| 526 | * and the other is to wait for all the io. When we wait, we have an |
| 527 | * extra check to make sure the ordered operation list really is empty |
| 528 | * before we return |
| 529 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 530 | void btrfs_run_ordered_operations(struct btrfs_root *root, int wait) |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 531 | { |
| 532 | struct btrfs_inode *btrfs_inode; |
| 533 | struct inode *inode; |
| 534 | struct list_head splice; |
| 535 | |
| 536 | INIT_LIST_HEAD(&splice); |
| 537 | |
| 538 | mutex_lock(&root->fs_info->ordered_operations_mutex); |
| 539 | spin_lock(&root->fs_info->ordered_extent_lock); |
| 540 | again: |
| 541 | list_splice_init(&root->fs_info->ordered_operations, &splice); |
| 542 | |
| 543 | while (!list_empty(&splice)) { |
| 544 | btrfs_inode = list_entry(splice.next, struct btrfs_inode, |
| 545 | ordered_operations); |
| 546 | |
| 547 | inode = &btrfs_inode->vfs_inode; |
| 548 | |
| 549 | list_del_init(&btrfs_inode->ordered_operations); |
| 550 | |
| 551 | /* |
| 552 | * the inode may be getting freed (in sys_unlink path). |
| 553 | */ |
| 554 | inode = igrab(inode); |
| 555 | |
| 556 | if (!wait && inode) { |
| 557 | list_add_tail(&BTRFS_I(inode)->ordered_operations, |
| 558 | &root->fs_info->ordered_operations); |
| 559 | } |
| 560 | spin_unlock(&root->fs_info->ordered_extent_lock); |
| 561 | |
| 562 | if (inode) { |
| 563 | if (wait) |
| 564 | btrfs_wait_ordered_range(inode, 0, (u64)-1); |
| 565 | else |
| 566 | filemap_flush(inode->i_mapping); |
Yan, Zheng | 24bbcf0 | 2009-11-12 09:36:34 +0000 | [diff] [blame] | 567 | btrfs_add_delayed_iput(inode); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | cond_resched(); |
| 571 | spin_lock(&root->fs_info->ordered_extent_lock); |
| 572 | } |
| 573 | if (wait && !list_empty(&root->fs_info->ordered_operations)) |
| 574 | goto again; |
| 575 | |
| 576 | spin_unlock(&root->fs_info->ordered_extent_lock); |
| 577 | mutex_unlock(&root->fs_info->ordered_operations_mutex); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | /* |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 581 | * Used to start IO or wait for a given ordered extent to finish. |
| 582 | * |
| 583 | * If wait is one, this effectively waits on page writeback for all the pages |
| 584 | * in the extent, and it waits on the io completion code to insert |
| 585 | * metadata into the btree corresponding to the extent |
| 586 | */ |
| 587 | void btrfs_start_ordered_extent(struct inode *inode, |
| 588 | struct btrfs_ordered_extent *entry, |
| 589 | int wait) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 590 | { |
| 591 | u64 start = entry->file_offset; |
| 592 | u64 end = start + entry->len - 1; |
| 593 | |
liubo | 1abe9b8 | 2011-03-24 11:18:59 +0000 | [diff] [blame] | 594 | trace_btrfs_ordered_extent_start(inode, entry); |
| 595 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 596 | /* |
| 597 | * pages in the range can be dirty, clean or writeback. We |
| 598 | * start IO on any dirty ones so the wait doesn't stall waiting |
| 599 | * for pdflush to find them |
| 600 | */ |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 601 | if (!test_bit(BTRFS_ORDERED_DIRECT, &entry->flags)) |
| 602 | filemap_fdatawrite_range(inode->i_mapping, start, end); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 603 | if (wait) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 604 | wait_event(entry->wait, test_bit(BTRFS_ORDERED_COMPLETE, |
| 605 | &entry->flags)); |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 606 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 607 | } |
| 608 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 609 | /* |
| 610 | * Used to wait on ordered extents across a large range of bytes. |
| 611 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 612 | void btrfs_wait_ordered_range(struct inode *inode, u64 start, u64 len) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 613 | { |
| 614 | u64 end; |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 615 | u64 orig_end; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 616 | struct btrfs_ordered_extent *ordered; |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 617 | int found; |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 618 | |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 619 | if (start + len < start) { |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 620 | orig_end = INT_LIMIT(loff_t); |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 621 | } else { |
| 622 | orig_end = start + len - 1; |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 623 | if (orig_end > INT_LIMIT(loff_t)) |
| 624 | orig_end = INT_LIMIT(loff_t); |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 625 | } |
Josef Bacik | 551ebb2 | 2012-04-23 14:41:09 -0400 | [diff] [blame] | 626 | |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 627 | /* start IO across the range first to instantiate any delalloc |
| 628 | * extents |
| 629 | */ |
Josef Bacik | 551ebb2 | 2012-04-23 14:41:09 -0400 | [diff] [blame] | 630 | filemap_write_and_wait_range(inode->i_mapping, start, orig_end); |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 631 | |
| 632 | end = orig_end; |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 633 | found = 0; |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 634 | while (1) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 635 | ordered = btrfs_lookup_first_ordered_extent(inode, end); |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 636 | if (!ordered) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 637 | break; |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 638 | if (ordered->file_offset > orig_end) { |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 639 | btrfs_put_ordered_extent(ordered); |
| 640 | break; |
| 641 | } |
| 642 | if (ordered->file_offset + ordered->len < start) { |
| 643 | btrfs_put_ordered_extent(ordered); |
| 644 | break; |
| 645 | } |
Chris Mason | 8b62b72 | 2009-09-02 16:53:46 -0400 | [diff] [blame] | 646 | found++; |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 647 | btrfs_start_ordered_extent(inode, ordered, 1); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 648 | end = ordered->file_offset; |
| 649 | btrfs_put_ordered_extent(ordered); |
Chris Mason | e5a2217 | 2008-07-18 20:42:20 -0400 | [diff] [blame] | 650 | if (end == 0 || end == start) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 651 | break; |
| 652 | end--; |
| 653 | } |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 654 | } |
| 655 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 656 | /* |
| 657 | * find an ordered extent corresponding to file_offset. return NULL if |
| 658 | * nothing is found, otherwise take a reference on the extent and return it |
| 659 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 660 | struct btrfs_ordered_extent *btrfs_lookup_ordered_extent(struct inode *inode, |
| 661 | u64 file_offset) |
| 662 | { |
| 663 | struct btrfs_ordered_inode_tree *tree; |
| 664 | struct rb_node *node; |
| 665 | struct btrfs_ordered_extent *entry = NULL; |
| 666 | |
| 667 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 668 | spin_lock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 669 | node = tree_search(tree, file_offset); |
| 670 | if (!node) |
| 671 | goto out; |
| 672 | |
| 673 | entry = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
| 674 | if (!offset_in_entry(entry, file_offset)) |
| 675 | entry = NULL; |
| 676 | if (entry) |
| 677 | atomic_inc(&entry->refs); |
| 678 | out: |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 679 | spin_unlock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 680 | return entry; |
| 681 | } |
| 682 | |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 683 | /* Since the DIO code tries to lock a wide area we need to look for any ordered |
| 684 | * extents that exist in the range, rather than just the start of the range. |
| 685 | */ |
| 686 | struct btrfs_ordered_extent *btrfs_lookup_ordered_range(struct inode *inode, |
| 687 | u64 file_offset, |
| 688 | u64 len) |
| 689 | { |
| 690 | struct btrfs_ordered_inode_tree *tree; |
| 691 | struct rb_node *node; |
| 692 | struct btrfs_ordered_extent *entry = NULL; |
| 693 | |
| 694 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 695 | spin_lock_irq(&tree->lock); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 696 | node = tree_search(tree, file_offset); |
| 697 | if (!node) { |
| 698 | node = tree_search(tree, file_offset + len); |
| 699 | if (!node) |
| 700 | goto out; |
| 701 | } |
| 702 | |
| 703 | while (1) { |
| 704 | entry = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
| 705 | if (range_overlaps(entry, file_offset, len)) |
| 706 | break; |
| 707 | |
| 708 | if (entry->file_offset >= file_offset + len) { |
| 709 | entry = NULL; |
| 710 | break; |
| 711 | } |
| 712 | entry = NULL; |
| 713 | node = rb_next(node); |
| 714 | if (!node) |
| 715 | break; |
| 716 | } |
| 717 | out: |
| 718 | if (entry) |
| 719 | atomic_inc(&entry->refs); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 720 | spin_unlock_irq(&tree->lock); |
Josef Bacik | 4b46fce | 2010-05-23 11:00:55 -0400 | [diff] [blame] | 721 | return entry; |
| 722 | } |
| 723 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 724 | /* |
| 725 | * lookup and return any extent before 'file_offset'. NULL is returned |
| 726 | * if none is found |
| 727 | */ |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 728 | struct btrfs_ordered_extent * |
Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 729 | btrfs_lookup_first_ordered_extent(struct inode *inode, u64 file_offset) |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 730 | { |
| 731 | struct btrfs_ordered_inode_tree *tree; |
| 732 | struct rb_node *node; |
| 733 | struct btrfs_ordered_extent *entry = NULL; |
| 734 | |
| 735 | tree = &BTRFS_I(inode)->ordered_tree; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 736 | spin_lock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 737 | node = tree_search(tree, file_offset); |
| 738 | if (!node) |
| 739 | goto out; |
| 740 | |
| 741 | entry = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
| 742 | atomic_inc(&entry->refs); |
| 743 | out: |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 744 | spin_unlock_irq(&tree->lock); |
Chris Mason | e6dcd2d | 2008-07-17 12:53:50 -0400 | [diff] [blame] | 745 | return entry; |
| 746 | } |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 747 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 748 | /* |
| 749 | * After an extent is done, call this to conditionally update the on disk |
| 750 | * i_size. i_size is updated to cover any fully written part of the file. |
| 751 | */ |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 752 | int btrfs_ordered_update_i_size(struct inode *inode, u64 offset, |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 753 | struct btrfs_ordered_extent *ordered) |
| 754 | { |
| 755 | struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 756 | u64 disk_i_size; |
| 757 | u64 new_i_size; |
| 758 | u64 i_size_test; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 759 | u64 i_size = i_size_read(inode); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 760 | struct rb_node *node; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 761 | struct rb_node *prev = NULL; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 762 | struct btrfs_ordered_extent *test; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 763 | int ret = 1; |
| 764 | |
| 765 | if (ordered) |
| 766 | offset = entry_end(ordered); |
Yan, Zheng | a038fab0 | 2009-12-28 05:01:58 +0000 | [diff] [blame] | 767 | else |
| 768 | offset = ALIGN(offset, BTRFS_I(inode)->root->sectorsize); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 769 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 770 | spin_lock_irq(&tree->lock); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 771 | disk_i_size = BTRFS_I(inode)->disk_i_size; |
| 772 | |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 773 | /* truncate file */ |
| 774 | if (disk_i_size > i_size) { |
| 775 | BTRFS_I(inode)->disk_i_size = i_size; |
| 776 | ret = 0; |
| 777 | goto out; |
| 778 | } |
| 779 | |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 780 | /* |
| 781 | * if the disk i_size is already at the inode->i_size, or |
| 782 | * this ordered extent is inside the disk i_size, we're done |
| 783 | */ |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 784 | if (disk_i_size == i_size || offset <= disk_i_size) { |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 785 | goto out; |
| 786 | } |
| 787 | |
| 788 | /* |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 789 | * walk backward from this ordered extent to disk_i_size. |
| 790 | * if we find an ordered extent then we can't update disk i_size |
| 791 | * yet |
| 792 | */ |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 793 | if (ordered) { |
| 794 | node = rb_prev(&ordered->rb_node); |
| 795 | } else { |
| 796 | prev = tree_search(tree, offset); |
| 797 | /* |
| 798 | * we insert file extents without involving ordered struct, |
| 799 | * so there should be no ordered struct cover this offset |
| 800 | */ |
| 801 | if (prev) { |
| 802 | test = rb_entry(prev, struct btrfs_ordered_extent, |
| 803 | rb_node); |
| 804 | BUG_ON(offset_in_entry(test, offset)); |
| 805 | } |
| 806 | node = prev; |
| 807 | } |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 808 | for (; node; node = rb_prev(node)) { |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 809 | test = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 810 | |
| 811 | /* We treat this entry as if it doesnt exist */ |
| 812 | if (test_bit(BTRFS_ORDERED_UPDATED_ISIZE, &test->flags)) |
| 813 | continue; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 814 | if (test->file_offset + test->len <= disk_i_size) |
| 815 | break; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 816 | if (test->file_offset >= i_size) |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 817 | break; |
| 818 | if (test->file_offset >= disk_i_size) |
| 819 | goto out; |
| 820 | } |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 821 | new_i_size = min_t(u64, offset, i_size); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 822 | |
| 823 | /* |
| 824 | * at this point, we know we can safely update i_size to at least |
| 825 | * the offset from this ordered extent. But, we need to |
| 826 | * walk forward and see if ios from higher up in the file have |
| 827 | * finished. |
| 828 | */ |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 829 | if (ordered) { |
| 830 | node = rb_next(&ordered->rb_node); |
| 831 | } else { |
| 832 | if (prev) |
| 833 | node = rb_next(prev); |
| 834 | else |
| 835 | node = rb_first(&tree->tree); |
| 836 | } |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 837 | |
| 838 | /* |
| 839 | * We are looking for an area between our current extent and the next |
| 840 | * ordered extent to update the i_size to. There are 3 cases here |
| 841 | * |
| 842 | * 1) We don't actually have anything and we can update to i_size. |
| 843 | * 2) We have stuff but they already did their i_size update so again we |
| 844 | * can just update to i_size. |
| 845 | * 3) We have an outstanding ordered extent so the most we can update |
| 846 | * our disk_i_size to is the start of the next offset. |
| 847 | */ |
| 848 | i_size_test = i_size; |
| 849 | for (; node; node = rb_next(node)) { |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 850 | test = rb_entry(node, struct btrfs_ordered_extent, rb_node); |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 851 | |
| 852 | if (test_bit(BTRFS_ORDERED_UPDATED_ISIZE, &test->flags)) |
| 853 | continue; |
| 854 | if (test->file_offset > offset) { |
Yan Zheng | b48652c | 2008-08-04 23:23:47 -0400 | [diff] [blame] | 855 | i_size_test = test->file_offset; |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 856 | break; |
| 857 | } |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | /* |
| 861 | * i_size_test is the end of a region after this ordered |
Josef Bacik | 4e89915 | 2012-05-02 13:52:09 -0400 | [diff] [blame] | 862 | * extent where there are no ordered extents, we can safely set |
| 863 | * disk_i_size to this. |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 864 | */ |
Josef Bacik | 4e89915 | 2012-05-02 13:52:09 -0400 | [diff] [blame] | 865 | if (i_size_test > offset) |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 866 | new_i_size = min_t(u64, i_size_test, i_size); |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 867 | BTRFS_I(inode)->disk_i_size = new_i_size; |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 868 | ret = 0; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 869 | out: |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 870 | /* |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 871 | * We need to do this because we can't remove ordered extents until |
| 872 | * after the i_disk_size has been updated and then the inode has been |
| 873 | * updated to reflect the change, so we need to tell anybody who finds |
| 874 | * this ordered extent that we've already done all the real work, we |
| 875 | * just haven't completed all the other work. |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 876 | */ |
| 877 | if (ordered) |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 878 | set_bit(BTRFS_ORDERED_UPDATED_ISIZE, &ordered->flags); |
| 879 | spin_unlock_irq(&tree->lock); |
Yan, Zheng | c216775 | 2009-11-12 09:34:21 +0000 | [diff] [blame] | 880 | return ret; |
Chris Mason | dbe674a | 2008-07-17 12:54:05 -0400 | [diff] [blame] | 881 | } |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 882 | |
Chris Mason | eb84ae0 | 2008-07-17 13:53:27 -0400 | [diff] [blame] | 883 | /* |
| 884 | * search the ordered extents for one corresponding to 'offset' and |
| 885 | * try to find a checksum. This is used because we allow pages to |
| 886 | * be reclaimed before their checksum is actually put into the btree |
| 887 | */ |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 888 | int btrfs_find_ordered_sum(struct inode *inode, u64 offset, u64 disk_bytenr, |
| 889 | u32 *sum) |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 890 | { |
| 891 | struct btrfs_ordered_sum *ordered_sum; |
| 892 | struct btrfs_sector_sum *sector_sums; |
| 893 | struct btrfs_ordered_extent *ordered; |
| 894 | struct btrfs_ordered_inode_tree *tree = &BTRFS_I(inode)->ordered_tree; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 895 | unsigned long num_sectors; |
| 896 | unsigned long i; |
| 897 | u32 sectorsize = BTRFS_I(inode)->root->sectorsize; |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 898 | int ret = 1; |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 899 | |
| 900 | ordered = btrfs_lookup_ordered_extent(inode, offset); |
| 901 | if (!ordered) |
| 902 | return 1; |
| 903 | |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 904 | spin_lock_irq(&tree->lock); |
Qinghuang Feng | c6e3087 | 2009-01-21 10:59:08 -0500 | [diff] [blame] | 905 | list_for_each_entry_reverse(ordered_sum, &ordered->list, list) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 906 | if (disk_bytenr >= ordered_sum->bytenr) { |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 907 | num_sectors = ordered_sum->len / sectorsize; |
Chris Mason | ed98b56 | 2008-07-22 23:06:42 -0400 | [diff] [blame] | 908 | sector_sums = ordered_sum->sums; |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 909 | for (i = 0; i < num_sectors; i++) { |
Chris Mason | d20f704 | 2008-12-08 16:58:54 -0500 | [diff] [blame] | 910 | if (sector_sums[i].bytenr == disk_bytenr) { |
Chris Mason | 3edf7d3 | 2008-07-18 06:17:13 -0400 | [diff] [blame] | 911 | *sum = sector_sums[i].sum; |
| 912 | ret = 0; |
| 913 | goto out; |
| 914 | } |
| 915 | } |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 916 | } |
| 917 | } |
| 918 | out: |
Josef Bacik | 5fd0204 | 2012-05-02 14:00:54 -0400 | [diff] [blame] | 919 | spin_unlock_irq(&tree->lock); |
Chris Mason | 8964222 | 2008-07-24 09:41:53 -0400 | [diff] [blame] | 920 | btrfs_put_ordered_extent(ordered); |
Chris Mason | ba1da2f | 2008-07-17 12:54:15 -0400 | [diff] [blame] | 921 | return ret; |
| 922 | } |
| 923 | |
Chris Mason | f421950 | 2008-07-22 11:18:09 -0400 | [diff] [blame] | 924 | |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 925 | /* |
| 926 | * add a given inode to the list of inodes that must be fully on |
| 927 | * disk before a transaction commit finishes. |
| 928 | * |
| 929 | * This basically gives us the ext3 style data=ordered mode, and it is mostly |
| 930 | * used to make sure renamed files are fully on disk. |
| 931 | * |
| 932 | * It is a noop if the inode is already fully on disk. |
| 933 | * |
| 934 | * If trans is not null, we'll do a friendly check for a transaction that |
| 935 | * is already flushing things and force the IO down ourselves. |
| 936 | */ |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 937 | void btrfs_add_ordered_operation(struct btrfs_trans_handle *trans, |
| 938 | struct btrfs_root *root, struct inode *inode) |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 939 | { |
| 940 | u64 last_mod; |
| 941 | |
| 942 | last_mod = max(BTRFS_I(inode)->generation, BTRFS_I(inode)->last_trans); |
| 943 | |
| 944 | /* |
| 945 | * if this file hasn't been changed since the last transaction |
| 946 | * commit, we can safely return without doing anything |
| 947 | */ |
| 948 | if (last_mod < root->fs_info->last_trans_committed) |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 949 | return; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 950 | |
| 951 | /* |
| 952 | * the transaction is already committing. Just start the IO and |
| 953 | * don't bother with all of this list nonsense |
| 954 | */ |
| 955 | if (trans && root->fs_info->running_transaction->blocked) { |
| 956 | btrfs_wait_ordered_range(inode, 0, (u64)-1); |
Jeff Mahoney | 143bede | 2012-03-01 14:56:26 +0100 | [diff] [blame] | 957 | return; |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | spin_lock(&root->fs_info->ordered_extent_lock); |
| 961 | if (list_empty(&BTRFS_I(inode)->ordered_operations)) { |
| 962 | list_add_tail(&BTRFS_I(inode)->ordered_operations, |
| 963 | &root->fs_info->ordered_operations); |
| 964 | } |
| 965 | spin_unlock(&root->fs_info->ordered_extent_lock); |
Chris Mason | 5a3f23d | 2009-03-31 13:27:11 -0400 | [diff] [blame] | 966 | } |