public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] Revert "drm/i915: Fix races on fbdev"
@ 2016-04-01 11:41 Joonas Lahtinen
  2016-04-01 12:02 ` Chris Wilson
  2016-04-01 12:06 ` ✓ Fi.CI.BAT: success for " Patchwork
  0 siblings, 2 replies; 4+ messages in thread
From: Joonas Lahtinen @ 2016-04-01 11:41 UTC (permalink / raw)
  To: Intel graphics driver community testing & development
  Cc: Tomi Sarvela, Daniel Vetter

This reverts commit a7442b93cf32c1e1ddb721a26cd1f92302e2a222.

With the patch applied SNB, IVB and ILK are experiencing hard machine
hangs. Original patch was to fix "just" kernel panics so it's not a good
trade-off.

Proper fix for the panic is on the way, lets revert until then.

Fixes: a7442b93cf32 ("drm/i915: Fix races on fbdev")
Cc: Lukas Wunner <lukas@wunner.de>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tomi Sarvela <tomi.p.sarvela@intel.com>
Cc: stable@vger.kernel.org
Acked-by: Lukas Wunner <lukas@wunner.de>
Tested-by: Tomi Sarvela <tomi.p.sarvela@intel.com>
Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
---
 drivers/gpu/drm/i915/i915_dma.c    | 8 +++++---
 drivers/gpu/drm/i915/intel_fbdev.c | 3 ---
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index a66ce49..b377753 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -493,9 +493,11 @@ static int i915_load_modeset_init(struct drm_device *dev)
 	 * Some ports require correctly set-up hpd registers for detection to
 	 * work properly (leading to ghost connected connector status), e.g. VGA
 	 * on gm45.  Hence we can only set up the initial fbdev config after hpd
-	 * irqs are fully enabled. We protect the fbdev initial config scanning
-	 * against hotplug events by waiting in intel_fbdev_output_poll_changed
-	 * until the asynchronous thread has finished.
+	 * irqs are fully enabled. Now we should scan for the initial config
+	 * only once hotplug handling is enabled, but due to screwed-up locking
+	 * around kms/fbdev init we can't protect the fdbev initial config
+	 * scanning against hotplug events. Hence do this first and ignore the
+	 * tiny window where we will loose hotplug notifactions.
 	 */
 	intel_fbdev_initial_config_async(dev);
 
diff --git a/drivers/gpu/drm/i915/intel_fbdev.c b/drivers/gpu/drm/i915/intel_fbdev.c
index 4cf04ce..79ac202 100644
--- a/drivers/gpu/drm/i915/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/intel_fbdev.c
@@ -810,8 +810,6 @@ void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous
 void intel_fbdev_output_poll_changed(struct drm_device *dev)
 {
 	struct drm_i915_private *dev_priv = dev->dev_private;
-
-	async_synchronize_full();
 	if (dev_priv->fbdev)
 		drm_fb_helper_hotplug_event(&dev_priv->fbdev->helper);
 }
@@ -823,7 +821,6 @@ void intel_fbdev_restore_mode(struct drm_device *dev)
 	struct intel_fbdev *ifbdev = dev_priv->fbdev;
 	struct drm_fb_helper *fb_helper;
 
-	async_synchronize_full();
 	if (!ifbdev)
 		return;
 
-- 
2.5.5

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] Revert "drm/i915: Fix races on fbdev"
  2016-04-01 11:41 [PATCH] Revert "drm/i915: Fix races on fbdev" Joonas Lahtinen
@ 2016-04-01 12:02 ` Chris Wilson
  2016-04-01 12:08   ` Joonas Lahtinen
  2016-04-01 12:06 ` ✓ Fi.CI.BAT: success for " Patchwork
  1 sibling, 1 reply; 4+ messages in thread
From: Chris Wilson @ 2016-04-01 12:02 UTC (permalink / raw)
  To: Joonas Lahtinen
  Cc: Tomi Sarvela, Daniel Vetter,
	Intel graphics driver community testing & development

On Fri, Apr 01, 2016 at 02:41:01PM +0300, Joonas Lahtinen wrote:
> This reverts commit a7442b93cf32c1e1ddb721a26cd1f92302e2a222.
> 
> With the patch applied SNB, IVB and ILK are experiencing hard machine
> hangs. Original patch was to fix "just" kernel panics so it's not a good
> trade-off.
> 
> Proper fix for the panic is on the way, lets revert until then.
> 
> Fixes: a7442b93cf32 ("drm/i915: Fix races on fbdev")
> Cc: Lukas Wunner <lukas@wunner.de>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Tomi Sarvela <tomi.p.sarvela@intel.com>
> Cc: stable@vger.kernel.org
> Acked-by: Lukas Wunner <lukas@wunner.de>
> Tested-by: Tomi Sarvela <tomi.p.sarvela@intel.com>
> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>

Protocol dictates
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.BAT: success for Revert "drm/i915: Fix races on fbdev"
  2016-04-01 11:41 [PATCH] Revert "drm/i915: Fix races on fbdev" Joonas Lahtinen
  2016-04-01 12:02 ` Chris Wilson
