summaryrefslogtreecommitdiff
path: root/fs/btrfs
diff options
context:
space:
mode:
authorHolger Hoffstätte <holger.hoffstaette@googlemail.com>2015-11-27 19:32:04 +0300
committerFilipe Manana <fdmanana@suse.com>2015-12-10 14:38:08 +0300
commit94356889c404faf050895099fd0d23f8bef118c4 (patch)
tree2b506f1a5d148b0c63527144e6d860b0b9a107cf /fs/btrfs
parent8a7d656f3dfb7889316ba57502f1eaa6106fd6f8 (diff)
downloadlinux-94356889c404faf050895099fd0d23f8bef118c4.tar.xz
btrfs: fix misleading warning when space cache failed to load
When an inconsistent space cache is detected during loading we log a warning that users frequently mistake as instruction to invalidate the cache manually, even though this is not required. Fix the message to indicate that the cache will be rebuilt automatically. Signed-off-by: Holger Hoffstätte <holger.hoffstaette@googlemail.com> Acked-by: Filipe Manana <fdmanana@suse.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r--fs/btrfs/free-space-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c
index 0948d34cb84a..7a91770d8bb2 100644
--- a/fs/btrfs/free-space-cache.c
+++ b/fs/btrfs/free-space-cache.c
@@ -891,7 +891,7 @@ out:
spin_unlock(&block_group->lock);
ret = 0;
- btrfs_warn(fs_info, "failed to load free space cache for block group %llu, rebuild it now",
+ btrfs_warn(fs_info, "failed to load free space cache for block group %llu, rebuilding it now",
block_group->key.objectid);
}