[Intel-gfx] [PATCH 10/15] drm/i915: Avoid sleeping inside per-engine reset
Chris Wilson
chris at chris-wilson.co.uk
Wed Mar 28 21:52:01 UTC 2018
Quoting Michel Thierry (2018-03-28 22:47:55)
> On 28/03/18 14:18, Chris Wilson wrote:
> > @@ -2094,7 +2095,7 @@ int intel_gpu_reset(struct drm_i915_private *dev_priv, unsigned engine_mask)
> > int retry;
> > int ret;
> >
> > - might_sleep();
> > + might_sleep_if(engine_mask == ALL_ENGINES);
>
> I think this should also be checking for intel_has_reset_engine.
>
> If i915.reset is not 2, engine_mask can be != ALL_ENGINES and still be a
> full device reset.
Can it?
i915_reset -> intel_gpu_reset(ALL_ENGINES);
i915_reset_engine -> intel_gt_reset_engine -> intel_gpu_reset(BIT(engine->id));
Plus a couple of others poking at intel_gpu_reset(ALL_ENGINES);
Have I missed someone using intel_gpu_reset() directly?
-Chris
More information about the Intel-gfx
mailing list