From: Ilya Dryomov Date: Wed, 28 Apr 2021 12:27:12 +0000 (+0200) Subject: librbd/cache/pwl: bump "Waiting for allocation" and "Retiring" dout level X-Git-Tag: v17.1.0~2096^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=626a995cf6e949ba47517eac62f2b97715e3fb06;p=ceph-ci.git librbd/cache/pwl: bump "Waiting for allocation" and "Retiring" dout level Bump "Waiting for allocation" to 5. "Retiring" is at 20 for rwl and 1 for ssd. Bump the latter to 20 as well. Signed-off-by: Ilya Dryomov --- diff --git a/src/librbd/cache/pwl/AbstractWriteLog.cc b/src/librbd/cache/pwl/AbstractWriteLog.cc index 4cc1bed08b1..403580ec516 100644 --- a/src/librbd/cache/pwl/AbstractWriteLog.cc +++ b/src/librbd/cache/pwl/AbstractWriteLog.cc @@ -1490,7 +1490,7 @@ bool AbstractWriteLog::check_allocation(C_BlockIORequestT *req, if (m_bytes_allocated + bytes_allocated > m_bytes_allocated_cap) { if (!req->has_io_waited_for_buffers()) { req->set_io_waited_for_buffers(true); - ldout(m_image_ctx.cct, 1) << "Waiting for allocation cap (cap=" + ldout(m_image_ctx.cct, 5) << "Waiting for allocation cap (cap=" << m_bytes_allocated_cap << ", allocated=" << m_bytes_allocated << ") in write [" << *req << "]" << dendl; diff --git a/src/librbd/cache/pwl/ssd/WriteLog.cc b/src/librbd/cache/pwl/ssd/WriteLog.cc index fd1c8017eeb..14b813abedb 100644 --- a/src/librbd/cache/pwl/ssd/WriteLog.cc +++ b/src/librbd/cache/pwl/ssd/WriteLog.cc @@ -656,8 +656,8 @@ bool WriteLog::retire_entries(const unsigned long int frees_per_tx) { } } if (retiring_entries.size()) { - ldout(cct, 1) << "Retiring " << retiring_entries.size() - << " entries" << dendl; + ldout(cct, 20) << "Retiring " << retiring_entries.size() << " entries" + << dendl; // Advance first valid entry and release buffers uint64_t flushed_sync_gen;