]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: Tell OnodeScan to skip decoding checksums
authorAdam Kupczyk <akupczyk@ibm.com>
Mon, 7 Jul 2025 10:02:01 +0000 (10:02 +0000)
committerAdam Kupczyk <akupczyk@ibm.com>
Mon, 8 Jun 2026 17:04:29 +0000 (17:04 +0000)
Signed-off-by: Adam Kupczyk <akupczyk@ibm.com>
src/os/bluestore/OnodeScan.cc

index 5be25eb4b35c92d18dced800836702239b3527e5..66b8a5c84e03e1e9007bde4b9496d302d9692ae5 100644 (file)
@@ -100,7 +100,7 @@ BlueStore::BlobRef BlueStore::Decoder_AllocationsAndStatFS::decode_create_blob(
   bool include_ref_map,
   Collection* c) {
   BlobRef b = c ? c->new_blob() : new Blob(nullptr);
-  b->decode<true>(p, struct_v, sbid, include_ref_map, c);
+  b->decode<false>(p, struct_v, sbid, include_ref_map, c);
   return b;
 }