mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
Btrfs: fix truncate down when no_holes feature is enabled
[ Upstream commit91298eec05] For such a file mapping, [0-4k][hole][8k-12k] In NO_HOLES mode, we don't have the [hole] extent any more. Commitc1aa45759e("Btrfs: fix shrinking truncate when the no_holes feature is enabled") fixed disk isize not being updated in NO_HOLES mode when data is not flushed. However, even if data has been flushed, we can still have trouble in updating disk isize since we updated disk isize to 'start' of the last evicted extent. Reviewed-by: Chris Mason <clm@fb.com> Signed-off-by: Liu Bo <bo.li.liu@oracle.com> Signed-off-by: David Sterba <dsterba@suse.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e8b5068b64
commit
c3eab85ff1
@@ -4480,8 +4480,19 @@ search_again:
|
||||
if (found_type > min_type) {
|
||||
del_item = 1;
|
||||
} else {
|
||||
if (item_end < new_size)
|
||||
if (item_end < new_size) {
|
||||
/*
|
||||
* With NO_HOLES mode, for the following mapping
|
||||
*
|
||||
* [0-4k][hole][8k-12k]
|
||||
*
|
||||
* if truncating isize down to 6k, it ends up
|
||||
* isize being 8k.
|
||||
*/
|
||||
if (btrfs_fs_incompat(root->fs_info, NO_HOLES))
|
||||
last_size = new_size;
|
||||
break;
|
||||
}
|
||||
if (found_key.offset >= new_size)
|
||||
del_item = 1;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user