Skip to content

Commit 0102ab5

Browse files
maharmstonekdave
authored andcommitted
btrfs: fix typo in error message in btrfs_validate_super()
There's a typo in an error message when checking the block group tree feature, it mentions fres-space-tree instead of free-space-tree. Fix that. Signed-off-by: Mark Harmstone <[email protected]> Reviewed-by: David Sterba <[email protected]> Signed-off-by: David Sterba <[email protected]>
1 parent 9aa29a2 commit 0102ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/btrfs/disk-io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2452,7 +2452,7 @@ int btrfs_validate_super(const struct btrfs_fs_info *fs_info,
24522452
(!btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE_VALID) ||
24532453
!btrfs_fs_incompat(fs_info, NO_HOLES))) {
24542454
btrfs_err(fs_info,
2455-
"block-group-tree feature requires fres-space-tree and no-holes");
2455+
"block-group-tree feature requires free-space-tree and no-holes");
24562456
ret = -EINVAL;
24572457
}
24582458

0 commit comments

Comments
 (0)