blob: 21aead39a76c481b00783fb11495f4a60ca9f60c [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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 Mason065631f2008-02-20 12:07:25 -050019#include <linux/bio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason065631f2008-02-20 12:07:25 -050021#include <linux/pagemap.h>
22#include <linux/highmem.h>
Chris Mason1e1d2702007-03-15 19:03:33 -040023#include "ctree.h"
Chris Masondee26a92007-03-26 16:00:06 -040024#include "disk-io.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040025#include "transaction.h"
Chris Mason1de037a2007-05-29 15:17:08 -040026#include "print-tree.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040027
Chris Masond3977122009-01-05 21:25:51 -050028#define MAX_CSUM_ITEMS(r, size) ((((BTRFS_LEAF_DATA_SIZE(r) - \
Josef Bacik607d4322008-12-02 07:17:45 -050029 sizeof(struct btrfs_item) * 2) / \
30 size) - 1))
Yan Zheng07d400a2009-01-06 11:42:00 -050031
32#define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \
33 sizeof(struct btrfs_ordered_sum)) / \
34 sizeof(struct btrfs_sector_sum) * \
35 (r)->sectorsize - (r)->sectorsize)
36
Chris Masonb18c6682007-04-17 13:26:50 -040037int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040038 struct btrfs_root *root,
39 u64 objectid, u64 pos,
40 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040041 u64 num_bytes, u64 offset, u64 ram_bytes,
42 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040043{
Chris Masondee26a92007-03-26 16:00:06 -040044 int ret = 0;
45 struct btrfs_file_extent_item *item;
46 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040047 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040048 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040049
Chris Mason5caf2a02007-04-02 11:20:42 -040050 path = btrfs_alloc_path();
51 BUG_ON(!path);
Chris Masondee26a92007-03-26 16:00:06 -040052 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040053 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040054 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
55
Chris Masonb9473432009-03-13 11:00:37 -040056 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040057 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040058 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040059 if (ret < 0)
60 goto out;
Chris Mason9773a782007-03-27 11:26:26 -040061 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -040062 leaf = path->nodes[0];
63 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040064 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040065 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040066 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040067 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040068 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040069 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040070 btrfs_set_file_extent_generation(leaf, item, trans->transid);
71 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040072 btrfs_set_file_extent_compression(leaf, item, compression);
73 btrfs_set_file_extent_encryption(leaf, item, encryption);
74 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
75
Chris Mason5f39d392007-10-15 16:14:19 -040076 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040077out:
Chris Mason5caf2a02007-04-02 11:20:42 -040078 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040079 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040080}
Chris Masondee26a92007-03-26 16:00:06 -040081
Chris Masonb18c6682007-04-17 13:26:50 -040082struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
83 struct btrfs_root *root,
84 struct btrfs_path *path,
Chris Masond20f7042008-12-08 16:58:54 -050085 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040086{
87 int ret;
88 struct btrfs_key file_key;
89 struct btrfs_key found_key;
90 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040091 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040092 u64 csum_offset = 0;
Josef Bacik607d4322008-12-02 07:17:45 -050093 u16 csum_size =
94 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040095 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040096
Chris Masond20f7042008-12-08 16:58:54 -050097 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
98 file_key.offset = bytenr;
99 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -0400100 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400101 if (ret < 0)
102 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400103 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400104 if (ret > 0) {
105 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400106 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400107 goto fail;
108 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400109 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500110 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400111 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500112
113 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400114 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400115 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500116 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400117
118 if (csum_offset >= csums_in_item) {
119 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400120 goto fail;
121 }
122 }
123 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400124 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500125 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400126 return item;
127fail:
128 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400129 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400130 return ERR_PTR(ret);
131}
132
133
Chris Masondee26a92007-03-26 16:00:06 -0400134int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400137 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400138{
139 int ret;
140 struct btrfs_key file_key;
141 int ins_len = mod < 0 ? -1 : 0;
142 int cow = mod != 0;
143
144 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400145 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400146 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
147 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
148 return ret;
149}
Chris Masonf254e522007-03-29 15:15:27 -0400150
Yan Zheng17d217f2008-12-12 10:03:38 -0500151
Chris Mason61b49442008-07-31 15:42:53 -0400152int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500153 struct bio *bio, u32 *dst)
Chris Mason61b49442008-07-31 15:42:53 -0400154{
155 u32 sum;
156 struct bio_vec *bvec = bio->bi_io_vec;
157 int bio_index = 0;
158 u64 offset;
159 u64 item_start_offset = 0;
160 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500161 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400162 u32 diff;
Josef Bacik607d4322008-12-02 07:17:45 -0500163 u16 csum_size =
164 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400165 int ret;
166 struct btrfs_path *path;
167 struct btrfs_csum_item *item = NULL;
168 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
169
170 path = btrfs_alloc_path();
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400171 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
172 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400173
174 WARN_ON(bio->bi_vcnt <= 0);
175
Chris Masond20f7042008-12-08 16:58:54 -0500176 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masond3977122009-01-05 21:25:51 -0500177 while (bio_index < bio->bi_vcnt) {
Chris Mason61b49442008-07-31 15:42:53 -0400178 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500179 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400180 if (ret == 0)
181 goto found;
182
Chris Masond20f7042008-12-08 16:58:54 -0500183 if (!item || disk_bytenr < item_start_offset ||
184 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400185 struct btrfs_key found_key;
186 u32 item_size;
187
188 if (item)
189 btrfs_release_path(root, path);
Chris Masond20f7042008-12-08 16:58:54 -0500190 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
191 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400192 if (IS_ERR(item)) {
193 ret = PTR_ERR(item);
194 if (ret == -ENOENT || ret == -EFBIG)
195 ret = 0;
196 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500197 if (BTRFS_I(inode)->root->root_key.objectid ==
198 BTRFS_DATA_RELOC_TREE_OBJECTID) {
199 set_extent_bits(io_tree, offset,
200 offset + bvec->bv_len - 1,
201 EXTENT_NODATASUM, GFP_NOFS);
202 } else {
Chris Masond3977122009-01-05 21:25:51 -0500203 printk(KERN_INFO "btrfs no csum found "
204 "for inode %lu start %llu\n",
205 inode->i_ino,
Yan Zheng17d217f2008-12-12 10:03:38 -0500206 (unsigned long long)offset);
207 }
Chris Mason6dab8152008-08-04 08:35:53 -0400208 item = NULL;
Chris Mason39be25c2008-11-10 11:50:50 -0500209 btrfs_release_path(root, path);
Chris Mason61b49442008-07-31 15:42:53 -0400210 goto found;
211 }
212 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
213 path->slots[0]);
214
215 item_start_offset = found_key.offset;
216 item_size = btrfs_item_size_nr(path->nodes[0],
217 path->slots[0]);
218 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500219 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400220 root->sectorsize;
221 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
222 struct btrfs_csum_item);
223 }
224 /*
225 * this byte range must be able to fit inside
226 * a single leaf so it will also fit inside a u32
227 */
Chris Masond20f7042008-12-08 16:58:54 -0500228 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400229 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500230 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400231
232 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400233 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500234 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400235found:
Chris Masond20f7042008-12-08 16:58:54 -0500236 if (dst)
237 *dst++ = sum;
238 else
239 set_state_private(io_tree, offset, sum);
240 disk_bytenr += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400241 bio_index++;
242 bvec++;
243 }
244 btrfs_free_path(path);
245 return 0;
246}
247
Yan Zheng17d217f2008-12-12 10:03:38 -0500248int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
249 struct list_head *list)
250{
251 struct btrfs_key key;
252 struct btrfs_path *path;
253 struct extent_buffer *leaf;
254 struct btrfs_ordered_sum *sums;
255 struct btrfs_sector_sum *sector_sum;
256 struct btrfs_csum_item *item;
257 unsigned long offset;
258 int ret;
259 size_t size;
260 u64 csum_end;
261 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
262
263 path = btrfs_alloc_path();
264 BUG_ON(!path);
265
266 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
267 key.offset = start;
268 key.type = BTRFS_EXTENT_CSUM_KEY;
269
Yan Zheng07d400a2009-01-06 11:42:00 -0500270 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500271 if (ret < 0)
272 goto fail;
273 if (ret > 0 && path->slots[0] > 0) {
274 leaf = path->nodes[0];
275 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
276 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
277 key.type == BTRFS_EXTENT_CSUM_KEY) {
278 offset = (start - key.offset) >>
279 root->fs_info->sb->s_blocksize_bits;
280 if (offset * csum_size <
281 btrfs_item_size_nr(leaf, path->slots[0] - 1))
282 path->slots[0]--;
283 }
284 }
285
286 while (start <= end) {
287 leaf = path->nodes[0];
288 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500289 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500290 if (ret < 0)
291 goto fail;
292 if (ret > 0)
293 break;
294 leaf = path->nodes[0];
295 }
296
297 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
298 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
299 key.type != BTRFS_EXTENT_CSUM_KEY)
300 break;
301
302 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
303 if (key.offset > end)
304 break;
305
306 if (key.offset > start)
307 start = key.offset;
308
309 size = btrfs_item_size_nr(leaf, path->slots[0]);
310 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500311 if (csum_end <= start) {
312 path->slots[0]++;
313 continue;
314 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500315
Yan Zheng07d400a2009-01-06 11:42:00 -0500316 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500317 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
318 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500319 while (start < csum_end) {
320 size = min_t(size_t, csum_end - start,
321 MAX_ORDERED_SUM_BYTES(root));
322 sums = kzalloc(btrfs_ordered_sum_size(root, size),
323 GFP_NOFS);
324 BUG_ON(!sums);
Yan Zheng17d217f2008-12-12 10:03:38 -0500325
Yan Zheng07d400a2009-01-06 11:42:00 -0500326 sector_sum = sums->sums;
327 sums->bytenr = start;
328 sums->len = size;
329
330 offset = (start - key.offset) >>
331 root->fs_info->sb->s_blocksize_bits;
332 offset *= csum_size;
333
334 while (size > 0) {
335 read_extent_buffer(path->nodes[0],
336 &sector_sum->sum,
337 ((unsigned long)item) +
338 offset, csum_size);
339 sector_sum->bytenr = start;
340
341 size -= root->sectorsize;
342 start += root->sectorsize;
343 offset += csum_size;
344 sector_sum++;
345 }
346 list_add_tail(&sums->list, list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500347 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500348 path->slots[0]++;
349 }
350 ret = 0;
351fail:
352 btrfs_free_path(path);
353 return ret;
354}
355
Chris Mason3edf7d32008-07-18 06:17:13 -0400356int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500357 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400358{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400359 struct btrfs_ordered_sum *sums;
360 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400361 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400362 char *data;
363 struct bio_vec *bvec = bio->bi_io_vec;
364 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400365 unsigned long total_bytes = 0;
366 unsigned long this_sum_bytes = 0;
367 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500368 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400369
Chris Masone6dcd2d2008-07-17 12:53:50 -0400370 WARN_ON(bio->bi_vcnt <= 0);
371 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400372 if (!sums)
373 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400374
Chris Masoned98b562008-07-22 23:06:42 -0400375 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500376 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400377 sums->len = bio->bi_size;
378 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500379
380 if (contig)
381 offset = file_start;
382 else
383 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
384
385 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400386 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500387 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400388
Chris Masond3977122009-01-05 21:25:51 -0500389 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500390 if (!contig)
391 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
392
393 if (!contig && (offset >= ordered->file_offset + ordered->len ||
394 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400395 unsigned long bytes_left;
396 sums->len = this_sum_bytes;
397 this_sum_bytes = 0;
398 btrfs_add_ordered_sum(inode, ordered, sums);
399 btrfs_put_ordered_extent(ordered);
400
401 bytes_left = bio->bi_size - total_bytes;
402
403 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
404 GFP_NOFS);
405 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400406 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400407 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500408 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400409 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500410 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400411 }
412
Chris Masone0156402008-04-16 11:15:20 -0400413 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400414 sector_sum->sum = ~(u32)0;
415 sector_sum->sum = btrfs_csum_data(root,
416 data + bvec->bv_offset,
417 sector_sum->sum,
418 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400419 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400420 btrfs_csum_final(sector_sum->sum,
421 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500422 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400423
Chris Masone6dcd2d2008-07-17 12:53:50 -0400424 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400425 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400426 total_bytes += bvec->bv_len;
427 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500428 disk_bytenr += bvec->bv_len;
429 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400430 bvec++;
431 }
Chris Masoned98b562008-07-22 23:06:42 -0400432 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400433 btrfs_add_ordered_sum(inode, ordered, sums);
434 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400435 return 0;
436}
437
Chris Mason459931e2008-12-10 09:10:46 -0500438/*
439 * helper function for csum removal, this expects the
440 * key to describe the csum pointed to by the path, and it expects
441 * the csum to overlap the range [bytenr, len]
442 *
443 * The csum should not be entirely contained in the range and the
444 * range should not be entirely contained in the csum.
445 *
446 * This calls btrfs_truncate_item with the correct args based on the
447 * overlap, and fixes up the key as required.
448 */
449static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
450 struct btrfs_root *root,
451 struct btrfs_path *path,
452 struct btrfs_key *key,
453 u64 bytenr, u64 len)
454{
455 struct extent_buffer *leaf;
456 u16 csum_size =
457 btrfs_super_csum_size(&root->fs_info->super_copy);
458 u64 csum_end;
459 u64 end_byte = bytenr + len;
460 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
461 int ret;
462
463 leaf = path->nodes[0];
464 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
465 csum_end <<= root->fs_info->sb->s_blocksize_bits;
466 csum_end += key->offset;
467
468 if (key->offset < bytenr && csum_end <= end_byte) {
469 /*
470 * [ bytenr - len ]
471 * [ ]
472 * [csum ]
473 * A simple truncate off the end of the item
474 */
475 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
476 new_size *= csum_size;
477 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
478 BUG_ON(ret);
479 } else if (key->offset >= bytenr && csum_end > end_byte &&
480 end_byte > key->offset) {
481 /*
482 * [ bytenr - len ]
483 * [ ]
484 * [csum ]
485 * we need to truncate from the beginning of the csum
486 */
487 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
488 new_size *= csum_size;
489
490 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
491 BUG_ON(ret);
492
493 key->offset = end_byte;
494 ret = btrfs_set_item_key_safe(trans, root, path, key);
495 BUG_ON(ret);
496 } else {
497 BUG();
498 }
499 return 0;
500}
501
502/*
503 * deletes the csum items from the csum tree for a given
504 * range of bytes.
505 */
506int btrfs_del_csums(struct btrfs_trans_handle *trans,
507 struct btrfs_root *root, u64 bytenr, u64 len)
508{
509 struct btrfs_path *path;
510 struct btrfs_key key;
511 u64 end_byte = bytenr + len;
512 u64 csum_end;
513 struct extent_buffer *leaf;
514 int ret;
515 u16 csum_size =
516 btrfs_super_csum_size(&root->fs_info->super_copy);
517 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
518
519 root = root->fs_info->csum_root;
520
521 path = btrfs_alloc_path();
522
Chris Masond3977122009-01-05 21:25:51 -0500523 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500524 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
525 key.offset = end_byte - 1;
526 key.type = BTRFS_EXTENT_CSUM_KEY;
527
Chris Masonb9473432009-03-13 11:00:37 -0400528 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500529 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
530 if (ret > 0) {
531 if (path->slots[0] == 0)
532 goto out;
533 path->slots[0]--;
534 }
535 leaf = path->nodes[0];
536 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
537
538 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
539 key.type != BTRFS_EXTENT_CSUM_KEY) {
540 break;
541 }
542
543 if (key.offset >= end_byte)
544 break;
545
546 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
547 csum_end <<= blocksize_bits;
548 csum_end += key.offset;
549
550 /* this csum ends before we start, we're done */
551 if (csum_end <= bytenr)
552 break;
553
554 /* delete the entire item, it is inside our range */
555 if (key.offset >= bytenr && csum_end <= end_byte) {
556 ret = btrfs_del_item(trans, root, path);
557 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500558 if (key.offset == bytenr)
559 break;
Chris Mason459931e2008-12-10 09:10:46 -0500560 } else if (key.offset < bytenr && csum_end > end_byte) {
561 unsigned long offset;
562 unsigned long shift_len;
563 unsigned long item_offset;
564 /*
565 * [ bytenr - len ]
566 * [csum ]
567 *
568 * Our bytes are in the middle of the csum,
569 * we need to split this item and insert a new one.
570 *
571 * But we can't drop the path because the
572 * csum could change, get removed, extended etc.
573 *
574 * The trick here is the max size of a csum item leaves
575 * enough room in the tree block for a single
576 * item header. So, we split the item in place,
577 * adding a new header pointing to the existing
578 * bytes. Then we loop around again and we have
579 * a nicely formed csum item that we can neatly
580 * truncate.
581 */
582 offset = (bytenr - key.offset) >> blocksize_bits;
583 offset *= csum_size;
584
585 shift_len = (len >> blocksize_bits) * csum_size;
586
587 item_offset = btrfs_item_ptr_offset(leaf,
588 path->slots[0]);
589
590 memset_extent_buffer(leaf, 0, item_offset + offset,
591 shift_len);
592 key.offset = bytenr;
593
594 /*
595 * btrfs_split_item returns -EAGAIN when the
596 * item changed size or key
597 */
598 ret = btrfs_split_item(trans, root, path, &key, offset);
599 BUG_ON(ret && ret != -EAGAIN);
600
601 key.offset = end_byte - 1;
602 } else {
603 ret = truncate_one_csum(trans, root, path,
604 &key, bytenr, len);
605 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500606 if (key.offset < bytenr)
607 break;
Chris Mason459931e2008-12-10 09:10:46 -0500608 }
609 btrfs_release_path(root, path);
610 }
611out:
612 btrfs_free_path(path);
613 return 0;
614}
615
Chris Mason065631f2008-02-20 12:07:25 -0500616int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500617 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400618 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400619{
Chris Masond20f7042008-12-08 16:58:54 -0500620 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400621 int ret;
622 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400623 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500624 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400625 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500626 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400627 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400628 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500629 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400630 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400631 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400632 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400633 u32 nritems;
634 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500635 char *eb_map;
636 char *eb_token;
637 unsigned long map_len;
638 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500639 u16 csum_size =
640 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500641
Chris Mason5caf2a02007-04-02 11:20:42 -0400642 path = btrfs_alloc_path();
643 BUG_ON(!path);
Chris Masoned98b562008-07-22 23:06:42 -0400644 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500645again:
646 next_offset = (u64)-1;
647 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500648 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
649 file_key.offset = sector_sum->bytenr;
650 bytenr = sector_sum->bytenr;
651 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400652
Chris Masond20f7042008-12-08 16:58:54 -0500653 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400654 if (!IS_ERR(item)) {
655 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400656 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400657 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400658 }
Chris Masona429e512007-04-18 16:15:28 -0400659 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400660 if (ret != -EFBIG && ret != -ENOENT)
661 goto fail_unlock;
662
Chris Masona429e512007-04-18 16:15:28 -0400663 if (ret == -EFBIG) {
664 u32 item_size;
665 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400666 leaf = path->nodes[0];
667 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500668 if ((item_size / csum_size) >=
669 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400670 /* already at max size, make a new one */
671 goto insert;
672 }
673 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400674 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400675 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400676 nritems = btrfs_header_nritems(path->nodes[0]);
677 if (path->slots[0] >= nritems - 1) {
678 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400679 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400680 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400681 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400682 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400683 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400684 }
685 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500686 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
687 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400688 found_next = 1;
689 goto insert;
690 }
691 next_offset = found_key.offset;
692 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400693 goto insert;
694 }
695
696 /*
697 * at this point, we know the tree has an item, but it isn't big
698 * enough yet to put our csum in. Grow it
699 */
700 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400701 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500702 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400703 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400704 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500705
706 if (ret > 0) {
707 if (path->slots[0] == 0)
708 goto insert;
709 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400710 }
Chris Mason459931e2008-12-10 09:10:46 -0500711
Chris Mason5f39d392007-10-15 16:14:19 -0400712 leaf = path->nodes[0];
713 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500714 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400715 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500716
Chris Masond20f7042008-12-08 16:58:54 -0500717 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
718 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500719 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400720 goto insert;
721 }
Chris Mason459931e2008-12-10 09:10:46 -0500722
Chris Mason5f39d392007-10-15 16:14:19 -0400723 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500724 csum_size) {
725 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500726
727 /*
728 * is the item big enough already? we dropped our lock
729 * before and need to recheck
730 */
731 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
732 goto csum;
733
Chris Mason5f39d392007-10-15 16:14:19 -0400734 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500735 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400736 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500737
Chris Masona429e512007-04-18 16:15:28 -0400738 ret = btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400739 BUG_ON(ret);
740 goto csum;
741 }
742
743insert:
Chris Masona429e512007-04-18 16:15:28 -0400744 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400745 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400746 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500747 u64 tmp = total_bytes + root->sectorsize;
748 u64 next_sector = sector_sum->bytenr;
749 struct btrfs_sector_sum *next = sector_sum + 1;
750
Chris Masond3977122009-01-05 21:25:51 -0500751 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500752 if (next_sector + root->sectorsize != next->bytenr)
753 break;
754 tmp += root->sectorsize;
755 next_sector = next->bytenr;
756 next++;
757 }
758 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400759 tmp >>= root->fs_info->sb->s_blocksize_bits;
760 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500761 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
762 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400763 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500764 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400765 }
Chris Masonb9473432009-03-13 11:00:37 -0400766 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400767 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400768 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400769 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400770 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400771 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400772 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400773 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400774 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400775 }
Chris Mason6567e832007-04-16 09:22:45 -0400776csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400777 leaf = path->nodes[0];
778 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400779 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400780 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500781 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400782found:
Chris Mason065631f2008-02-20 12:07:25 -0500783 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
784 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
785 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason6e92f5e2008-02-20 12:07:25 -0500786 eb_token = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400787next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500788
Chris Mason6e92f5e2008-02-20 12:07:25 -0500789 if (!eb_token ||
Josef Bacik607d4322008-12-02 07:17:45 -0500790 (unsigned long)item + csum_size >= map_start + map_len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500791 int err;
792
793 if (eb_token)
Chris Masoneb209782008-02-21 09:30:08 -0500794 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500795 eb_token = NULL;
796 err = map_private_extent_buffer(leaf, (unsigned long)item,
Josef Bacik607d4322008-12-02 07:17:45 -0500797 csum_size,
Chris Mason6e92f5e2008-02-20 12:07:25 -0500798 &eb_token, &eb_map,
Chris Masoneb209782008-02-21 09:30:08 -0500799 &map_start, &map_len, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500800 if (err)
801 eb_token = NULL;
802 }
803 if (eb_token) {
804 memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
Josef Bacik607d4322008-12-02 07:17:45 -0500805 &sector_sum->sum, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500806 } else {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400807 write_extent_buffer(leaf, &sector_sum->sum,
Josef Bacik607d4322008-12-02 07:17:45 -0500808 (unsigned long)item, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500809 }
Chris Mason7f3c74f2008-07-18 12:01:11 -0400810
Chris Masone6dcd2d2008-07-17 12:53:50 -0400811 total_bytes += root->sectorsize;
812 sector_sum++;
813 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500814 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500815 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500816 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
817 sector_sum->bytenr) {
818 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400819 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500820 }
Chris Mason065631f2008-02-20 12:07:25 -0500821 }
Chris Mason6e92f5e2008-02-20 12:07:25 -0500822 if (eb_token) {
Chris Masoneb209782008-02-21 09:30:08 -0500823 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500824 eb_token = NULL;
825 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400826 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400827 if (total_bytes < sums->len) {
Chris Mason065631f2008-02-20 12:07:25 -0500828 btrfs_release_path(root, path);
Chris Masonb9473432009-03-13 11:00:37 -0400829 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500830 goto again;
831 }
Chris Mason53863232008-08-15 15:34:18 -0400832out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400833 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400834 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400835
836fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400837 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400838}