From: Radoslaw Zarzynski Date: Mon, 5 Dec 2022 19:46:36 +0000 (+0000) Subject: crimson/common: fix method name in interrupt_cond_t::reset()'s debugs X-Git-Tag: v18.1.0~260^2~25 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b9b41015711178b35bb4db539dbc5320692b5c6f;p=ceph.git crimson/common: fix method name in interrupt_cond_t::reset()'s debugs Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crimson/common/interruptible_future.h b/src/crimson/common/interruptible_future.h index 00d77fbf334..c7cfcadd481 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);