All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amd/amdgpu: skip locking delayed work if not initialized.
@ 2021-08-05  2:37 YuBiao Wang
  2021-08-05 12:35 ` Christian König
  2021-08-09  9:49 ` Deng, Emily
  0 siblings, 2 replies; 4+ messages in thread
From: YuBiao Wang @ 2021-08-05  2:37 UTC (permalink / raw)
  To: amd-gfx
  Cc: Andrey Grodzovsky, Evan Quan, horace.chen, Tuikov Luben,
	Christian König, Deucher Alexander, Jack Xiao,
	Hawking Zhang, Monk Liu, Feifei Xu, Kevin Wang, YuBiao Wang

When init failed in early init stage, amdgpu_object has
not been initialized, so hasn't the ttm delayed queue functions.

Signed-off-by: YuBiao Wang <YuBiao.Wang@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index 9e53ff851496..4c33985542ed 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -3825,7 +3825,8 @@ void amdgpu_device_fini_hw(struct amdgpu_device *adev)
 {
 	dev_info(adev->dev, "amdgpu: finishing device.\n");
 	flush_delayed_work(&adev->delayed_init_work);
-	ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
+	if (adev->mman.initialized)
+		ttm_bo_lock_delayed_workqueue(&adev->mman.bdev);
 	adev->shutdown = true;
 
 	/* make sure IB test finished before entering exclusive mode
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-08-09  9:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-05  2:37 [PATCH] drm/amd/amdgpu: skip locking delayed work if not initialized YuBiao Wang
2021-08-05 12:35 ` Christian König
2021-08-06  6:01   ` Wang, YuBiao
2021-08-09  9:49 ` Deng, Emily

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.