From: Radoslaw Zarzynski Date: Mon, 22 Jun 2020 16:30:25 +0000 (+0200) Subject: crimson/os/alienstore: make the thread pool private. X-Git-Tag: wip-pdonnell-testing-20200918.022351~906^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e8a5ffdf50207d24983ebdbb585b68b6fe9bfb31;p=ceph-ci.git crimson/os/alienstore: make the thread pool private. Signed-off-by: Radoslaw Zarzynski --- 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;