librbd: corrected naming of singleton timer locker

It incorrectly included "Journal" in the name.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
This commit is contained in:
Jason Dillaman 2020-05-14 12:36:26 -04:00
parent 69a14fd968
commit 3a6f063ede

View 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) {