drm/i915: Put the idle reclocking work on our private workqueue as well.
authorEric Anholt <eric@anholt.net>
Sun, 6 Sep 2009 22:18:53 +0000 (15:18 -0700)
committerEric Anholt <eric@anholt.net>
Sun, 6 Sep 2009 22:18:53 +0000 (15:18 -0700)
Fixes (again) whole-system lockups due to GPU lockups.

Signed-off-by: Eric Anholt <eric@anholt.net>
drivers/gpu/drm/i915/intel_display.c

index 9aa1d2de8a84b5f402fb17f715bec617ae2668ee..f6741032c608a27e6faf781bd0512677f045e317 100644 (file)
@@ -3201,7 +3201,7 @@ static void intel_gpu_idle_timer(unsigned long arg)
 
        dev_priv->busy = false;
 
-       schedule_work(&dev_priv->idle_work);
+       queue_work(dev_priv->wq, &dev_priv->idle_work);
 }
 
 void intel_increase_renderclock(struct drm_device *dev, bool schedule)
@@ -3335,7 +3335,7 @@ static void intel_crtc_idle_timer(unsigned long arg)
 
        intel_crtc->busy = false;
 
-       schedule_work(&dev_priv->idle_work);
+       queue_work(dev_priv->wq, &dev_priv->idle_work);
 }
 
 static void intel_increase_pllclock(struct drm_crtc *crtc, bool schedule)
This page took 0.028405 seconds and 5 git commands to generate.