@@ -3036,7 +3036,7 @@ i915_gem_reset_prepare_engine(struct intel_engine_cs *engine)
* Turning off the execlists->tasklet until the reset is over
* prevents the race.
*/
- i915_tasklet_disable(&engine->execlists.tasklet);
+ i915_tasklet_disable_once(&engine->execlists.tasklet);
/*
* We're using worker to queue preemption requests from the tasklet in
@@ -58,6 +58,12 @@ static inline void i915_tasklet_disable(struct i915_tasklet *t)
tasklet_disable(&t->base);
}
+static inline void i915_tasklet_disable_once(struct i915_tasklet *t)
+{
+ if (atomic_inc_return(&t->base.count) == 1)
+ tasklet_unlock_wait(&t->base);
+}
+
static inline void i915_tasklet_enable(struct i915_tasklet *t)
{
tasklet_enable(&t->base);
When setting up reset, we may need to recursively prepare an engine. In which case we should only synchronously flush the tasklets on the outer most call, the inner calls will then be inside an atomic section where the tasklet will never be run (and so the sync will never complete). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> --- drivers/gpu/drm/i915/i915_gem.c | 2 +- drivers/gpu/drm/i915/i915_tasklet.h | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-)