From: Igor Fedotov Date: Thu, 21 Oct 2021 15:39:54 +0000 (+0300) Subject: os/bluestore: use proper prefix when removing undecodable Share Blob. X-Git-Tag: v15.2.16~62^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F43883%2Fhead;p=ceph.git os/bluestore: use proper prefix when removing undecodable Share Blob. Fixes: https://tracker.ceph.com/issues/53011 Signed-off-by: Igor Fedotov (cherry picked from commit aaa0a172080a5a9ecba76be364af9a5277bc2187) --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 1da41d99a08a..3b46f2f17160 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -8778,7 +8778,7 @@ int BlueStore::_fsck_on_open(BlueStore::FSCKDepth depth, bool repair) dout(20) << __func__ << " undecodable Shared Blob, key:'" << pretty_binary_string(it->key()) << "', removing" << dendl; - repairer.remove_key(db, PREFIX_DEFERRED, it->key()); + repairer.remove_key(db, PREFIX_SHARED_BLOB, it->key()); } continue; }