From d7fb588c5db5f791cf62fa17a9954794aa598914 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 16 Oct 2018 09:32:10 -0500 Subject: [PATCH] common/perf_counters: Mutex -> ceph::mutex Signed-off-by: Sage Weil --- src/common/perf_counters.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/perf_counters.h b/src/common/perf_counters.h index 8a2f62a3d3fb4..de12a793770d8 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 -- 2.39.5