From: Matan Breizman Date: Mon, 9 Feb 2026 08:49:57 +0000 (+0000) Subject: Revert "crimson/os/seastore/seastore_types: define rewriting transactions" X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ed2e2286c15856eadc51f72432f6ce86adab05ee;p=ceph.git Revert "crimson/os/seastore/seastore_types: define rewriting transactions" This reverts commit 1696011379dfa5f1558b3119d4936ef4943ecedf. Signed-off-by: Matan Breizman --- diff --git a/src/crimson/os/seastore/seastore_types.h b/src/crimson/os/seastore/seastore_types.h index da2b265236f..91197c040d7 100644 --- a/src/crimson/os/seastore/seastore_types.h +++ b/src/crimson/os/seastore/seastore_types.h @@ -2262,12 +2262,6 @@ constexpr bool is_background_transaction(transaction_type_t type) { type < transaction_type_t::MAX); } -constexpr bool is_rewrite_transaction(transaction_type_t type) { - return type == transaction_type_t::TRIM_DIRTY || - type == transaction_type_t::CLEANER_MAIN || - type == transaction_type_t::CLEANER_COLD; -} - constexpr bool is_trim_transaction(transaction_type_t type) { return (type == transaction_type_t::TRIM_DIRTY || type == transaction_type_t::TRIM_ALLOC);