Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/bio/bio_wal.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* (C) Copyright 2018-2024 Intel Corporation.
* (C) Copyright 2025 Hewlett Packard Enterprise Development LP
* (C) Copyright 2025-2026 Hewlett Packard Enterprise Development LP
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
Expand Down Expand Up @@ -733,10 +733,6 @@ wal_tx_completion(struct wal_tx_desc *wal_tx, bool complete_next)
biod_tx->bd_result = wal_tx->td_error;

if (wal_tx->td_error) {
/* Rollback unused ID */
if (wal_id_cmp(si, wal_tx->td_id, si->si_unused_id) < 0)
si->si_unused_id = wal_tx->td_id;

if (next != NULL) {
/* Propagate error to depended transactions, block incoming transactions */
si->si_tx_failed = 1;
Expand Down
Loading