diff options
author | David Sterba <dsterba@suse.cz> | 2013-03-20 13:31:27 +0000 |
---|---|---|
committer | Josef Bacik <jbacik@fusionio.com> | 2013-05-06 15:54:24 -0400 |
commit | 4884b476d769377c02f74fa83593e6afb562ad40 (patch) | |
tree | 2e65db4f3f5187f07d9cef3f9484e4161ad936bc | |
parent | 5e2a4b25da232a2f4ce264a4b2ae113d0b2a799c (diff) | |
download | linux-3.10-4884b476d769377c02f74fa83593e6afb562ad40.tar.gz linux-3.10-4884b476d769377c02f74fa83593e6afb562ad40.tar.bz2 linux-3.10-4884b476d769377c02f74fa83593e6afb562ad40.zip |
btrfs: make orphan cleanup less verbose
The messages
btrfs: unlinked 123 orphans
btrfs: truncated 456 orphans
are not useful to regular users and raise questions whether there are
problems with the filesystem.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
-rw-r--r-- | fs/btrfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 84f056e5d3d..3f3129173b2 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -3239,9 +3239,9 @@ int btrfs_orphan_cleanup(struct btrfs_root *root) } if (nr_unlink) - btrfs_info(root->fs_info, "unlinked %d orphans", nr_unlink); + btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink); if (nr_truncate) - btrfs_info(root->fs_info, "truncated %d orphans", nr_truncate); + btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate); out: if (ret) |