blob: 39ca7c1250e7b4328404603722929b49b84250da [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();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000051 if (!path)
52 return -ENOMEM;
Chris Masondee26a92007-03-26 16:00:06 -040053 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040054 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040055 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
56
Chris Masonb9473432009-03-13 11:00:37 -040057 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040058 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040059 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040060 if (ret < 0)
61 goto out;
Chris Mason9773a782007-03-27 11:26:26 -040062 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -040063 leaf = path->nodes[0];
64 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040065 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040066 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040067 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040068 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040069 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040070 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040071 btrfs_set_file_extent_generation(leaf, item, trans->transid);
72 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040073 btrfs_set_file_extent_compression(leaf, item, compression);
74 btrfs_set_file_extent_encryption(leaf, item, encryption);
75 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
76
Chris Mason5f39d392007-10-15 16:14:19 -040077 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040078out:
Chris Mason5caf2a02007-04-02 11:20:42 -040079 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040080 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040081}
Chris Masondee26a92007-03-26 16:00:06 -040082
Chris Masonb18c6682007-04-17 13:26:50 -040083struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
84 struct btrfs_root *root,
85 struct btrfs_path *path,
Chris Masond20f7042008-12-08 16:58:54 -050086 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040087{
88 int ret;
89 struct btrfs_key file_key;
90 struct btrfs_key found_key;
91 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040092 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040093 u64 csum_offset = 0;
Josef Bacik607d4322008-12-02 07:17:45 -050094 u16 csum_size =
95 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040096 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040097
Chris Masond20f7042008-12-08 16:58:54 -050098 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
99 file_key.offset = bytenr;
100 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -0400101 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400102 if (ret < 0)
103 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400104 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400105 if (ret > 0) {
106 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400107 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400108 goto fail;
109 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400110 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500111 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400112 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500113
114 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400115 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400116 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500117 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400118
119 if (csum_offset >= csums_in_item) {
120 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400121 goto fail;
122 }
123 }
124 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400125 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500126 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400127 return item;
128fail:
129 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400130 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400131 return ERR_PTR(ret);
132}
133
134
Chris Masondee26a92007-03-26 16:00:06 -0400135int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
136 struct btrfs_root *root,
137 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400138 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400139{
140 int ret;
141 struct btrfs_key file_key;
142 int ins_len = mod < 0 ? -1 : 0;
143 int cow = mod != 0;
144
145 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400146 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400147 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
148 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
149 return ret;
150}
Chris Masonf254e522007-03-29 15:15:27 -0400151
Yan Zheng17d217f2008-12-12 10:03:38 -0500152
Josef Bacik4b46fce2010-05-23 11:00:55 -0400153static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
154 struct inode *inode, struct bio *bio,
155 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400156{
157 u32 sum;
158 struct bio_vec *bvec = bio->bi_io_vec;
159 int bio_index = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400160 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400161 u64 item_start_offset = 0;
162 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500163 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400164 u32 diff;
Josef Bacik607d4322008-12-02 07:17:45 -0500165 u16 csum_size =
166 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400167 int ret;
168 struct btrfs_path *path;
169 struct btrfs_csum_item *item = NULL;
170 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
171
172 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000173 if (!path)
174 return -ENOMEM;
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400175 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
176 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400177
178 WARN_ON(bio->bi_vcnt <= 0);
179
Chris Masond20f7042008-12-08 16:58:54 -0500180 disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400181 if (dio)
182 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500183 while (bio_index < bio->bi_vcnt) {
Josef Bacik4b46fce2010-05-23 11:00:55 -0400184 if (!dio)
185 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500186 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400187 if (ret == 0)
188 goto found;
189
Chris Masond20f7042008-12-08 16:58:54 -0500190 if (!item || disk_bytenr < item_start_offset ||
191 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400192 struct btrfs_key found_key;
193 u32 item_size;
194
195 if (item)
196 btrfs_release_path(root, path);
Chris Masond20f7042008-12-08 16:58:54 -0500197 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
198 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400199 if (IS_ERR(item)) {
200 ret = PTR_ERR(item);
201 if (ret == -ENOENT || ret == -EFBIG)
202 ret = 0;
203 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500204 if (BTRFS_I(inode)->root->root_key.objectid ==
205 BTRFS_DATA_RELOC_TREE_OBJECTID) {
206 set_extent_bits(io_tree, offset,
207 offset + bvec->bv_len - 1,
208 EXTENT_NODATASUM, GFP_NOFS);
209 } else {
Chris Masond3977122009-01-05 21:25:51 -0500210 printk(KERN_INFO "btrfs no csum found "
211 "for inode %lu start %llu\n",
212 inode->i_ino,
Yan Zheng17d217f2008-12-12 10:03:38 -0500213 (unsigned long long)offset);
214 }
Chris Mason6dab8152008-08-04 08:35:53 -0400215 item = NULL;
Chris Mason39be25c2008-11-10 11:50:50 -0500216 btrfs_release_path(root, path);
Chris Mason61b49442008-07-31 15:42:53 -0400217 goto found;
218 }
219 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
220 path->slots[0]);
221
222 item_start_offset = found_key.offset;
223 item_size = btrfs_item_size_nr(path->nodes[0],
224 path->slots[0]);
225 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500226 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400227 root->sectorsize;
228 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
229 struct btrfs_csum_item);
230 }
231 /*
232 * this byte range must be able to fit inside
233 * a single leaf so it will also fit inside a u32
234 */
Chris Masond20f7042008-12-08 16:58:54 -0500235 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400236 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500237 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400238
239 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400240 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500241 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400242found:
Chris Masond20f7042008-12-08 16:58:54 -0500243 if (dst)
244 *dst++ = sum;
245 else
246 set_state_private(io_tree, offset, sum);
247 disk_bytenr += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400248 offset += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400249 bio_index++;
250 bvec++;
251 }
252 btrfs_free_path(path);
253 return 0;
254}
255
Josef Bacik4b46fce2010-05-23 11:00:55 -0400256int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
257 struct bio *bio, u32 *dst)
258{
259 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
260}
261
262int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
263 struct bio *bio, u64 offset, u32 *dst)
264{
265 return __btrfs_lookup_bio_sums(root, inode, bio, offset, dst, 1);
266}
267
Yan Zheng17d217f2008-12-12 10:03:38 -0500268int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100269 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500270{
271 struct btrfs_key key;
272 struct btrfs_path *path;
273 struct extent_buffer *leaf;
274 struct btrfs_ordered_sum *sums;
275 struct btrfs_sector_sum *sector_sum;
276 struct btrfs_csum_item *item;
277 unsigned long offset;
278 int ret;
279 size_t size;
280 u64 csum_end;
281 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
282
283 path = btrfs_alloc_path();
284 BUG_ON(!path);
285
Arne Jansena2de7332011-03-08 14:14:00 +0100286 if (search_commit) {
287 path->skip_locking = 1;
288 path->reada = 2;
289 path->search_commit_root = 1;
290 }
291
Yan Zheng17d217f2008-12-12 10:03:38 -0500292 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
293 key.offset = start;
294 key.type = BTRFS_EXTENT_CSUM_KEY;
295
Yan Zheng07d400a2009-01-06 11:42:00 -0500296 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500297 if (ret < 0)
298 goto fail;
299 if (ret > 0 && path->slots[0] > 0) {
300 leaf = path->nodes[0];
301 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
302 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
303 key.type == BTRFS_EXTENT_CSUM_KEY) {
304 offset = (start - key.offset) >>
305 root->fs_info->sb->s_blocksize_bits;
306 if (offset * csum_size <
307 btrfs_item_size_nr(leaf, path->slots[0] - 1))
308 path->slots[0]--;
309 }
310 }
311
312 while (start <= end) {
313 leaf = path->nodes[0];
314 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500315 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500316 if (ret < 0)
317 goto fail;
318 if (ret > 0)
319 break;
320 leaf = path->nodes[0];
321 }
322
323 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
324 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
325 key.type != BTRFS_EXTENT_CSUM_KEY)
326 break;
327
328 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
329 if (key.offset > end)
330 break;
331
332 if (key.offset > start)
333 start = key.offset;
334
335 size = btrfs_item_size_nr(leaf, path->slots[0]);
336 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500337 if (csum_end <= start) {
338 path->slots[0]++;
339 continue;
340 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500341
Yan Zheng07d400a2009-01-06 11:42:00 -0500342 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500343 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
344 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500345 while (start < csum_end) {
346 size = min_t(size_t, csum_end - start,
347 MAX_ORDERED_SUM_BYTES(root));
348 sums = kzalloc(btrfs_ordered_sum_size(root, size),
349 GFP_NOFS);
350 BUG_ON(!sums);
Yan Zheng17d217f2008-12-12 10:03:38 -0500351
Yan Zheng07d400a2009-01-06 11:42:00 -0500352 sector_sum = sums->sums;
353 sums->bytenr = start;
354 sums->len = size;
355
356 offset = (start - key.offset) >>
357 root->fs_info->sb->s_blocksize_bits;
358 offset *= csum_size;
359
360 while (size > 0) {
361 read_extent_buffer(path->nodes[0],
362 &sector_sum->sum,
363 ((unsigned long)item) +
364 offset, csum_size);
365 sector_sum->bytenr = start;
366
367 size -= root->sectorsize;
368 start += root->sectorsize;
369 offset += csum_size;
370 sector_sum++;
371 }
372 list_add_tail(&sums->list, list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500373 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500374 path->slots[0]++;
375 }
376 ret = 0;
377fail:
378 btrfs_free_path(path);
379 return ret;
380}
381
Chris Mason3edf7d32008-07-18 06:17:13 -0400382int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500383 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400384{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400385 struct btrfs_ordered_sum *sums;
386 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400387 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400388 char *data;
389 struct bio_vec *bvec = bio->bi_io_vec;
390 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400391 unsigned long total_bytes = 0;
392 unsigned long this_sum_bytes = 0;
393 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500394 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400395
Chris Masone6dcd2d2008-07-17 12:53:50 -0400396 WARN_ON(bio->bi_vcnt <= 0);
397 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400398 if (!sums)
399 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400400
Chris Masoned98b562008-07-22 23:06:42 -0400401 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500402 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400403 sums->len = bio->bi_size;
404 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500405
406 if (contig)
407 offset = file_start;
408 else
409 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
410
411 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400412 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500413 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400414
Chris Masond3977122009-01-05 21:25:51 -0500415 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500416 if (!contig)
417 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
418
419 if (!contig && (offset >= ordered->file_offset + ordered->len ||
420 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400421 unsigned long bytes_left;
422 sums->len = this_sum_bytes;
423 this_sum_bytes = 0;
424 btrfs_add_ordered_sum(inode, ordered, sums);
425 btrfs_put_ordered_extent(ordered);
426
427 bytes_left = bio->bi_size - total_bytes;
428
429 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
430 GFP_NOFS);
431 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400432 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400433 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500434 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400435 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500436 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400437 }
438
Chris Masone0156402008-04-16 11:15:20 -0400439 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400440 sector_sum->sum = ~(u32)0;
441 sector_sum->sum = btrfs_csum_data(root,
442 data + bvec->bv_offset,
443 sector_sum->sum,
444 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400445 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400446 btrfs_csum_final(sector_sum->sum,
447 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500448 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400449
Chris Masone6dcd2d2008-07-17 12:53:50 -0400450 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400451 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400452 total_bytes += bvec->bv_len;
453 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500454 disk_bytenr += bvec->bv_len;
455 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400456 bvec++;
457 }
Chris Masoned98b562008-07-22 23:06:42 -0400458 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400459 btrfs_add_ordered_sum(inode, ordered, sums);
460 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400461 return 0;
462}
463
Chris Mason459931e2008-12-10 09:10:46 -0500464/*
465 * helper function for csum removal, this expects the
466 * key to describe the csum pointed to by the path, and it expects
467 * the csum to overlap the range [bytenr, len]
468 *
469 * The csum should not be entirely contained in the range and the
470 * range should not be entirely contained in the csum.
471 *
472 * This calls btrfs_truncate_item with the correct args based on the
473 * overlap, and fixes up the key as required.
474 */
475static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
476 struct btrfs_root *root,
477 struct btrfs_path *path,
478 struct btrfs_key *key,
479 u64 bytenr, u64 len)
480{
481 struct extent_buffer *leaf;
482 u16 csum_size =
483 btrfs_super_csum_size(&root->fs_info->super_copy);
484 u64 csum_end;
485 u64 end_byte = bytenr + len;
486 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
487 int ret;
488
489 leaf = path->nodes[0];
490 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
491 csum_end <<= root->fs_info->sb->s_blocksize_bits;
492 csum_end += key->offset;
493
494 if (key->offset < bytenr && csum_end <= end_byte) {
495 /*
496 * [ bytenr - len ]
497 * [ ]
498 * [csum ]
499 * A simple truncate off the end of the item
500 */
501 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
502 new_size *= csum_size;
503 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
504 BUG_ON(ret);
505 } else if (key->offset >= bytenr && csum_end > end_byte &&
506 end_byte > key->offset) {
507 /*
508 * [ bytenr - len ]
509 * [ ]
510 * [csum ]
511 * we need to truncate from the beginning of the csum
512 */
513 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
514 new_size *= csum_size;
515
516 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
517 BUG_ON(ret);
518
519 key->offset = end_byte;
520 ret = btrfs_set_item_key_safe(trans, root, path, key);
521 BUG_ON(ret);
522 } else {
523 BUG();
524 }
525 return 0;
526}
527
528/*
529 * deletes the csum items from the csum tree for a given
530 * range of bytes.
531 */
532int btrfs_del_csums(struct btrfs_trans_handle *trans,
533 struct btrfs_root *root, u64 bytenr, u64 len)
534{
535 struct btrfs_path *path;
536 struct btrfs_key key;
537 u64 end_byte = bytenr + len;
538 u64 csum_end;
539 struct extent_buffer *leaf;
540 int ret;
541 u16 csum_size =
542 btrfs_super_csum_size(&root->fs_info->super_copy);
543 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
544
545 root = root->fs_info->csum_root;
546
547 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000548 if (!path)
549 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500550
Chris Masond3977122009-01-05 21:25:51 -0500551 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500552 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
553 key.offset = end_byte - 1;
554 key.type = BTRFS_EXTENT_CSUM_KEY;
555
Chris Masonb9473432009-03-13 11:00:37 -0400556 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500557 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
558 if (ret > 0) {
559 if (path->slots[0] == 0)
560 goto out;
561 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000562 } else if (ret < 0) {
563 goto out;
Chris Mason459931e2008-12-10 09:10:46 -0500564 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000565
Chris Mason459931e2008-12-10 09:10:46 -0500566 leaf = path->nodes[0];
567 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
568
569 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
570 key.type != BTRFS_EXTENT_CSUM_KEY) {
571 break;
572 }
573
574 if (key.offset >= end_byte)
575 break;
576
577 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
578 csum_end <<= blocksize_bits;
579 csum_end += key.offset;
580
581 /* this csum ends before we start, we're done */
582 if (csum_end <= bytenr)
583 break;
584
585 /* delete the entire item, it is inside our range */
586 if (key.offset >= bytenr && csum_end <= end_byte) {
587 ret = btrfs_del_item(trans, root, path);
588 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500589 if (key.offset == bytenr)
590 break;
Chris Mason459931e2008-12-10 09:10:46 -0500591 } else if (key.offset < bytenr && csum_end > end_byte) {
592 unsigned long offset;
593 unsigned long shift_len;
594 unsigned long item_offset;
595 /*
596 * [ bytenr - len ]
597 * [csum ]
598 *
599 * Our bytes are in the middle of the csum,
600 * we need to split this item and insert a new one.
601 *
602 * But we can't drop the path because the
603 * csum could change, get removed, extended etc.
604 *
605 * The trick here is the max size of a csum item leaves
606 * enough room in the tree block for a single
607 * item header. So, we split the item in place,
608 * adding a new header pointing to the existing
609 * bytes. Then we loop around again and we have
610 * a nicely formed csum item that we can neatly
611 * truncate.
612 */
613 offset = (bytenr - key.offset) >> blocksize_bits;
614 offset *= csum_size;
615
616 shift_len = (len >> blocksize_bits) * csum_size;
617
618 item_offset = btrfs_item_ptr_offset(leaf,
619 path->slots[0]);
620
621 memset_extent_buffer(leaf, 0, item_offset + offset,
622 shift_len);
623 key.offset = bytenr;
624
625 /*
626 * btrfs_split_item returns -EAGAIN when the
627 * item changed size or key
628 */
629 ret = btrfs_split_item(trans, root, path, &key, offset);
630 BUG_ON(ret && ret != -EAGAIN);
631
632 key.offset = end_byte - 1;
633 } else {
634 ret = truncate_one_csum(trans, root, path,
635 &key, bytenr, len);
636 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500637 if (key.offset < bytenr)
638 break;
Chris Mason459931e2008-12-10 09:10:46 -0500639 }
640 btrfs_release_path(root, path);
641 }
642out:
643 btrfs_free_path(path);
644 return 0;
645}
646
Chris Mason065631f2008-02-20 12:07:25 -0500647int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500648 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400649 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400650{
Chris Masond20f7042008-12-08 16:58:54 -0500651 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400652 int ret;
653 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400654 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500655 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400656 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500657 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400658 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400659 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500660 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400661 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400662 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400663 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400664 u32 nritems;
665 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500666 char *eb_map;
667 char *eb_token;
668 unsigned long map_len;
669 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500670 u16 csum_size =
671 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500672
Chris Mason5caf2a02007-04-02 11:20:42 -0400673 path = btrfs_alloc_path();
674 BUG_ON(!path);
Chris Masoned98b562008-07-22 23:06:42 -0400675 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500676again:
677 next_offset = (u64)-1;
678 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500679 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
680 file_key.offset = sector_sum->bytenr;
681 bytenr = sector_sum->bytenr;
682 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400683
Chris Masond20f7042008-12-08 16:58:54 -0500684 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400685 if (!IS_ERR(item)) {
686 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400687 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400688 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400689 }
Chris Masona429e512007-04-18 16:15:28 -0400690 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400691 if (ret != -EFBIG && ret != -ENOENT)
692 goto fail_unlock;
693
Chris Masona429e512007-04-18 16:15:28 -0400694 if (ret == -EFBIG) {
695 u32 item_size;
696 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400697 leaf = path->nodes[0];
698 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500699 if ((item_size / csum_size) >=
700 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400701 /* already at max size, make a new one */
702 goto insert;
703 }
704 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400705 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400706 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400707 nritems = btrfs_header_nritems(path->nodes[0]);
708 if (path->slots[0] >= nritems - 1) {
709 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400710 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400711 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400712 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400713 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400714 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400715 }
716 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500717 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
718 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400719 found_next = 1;
720 goto insert;
721 }
722 next_offset = found_key.offset;
723 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400724 goto insert;
725 }
726
727 /*
728 * at this point, we know the tree has an item, but it isn't big
729 * enough yet to put our csum in. Grow it
730 */
731 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400732 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500733 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400734 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400735 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500736
737 if (ret > 0) {
738 if (path->slots[0] == 0)
739 goto insert;
740 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400741 }
Chris Mason459931e2008-12-10 09:10:46 -0500742
Chris Mason5f39d392007-10-15 16:14:19 -0400743 leaf = path->nodes[0];
744 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500745 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400746 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500747
Chris Masond20f7042008-12-08 16:58:54 -0500748 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
749 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500750 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400751 goto insert;
752 }
Chris Mason459931e2008-12-10 09:10:46 -0500753
Chris Mason5f39d392007-10-15 16:14:19 -0400754 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500755 csum_size) {
756 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500757
758 /*
759 * is the item big enough already? we dropped our lock
760 * before and need to recheck
761 */
762 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
763 goto csum;
764
Chris Mason5f39d392007-10-15 16:14:19 -0400765 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500766 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400767 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500768
Chris Masona429e512007-04-18 16:15:28 -0400769 ret = btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400770 BUG_ON(ret);
771 goto csum;
772 }
773
774insert:
Chris Masona429e512007-04-18 16:15:28 -0400775 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400776 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400777 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500778 u64 tmp = total_bytes + root->sectorsize;
779 u64 next_sector = sector_sum->bytenr;
780 struct btrfs_sector_sum *next = sector_sum + 1;
781
Chris Masond3977122009-01-05 21:25:51 -0500782 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500783 if (next_sector + root->sectorsize != next->bytenr)
784 break;
785 tmp += root->sectorsize;
786 next_sector = next->bytenr;
787 next++;
788 }
789 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400790 tmp >>= root->fs_info->sb->s_blocksize_bits;
791 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500792 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
793 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400794 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500795 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400796 }
Chris Masonb9473432009-03-13 11:00:37 -0400797 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400798 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400799 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400800 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400801 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400802 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400803 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400804 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400805 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400806 }
Chris Mason6567e832007-04-16 09:22:45 -0400807csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400808 leaf = path->nodes[0];
809 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400810 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400811 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500812 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400813found:
Chris Mason065631f2008-02-20 12:07:25 -0500814 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
815 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
816 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason6e92f5e2008-02-20 12:07:25 -0500817 eb_token = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400818next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500819
Chris Mason6e92f5e2008-02-20 12:07:25 -0500820 if (!eb_token ||
Josef Bacik607d4322008-12-02 07:17:45 -0500821 (unsigned long)item + csum_size >= map_start + map_len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500822 int err;
823
824 if (eb_token)
Chris Masoneb209782008-02-21 09:30:08 -0500825 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500826 eb_token = NULL;
827 err = map_private_extent_buffer(leaf, (unsigned long)item,
Josef Bacik607d4322008-12-02 07:17:45 -0500828 csum_size,
Chris Mason6e92f5e2008-02-20 12:07:25 -0500829 &eb_token, &eb_map,
Chris Masoneb209782008-02-21 09:30:08 -0500830 &map_start, &map_len, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500831 if (err)
832 eb_token = NULL;
833 }
834 if (eb_token) {
835 memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
Josef Bacik607d4322008-12-02 07:17:45 -0500836 &sector_sum->sum, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500837 } else {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400838 write_extent_buffer(leaf, &sector_sum->sum,
Josef Bacik607d4322008-12-02 07:17:45 -0500839 (unsigned long)item, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500840 }
Chris Mason7f3c74f2008-07-18 12:01:11 -0400841
Chris Masone6dcd2d2008-07-17 12:53:50 -0400842 total_bytes += root->sectorsize;
843 sector_sum++;
844 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500845 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500846 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500847 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
848 sector_sum->bytenr) {
849 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400850 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500851 }
Chris Mason065631f2008-02-20 12:07:25 -0500852 }
Chris Mason6e92f5e2008-02-20 12:07:25 -0500853 if (eb_token) {
Chris Masoneb209782008-02-21 09:30:08 -0500854 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500855 eb_token = NULL;
856 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400857 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400858 if (total_bytes < sums->len) {
Chris Mason065631f2008-02-20 12:07:25 -0500859 btrfs_release_path(root, path);
Chris Masonb9473432009-03-13 11:00:37 -0400860 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500861 goto again;
862 }
Chris Mason53863232008-08-15 15:34:18 -0400863out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400864 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400865 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400866
867fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400868 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400869}