Commit 2652bda7 authored by Colin Ian King's avatar Colin Ian King Committed by Alex Deucher
Browse files

drm/amdkfd: fix a dereference of pdd before it is null checked



Currently pointer pdd is being dereferenced when assigning pointer
dpm and then pdd is being null checked.  Fix this by checking if
pdd is null before the dereference of pdd occurs.

Addresses-Coverity: ("Dereference before null check")
Fixes: 32cb59f3 ("drm/amdkfd: Track SDMA utilization per process")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: default avatarFelix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 48b270bb
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -103,10 +103,11 @@ static void kfd_sdma_activity_worker(struct work_struct *work)
		return;

	pdd = workarea->pdd;
	if (!pdd)
		return;
	dqm = pdd->dev->dqm;
	qpd = &pdd->qpd;

	if (!pdd || !dqm || !qpd)
	if (!dqm || !qpd)
		return;

	mm = get_task_mm(pdd->process->lead_thread);