diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2019-08-08 22:45:25 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2019-08-08 22:53:31 +0300 |
commit | cbb153c50ebe4f635d970a1685302288e3f573fe (patch) | |
tree | 26a2b53924c894e3e43d29eab524982427dc85f9 /drivers/gpu/drm/i915/selftests/i915_request.c | |
parent | 9749a5b6c09f1ad1a791ba702e5b1a4c57a50a6e (diff) | |
download | linux-cbb153c50ebe4f635d970a1685302288e3f573fe.tar.xz |
drm/i915/selftests: Fixup a missing legacy_idx
Grr, missed one*. For using the legacy engine map, we should use
engine->legacy_idx. Ideally, we should know the intel_context in the
selftest and avoid all the fiddling around with unwanted GEM contexts.
* In my defence, the conflict was added in another patch after it was
tested by CI.
v2: mock engines needs legacy love as well
Fixes: f1c4d157ab9b ("drm/i915: Fix up the inverse mapping for default ctx->engines[]")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190808194525.9410-2-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/selftests/i915_request.c')
-rw-r--r-- | drivers/gpu/drm/i915/selftests/i915_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/selftests/i915_request.c b/drivers/gpu/drm/i915/selftests/i915_request.c index 2e0fd701bca7..3937d43c2961 100644 --- a/drivers/gpu/drm/i915/selftests/i915_request.c +++ b/drivers/gpu/drm/i915/selftests/i915_request.c @@ -339,7 +339,7 @@ static int __igt_breadcrumbs_smoketest(void *arg) mutex_lock(BKL); - ce = i915_gem_context_get_engine(ctx, t->engine->id); + ce = i915_gem_context_get_engine(ctx, t->engine->legacy_idx); GEM_BUG_ON(IS_ERR(ce)); rq = t->request_alloc(ce); intel_context_put(ce); |