diff options
author | Myoungwon Oh <myoungwon.oh@samsung.com> | 2024-01-05 07:46:43 +0100 |
---|---|---|
committer | Myoungwon Oh <myoungwon.oh@samsung.com> | 2024-01-05 07:46:43 +0100 |
commit | 72c9d6d17f6d5b8527123c769e956c859c00acf7 (patch) | |
tree | 6273dc8efefb77c90ed7057fb3880f9e0ae64a69 /src/crimson/os/seastore/cache.cc | |
parent | crimson/os/seastore: check correct crc for inplace-rewritten extents after r... (diff) | |
download | ceph-72c9d6d17f6d5b8527123c769e956c859c00acf7.tar.xz ceph-72c9d6d17f6d5b8527123c769e956c859c00acf7.zip |
crimson/os/seastore/cache: return false explicitly if delta is not replayed
Signed-off-by: Myoungwon Oh <myoungwon.oh@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/crimson/os/seastore/cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crimson/os/seastore/cache.cc b/src/crimson/os/seastore/cache.cc index 7513cd60187..b81fe62906c 100644 --- a/src/crimson/os/seastore/cache.cc +++ b/src/crimson/os/seastore/cache.cc @@ -1839,7 +1839,7 @@ Cache::replay_delta( journal_seq, record_base, delta); assert(delta.pversion > 0); return replay_delta_ertr::make_ready_future<std::pair<bool, CachedExtentRef>>( - std::make_pair(true, nullptr)); + std::make_pair(false, nullptr)); } DEBUG("replay extent delta at {} {} ... -- {}, prv_extent={}", |