summaryrefslogtreecommitdiff
path: root/lib/igt_gt.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2017-04-11 20:20:28 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2017-04-11 20:21:24 +0100
commit82fdfc65d81e08df08089c3c9cee65f9505c71e2 (patch)
tree42e182580e884f921299e1a8e40526a9ea3d3678 /lib/igt_gt.c
parentf0c8bd8c451ec7c8cf23f0e527a4e64d1778323b (diff)
lib: Fix up internal engine names (again)
Another day, another format. Now we include the 0-based instance number for all engines, and not just vcs1/2. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/igt_gt.c')
-rw-r--r--lib/igt_gt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/igt_gt.c b/lib/igt_gt.c
index 7c90724e..25db02e9 100644
--- a/lib/igt_gt.c
+++ b/lib/igt_gt.c
@@ -549,11 +549,11 @@ unsigned intel_detect_and_clear_missed_interrupts(int fd)
const struct intel_execution_engine intel_execution_engines[] = {
{ "default", NULL, 0, 0 },
- { "render", "rcs", I915_EXEC_RENDER, 0 },
- { "bsd", "vcs", I915_EXEC_BSD, 0 },
- { "bsd1", "vcs", I915_EXEC_BSD, 1<<13 /*I915_EXEC_BSD_RING1*/ },
- { "bsd2", "vcs2", I915_EXEC_BSD, 2<<13 /*I915_EXEC_BSD_RING2*/ },
- { "blt", "bcs", I915_EXEC_BLT, 0 },
- { "vebox", "vecs", I915_EXEC_VEBOX, 0 },
+ { "render", "rcs0", I915_EXEC_RENDER, 0 },
+ { "bsd", "vcs0", I915_EXEC_BSD, 0 },
+ { "bsd1", "vcs0", I915_EXEC_BSD, 1<<13 /*I915_EXEC_BSD_RING1*/ },
+ { "bsd2", "vcs1", I915_EXEC_BSD, 2<<13 /*I915_EXEC_BSD_RING2*/ },
+ { "blt", "bcs0", I915_EXEC_BLT, 0 },
+ { "vebox", "vecs0", I915_EXEC_VEBOX, 0 },
{ NULL, 0, 0 }
};