From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm/amd/display: Replace use of system_unbound_wq with system_dfl_wq Date: Sat, 16 May 2026 11:00:24 +1000 Message-ID: In-Reply-To: <20260514103815.190628-2-marco.crivellari@suse.com> References: <20260514103815.190628-1-marco.crivellari@suse.com> <20260514103815.190628-2-marco.crivellari@suse.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review This patch converts three call sites in `amdgpu_dm_ism.c`, all of which are `mod_delayed_work()` calls scheduling ISM (Idle Screen Manager) delayed work items: ```c - mod_delayed_work(system_unbound_wq, &ism->delayed_work, + mod_delayed_work(system_dfl_wq, &ism->delayed_work, ``` ```c - mod_delayed_work(system_unbound_wq, + mod_delayed_work(system_dfl_wq, &ism->sso_delayed_work, ``` ```c - mod_delayed_work(system_unbound_wq, + mod_delayed_work(system_dfl_wq, &ism->sso_delayed_work, ``` All three are direct 1:1 substitutions. The workqueue semantics (`system_dfl_wq` is defined as the replacement for `system_unbound_wq` with identical behavior) are preserved. The Cc list appropriately includes the display subsystem maintainers (Ray Wu, Harry Wentland, Leo Li, Rodrigo Siqueira). **No issues found.** --- Generated by Claude Code Patch Reviewer