From: Adam Kupczyk Date: Fri, 16 Feb 2024 16:26:54 +0000 (+0100) Subject: Merge pull request #53565 from pereman2/shared-blob-to-blob X-Git-Tag: v19.3.0~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6de5b2b84263834b1a87b9889b718cbf68c03281;p=ceph.git Merge pull request #53565 from pereman2/shared-blob-to-blob os/bluestore: optional SharedBlob on Blob structure --- 6de5b2b84263834b1a87b9889b718cbf68c03281 diff --cc src/os/bluestore/BlueStore.cc index 29aff834fa4,7714caaad44..7d02b1551e0 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@@ -582,11 -582,11 +582,11 @@@ void _dump_extent_map(CephContext *cct dout(LogLevelV) << __func__ << " csum: " << std::hex << v << std::dec << dendl; } - std::lock_guard l(e.blob->shared_blob->get_cache()->lock); + std::lock_guard l(e.blob->get_cache()->lock); for (auto& i : e.blob->get_bc().buffer_map) { dout(LogLevelV) << __func__ << " 0x" << std::hex << i.first - << "~" << i.second->length << std::dec - << " " << *i.second << dendl; + << "~" << i.second.length << std::dec + << " " << i.second << dendl; } } }