Re: [Intel-gfx] [PATCH] drm/i915: synchronize_irq() against the actual irq

2019-07-02 Thread Imre Deak
On Tue, Jul 02, 2019 at 03:58:46PM +0100, Chris Wilson wrote: > Quoting Ville Syrjala (2019-07-02 15:49:47) > > From: Ville Syrjälä > > > > When eliminating our use of drm_irq_install() I failed to convert > > all our synchronize_irq() calls to consult pdev->irq instead of > > dev_priv->drm.irq.

[Intel-gfx] [PATCH] drm/i915: synchronize_irq() against the actual irq

2019-07-02 Thread Ville Syrjala
From: Ville Syrjälä When eliminating our use of drm_irq_install() I failed to convert all our synchronize_irq() calls to consult pdev->irq instead of dev_priv->drm.irq. As we no longer populate dev_priv->drm.irq we're no longer synchronizing against anything. Cc: Chris Wilson Reported-by: Imre

Re: [Intel-gfx] [PATCH] drm/i915: synchronize_irq() against the actual irq

2019-07-02 Thread Chris Wilson
Quoting Ville Syrjala (2019-07-02 15:49:47) > From: Ville Syrjälä > > When eliminating our use of drm_irq_install() I failed to convert > all our synchronize_irq() calls to consult pdev->irq instead of > dev_priv->drm.irq. As we no longer populate dev_priv->drm.irq > we're no longer synchronizing