From e8a5ffdf50207d24983ebdbb585b68b6fe9bfb31 Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Mon, 22 Jun 2020 18:30:25 +0200 Subject: [PATCH] crimson/os/alienstore: make the thread pool private. Signed-off-by: Radoslaw Zarzynski --- src/crimson/os/alienstore/alien_store.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crimson/os/alienstore/alien_store.h b/src/crimson/os/alienstore/alien_store.h index 78276ca5758..79514cc488d 100644 --- a/src/crimson/os/alienstore/alien_store.h +++ b/src/crimson/os/alienstore/alien_store.h @@ -38,7 +38,6 @@ public: ObjectMap::ObjectMapIterator iter; AlienStore* store; }; - mutable std::unique_ptr tp; AlienStore(const std::string& path, const ConfigValues& values); ~AlienStore() final; @@ -115,6 +114,7 @@ public: static void configure_thread_memory(); private: constexpr static unsigned MAX_KEYS_PER_OMAP_GET_CALL = 32; + mutable std::unique_ptr tp; const std::string path; uint64_t used_bytes = 0; uuid_d osd_fsid; -- 2.47.3