]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
drm/xe: fix WQ_MEM_RECLAIM passed as max_active to alloc_workqueue()
authorMarco Crivellari <marco.crivellari@suse.com>
Thu, 8 Jan 2026 18:01:48 +0000 (19:01 +0100)
committerMatthew Brost <matthew.brost@intel.com>
Thu, 8 Jan 2026 22:33:29 +0000 (14:33 -0800)
commitaa39abc08e77d66ebb0c8c9ec4cc8d38ded34dc9
tree6156bceafe215813de7541ea553bb3ece27cc388
parent351fa2ff098eccb2a98640d02f31319c3ceca0bc
drm/xe: fix WQ_MEM_RECLAIM passed as max_active to alloc_workqueue()

Workqueue xe-ggtt-wq has been allocated using WQ_MEM_RECLAIM, but
the flag has been passed as 3rd parameter (max_active) instead
of 2nd (flags) creating the workqueue as per-cpu with max_active = 8
(the WQ_MEM_RECLAIM value).

So change this by set WQ_MEM_RECLAIM as the 2nd parameter with a
default max_active.

Fixes: 60df57e496e4 ("drm/xe: Mark GGTT work queue with WQ_MEM_RECLAIM")
Cc: stable@vger.kernel.org
Signed-off-by: Marco Crivellari <marco.crivellari@suse.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Link: https://patch.msgid.link/20260108180148.423062-1-marco.crivellari@suse.com
drivers/gpu/drm/xe/xe_ggtt.c