From: Jason Dillaman Date: Thu, 14 May 2020 16:36:26 +0000 (-0400) Subject: librbd: corrected naming of singleton timer locker X-Git-Tag: v16.1.0~2318^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3a6f063edefbcbf75d3bcd1cb508eeb1e744a313;p=ceph.git librbd: corrected naming of singleton timer locker It incorrectly included "Journal" in the name. Signed-off-by: Jason Dillaman --- diff --git a/src/librbd/ImageCtx.cc b/src/librbd/ImageCtx.cc index 33a220d4c19c..b1798c4680e3 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) {