Intel-GFX Archive mirror
 help / color / mirror / Atom feed
* [PATCH i-g-t 1/2] tools/aubdump: remove void pointer arithmetic
@ 2015-09-08 17:13 Thomas Wood
  2015-09-08 17:13 ` [PATCH i-g-t 2/2] null_state_gen: add const to intel_batch_state_copy data Thomas Wood
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Wood @ 2015-09-08 17:13 UTC (permalink / raw
  To: intel-gfx

A gcc extension allows void pointer arithmetic by treating the size of
void as 1, but this generates a warning when -Wpointer-arith is used.

Signed-off-by: Thomas Wood <thomas.wood@intel.com>
---
 tools/aubdump.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/aubdump.c b/tools/aubdump.c
index d52515b..a17dc10 100644
--- a/tools/aubdump.c
+++ b/tools/aubdump.c
@@ -191,7 +191,7 @@ aub_write_trace_block(uint32_t type, void *virtual, uint32_t size, uint64_t gtt_
 			dword_out((gtt_offset + offset) >> 32);
 
 		if (virtual)
-			data_out(GET_PTR(virtual) + offset, block_size);
+			data_out(((char *) GET_PTR(virtual)) + offset, block_size);
 		else
 			data_out(null_block, block_size);
 
@@ -261,7 +261,7 @@ relocate_bo(struct bo *bo, const struct drm_i915_gem_execbuffer2 *execbuffer2,
 		else
 			handle = relocs[i].target_handle;
 
-		dw = relocated + relocs[i].offset;
+		dw = (uint32_t*)(((char *) relocated) + relocs[i].offset);
 		*dw = bos[handle].offset + relocs[i].delta;
 	}
 
-- 
1.9.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-08 17:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-08 17:13 [PATCH i-g-t 1/2] tools/aubdump: remove void pointer arithmetic Thomas Wood
2015-09-08 17:13 ` [PATCH i-g-t 2/2] null_state_gen: add const to intel_batch_state_copy data Thomas Wood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).