From d0971c081d9d64465a85a2e6789cb69eecd232a8 Mon Sep 17 00:00:00 2001 From: Dmitry Rogozhkin Date: Mon, 20 Nov 2017 03:49:46 -0800 Subject: benchmarks/gem_exec_nop: fix engines selection Code on loop() function shadowed function parameter which led to inability to try out different engines in the test: we always loaded RCS0. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103804 Signed-off-by: Dmitry Rogozhkin Cc: Chris Wilson Reviewed-by: Chris Wilson --- benchmarks/gem_exec_nop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'benchmarks/gem_exec_nop.c') diff --git a/benchmarks/gem_exec_nop.c b/benchmarks/gem_exec_nop.c index 03a03541..8eb88c1f 100644 --- a/benchmarks/gem_exec_nop.c +++ b/benchmarks/gem_exec_nop.c @@ -106,11 +106,11 @@ static int loop(unsigned ring, int reps, int ncpus, unsigned flags) return 77; all_nengine = 0; - for (ring = 1; ring < 16; ring++) { + for (unsigned r = 1; r < 16; r++) { execbuf.flags &= ~ENGINE_FLAGS; - execbuf.flags |= ring; + execbuf.flags |= r; if (__gem_execbuf(fd, &execbuf) == 0) - all_engines[all_nengine++] = ring; + all_engines[all_nengine++] = r; } if (ring == -1) { -- cgit v1.2.3