mirror of
https://github.com/ceph/ceph
synced 2025-03-06 00:10:04 +00:00
os/bluestore: optimize intrusive sets for size.
Signed-off-by: Mark Nelson <mnelson@redhat.com>
This commit is contained in:
parent
16e6e349ef
commit
ed4591c595
@ -405,7 +405,7 @@ public:
|
||||
};
|
||||
|
||||
/// in-memory blob metadata and associated cached buffers (if any)
|
||||
struct Blob : public boost::intrusive::set_base_hook<> {
|
||||
struct Blob : public boost::intrusive::set_base_hook<boost::intrusive::optimize_size<true>> {
|
||||
std::atomic_int nref = {0}; ///< reference count
|
||||
int id = -1; ///< id, for spanning blobs only, >= 0
|
||||
SharedBlobRef shared_blob; ///< shared blob state (if any)
|
||||
@ -514,7 +514,7 @@ public:
|
||||
typedef boost::intrusive::set<Blob> blob_map_t;
|
||||
|
||||
/// a logical extent, pointing to (some portion of) a blob
|
||||
struct Extent : public boost::intrusive::set_base_hook<> {
|
||||
struct Extent : public boost::intrusive::set_base_hook<boost::intrusive::optimize_size<true>> {
|
||||
uint32_t logical_offset = 0; ///< logical offset
|
||||
uint32_t blob_offset = 0; ///< blob offset
|
||||
uint32_t length = 0; ///< length
|
||||
|
Loading…
Reference in New Issue
Block a user