From: Igor Fedotov Date: Tue, 14 Nov 2023 13:49:28 +0000 (+0300) Subject: os/bluestore: proper init sequent in BlueFS::mount() X-Git-Tag: v16.2.15~98^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F54434%2Fhead;p=ceph.git 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 --- 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) {