]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
librbd: corrected naming of singleton timer locker
authorJason Dillaman <dillaman@redhat.com>
Thu, 14 May 2020 16:36:26 +0000 (12:36 -0400)
committerJason Dillaman <dillaman@redhat.com>
Thu, 14 May 2020 16:36:26 +0000 (12:36 -0400)
It incorrectly included "Journal" in the name.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
src/librbd/ImageCtx.cc

index 33a220d4c19c468024ce555d75d6bbfc24ada791..b1798c4680e3bcabcb375314da8c943ae52a0132 100644 (file)
@@ -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) {