@ 2016-04-01 12:06 ` Patchwork
  1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2016-04-01 12:06 UTC (permalink / raw)
  To: Joonas Lahtinen; +Cc: intel-gfx

== Series Details ==

Series: Revert "drm/i915: Fix races on fbdev"
URL   : https://patchwork.freedesktop.org/series/5173/
State : success

== Summary ==

Series 5173v1 Revert "drm/i915: Fix races on fbdev"
http://patchwork.freedesktop.org/api/1.0/series/5173/revisions/1/mbox/

Test kms_pipe_crc_basic:
        Subgroup suspend-read-crc-pipe-a:
                incomplete -> PASS       (snb-dellxps)
        Subgroup suspend-read-crc-pipe-c:
                incomplete -> PASS       (hsw-gt2)

bdw-nuci7        total:196  pass:184  dwarn:0   dfail:0   fail:0   skip:12 
bdw-ultra        total:196  pass:175  dwarn:0   dfail:0   fail:0   skip:21 
bsw-nuc-2        total:196  pass:159  dwarn:0   dfail:0   fail:0   skip:37 
byt-nuc          total:196  pass:161  dwarn:0   dfail:0   fail:0   skip:35 
hsw-gt2          total:196  pass:179  dwarn:0   dfail:0   fail:0   skip:17 
skl-i7k-2        total:196  pass:173  dwarn:0   dfail:0   fail:0   skip:23 
skl-nuci5        total:196  pass:185  dwarn:0   dfail:0   fail:0   skip:11 
snb-dellxps      total:196  pass:162  dwarn:0   dfail:0   fail:0   skip:34 

Results at /archive/results/CI_IGT_test/Patchwork_1774/

e34bfc5475142e46e2f2308c93ecf906e01c9d3f drm-intel-nightly: 2016y-04m-01d-11h-53m-17s UTC integration manifest
50dc08511dcda6d0ebf9c9c23497ac6303727733 Revert "drm/i915: Fix races on fbdev"

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] Revert "drm/i915: Fix races on fbdev"
  2016-04-01 12:02 ` Chris Wilson
@ 2016-04-01 12:08   ` Joonas Lahtinen
  0 siblings, 0 replies; 4+ messages in thread
From: Joonas Lahtinen @ 2016-04-01 12:08 UTC (permalink / raw)
  To: Chris Wilson
  Cc: Tomi Sarvela, Daniel Vetter,
	Intel graphics driver community testing & development

On pe, 2016-04-01 at 13:02 +0100, Chris Wilson wrote:
> On Fri, Apr 01, 2016 at 02:41:01PM +0300, Joonas Lahtinen wrote:
> > 
> > This reverts commit a7442b93cf32c1e1ddb721a26cd1f92302e2a222.
> > 
> > With the patch applied SNB, IVB and ILK are experiencing hard machine
> > hangs. Original patch was to fix "just" kernel panics so it's not a good
> > trade-off.
> > 
> > Proper fix for the panic is on the way, lets revert until then.
> > 
> > Fixes: a7442b93cf32 ("drm/i915: Fix races on fbdev")
> > Cc: Lukas Wunner <lukas@wunner.de>
> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Tomi Sarvela <tomi.p.sarvela@intel.com>
> > Cc: stable@vger.kernel.org
> > Acked-by: Lukas Wunner <lukas@wunner.de>
> > Tested-by: Tomi Sarvela <tomi.p.sarvela@intel.com>
> > Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
> > Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> Protocol dictates
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>

Thanks for the review. Merged (although due to delay in proxy or
somewhere, did not end up in the tree). But that does not mean we did
not go by the protocol.

Regards, Joonas

> -Chris
> 
-- 
Joonas Lahtinen
Open Source Technology Center
Intel Corporation
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2016-04-01 12:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-01 11:41 [PATCH] Revert "drm/i915: Fix races on fbdev" Joonas Lahtinen
2016-04-01 12:02 ` Chris Wilson
2016-04-01 12:08   ` Joonas Lahtinen
2016-04-01 12:06 ` ✓ Fi.CI.BAT: success for " Patchwork

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