blob: 4f19a3e1bf328dc39ab763dc6f604095aa5d76c7 [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
Josef Bacik4b46fce2010-05-23 11:00:55 -0400152static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
153 struct inode *inode, struct bio *bio,
154 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400155{
156 u32 sum;
157 struct bio_vec *bvec = bio->bi_io_vec;
158 int bio_index = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400159 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400160 u64 item_start_offset = 0;
161 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500162 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400163 u32 diff;
Josef Bacik607d4322008-12-02 07:17:45 -0500164 u16 csum_size =
165 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400166 int ret;
167 struct btrfs_path *path;
168 struct btrfs_csum_item *item = NULL;
169 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
170
171 path = btrfs_alloc_path();
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400172 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
173 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400174
175 WARN_ON(bio->bi_vcnt <= 0);
176
Chris Masond20f7042008-12-08 16:58:54 -0500177 disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400178 if (dio)
179 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500180 while (bio_index < bio->bi_vcnt) {
Josef Bacik4b46fce2010-05-23 11:00:55 -0400181 if (!dio)
182 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500183 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400184 if (ret == 0)
185 goto found;
186
Chris Masond20f7042008-12-08 16:58:54 -0500187 if (!item || disk_bytenr < item_start_offset ||
188 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400189 struct btrfs_key found_key;
190 u32 item_size;
191
192 if (item)
193 btrfs_release_path(root, path);
Chris Masond20f7042008-12-08 16:58:54 -0500194 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
195 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400196 if (IS_ERR(item)) {
197 ret = PTR_ERR(item);
198 if (ret == -ENOENT || ret == -EFBIG)
199 ret = 0;
200 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500201 if (BTRFS_I(inode)->root->root_key.objectid ==
202 BTRFS_DATA_RELOC_TREE_OBJECTID) {
203 set_extent_bits(io_tree, offset,
204 offset + bvec->bv_len - 1,
205 EXTENT_NODATASUM, GFP_NOFS);
206 } else {
Chris Masond3977122009-01-05 21:25:51 -0500207 printk(KERN_INFO "btrfs no csum found "
208 "for inode %lu start %llu\n",
209 inode->i_ino,
Yan Zheng17d217f2008-12-12 10:03:38 -0500210 (unsigned long long)offset);
211 }
Chris Mason6dab8152008-08-04 08:35:53 -0400212 item = NULL;
Chris Mason39be25c2008-11-10 11:50:50 -0500213 btrfs_release_path(root, path);
Chris Mason61b49442008-07-31 15:42:53 -0400214 goto found;
215 }
216 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
217 path->slots[0]);
218
219 item_start_offset = found_key.offset;
220 item_size = btrfs_item_size_nr(path->nodes[0],
221 path->slots[0]);
222 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500223 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400224 root->sectorsize;
225 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
226 struct btrfs_csum_item);
227 }
228 /*
229 * this byte range must be able to fit inside
230 * a single leaf so it will also fit inside a u32
231 */
Chris Masond20f7042008-12-08 16:58:54 -0500232 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400233 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500234 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400235
236 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400237 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500238 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400239found:
Chris Masond20f7042008-12-08 16:58:54 -0500240 if (dst)
241 *dst++ = sum;
242 else
243 set_state_private(io_tree, offset, sum);
244 disk_bytenr += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400245 offset += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400246 bio_index++;
247 bvec++;
248 }
249 btrfs_free_path(path);
250 return 0;
251}
252
Josef Bacik4b46fce2010-05-23 11:00:55 -0400253int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
254 struct bio *bio, u32 *dst)
255{
256 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
257}
258
259int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
260 struct bio *bio, u64 offset, u32 *dst)
261{
262 return __btrfs_lookup_bio_sums(root, inode, bio, offset, dst, 1);
263}
264
Yan Zheng17d217f2008-12-12 10:03:38 -0500265int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
266 struct list_head *list)
267{
268 struct btrfs_key key;
269 struct btrfs_path *path;
270 struct extent_buffer *leaf;
271 struct btrfs_ordered_sum *sums;
272 struct btrfs_sector_sum *sector_sum;
273 struct btrfs_csum_item *item;
274 unsigned long offset;
275 int ret;
276 size_t size;
277 u64 csum_end;
278 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
279
280 path = btrfs_alloc_path();
281 BUG_ON(!path);
282
283 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
284 key.offset = start;
285 key.type = BTRFS_EXTENT_CSUM_KEY;
286
Yan Zheng07d400a2009-01-06 11:42:00 -0500287 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500288 if (ret < 0)
289 goto fail;
290 if (ret > 0 && path->slots[0] > 0) {
291 leaf = path->nodes[0];
292 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
293 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
294 key.type == BTRFS_EXTENT_CSUM_KEY) {
295 offset = (start - key.offset) >>
296 root->fs_info->sb->s_blocksize_bits;
297 if (offset * csum_size <
298 btrfs_item_size_nr(leaf, path->slots[0] - 1))
299 path->slots[0]--;
300 }
301 }
302
303 while (start <= end) {
304 leaf = path->nodes[0];
305 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500306 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500307 if (ret < 0)
308 goto fail;
309 if (ret > 0)
310 break;
311 leaf = path->nodes[0];
312 }
313
314 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
315 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
316 key.type != BTRFS_EXTENT_CSUM_KEY)
317 break;
318
319 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
320 if (key.offset > end)
321 break;
322
323 if (key.offset > start)
324 start = key.offset;
325
326 size = btrfs_item_size_nr(leaf, path->slots[0]);
327 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500328 if (csum_end <= start) {
329 path->slots[0]++;
330 continue;
331 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500332
Yan Zheng07d400a2009-01-06 11:42:00 -0500333 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500334 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
335 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500336 while (start < csum_end) {
337 size = min_t(size_t, csum_end - start,
338 MAX_ORDERED_SUM_BYTES(root));
339 sums = kzalloc(btrfs_ordered_sum_size(root, size),
340 GFP_NOFS);
341 BUG_ON(!sums);
Yan Zheng17d217f2008-12-12 10:03:38 -0500342
Yan Zheng07d400a2009-01-06 11:42:00 -0500343 sector_sum = sums->sums;
344 sums->bytenr = start;
345 sums->len = size;
346
347 offset = (start - key.offset) >>
348 root->fs_info->sb->s_blocksize_bits;
349 offset *= csum_size;
350
351 while (size > 0) {
352 read_extent_buffer(path->nodes[0],
353 &sector_sum->sum,
354 ((unsigned long)item) +
355 offset, csum_size);
356 sector_sum->bytenr = start;
357
358 size -= root->sectorsize;
359 start += root->sectorsize;
360 offset += csum_size;
361 sector_sum++;
362 }
363 list_add_tail(&sums->list, list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500364 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500365 path->slots[0]++;
366 }
367 ret = 0;
368fail:
369 btrfs_free_path(path);
370 return ret;
371}
372
Chris Mason3edf7d32008-07-18 06:17:13 -0400373int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500374 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400375{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400376 struct btrfs_ordered_sum *sums;
377 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400378 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400379 char *data;
380 struct bio_vec *bvec = bio->bi_io_vec;
381 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400382 unsigned long total_bytes = 0;
383 unsigned long this_sum_bytes = 0;
384 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500385 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400386
Chris Masone6dcd2d2008-07-17 12:53:50 -0400387 WARN_ON(bio->bi_vcnt <= 0);
388 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400389 if (!sums)
390 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400391
Chris Masoned98b562008-07-22 23:06:42 -0400392 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500393 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400394 sums->len = bio->bi_size;
395 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500396
397 if (contig)
398 offset = file_start;
399 else
400 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
401
402 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400403 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500404 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400405
Chris Masond3977122009-01-05 21:25:51 -0500406 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500407 if (!contig)
408 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
409
410 if (!contig && (offset >= ordered->file_offset + ordered->len ||
411 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400412 unsigned long bytes_left;
413 sums->len = this_sum_bytes;
414 this_sum_bytes = 0;
415 btrfs_add_ordered_sum(inode, ordered, sums);
416 btrfs_put_ordered_extent(ordered);
417
418 bytes_left = bio->bi_size - total_bytes;
419
420 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
421 GFP_NOFS);
422 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400423 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400424 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500425 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400426 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500427 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400428 }
429
Chris Masone0156402008-04-16 11:15:20 -0400430 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400431 sector_sum->sum = ~(u32)0;
432 sector_sum->sum = btrfs_csum_data(root,
433 data + bvec->bv_offset,
434 sector_sum->sum,
435 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400436 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400437 btrfs_csum_final(sector_sum->sum,
438 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500439 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400440
Chris Masone6dcd2d2008-07-17 12:53:50 -0400441 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400442 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400443 total_bytes += bvec->bv_len;
444 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500445 disk_bytenr += bvec->bv_len;
446 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400447 bvec++;
448 }
Chris Masoned98b562008-07-22 23:06:42 -0400449 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400450 btrfs_add_ordered_sum(inode, ordered, sums);
451 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400452 return 0;
453}
454
Chris Mason459931e2008-12-10 09:10:46 -0500455/*
456 * helper function for csum removal, this expects the
457 * key to describe the csum pointed to by the path, and it expects
458 * the csum to overlap the range [bytenr, len]
459 *
460 * The csum should not be entirely contained in the range and the
461 * range should not be entirely contained in the csum.
462 *
463 * This calls btrfs_truncate_item with the correct args based on the
464 * overlap, and fixes up the key as required.
465 */
466static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
467 struct btrfs_root *root,
468 struct btrfs_path *path,
469 struct btrfs_key *key,
470 u64 bytenr, u64 len)
471{
472 struct extent_buffer *leaf;
473 u16 csum_size =
474 btrfs_super_csum_size(&root->fs_info->super_copy);
475 u64 csum_end;
476 u64 end_byte = bytenr + len;
477 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
478 int ret;
479
480 leaf = path->nodes[0];
481 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
482 csum_end <<= root->fs_info->sb->s_blocksize_bits;
483 csum_end += key->offset;
484
485 if (key->offset < bytenr && csum_end <= end_byte) {
486 /*
487 * [ bytenr - len ]
488 * [ ]
489 * [csum ]
490 * A simple truncate off the end of the item
491 */
492 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
493 new_size *= csum_size;
494 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
495 BUG_ON(ret);
496 } else if (key->offset >= bytenr && csum_end > end_byte &&
497 end_byte > key->offset) {
498 /*
499 * [ bytenr - len ]
500 * [ ]
501 * [csum ]
502 * we need to truncate from the beginning of the csum
503 */
504 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
505 new_size *= csum_size;
506
507 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
508 BUG_ON(ret);
509
510 key->offset = end_byte;
511 ret = btrfs_set_item_key_safe(trans, root, path, key);
512 BUG_ON(ret);
513 } else {
514 BUG();
515 }
516 return 0;
517}
518
519/*
520 * deletes the csum items from the csum tree for a given
521 * range of bytes.
522 */
523int btrfs_del_csums(struct btrfs_trans_handle *trans,
524 struct btrfs_root *root, u64 bytenr, u64 len)
525{
526 struct btrfs_path *path;
527 struct btrfs_key key;
528 u64 end_byte = bytenr + len;
529 u64 csum_end;
530 struct extent_buffer *leaf;
531 int ret;
532 u16 csum_size =
533 btrfs_super_csum_size(&root->fs_info->super_copy);
534 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
535
536 root = root->fs_info->csum_root;
537
538 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000539 if (!path)
540 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500541
Chris Masond3977122009-01-05 21:25:51 -0500542 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500543 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
544 key.offset = end_byte - 1;
545 key.type = BTRFS_EXTENT_CSUM_KEY;
546
Chris Masonb9473432009-03-13 11:00:37 -0400547 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500548 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
549 if (ret > 0) {
550 if (path->slots[0] == 0)
551 goto out;
552 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000553 } else if (ret < 0) {
554 goto out;
Chris Mason459931e2008-12-10 09:10:46 -0500555 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000556
Chris Mason459931e2008-12-10 09:10:46 -0500557 leaf = path->nodes[0];
558 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
559
560 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
561 key.type != BTRFS_EXTENT_CSUM_KEY) {
562 break;
563 }
564
565 if (key.offset >= end_byte)
566 break;
567
568 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
569 csum_end <<= blocksize_bits;
570 csum_end += key.offset;
571
572 /* this csum ends before we start, we're done */
573 if (csum_end <= bytenr)
574 break;
575
576 /* delete the entire item, it is inside our range */
577 if (key.offset >= bytenr && csum_end <= end_byte) {
578 ret = btrfs_del_item(trans, root, path);
579 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500580 if (key.offset == bytenr)
581 break;
Chris Mason459931e2008-12-10 09:10:46 -0500582 } else if (key.offset < bytenr && csum_end > end_byte) {
583 unsigned long offset;
584 unsigned long shift_len;
585 unsigned long item_offset;
586 /*
587 * [ bytenr - len ]
588 * [csum ]
589 *
590 * Our bytes are in the middle of the csum,
591 * we need to split this item and insert a new one.
592 *
593 * But we can't drop the path because the
594 * csum could change, get removed, extended etc.
595 *
596 * The trick here is the max size of a csum item leaves
597 * enough room in the tree block for a single
598 * item header. So, we split the item in place,
599 * adding a new header pointing to the existing
600 * bytes. Then we loop around again and we have
601 * a nicely formed csum item that we can neatly
602 * truncate.
603 */
604 offset = (bytenr - key.offset) >> blocksize_bits;
605 offset *= csum_size;
606
607 shift_len = (len >> blocksize_bits) * csum_size;
608
609 item_offset = btrfs_item_ptr_offset(leaf,
610 path->slots[0]);
611
612 memset_extent_buffer(leaf, 0, item_offset + offset,
613 shift_len);
614 key.offset = bytenr;
615
616 /*
617 * btrfs_split_item returns -EAGAIN when the
618 * item changed size or key
619 */
620 ret = btrfs_split_item(trans, root, path, &key, offset);
621 BUG_ON(ret && ret != -EAGAIN);
622
623 key.offset = end_byte - 1;
624 } else {
625 ret = truncate_one_csum(trans, root, path,
626 &key, bytenr, len);
627 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500628 if (key.offset < bytenr)
629 break;
Chris Mason459931e2008-12-10 09:10:46 -0500630 }
631 btrfs_release_path(root, path);
632 }
633out:
634 btrfs_free_path(path);
635 return 0;
636}
637
Chris Mason065631f2008-02-20 12:07:25 -0500638int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500639 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400640 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400641{
Chris Masond20f7042008-12-08 16:58:54 -0500642 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400643 int ret;
644 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400645 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500646 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400647 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500648 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400649 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400650 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500651 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400652 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400653 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400654 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400655 u32 nritems;
656 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500657 char *eb_map;
658 char *eb_token;
659 unsigned long map_len;
660 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500661 u16 csum_size =
662 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500663
Chris Mason5caf2a02007-04-02 11:20:42 -0400664 path = btrfs_alloc_path();
665 BUG_ON(!path);
Chris Masoned98b562008-07-22 23:06:42 -0400666 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500667again:
668 next_offset = (u64)-1;
669 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500670 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
671 file_key.offset = sector_sum->bytenr;
672 bytenr = sector_sum->bytenr;
673 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400674
Chris Masond20f7042008-12-08 16:58:54 -0500675 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400676 if (!IS_ERR(item)) {
677 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400678 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400679 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400680 }
Chris Masona429e512007-04-18 16:15:28 -0400681 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400682 if (ret != -EFBIG && ret != -ENOENT)
683 goto fail_unlock;
684
Chris Masona429e512007-04-18 16:15:28 -0400685 if (ret == -EFBIG) {
686 u32 item_size;
687 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400688 leaf = path->nodes[0];
689 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500690 if ((item_size / csum_size) >=
691 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400692 /* already at max size, make a new one */
693 goto insert;
694 }
695 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400696 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400697 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400698 nritems = btrfs_header_nritems(path->nodes[0]);
699 if (path->slots[0] >= nritems - 1) {
700 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400701 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400702 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400703 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400704 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400705 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400706 }
707 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500708 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
709 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400710 found_next = 1;
711 goto insert;
712 }
713 next_offset = found_key.offset;
714 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400715 goto insert;
716 }
717
718 /*
719 * at this point, we know the tree has an item, but it isn't big
720 * enough yet to put our csum in. Grow it
721 */
722 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400723 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500724 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400725 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400726 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500727
728 if (ret > 0) {
729 if (path->slots[0] == 0)
730 goto insert;
731 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400732 }
Chris Mason459931e2008-12-10 09:10:46 -0500733
Chris Mason5f39d392007-10-15 16:14:19 -0400734 leaf = path->nodes[0];
735 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500736 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400737 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500738
Chris Masond20f7042008-12-08 16:58:54 -0500739 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
740 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500741 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400742 goto insert;
743 }
Chris Mason459931e2008-12-10 09:10:46 -0500744
Chris Mason5f39d392007-10-15 16:14:19 -0400745 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500746 csum_size) {
747 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500748
749 /*
750 * is the item big enough already? we dropped our lock
751 * before and need to recheck
752 */
753 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
754 goto csum;
755
Chris Mason5f39d392007-10-15 16:14:19 -0400756 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500757 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400758 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500759
Chris Masona429e512007-04-18 16:15:28 -0400760 ret = btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400761 BUG_ON(ret);
762 goto csum;
763 }
764
765insert:
Chris Masona429e512007-04-18 16:15:28 -0400766 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400767 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400768 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500769 u64 tmp = total_bytes + root->sectorsize;
770 u64 next_sector = sector_sum->bytenr;
771 struct btrfs_sector_sum *next = sector_sum + 1;
772
Chris Masond3977122009-01-05 21:25:51 -0500773 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500774 if (next_sector + root->sectorsize != next->bytenr)
775 break;
776 tmp += root->sectorsize;
777 next_sector = next->bytenr;
778 next++;
779 }
780 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400781 tmp >>= root->fs_info->sb->s_blocksize_bits;
782 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500783 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
784 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400785 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500786 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400787 }
Chris Masonb9473432009-03-13 11:00:37 -0400788 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400789 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400790 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400791 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400792 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400793 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400794 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400795 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400796 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400797 }
Chris Mason6567e832007-04-16 09:22:45 -0400798csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400799 leaf = path->nodes[0];
800 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400801 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400802 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500803 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400804found:
Chris Mason065631f2008-02-20 12:07:25 -0500805 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
806 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
807 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason6e92f5e2008-02-20 12:07:25 -0500808 eb_token = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400809next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500810
Chris Mason6e92f5e2008-02-20 12:07:25 -0500811 if (!eb_token ||
Josef Bacik607d4322008-12-02 07:17:45 -0500812 (unsigned long)item + csum_size >= map_start + map_len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500813 int err;
814
815 if (eb_token)
Chris Masoneb209782008-02-21 09:30:08 -0500816 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500817 eb_token = NULL;
818 err = map_private_extent_buffer(leaf, (unsigned long)item,
Josef Bacik607d4322008-12-02 07:17:45 -0500819 csum_size,
Chris Mason6e92f5e2008-02-20 12:07:25 -0500820 &eb_token, &eb_map,
Chris Masoneb209782008-02-21 09:30:08 -0500821 &map_start, &map_len, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500822 if (err)
823 eb_token = NULL;
824 }
825 if (eb_token) {
826 memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
Josef Bacik607d4322008-12-02 07:17:45 -0500827 &sector_sum->sum, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500828 } else {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400829 write_extent_buffer(leaf, &sector_sum->sum,
Josef Bacik607d4322008-12-02 07:17:45 -0500830 (unsigned long)item, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500831 }
Chris Mason7f3c74f2008-07-18 12:01:11 -0400832
Chris Masone6dcd2d2008-07-17 12:53:50 -0400833 total_bytes += root->sectorsize;
834 sector_sum++;
835 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500836 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500837 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500838 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
839 sector_sum->bytenr) {
840 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500842 }
Chris Mason065631f2008-02-20 12:07:25 -0500843 }
Chris Mason6e92f5e2008-02-20 12:07:25 -0500844 if (eb_token) {
Chris Masoneb209782008-02-21 09:30:08 -0500845 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500846 eb_token = NULL;
847 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400848 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400849 if (total_bytes < sums->len) {
Chris Mason065631f2008-02-20 12:07:25 -0500850 btrfs_release_path(root, path);
Chris Masonb9473432009-03-13 11:00:37 -0400851 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500852 goto again;
853 }
Chris Mason53863232008-08-15 15:34:18 -0400854out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400855 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400856 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400857
858fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400859 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400860}