mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
fsx: fix bug where zero range operations never use the keep size flag
We are never using the FALLOC_FL_KEEP_SIZE flag for zero range operations even when we intend to use it. So fix it by setting that flag for the call to fallocate(2) if the 'keep_size' parameter is true. Signed-off-by: Filipe Manana <fdmanana@suse.com> Reviewed-by: Josef Bacik <josef@toxicpanda.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
@@ -1200,6 +1200,9 @@ do_zero_range(unsigned offset, unsigned length, int keep_size)
|
||||
unsigned end_offset;
|
||||
int mode = FALLOC_FL_ZERO_RANGE;
|
||||
|
||||
if (keep_size)
|
||||
mode |= FALLOC_FL_KEEP_SIZE;
|
||||
|
||||
if (length == 0) {
|
||||
if (!quiet && testcalls > simulatedopcount)
|
||||
prt("skipping zero length zero range\n");
|
||||
|
||||
Reference in New Issue
Block a user