aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2018-03-07 08:42:25 -0500
committerJoonas Lahtinen <joonas.lahtinen@linux.intel.com>2018-03-16 08:35:31 -0400
commit7e9d3a4a1b21fd8a595774697f4047e7505deea6 (patch)
tree80569a37e52c06fbd74dd8d2927b4e4f149c1b21 /drivers
parent84d4ebdb6c72988a1acddb1856b12427a287149d (diff)
drm/i915: Wrap engine->schedule in RCU locks for set-wedge protection
Similar to the staging around handling of engine->submit_request, we need to stop adding to the execlists->queue prior to calling engine->cancel_requests. cancel_requests will move requests from the queue onto the timeline, so if we add a request onto the queue after that point, it will be lost. Fixes: af7a8ffad9c5 ("drm/i915: Use rcu instead of stop_machine in set_wedged") Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: Mika Kuoppala <mika.kuoppala@intel.com> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180307134226.25492-5-chris@chris-wilson.co.uk (cherry picked from commit 47650db02dd52267953df81438c93cf8a0eb0e5e) Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c13
-rw-r--r--drivers/gpu/drm/i915/i915_request.c2
2 files changed, 9 insertions, 6 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index a5bd07338b46..8d913d833ab9 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -471,10 +471,11 @@ static void __fence_set_priority(struct dma_fence *fence, int prio)
471 471
472 rq = to_request(fence); 472 rq = to_request(fence);
473 engine = rq->engine; 473 engine = rq->engine;
474 if (!engine->schedule)
475 return;
476 474
477 engine->schedule(rq, prio); 475 rcu_read_lock();
476 if (engine->schedule)
477 engine->schedule(rq, prio);
478 rcu_read_unlock();
478} 479}
479 480
480static void fence_set_priority(struct dma_fence *fence, int prio) 481static void fence_set_priority(struct dma_fence *fence, int prio)
@@ -3214,8 +3215,11 @@ void i915_gem_set_wedged(struct drm_i915_private *i915)
3214 */ 3215 */
3215 for_each_engine(engine, i915, id) { 3216 for_each_engine(engine, i915, id) {
3216 i915_gem_reset_prepare_engine(engine); 3217 i915_gem_reset_prepare_engine(engine);
3218
3217 engine->submit_request = nop_submit_request; 3219 engine->submit_request = nop_submit_request;
3220 engine->schedule = NULL;
3218 } 3221 }
3222 i915->caps.scheduler = 0;
3219 3223
3220 /* 3224 /*
3221 * Make sure no one is running the old callback before we proceed with 3225 * Make sure no one is running the old callback before we proceed with
@@ -3233,11 +3237,8 @@ void i915_gem_set_wedged(struct drm_i915_private *i915)
3233 * start to complete all requests. 3237 * start to complete all requests.
3234 */ 3238 */
3235 engine->submit_request = nop_complete_submit_request; 3239 engine->submit_request = nop_complete_submit_request;
3236 engine->schedule = NULL;
3237 } 3240 }
3238 3241
3239 i915->caps.scheduler = 0;
3240
3241 /* 3242 /*
3242 * Make sure no request can slip through without getting completed by 3243 * Make sure no request can slip through without getting completed by
3243 * either this call here to intel_engine_init_global_seqno, or the one 3244 * either this call here to intel_engine_init_global_seqno, or the one
diff --git a/drivers/gpu/drm/i915/i915_request.c b/drivers/gpu/drm/i915/i915_request.c
index d437beac3969..282f57630cc1 100644
--- a/drivers/gpu/drm/i915/i915_request.c
+++ b/drivers/gpu/drm/i915/i915_request.c
@@ -1081,8 +1081,10 @@ void __i915_request_add(struct i915_request *request, bool flush_caches)
1081 * decide whether to preempt the entire chain so that it is ready to 1081 * decide whether to preempt the entire chain so that it is ready to
1082 * run at the earliest possible convenience. 1082 * run at the earliest possible convenience.
1083 */ 1083 */
1084 rcu_read_lock();
1084 if (engine->schedule) 1085 if (engine->schedule)
1085 engine->schedule(request, request->ctx->priority); 1086 engine->schedule(request, request->ctx->priority);
1087 rcu_read_unlock();
1086 1088
1087 local_bh_disable(); 1089 local_bh_disable();
1088 i915_sw_fence_commit(&request->submit); 1090 i915_sw_fence_commit(&request->submit);