mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-23 22:53:35 +00:00
btrfs-progs: lowmem check: Reword an unclear error message about file extent gap
This error occurs when no_holes is not set, but there is a gap before the file extent. Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
4c09c15f46
commit
5ee1956b89
@ -5873,8 +5873,9 @@ static int check_file_extent(struct btrfs_root *root, struct btrfs_key *fkey,
|
||||
if (!repair || ret) {
|
||||
err |= FILE_EXTENT_ERROR;
|
||||
error(
|
||||
"root %llu EXTENT_DATA[%llu %llu] interrupt, should start at %llu",
|
||||
root->objectid, fkey->objectid, fkey->offset, *end);
|
||||
"root %llu EXTENT_DATA[%llu %llu] gap exists, expected: EXTENT_DATA[%llu %llu]",
|
||||
root->objectid, fkey->objectid, fkey->offset,
|
||||
fkey->objectid, *end);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user