summaryrefslogtreecommitdiffstats
path: root/fs/btrfs
diff options
context:
space:
mode:
authorFilipe Manana <fdmanana@suse.com>2016-01-15 11:56:15 +0100
committerChris Mason <clm@fb.com>2016-01-20 03:21:40 +0100
commitfedc00455ccc1f928066528da87b0c7b143de647 (patch)
tree0a33f5ffa2ad0df2813d31661a9edf3630e467b7 /fs/btrfs
parentMerge branch 'misc-for-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/... (diff)
downloadlinux-fedc00455ccc1f928066528da87b0c7b143de647.tar.xz
linux-fedc00455ccc1f928066528da87b0c7b143de647.zip
Btrfs: fix typo in log message when starting a balance
The recent change titled "Btrfs: Check metadata redundancy on balance" (already in linux-next) left a typo in a message for users: metatdata -> metadata. Signed-off-by: Filipe Manana <fdmanana@suse.com> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r--fs/btrfs/volumes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index 9b845155d21f..3d0122d1a49c 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -3752,7 +3752,7 @@ int btrfs_balance(struct btrfs_balance_control *bctl,
if (btrfs_get_num_tolerated_disk_barrier_failures(bctl->meta.target) <
btrfs_get_num_tolerated_disk_barrier_failures(bctl->data.target)) {
btrfs_warn(fs_info,
- "metatdata profile 0x%llx has lower redundancy than data profile 0x%llx",
+ "metadata profile 0x%llx has lower redundancy than data profile 0x%llx",
bctl->meta.target, bctl->data.target);
}