diff options
Diffstat (limited to 'tests/gem_ring_sync_loop.c')
-rw-r--r-- | tests/gem_ring_sync_loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gem_ring_sync_loop.c b/tests/gem_ring_sync_loop.c index d4e7e2a8..fc510e4b 100644 --- a/tests/gem_ring_sync_loop.c +++ b/tests/gem_ring_sync_loop.c @@ -67,7 +67,7 @@ store_dword_loop(int fd) int ring = random() % num_rings + 1; if (ring == I915_EXEC_RENDER) { - BEGIN_BATCH(4); + BEGIN_BATCH(4, 1); OUT_BATCH(MI_COND_BATCH_BUFFER_END | MI_DO_COMPARE); OUT_BATCH(0xffffffff); /* compare dword */ OUT_RELOC(target_buffer, I915_GEM_DOMAIN_RENDER, @@ -75,7 +75,7 @@ store_dword_loop(int fd) OUT_BATCH(MI_NOOP); ADVANCE_BATCH(); } else { - BEGIN_BATCH(4); + BEGIN_BATCH(4, 1); OUT_BATCH(MI_FLUSH_DW | 1); OUT_BATCH(0); /* reserved */ OUT_RELOC(target_buffer, I915_GEM_DOMAIN_RENDER, |