drm/amdkfd: Block per-queue reset when halt_if_hws_hang=1
authorJay Cornwall <jay.cornwall@amd.com>
Thu, 16 Jan 2025 20:36:39 +0000 (14:36 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 28 Jan 2025 21:22:02 +0000 (16:22 -0500)
The purpose of halt_if_hws_hang is to preserve GPU state for driver
debugging when queue preemption fails. Issuing per-queue reset may
kill wavefronts which caused the preemption failure.

Signed-off-by: Jay Cornwall <jay.cornwall@amd.com>
Reviewed-by: Jonathan Kim <Jonathan.Kim@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org # 6.12.x
drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c

index 1405e8a..d459337 100644 (file)
@@ -2325,9 +2325,9 @@ static int unmap_queues_cpsch(struct device_queue_manager *dqm,
         */
        mqd_mgr = dqm->mqd_mgrs[KFD_MQD_TYPE_HIQ];
        if (mqd_mgr->check_preemption_failed(mqd_mgr, dqm->packet_mgr.priv_queue->queue->mqd)) {
+               while (halt_if_hws_hang)
+                       schedule();
                if (reset_queues_on_hws_hang(dqm)) {
-                       while (halt_if_hws_hang)
-                               schedule();
                        dqm->is_hws_hang = true;
                        kfd_hws_hang(dqm);
                        retval = -ETIME;