gem_pwrite: Print the cache name not the number

Bugzilla: https://bugzilla.freedesktop.org/show_bug.cgi?id=68003
This commit is contained in:
Chris Wilson 2013-08-12 08:39:26 +01:00
parent 467796acc8
commit 7b254f1939

View File

@ -137,11 +137,11 @@ int main(int argc, char **argv)
do_gem_write(fd, dst, src, object_size, count);
gettimeofday(&end, NULL);
printf("Time to %s pwrite %d bytes x %6d: %7.3fµs, %s\n",
c->level, object_size, count,
c->name, object_size, count,
elapsed(&start, &end, count),
bytes_per_sec((char *)buf, object_size/elapsed(&start, &end, count)*1e6));
fflush(stdout);
}
}
}
free(src);