aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/tree-log.c
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2008-12-08 19:15:39 -0500
committerChris Mason <chris.mason@oracle.com>2008-12-08 19:15:39 -0500
commit580afd76e451deb6772d0507de580fb1df14da6c (patch)
treeea112be78807b07f617efffefb532e19778dc9bb /fs/btrfs/tree-log.c
parentc3027eb5523d6983f12628f3fe13d8a7576db701 (diff)
Btrfs: Fix compressed checksum fsync log copies
The fsync logging code makes sure to onl copy the relevant checksum for each extent based on the file extent pointers it finds. But for compressed extents, it needs to copy the checksum for the entire extent. Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r--fs/btrfs/tree-log.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
index d3f9c2c663c..6ac1b7f72e2 100644
--- a/fs/btrfs/tree-log.c
+++ b/fs/btrfs/tree-log.c
@@ -2610,6 +2610,11 @@ static noinline int copy_items(struct btrfs_trans_handle *trans,
2610 u64 cs = btrfs_file_extent_offset(src, extent); 2610 u64 cs = btrfs_file_extent_offset(src, extent);
2611 u64 cl = btrfs_file_extent_num_bytes(src, 2611 u64 cl = btrfs_file_extent_num_bytes(src,
2612 extent);; 2612 extent);;
2613 if (btrfs_file_extent_compression(src,
2614 extent)) {
2615 cs = 0;
2616 cl = dl;
2617 }
2613 /* ds == 0 is a hole */ 2618 /* ds == 0 is a hole */
2614 if (ds != 0) { 2619 if (ds != 0) {
2615 ret = btrfs_inc_extent_ref(trans, log, 2620 ret = btrfs_inc_extent_ref(trans, log,