mirror of
https://github.com/torvalds/linux.git
synced 2026-07-25 15:58:40 +02:00
Btrfs: Align extent length to sectorsize in
--- Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
5a01a2e3a9
commit
b1632b10c0
|
|
@ -823,6 +823,8 @@ static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
|
|||
btrfs_file_extent_num_bytes(leaf, fi);
|
||||
extent_num_bytes = inode->i_size -
|
||||
found_key.offset + root->sectorsize - 1;
|
||||
extent_num_bytes = extent_num_bytes &
|
||||
~((u64)root->sectorsize - 1);
|
||||
btrfs_set_file_extent_num_bytes(leaf, fi,
|
||||
extent_num_bytes);
|
||||
num_dec = (orig_num_bytes -
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user