From b9b41015711178b35bb4db539dbc5320692b5c6f Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Mon, 5 Dec 2022 19:46:36 +0000 Subject: [PATCH] crimson/common: fix method name in interrupt_cond_t::reset()'s debugs Signed-off-by: Radoslaw Zarzynski --- src/crimson/common/interruptible_future.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/crimson/common/interruptible_future.h b/src/crimson/common/interruptible_future.h index 00d77fbf33462..c7cfcadd48149 100644 --- a/src/crimson/common/interruptible_future.h +++ b/src/crimson/common/interruptible_future.h @@ -110,13 +110,15 @@ struct interrupt_cond_t { void reset() { if (--ref_count == 0) { INTR_FUT_DEBUG( - "call_with_interruption_impl clearing interrupt_cond: {},{}", + "{}: clearing interrupt_cond: {},{}", + __func__, (void*)interrupt_cond.get(), typeid(InterruptCond).name()); interrupt_cond.release(); } else { INTR_FUT_DEBUG( - "call_with_interruption_impl end without clearing interrupt_cond: {},{}, ref_count: {}", + "{}: end without clearing interrupt_cond: {},{}, ref_count: {}", + __func__, (void*)interrupt_cond.get(), typeid(InterruptCond).name(), ref_count); -- 2.39.5