Btrfs: let the user know space caching is enabled
authorJosef Bacik <josef@redhat.com>
Thu, 28 Oct 2010 20:55:47 +0000 (16:55 -0400)
committerChris Mason <chris.mason@oracle.com>
Fri, 29 Oct 2010 13:26:37 +0000 (09:26 -0400)
If you mount -o space_cache, the option will be persistent across mounts, but to
make sure the user knows that they did this, emit a message telling them if they
didn't mount with -o space_cache but the feature is still used.

Signed-off-by: Josef Bacik <josef@redhat.com>
fs/btrfs/extent-tree.c

index 1a94ee4..d2a7ff5 100644 (file)
@@ -8200,6 +8200,8 @@ int btrfs_read_block_groups(struct btrfs_root *root)
                need_clear = 1;
        if (btrfs_test_opt(root, CLEAR_CACHE))
                need_clear = 1;
+       if (!btrfs_test_opt(root, SPACE_CACHE) && cache_gen)
+               printk(KERN_INFO "btrfs: disk space caching is enabled\n");
 
        while (1) {
                ret = find_first_block_group(root, path, &key);