summaryrefslogtreecommitdiff
path: root/benchmarks/gem_exec_nop.c
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/gem_exec_nop.c')
-rw-r--r--benchmarks/gem_exec_nop.c6
1 files changed, 3 insertions, 3 deletions
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) {