summaryrefslogtreecommitdiff
path: root/tests/perf_pmu.c
diff options
context:
space:
mode:
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>2018-02-19 10:17:02 +0000
committerTvrtko Ursulin <tvrtko.ursulin@intel.com>2018-02-19 18:40:25 +0000
commit6fc91dbb67eea6824100905a4ab1fb38f186dba0 (patch)
tree43d4b68de13e4abf4bd73682a60c17eff8228def /tests/perf_pmu.c
parenta68b3060dec0c59d3c6403f551fecf3bc4a1fd64 (diff)
perf_pmu: Fix some compile warnings with old compilers / 32-bit builds
Correct printf format for uint64_t and one "may be uninitialized". v2: Fix one more "may be uninitialized". (Chris Wilson) Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reported-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/perf_pmu.c')
-rw-r--r--tests/perf_pmu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/perf_pmu.c b/tests/perf_pmu.c
index 7613a619..7fab73e2 100644
--- a/tests/perf_pmu.c
+++ b/tests/perf_pmu.c
@@ -300,7 +300,7 @@ busy_double_start(int gem_fd, const struct intel_execution_engine2 *e)
usleep(batch_duration_ns / 1000);
val2 = pmu_read_single(fd) - val2;
- igt_info("busy=%lu idle=%lu\n", val, val2);
+ igt_info("busy=%"PRIu64" idle=%"PRIu64"\n", val, val2);
igt_spin_batch_free(gem_fd, spin[0]);
igt_spin_batch_free(gem_fd, spin[1]);
@@ -340,11 +340,11 @@ busy_check_all(int gem_fd, const struct intel_execution_engine2 *e,
{
const struct intel_execution_engine2 *e_;
uint64_t tval[2][num_engines];
+ unsigned int busy_idx = 0, i;
uint64_t val[num_engines];
int fd[num_engines];
unsigned long slept;
igt_spin_t *spin;
- unsigned int busy_idx, i;
i = 0;
fd[0] = -1;
@@ -1764,7 +1764,7 @@ igt_main
* Check render nodes are counted.
*/
igt_subtest_group {
- int render_fd;
+ int render_fd = -1;
igt_fixture {
render_fd = drm_open_driver_render(DRIVER_INTEL);