disc/read_error: rustfmt fixup for wedge-prevention commit

This commit is contained in:
2026-05-10 22:00:08 -07:00
parent 1a3b154836
commit 3b10b3ab9b
+2 -3
View File
@@ -637,9 +637,8 @@ pub fn handle_read_error(err: &Error, ctx: &mut ReadCtx) -> ReadAction {
// branch for future tuning. Pass N (bisect_on_marginal=true) // branch for future tuning. Pass N (bisect_on_marginal=true)
// uses the standard pauses — it's running single-sector retries // uses the standard pauses — it's running single-sector retries
// on already-known-bad LBAs by design. // on already-known-bad LBAs by design.
let is_zone_entry = ctx.consecutive_outer_failures == 1 let is_zone_entry =
&& !ctx.bisecting ctx.consecutive_outer_failures == 1 && !ctx.bisecting && !ctx.bisect_on_marginal;
&& !ctx.bisect_on_marginal;
let pause_secs = if is_zone_entry { let pause_secs = if is_zone_entry {
ZONE_ENTRY_COOLDOWN_SECS ZONE_ENTRY_COOLDOWN_SECS
} else if ctx.consecutive_failures >= CONSECUTIVE_FAIL_LONG_PAUSE_THRESHOLD { } else if ctx.consecutive_failures >= CONSECUTIVE_FAIL_LONG_PAUSE_THRESHOLD {