From 42a6053229454775ae2df87681891153d90fba63 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 bc0c9ae..2d0807d 100644 --- a/src/bees-roots.cc +++ b/src/bees-roots.cc @@ -397,6 +397,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) { @@ -469,7 +470,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; } }