From 8d7a82ae321e6316a7ab521a24f9cf569b9bd0c3 Mon Sep 17 00:00:00 2001 From: "Juan A. Suarez Romero" Date: Tue, 11 Apr 2017 13:15:31 +0200 Subject: [PATCH] anv: remove needless VALGRIND_MAKE_MEM_DEFINED This is already invoked in the following VG_NOACCESS_READ() call. Reviewed-by: Jason Ekstrand --- src/intel/vulkan/anv_allocator.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/intel/vulkan/anv_allocator.c b/src/intel/vulkan/anv_allocator.c index 78327df..784191e 100644 --- a/src/intel/vulkan/anv_allocator.c +++ b/src/intel/vulkan/anv_allocator.c @@ -758,7 +758,6 @@ anv_state_stream_finish(struct anv_state_stream *stream) struct anv_state_stream_block *next = stream->block; while (next != NULL) { - VG(VALGRIND_MAKE_MEM_DEFINED(next, sizeof(*next))); struct anv_state_stream_block sb = VG_NOACCESS_READ(next); VG(VALGRIND_MEMPOOL_FREE(stream, sb._vg_ptr)); VG(VALGRIND_MAKE_MEM_UNDEFINED(next, block_size)); -- 2.7.4