aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorYan Zheng <zheng.yan@oracle.com>2009-01-06 09:58:02 -0500
committerChris Mason <chris.mason@oracle.com>2009-01-06 09:58:02 -0500
commit1ba12553f3600ffebad226c5204ab0e46df98161 (patch)
tree081d39d935782a34d4726a55f608de3237b57d9d /fs
parent180591bcfed1a2cec048abb21d3dab840625caab (diff)
Btrfs: don't change file extent's ram_bytes in btrfs_drop_extents
btrfs_drop_extents doesn't change file extent's ram_bytes in the case of booked extent. To be consistent, we should also not change ram_bytes when truncating existing extent. Signed-off-by: Yan Zheng <zheng.yan@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/file.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 0e3a13a45653..90268334145e 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -556,10 +556,6 @@ next_slot:
556 inode_sub_bytes(inode, old_num - 556 inode_sub_bytes(inode, old_num -
557 new_num); 557 new_num);
558 } 558 }
559 if (!compression && !encryption) {
560 btrfs_set_file_extent_ram_bytes(leaf,
561 extent, new_num);
562 }
563 btrfs_set_file_extent_num_bytes(leaf, 559 btrfs_set_file_extent_num_bytes(leaf,
564 extent, new_num); 560 extent, new_num);
565 btrfs_mark_buffer_dirty(leaf); 561 btrfs_mark_buffer_dirty(leaf);