From 4de67b26788c60c19254c3e69e151ee200453895 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 2 Jan 2017 11:05:21 +0000 Subject: igt: Mass conversion to to_user_pointer() Signed-off-by: Chris Wilson --- tests/gem_fenced_exec_thrash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/gem_fenced_exec_thrash.c') diff --git a/tests/gem_fenced_exec_thrash.c b/tests/gem_fenced_exec_thrash.c index 53ab7d05..2966bc92 100644 --- a/tests/gem_fenced_exec_thrash.c +++ b/tests/gem_fenced_exec_thrash.c @@ -180,10 +180,10 @@ static void run_test(int fd, int num_fences, int expected_errno, exec[i][n].flags = EXEC_OBJECT_NEEDS_FENCE; exec[i][2*num_fences].handle = batch_create(fd); - exec[i][2*num_fences].relocs_ptr = (uintptr_t)reloc; + exec[i][2*num_fences].relocs_ptr = to_user_pointer(reloc); exec[i][2*num_fences].relocation_count = 2*num_fences; - execbuf[i].buffers_ptr = (uintptr_t)exec[i]; + execbuf[i].buffers_ptr = to_user_pointer(exec[i]); execbuf[i].buffer_count = 2*num_fences+1; execbuf[i].batch_len = 2*sizeof(uint32_t); } -- cgit v1.2.3