summaryrefslogtreecommitdiff
path: root/lib/igt_gt.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2017-03-30 15:34:36 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2017-03-30 15:35:26 +0100
commit4d78533569746ccf26293776727429f7d62dabe4 (patch)
tree4f9a65f69f4e64329f5a75c87adaec60bcbea9df /lib/igt_gt.c
parent7e7bc018b7674bc9a91a19a8a3b949c304b2ae77 (diff)
lib: Update kernel engine names
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 976b0061..7c90724e 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", "render ring", I915_EXEC_RENDER, 0 },
- { "bsd", "bsd ring", I915_EXEC_BSD, 0 },
- { "bsd1", "bsd ring", I915_EXEC_BSD, 1<<13 /*I915_EXEC_BSD_RING1*/ },
- { "bsd2", "bsd2 ring", I915_EXEC_BSD, 2<<13 /*I915_EXEC_BSD_RING2*/ },
- { "blt", "blitter ring", I915_EXEC_BLT, 0 },
- { "vebox", "video enhancement ring", I915_EXEC_VEBOX, 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 },
{ NULL, 0, 0 }
};