From 134e32378a242e846a6e553ad80317a4a56b13b9 Mon Sep 17 00:00:00 2001 From: Ben Widawsky Date: Thu, 5 Nov 2015 16:56:11 -0800 Subject: igt/intel_aubdump: Use the right ring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This prevents the simulator from barfing when it sees commands from another ring. I've been using this locally for a very long time. Signed-off-by: Ben Widawsky Reviewed-by: Kristian Høgsberg --- tools/aubdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/aubdump.c') diff --git a/tools/aubdump.c b/tools/aubdump.c index a17dc10f..d9ee7919 100644 --- a/tools/aubdump.c +++ b/tools/aubdump.c @@ -315,7 +315,7 @@ dump_execbuffer2(int fd, struct drm_i915_gem_execbuffer2 *execbuffer2) { struct drm_i915_gem_exec_object2 *exec_objects = (struct drm_i915_gem_exec_object2 *) (uintptr_t) execbuffer2->buffers_ptr; - uint32_t ring_flag = 0; + uint32_t ring_flag = execbuffer2->flags & I915_EXEC_RING_MASK; uint32_t offset = gtt_size; struct drm_i915_gem_exec_object2 *obj; struct bo *bo, *batch_bo; -- cgit v1.2.3