From 16432d0bb75245f5e5b1ecb6b8322d6648aff3a9 Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Sun, 1 Oct 2017 15:34:03 -0400 Subject: [PATCH] roots: remove open_root_cache correctly BEESNOTE puts a message on the status message stack. BEESINFO logs a message with rate limiting. The message that was flooding the logs was coming from BEESINFO not BEESNOTE. Fix earlier commit which removed the wrong message. Signed-off-by: Zygo Blaxell --- src/bees-roots.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bees-roots.cc b/src/bees-roots.cc index f1c393f..9661243 100644 --- a/src/bees-roots.cc +++ b/src/bees-roots.cc @@ -316,6 +316,7 @@ Fd BeesRoots::open_root_nocache(uint64_t rootid) { BEESTRACE("open_root_nocache " << rootid); + BEESNOTE("open_root_nocache " << rootid); // Stop recursion at the root of the filesystem tree if (rootid == BTRFS_FS_TREE_OBJECTID) { @@ -388,7 +389,7 @@ BeesRoots::open_root_nocache(uint64_t rootid) THROW_CHECK2(runtime_error, new_root_id, rootid, new_root_id == rootid); Stat st(rv); THROW_CHECK1(runtime_error, st.st_ino, st.st_ino == BTRFS_FIRST_FREE_OBJECTID); - BEESINFO("open_root_nocache " << rootid << ": " << name_fd(rv)); + // BEESINFO("open_root_nocache " << rootid << ": " << name_fd(rv)); return rv; } }