From 8f543a0ee13577449439917f491a157e6292812a Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Mon, 8 Sep 2025 15:36:25 +0200 Subject: [PATCH] r600/sfn: Don't fall through if a WaitACK was scheduled In theory this is of no consequence, but letting the scheduler run it's normal algorithm is better. Fixes: a6b6ce84f78 ("r600/sfn: Prepare scheduler to handle WaitAck instructions") Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_scheduler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp b/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp index de612aecbfe..8934cb5a915 100644 --- a/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp @@ -365,6 +365,7 @@ BlockScheduler::schedule_block(Block& in_block, current_shed = sched_alu; break; } + break; case sched_alu: if (!schedule_alu(out_blocks, vf)) { assert(!m_current_block->lds_group_active());