From: Sage Weil Date: Tue, 16 Oct 2018 14:32:10 +0000 (-0500) Subject: common/perf_counters: Mutex -> ceph::mutex X-Git-Tag: v14.1.0~820^2~29 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d7fb588c5db5f791cf62fa17a9954794aa598914;p=ceph.git common/perf_counters: Mutex -> ceph::mutex Signed-off-by: Sage Weil --- diff --git a/src/common/perf_counters.h b/src/common/perf_counters.h index 8a2f62a3d3f..de12a793770 100644 --- a/src/common/perf_counters.h +++ b/src/common/perf_counters.h @@ -282,13 +282,11 @@ private: int m_lower_bound; int m_upper_bound; std::string m_name; -#ifndef WITH_SEASTAR - const std::string m_lock_name; -#endif int prio_adjust = 0; #ifndef WITH_SEASTAR + const std::string m_lock_name; /** Protects m_data */ ceph::mutex m_lock; #endif