mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 09:55:36 +00:00
drm/i915: Put the idle reclocking work on our private workqueue as well.
Fixes (again) whole-system lockups due to GPU lockups. Signed-off-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
0ef82af725
commit
01dfba93d9
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user