dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/amdkfd: unbind only existing processes
@ 2016-05-26  9:43 Oded Gabbay
  2016-05-26  9:43 ` [PATCH 2/2] drm/amdkfd: destroy dbgmgr in notifier release Oded Gabbay
  0 siblings, 1 reply; 2+ messages in thread
From: Oded Gabbay @ 2016-05-26  9:43 UTC (permalink / raw)
  To: dri-devel

When unbinding a process from a device (initiated by amd_iommu_v2), the
driver needs to make sure that process still exists in the process table.
There is a possibility that amdkfd's own notifier handler -
kfd_process_notifier_release() - was called before the unbind function
and it already removed the process from the process table.

Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_process.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process.c b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
index ac00579..248deb7 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_process.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
@@ -405,11 +405,17 @@ void kfd_unbind_process_from_device(struct kfd_dev *dev, unsigned int pasid)
 	idx = srcu_read_lock(&kfd_processes_srcu);
 
 	hash_for_each_rcu(kfd_processes_table, i, p, kfd_processes)
-		if (p->pasid == pasid)
+		if ((!p) || (p->pasid == pasid))
 			break;
 
 	srcu_read_unlock(&kfd_processes_srcu, idx);
 
+	/* check if have a process in the hash. Maybe the relevant process was
+	 * already erased in kfd_process_notifier_release()
+	 */
+	if (!p)
+		return;
+
 	BUG_ON(p->pasid != pasid);
 
 	mutex_lock(&p->mutex);
-- 
2.5.5

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2016-05-26  9:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-26  9:43 [PATCH 1/2] drm/amdkfd: unbind only existing processes Oded Gabbay
2016-05-26  9:43 ` [PATCH 2/2] drm/amdkfd: destroy dbgmgr in notifier release Oded Gabbay

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox