From 82fdfc65d81e08df08089c3c9cee65f9505c71e2 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Tue, 11 Apr 2017 20:20:28 +0100 Subject: 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 --- lib/igt_gt.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/igt_gt.c') 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 } }; -- cgit v1.2.3