From: David Sterba Date: Wed, 20 Mar 2013 13:31:27 +0000 (+0000) Subject: btrfs: make orphan cleanup less verbose X-Git-Tag: v3.10-rc1~31^2~86 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4884b476d769377c02f74fa83593e6afb562ad40;p=karo-tx-linux.git 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 Signed-off-by: Josef Bacik --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 84f056e5d3db..3f3129173b26 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)