diff options
author | SrinivasaBharathKanta <61141011+SrinivasaBharath@users.noreply.github.com> | 2025-01-14 01:54:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-14 01:54:34 +0100 |
commit | 4a03c75b011ae2021b2dd26981ba6223cacad3b1 (patch) | |
tree | 32effd19cc2b507e5edeebe08e791a0ed17714ce /src/osd/Session.h | |
parent | Merge pull request #61312 from adamemerson/wip-boost-1.86-fixes (diff) | |
parent | osd/osd_types: perfect forwarding in pool_opts_t::set() (diff) | |
download | ceph-4a03c75b011ae2021b2dd26981ba6223cacad3b1.tar.xz ceph-4a03c75b011ae2021b2dd26981ba6223cacad3b1.zip |
Merge pull request #60215 from MaxKellermann/osd_optimizations
OSD: Small optimizations
Diffstat (limited to 'src/osd/Session.h')
-rw-r--r-- | src/osd/Session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/Session.h b/src/osd/Session.h index 9fa9c655456..05a0119d31e 100644 --- a/src/osd/Session.h +++ b/src/osd/Session.h @@ -136,7 +136,7 @@ struct Session : public RefCountedObject { ceph::mutex session_dispatch_lock = ceph::make_mutex("Session::session_dispatch_lock"); - boost::intrusive::list<OpRequest> waiting_on_map; + boost::intrusive::list<OpRequest, boost::intrusive::constant_time_size<false>> waiting_on_map; ceph::spinlock projected_epoch_lock; epoch_t projected_epoch = 0; |