blob: f92ff0ed6e03df2c25a638727b0517caa9a8109f [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)
David Sterbab3b4aa72011-04-21 01:20:15 +0200196 btrfs_release_path(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 "
Li Zefan33345d012011-04-20 10:31:50 +0800211 "for inode %llu start %llu\n",
212 (unsigned long long)
213 btrfs_ino(inode),
Yan Zheng17d217f2008-12-12 10:03:38 -0500214 (unsigned long long)offset);
215 }
Chris Mason6dab8152008-08-04 08:35:53 -0400216 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200217 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400218 goto found;
219 }
220 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
221 path->slots[0]);
222
223 item_start_offset = found_key.offset;
224 item_size = btrfs_item_size_nr(path->nodes[0],
225 path->slots[0]);
226 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500227 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400228 root->sectorsize;
229 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
230 struct btrfs_csum_item);
231 }
232 /*
233 * this byte range must be able to fit inside
234 * a single leaf so it will also fit inside a u32
235 */
Chris Masond20f7042008-12-08 16:58:54 -0500236 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400237 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500238 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400239
240 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400241 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500242 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400243found:
Chris Masond20f7042008-12-08 16:58:54 -0500244 if (dst)
245 *dst++ = sum;
246 else
247 set_state_private(io_tree, offset, sum);
248 disk_bytenr += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400249 offset += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400250 bio_index++;
251 bvec++;
252 }
253 btrfs_free_path(path);
254 return 0;
255}
256
Josef Bacik4b46fce2010-05-23 11:00:55 -0400257int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
258 struct bio *bio, u32 *dst)
259{
260 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
261}
262
263int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
264 struct bio *bio, u64 offset, u32 *dst)
265{
266 return __btrfs_lookup_bio_sums(root, inode, bio, offset, dst, 1);
267}
268
Yan Zheng17d217f2008-12-12 10:03:38 -0500269int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100270 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500271{
272 struct btrfs_key key;
273 struct btrfs_path *path;
274 struct extent_buffer *leaf;
275 struct btrfs_ordered_sum *sums;
276 struct btrfs_sector_sum *sector_sum;
277 struct btrfs_csum_item *item;
278 unsigned long offset;
279 int ret;
280 size_t size;
281 u64 csum_end;
282 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
283
284 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700285 if (!path)
286 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500287
Arne Jansena2de7332011-03-08 14:14:00 +0100288 if (search_commit) {
289 path->skip_locking = 1;
290 path->reada = 2;
291 path->search_commit_root = 1;
292 }
293
Yan Zheng17d217f2008-12-12 10:03:38 -0500294 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
295 key.offset = start;
296 key.type = BTRFS_EXTENT_CSUM_KEY;
297
Yan Zheng07d400a2009-01-06 11:42:00 -0500298 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500299 if (ret < 0)
300 goto fail;
301 if (ret > 0 && path->slots[0] > 0) {
302 leaf = path->nodes[0];
303 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
304 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
305 key.type == BTRFS_EXTENT_CSUM_KEY) {
306 offset = (start - key.offset) >>
307 root->fs_info->sb->s_blocksize_bits;
308 if (offset * csum_size <
309 btrfs_item_size_nr(leaf, path->slots[0] - 1))
310 path->slots[0]--;
311 }
312 }
313
314 while (start <= end) {
315 leaf = path->nodes[0];
316 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500317 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500318 if (ret < 0)
319 goto fail;
320 if (ret > 0)
321 break;
322 leaf = path->nodes[0];
323 }
324
325 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
326 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
327 key.type != BTRFS_EXTENT_CSUM_KEY)
328 break;
329
330 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
331 if (key.offset > end)
332 break;
333
334 if (key.offset > start)
335 start = key.offset;
336
337 size = btrfs_item_size_nr(leaf, path->slots[0]);
338 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500339 if (csum_end <= start) {
340 path->slots[0]++;
341 continue;
342 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500343
Yan Zheng07d400a2009-01-06 11:42:00 -0500344 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500345 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
346 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500347 while (start < csum_end) {
348 size = min_t(size_t, csum_end - start,
349 MAX_ORDERED_SUM_BYTES(root));
350 sums = kzalloc(btrfs_ordered_sum_size(root, size),
351 GFP_NOFS);
352 BUG_ON(!sums);
Yan Zheng17d217f2008-12-12 10:03:38 -0500353
Yan Zheng07d400a2009-01-06 11:42:00 -0500354 sector_sum = sums->sums;
355 sums->bytenr = start;
356 sums->len = size;
357
358 offset = (start - key.offset) >>
359 root->fs_info->sb->s_blocksize_bits;
360 offset *= csum_size;
361
362 while (size > 0) {
363 read_extent_buffer(path->nodes[0],
364 &sector_sum->sum,
365 ((unsigned long)item) +
366 offset, csum_size);
367 sector_sum->bytenr = start;
368
369 size -= root->sectorsize;
370 start += root->sectorsize;
371 offset += csum_size;
372 sector_sum++;
373 }
374 list_add_tail(&sums->list, list);
Yan Zheng17d217f2008-12-12 10:03:38 -0500375 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500376 path->slots[0]++;
377 }
378 ret = 0;
379fail:
380 btrfs_free_path(path);
381 return ret;
382}
383
Chris Mason3edf7d32008-07-18 06:17:13 -0400384int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500385 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400386{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400387 struct btrfs_ordered_sum *sums;
388 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400389 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400390 char *data;
391 struct bio_vec *bvec = bio->bi_io_vec;
392 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400393 unsigned long total_bytes = 0;
394 unsigned long this_sum_bytes = 0;
395 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500396 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400397
Chris Masone6dcd2d2008-07-17 12:53:50 -0400398 WARN_ON(bio->bi_vcnt <= 0);
399 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400400 if (!sums)
401 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400402
Chris Masoned98b562008-07-22 23:06:42 -0400403 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500404 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400405 sums->len = bio->bi_size;
406 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500407
408 if (contig)
409 offset = file_start;
410 else
411 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
412
413 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400414 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500415 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400416
Chris Masond3977122009-01-05 21:25:51 -0500417 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500418 if (!contig)
419 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
420
421 if (!contig && (offset >= ordered->file_offset + ordered->len ||
422 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400423 unsigned long bytes_left;
424 sums->len = this_sum_bytes;
425 this_sum_bytes = 0;
426 btrfs_add_ordered_sum(inode, ordered, sums);
427 btrfs_put_ordered_extent(ordered);
428
429 bytes_left = bio->bi_size - total_bytes;
430
431 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
432 GFP_NOFS);
433 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400434 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400435 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500436 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400437 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500438 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400439 }
440
Chris Masone0156402008-04-16 11:15:20 -0400441 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400442 sector_sum->sum = ~(u32)0;
443 sector_sum->sum = btrfs_csum_data(root,
444 data + bvec->bv_offset,
445 sector_sum->sum,
446 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400447 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400448 btrfs_csum_final(sector_sum->sum,
449 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500450 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400451
Chris Masone6dcd2d2008-07-17 12:53:50 -0400452 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400453 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400454 total_bytes += bvec->bv_len;
455 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500456 disk_bytenr += bvec->bv_len;
457 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400458 bvec++;
459 }
Chris Masoned98b562008-07-22 23:06:42 -0400460 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400461 btrfs_add_ordered_sum(inode, ordered, sums);
462 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400463 return 0;
464}
465
Chris Mason459931e2008-12-10 09:10:46 -0500466/*
467 * helper function for csum removal, this expects the
468 * key to describe the csum pointed to by the path, and it expects
469 * the csum to overlap the range [bytenr, len]
470 *
471 * The csum should not be entirely contained in the range and the
472 * range should not be entirely contained in the csum.
473 *
474 * This calls btrfs_truncate_item with the correct args based on the
475 * overlap, and fixes up the key as required.
476 */
477static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
478 struct btrfs_root *root,
479 struct btrfs_path *path,
480 struct btrfs_key *key,
481 u64 bytenr, u64 len)
482{
483 struct extent_buffer *leaf;
484 u16 csum_size =
485 btrfs_super_csum_size(&root->fs_info->super_copy);
486 u64 csum_end;
487 u64 end_byte = bytenr + len;
488 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
489 int ret;
490
491 leaf = path->nodes[0];
492 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
493 csum_end <<= root->fs_info->sb->s_blocksize_bits;
494 csum_end += key->offset;
495
496 if (key->offset < bytenr && csum_end <= end_byte) {
497 /*
498 * [ bytenr - len ]
499 * [ ]
500 * [csum ]
501 * A simple truncate off the end of the item
502 */
503 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
504 new_size *= csum_size;
505 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500506 } else if (key->offset >= bytenr && csum_end > end_byte &&
507 end_byte > key->offset) {
508 /*
509 * [ bytenr - len ]
510 * [ ]
511 * [csum ]
512 * we need to truncate from the beginning of the csum
513 */
514 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
515 new_size *= csum_size;
516
517 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500518
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)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000560 break;
Chris Mason459931e2008-12-10 09:10:46 -0500561 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000562 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000563 break;
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);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000588 if (ret)
589 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500590 if (key.offset == bytenr)
591 break;
Chris Mason459931e2008-12-10 09:10:46 -0500592 } else if (key.offset < bytenr && csum_end > end_byte) {
593 unsigned long offset;
594 unsigned long shift_len;
595 unsigned long item_offset;
596 /*
597 * [ bytenr - len ]
598 * [csum ]
599 *
600 * Our bytes are in the middle of the csum,
601 * we need to split this item and insert a new one.
602 *
603 * But we can't drop the path because the
604 * csum could change, get removed, extended etc.
605 *
606 * The trick here is the max size of a csum item leaves
607 * enough room in the tree block for a single
608 * item header. So, we split the item in place,
609 * adding a new header pointing to the existing
610 * bytes. Then we loop around again and we have
611 * a nicely formed csum item that we can neatly
612 * truncate.
613 */
614 offset = (bytenr - key.offset) >> blocksize_bits;
615 offset *= csum_size;
616
617 shift_len = (len >> blocksize_bits) * csum_size;
618
619 item_offset = btrfs_item_ptr_offset(leaf,
620 path->slots[0]);
621
622 memset_extent_buffer(leaf, 0, item_offset + offset,
623 shift_len);
624 key.offset = bytenr;
625
626 /*
627 * btrfs_split_item returns -EAGAIN when the
628 * item changed size or key
629 */
630 ret = btrfs_split_item(trans, root, path, &key, offset);
631 BUG_ON(ret && ret != -EAGAIN);
632
633 key.offset = end_byte - 1;
634 } else {
635 ret = truncate_one_csum(trans, root, path,
636 &key, bytenr, len);
637 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500638 if (key.offset < bytenr)
639 break;
Chris Mason459931e2008-12-10 09:10:46 -0500640 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200641 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500642 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000643 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500644out:
645 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000646 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500647}
648
Chris Mason065631f2008-02-20 12:07:25 -0500649int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500650 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400651 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400652{
Chris Masond20f7042008-12-08 16:58:54 -0500653 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400654 int ret;
655 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400656 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500657 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400658 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500659 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400660 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400661 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500662 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400663 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400664 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400665 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400666 u32 nritems;
667 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500668 char *eb_map;
669 char *eb_token;
670 unsigned long map_len;
671 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500672 u16 csum_size =
673 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500674
Chris Mason5caf2a02007-04-02 11:20:42 -0400675 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700676 if (!path)
677 return -ENOMEM;
678
Chris Masoned98b562008-07-22 23:06:42 -0400679 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500680again:
681 next_offset = (u64)-1;
682 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500683 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
684 file_key.offset = sector_sum->bytenr;
685 bytenr = sector_sum->bytenr;
686 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400687
Chris Masond20f7042008-12-08 16:58:54 -0500688 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400689 if (!IS_ERR(item)) {
690 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400691 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400692 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400693 }
Chris Masona429e512007-04-18 16:15:28 -0400694 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400695 if (ret != -EFBIG && ret != -ENOENT)
696 goto fail_unlock;
697
Chris Masona429e512007-04-18 16:15:28 -0400698 if (ret == -EFBIG) {
699 u32 item_size;
700 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400701 leaf = path->nodes[0];
702 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500703 if ((item_size / csum_size) >=
704 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400705 /* already at max size, make a new one */
706 goto insert;
707 }
708 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400709 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400710 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400711 nritems = btrfs_header_nritems(path->nodes[0]);
712 if (path->slots[0] >= nritems - 1) {
713 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400714 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400715 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400716 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400717 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400718 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400719 }
720 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500721 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
722 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400723 found_next = 1;
724 goto insert;
725 }
726 next_offset = found_key.offset;
727 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400728 goto insert;
729 }
730
731 /*
732 * at this point, we know the tree has an item, but it isn't big
733 * enough yet to put our csum in. Grow it
734 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200735 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400736 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500737 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400738 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400739 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500740
741 if (ret > 0) {
742 if (path->slots[0] == 0)
743 goto insert;
744 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400745 }
Chris Mason459931e2008-12-10 09:10:46 -0500746
Chris Mason5f39d392007-10-15 16:14:19 -0400747 leaf = path->nodes[0];
748 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500749 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400750 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500751
Chris Masond20f7042008-12-08 16:58:54 -0500752 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
753 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500754 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400755 goto insert;
756 }
Chris Mason459931e2008-12-10 09:10:46 -0500757
Chris Mason5f39d392007-10-15 16:14:19 -0400758 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500759 csum_size) {
760 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500761
762 /*
763 * is the item big enough already? we dropped our lock
764 * before and need to recheck
765 */
766 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
767 goto csum;
768
Chris Mason5f39d392007-10-15 16:14:19 -0400769 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500770 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400771 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500772
Chris Masona429e512007-04-18 16:15:28 -0400773 ret = btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400774 goto csum;
775 }
776
777insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200778 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400779 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400780 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500781 u64 tmp = total_bytes + root->sectorsize;
782 u64 next_sector = sector_sum->bytenr;
783 struct btrfs_sector_sum *next = sector_sum + 1;
784
Chris Masond3977122009-01-05 21:25:51 -0500785 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500786 if (next_sector + root->sectorsize != next->bytenr)
787 break;
788 tmp += root->sectorsize;
789 next_sector = next->bytenr;
790 next++;
791 }
792 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400793 tmp >>= root->fs_info->sb->s_blocksize_bits;
794 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500795 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
796 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400797 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500798 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400799 }
Chris Masonb9473432009-03-13 11:00:37 -0400800 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400801 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400802 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400803 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400804 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400805 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400806 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400807 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400808 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400809 }
Chris Mason6567e832007-04-16 09:22:45 -0400810csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400811 leaf = path->nodes[0];
812 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400813 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400814 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500815 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400816found:
Chris Mason065631f2008-02-20 12:07:25 -0500817 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
818 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
819 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason6e92f5e2008-02-20 12:07:25 -0500820 eb_token = NULL;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400821next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500822
Chris Mason6e92f5e2008-02-20 12:07:25 -0500823 if (!eb_token ||
Josef Bacik607d4322008-12-02 07:17:45 -0500824 (unsigned long)item + csum_size >= map_start + map_len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500825 int err;
826
827 if (eb_token)
Chris Masoneb209782008-02-21 09:30:08 -0500828 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500829 eb_token = NULL;
830 err = map_private_extent_buffer(leaf, (unsigned long)item,
Josef Bacik607d4322008-12-02 07:17:45 -0500831 csum_size,
Chris Mason6e92f5e2008-02-20 12:07:25 -0500832 &eb_token, &eb_map,
Chris Masoneb209782008-02-21 09:30:08 -0500833 &map_start, &map_len, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500834 if (err)
835 eb_token = NULL;
836 }
837 if (eb_token) {
838 memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
Josef Bacik607d4322008-12-02 07:17:45 -0500839 &sector_sum->sum, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500840 } else {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400841 write_extent_buffer(leaf, &sector_sum->sum,
Josef Bacik607d4322008-12-02 07:17:45 -0500842 (unsigned long)item, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500843 }
Chris Mason7f3c74f2008-07-18 12:01:11 -0400844
Chris Masone6dcd2d2008-07-17 12:53:50 -0400845 total_bytes += root->sectorsize;
846 sector_sum++;
847 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500848 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500849 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500850 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
851 sector_sum->bytenr) {
852 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400853 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500854 }
Chris Mason065631f2008-02-20 12:07:25 -0500855 }
Chris Mason6e92f5e2008-02-20 12:07:25 -0500856 if (eb_token) {
Chris Masoneb209782008-02-21 09:30:08 -0500857 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500858 eb_token = NULL;
859 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400860 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400861 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200862 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400863 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500864 goto again;
865 }
Chris Mason53863232008-08-15 15:34:18 -0400866out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400867 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400868 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400869
870fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400871 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400872}