intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/i915: Skip repeated calls to i915_gem_set_wedged()
@ 2018-07-23 14:53 Chris Wilson
  2018-07-23 15:35 ` ✓ Fi.CI.BAT: success for " Patchwork
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Chris Wilson @ 2018-07-23 14:53 UTC (permalink / raw)
  To: intel-gfx

If we already wedged, i915_gem_set_wedged() becomes a complicated no-op.

References: https://bugs.freedesktop.org/show_bug.cgi?id=107343
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/i915_gem.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 8b52cb768a67..a4031fab57b0 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -3312,8 +3312,8 @@ void i915_gem_set_wedged(struct drm_i915_private *i915)
 			intel_engine_dump(engine, &p, "%s\n", engine->name);
 	}
 
-	set_bit(I915_WEDGED, &i915->gpu_error.flags);
-	smp_mb__after_atomic();
+	if (test_and_set_bit(I915_WEDGED, &i915->gpu_error.flags))
+		goto out;
 
 	/*
 	 * First, stop submission to hw, but do not yet complete requests by
@@ -3372,6 +3372,7 @@ void i915_gem_set_wedged(struct drm_i915_private *i915)
 		i915_gem_reset_finish_engine(engine);
 	}
 
+out:
 	GEM_TRACE("end\n");
 
 	wake_up_all(&i915->gpu_error.reset_queue);
-- 
2.18.0

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

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

end of thread, other threads:[~2018-07-25  7:09 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-23 14:53 [PATCH] drm/i915: Skip repeated calls to i915_gem_set_wedged() Chris Wilson
2018-07-23 15:35 ` ✓ Fi.CI.BAT: success for " Patchwork
2018-07-23 16:44 ` ✓ Fi.CI.IGT: " Patchwork
2018-07-23 17:21 ` [PATCH] " Chris Wilson
2018-07-23 17:37 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Skip repeated calls to i915_gem_set_wedged() (rev2) Patchwork
2018-07-23 17:59 ` ✓ Fi.CI.BAT: success " Patchwork
2018-07-23 19:39 ` [PATCH] drm/i915: Skip repeated calls to i915_gem_set_wedged() Chris Wilson
2018-07-23 19:41 ` ✓ Fi.CI.IGT: success for drm/i915: Skip repeated calls to i915_gem_set_wedged() (rev2) Patchwork
2018-07-23 19:54 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Skip repeated calls to i915_gem_set_wedged() (rev3) Patchwork
2018-07-23 19:56 ` [PATCH v4] drm/i915: Skip repeated calls to i915_gem_set_wedged() Chris Wilson
2018-07-23 20:15 ` ✓ Fi.CI.BAT: success for drm/i915: Skip repeated calls to i915_gem_set_wedged() (rev3) Patchwork
2018-07-23 20:19 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Skip repeated calls to i915_gem_set_wedged() (rev4) Patchwork
2018-07-23 20:42 ` ✗ Fi.CI.BAT: failure " Patchwork
2018-07-23 22:23 ` [PATCH] drm/i915: Skip repeated calls to i915_gem_set_wedged() Rodrigo Vivi
2018-07-25  7:09   ` Chris Wilson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).