Module: Mesa Branch: master Commit: 8d7a82ae321e6316a7ab521a24f9cf569b9bd0c3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8d7a82ae321e6316a7ab521a24f9cf569b9bd0c3
Author: Juan A. Suarez Romero <[email protected]> Date: Tue Apr 11 13:15:31 2017 +0200 anv: remove needless VALGRIND_MAKE_MEM_DEFINED This is already invoked in the following VG_NOACCESS_READ() call. Reviewed-by: Jason Ekstrand <[email protected]> --- 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 78327df343..784191ed97 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)); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
