From 3a6f063edefbcbf75d3bcd1cb508eeb1e744a313 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Thu, 14 May 2020 12:36:26 -0400 Subject: [PATCH] librbd: corrected naming of singleton timer locker It incorrectly included "Journal" in the name. Signed-off-by: Jason Dillaman --- src/librbd/ImageCtx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librbd/ImageCtx.cc b/src/librbd/ImageCtx.cc index 33a220d4c19..b1798c4680e 100644 --- a/src/librbd/ImageCtx.cc +++ b/src/librbd/ImageCtx.cc @@ -77,7 +77,7 @@ public: class SafeTimerSingleton : public SafeTimer { public: - ceph::mutex lock = ceph::make_mutex("librbd::Journal::SafeTimerSingleton::lock"); + ceph::mutex lock = ceph::make_mutex("librbd::SafeTimerSingleton::lock"); explicit SafeTimerSingleton(CephContext *cct) : SafeTimer(cct, lock, true) { -- 2.39.5