From: Chris Wilson Date: Thu, 5 Mar 2020 13:58:43 +0000 (+0000) Subject: drm/i915/execlists: Show the "switch priority hint" in dumps X-Git-Tag: libata-5.7-2020-04-09~30^2~12^2~78 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=81dcef4ceebf58d30f674a5426d959d1d0fc13cd;p=linux-block.git drm/i915/execlists: Show the "switch priority hint" in dumps Show the timeslicing priority hint in engine dumps to aide debugging. Signed-off-by: Chris Wilson Cc: Tvrtko Ursulin Reviewed-by: Mika Kuoppala Link: https://patchwork.freedesktop.org/patch/msgid/20200305135843.2760512-1-chris@chris-wilson.co.uk --- diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c index 5da86a40434c..16a023ac4604 100644 --- a/drivers/gpu/drm/i915/gt/intel_lrc.c +++ b/drivers/gpu/drm/i915/gt/intel_lrc.c @@ -5317,11 +5317,15 @@ void intel_execlists_show_requests(struct intel_engine_cs *engine, show_request(m, last, "\t\tE "); } - last = NULL; - count = 0; + if (execlists->switch_priority_hint != INT_MIN) + drm_printf(m, "\t\tSwitch priority hint: %d\n", + execlists->switch_priority_hint); if (execlists->queue_priority_hint != INT_MIN) drm_printf(m, "\t\tQueue priority hint: %d\n", execlists->queue_priority_hint); + + last = NULL; + count = 0; for (rb = rb_first_cached(&execlists->queue); rb; rb = rb_next(rb)) { struct i915_priolist *p = rb_entry(rb, typeof(*p), node); int i;