Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4884b476 authored by David Sterba's avatar David Sterba Committed by Josef Bacik
Browse files

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: default avatarDavid Sterba <dsterba@suse.cz>
Signed-off-by: default avatarJosef Bacik <jbacik@fusionio.com>
parent 5e2a4b25
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)