From 027d414ca2a1dcb01b78140375de908dcf8436fb Mon Sep 17 00:00:00 2001 From: Igor Fedotov Date: Tue, 14 Nov 2023 16:49:28 +0300 Subject: [PATCH] os/bluestore: proper init sequent in BlueFS::mount() Requires in pacific backport only due to the lack of https://github.com/ceph/ceph/pull/41557 Signed-off-by: Igor Fedotov --- src/os/bluestore/BlueFS.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/bluestore/BlueFS.cc b/src/os/bluestore/BlueFS.cc index 559e15a2c08e..94c0a30524ac 100644 --- a/src/os/bluestore/BlueFS.cc +++ b/src/os/bluestore/BlueFS.cc @@ -817,8 +817,8 @@ int BlueFS::mount() get_block_device_size(BlueFS::BDEV_SLOW) * 95 / 100)); } - _init_alloc(); _init_logger(); + _init_alloc(); r = _replay(false, false); if (r < 0) { -- 2.47.3