From aaa0a172080a5a9ecba76be364af9a5277bc2187 Mon Sep 17 00:00:00 2001 From: Igor Fedotov Date: Thu, 21 Oct 2021 18:39:54 +0300 Subject: [PATCH] os/bluestore: use proper prefix when removing undecodable Share Blob. Fixes: https://tracker.ceph.com/issues/53011 Signed-off-by: Igor Fedotov --- src/os/bluestore/BlueStore.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 4f59ebde508a..849bab5bcda7 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -8641,7 +8641,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; } -- 2.47.3