All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/radeon: silence out possible lock dependency warning
@ 2012-01-24 17:08 j.glisse
  2012-01-25  0:16 ` Alexandre Demers
  0 siblings, 1 reply; 3+ messages in thread
From: j.glisse @ 2012-01-24 17:08 UTC (permalink / raw)
  To: dri-devel; +Cc: Jerome Glisse

From: Jerome Glisse <jglisse@redhat.com>

Silence out the lock dependency warning by moving bo allocation out
of ib mutex protected section. Might lead to useless temporary
allocation but it's not harmful as such things only happen at
initialization.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
---
 drivers/gpu/drm/radeon/radeon_ring.c |   19 +++++++++++--------
 1 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/radeon/radeon_ring.c b/drivers/gpu/drm/radeon/radeon_ring.c
index e8bc709..1cb4b94 100644
--- a/drivers/gpu/drm/radeon/radeon_ring.c
+++ b/drivers/gpu/drm/radeon/radeon_ring.c
@@ -204,22 +204,25 @@ int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib)
 
 int radeon_ib_pool_init(struct radeon_device *rdev)
 {
+	struct radeon_sa_manager tmp;
 	int i, r;
 
-	mutex_lock(&rdev->ib_pool.mutex);
-	if (rdev->ib_pool.ready) {
-		mutex_unlock(&rdev->ib_pool.mutex);
-		return 0;
-	}
-
-	r = radeon_sa_bo_manager_init(rdev, &rdev->ib_pool.sa_manager,
+	r = radeon_sa_bo_manager_init(rdev, &tmp,
 				      RADEON_IB_POOL_SIZE*64*1024,
 				      RADEON_GEM_DOMAIN_GTT);
 	if (r) {
-		mutex_unlock(&rdev->ib_pool.mutex);
 		return r;
 	}
 
+	mutex_lock(&rdev->ib_pool.mutex);
+	if (rdev->ib_pool.ready) {
+		mutex_unlock(&rdev->ib_pool.mutex);
+		radeon_sa_bo_manager_fini(rdev, &tmp);
+		return 0;
+	}
+
+	rdev->ib_pool.sa_manager = tmp;
+	INIT_LIST_HEAD(&rdev->ib_pool.sa_manager.sa_bo);
 	for (i = 0; i < RADEON_IB_POOL_SIZE; i++) {
 		rdev->ib_pool.ibs[i].fence = NULL;
 		rdev->ib_pool.ibs[i].idx = i;
-- 
1.7.7.1

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

* Re: [PATCH] drm/radeon: silence out possible lock dependency warning
  2012-01-24 17:08 [PATCH] drm/radeon: silence out possible lock dependency warning j.glisse
@ 2012-01-25  0:16 ` Alexandre Demers
  2012-01-26 16:00   ` Jerome Glisse
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandre Demers @ 2012-01-25  0:16 UTC (permalink / raw)
  To: dri-devel

I suppose I can stop bisecting kernel about this possible lock and close
the bug then?

-- 
Alexandre Demers

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

* Re: [PATCH] drm/radeon: silence out possible lock dependency warning
  2012-01-25  0:16 ` Alexandre Demers
@ 2012-01-26 16:00   ` Jerome Glisse
  0 siblings, 0 replies; 3+ messages in thread
From: Jerome Glisse @ 2012-01-26 16:00 UTC (permalink / raw)
  To: alexandre.f.demers; +Cc: dri-devel

On Tue, Jan 24, 2012 at 7:16 PM, Alexandre Demers
<alexandre.f.demers@gmail.com> wrote:
> I suppose I can stop bisecting kernel about this possible lock and close
> the bug then?
>
> --
> Alexandre Demers

Yes, unless the bug is something else as the error message could be
ignored and it wasn't
harmfull. ie even without that patch things couldn't go wrong.

Jerome

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

end of thread, other threads:[~2012-01-26 16:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-24 17:08 [PATCH] drm/radeon: silence out possible lock dependency warning j.glisse
2012-01-25  0:16 ` Alexandre Demers
2012-01-26 16:00   ` Jerome Glisse

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.