summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2018-09-08 03:50:21 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2018-09-11 17:23:12 +0300
commitb97b528d365a31a994b76ba2daf71b6b8f58575e (patch)
treeb05ae1c40618d5aba594f0f4677ff9dd86ad983d
parent57e3d826dee154cb8664667db7660d854a707fc6 (diff)
Fix 32bit gcc warnings
../tests/eviction_common.c:158:13: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 4 has type ‘size_t’ {aka ‘unsigned int’} [-Wformat=] etc. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--tests/drv_suspend.c4
-rw-r--r--tests/eviction_common.c6
-rw-r--r--tools/aubdump.c6
3 files changed, 8 insertions, 8 deletions
diff --git a/tests/drv_suspend.c b/tests/drv_suspend.c
index b4212dca..84cb3b49 100644
--- a/tests/drv_suspend.c
+++ b/tests/drv_suspend.c
@@ -177,10 +177,10 @@ test_shrink(int fd, unsigned int mode)
intel_purge_vm_caches(fd);
- igt_debug("Locking %'"PRIu64" B (%'"PRIu64" MiB)\n",
+ igt_debug("Locking %'zu B (%'zu MiB)\n",
size, size >> 20);
igt_assert(!mlock(mem, size));
- igt_info("Locked %'"PRIu64" B (%'"PRIu64" MiB)\n",
+ igt_info("Locked %'zu B (%'zu MiB)\n",
size, size >> 20);
intel_purge_vm_caches(fd);
diff --git a/tests/eviction_common.c b/tests/eviction_common.c
index 8535dfca..321772ba 100644
--- a/tests/eviction_common.c
+++ b/tests/eviction_common.c
@@ -155,10 +155,10 @@ static void mlocked_evictions(int fd, struct igt_eviction_test_ops *ops,
igt_assert(bo);
lock -= ALIGN(surface_count * sizeof(*bo), 4096);
- igt_debug("Locking %'"PRIu64" B (%'"PRIu64" MiB)\n",
+ igt_debug("Locking %'zu B (%'zu MiB)\n",
lock, lock >> 20);
igt_assert(!mlock(mem, lock));
- igt_info("Locked %'"PRIu64" B (%'"PRIu64" MiB)\n",
+ igt_info("Locked %'zu B (%'zu MiB)\n",
lock, lock >> 20);
for (n = 0; n < surface_count; n++)
@@ -176,7 +176,7 @@ static void mlocked_evictions(int fd, struct igt_eviction_test_ops *ops,
*/
lock += surface_size;
igt_assert(!mlock(mem, lock));
- igt_debug("Total locked %'"PRIu64" B (%'"PRIu64" MiB)\n",
+ igt_debug("Total locked %'zu B (%'zu MiB)\n",
lock,
lock >> 20);
}
diff --git a/tools/aubdump.c b/tools/aubdump.c
index 2d2b6c60..00e19712 100644
--- a/tools/aubdump.c
+++ b/tools/aubdump.c
@@ -496,7 +496,7 @@ gen8_map_ggtt_range(uint64_t start, uint64_t end)
break;
if (verbose)
- printf("MAPPING 0x%08lx-0x%08lx\n",
+ printf("MAPPING 0x%08"PRIx64"-0x%08"PRIx64"\n",
(uint64_t)pos1 << 12, (uint64_t)pos2 << 12);
gen8_emit_ggtt_pte_for_range((uint64_t)pos1 << 12,
(uint64_t)pos2 << 12);
@@ -960,14 +960,14 @@ dump_execbuffer2(int fd, struct drm_i915_gem_execbuffer2 *execbuffer2)
if (obj->flags & EXEC_OBJECT_PINNED) {
bo->offset = obj->offset;
if (verbose)
- printf("BO #%d (%dB) pinned @ 0x%lx\n",
+ printf("BO #%d (%dB) pinned @ 0x%"PRIx64"\n",
obj->handle, bo->size, bo->offset);
} else {
if (obj->alignment != 0)
offset = align_u32(offset, obj->alignment);
bo->offset = offset;
if (verbose)
- printf("BO #%d (%dB) @ 0x%lx\n", obj->handle,
+ printf("BO #%d (%dB) @ 0x%"PRIx64"\n", obj->handle,
bo->size, bo->offset);
offset = align_u32(offset + bo->size + 4095, 4096);
}