[Intel-gfx] [PATCH i-g-t 3/3] tests: match gem_create prototype in igt_eviction_test_ops create function

Thomas Wood thomas.wood at intel.com
Thu May 14 09:04:26 PDT 2015


This avoids a warning when using gem_create as the create function.

Signed-off-by: Thomas Wood <thomas.wood at intel.com>
---
 tests/eviction_common.c   | 2 +-
 tests/gem_userptr_blits.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/eviction_common.c b/tests/eviction_common.c
index 6f2f194..91c5acf 100644
--- a/tests/eviction_common.c
+++ b/tests/eviction_common.c
@@ -34,7 +34,7 @@
 
 struct igt_eviction_test_ops
 {
-	uint32_t (*create)(int fd, int size);
+	uint32_t (*create)(int fd, uint64_t size);
 	void (*flink)(uint32_t old_handle, uint32_t new_handle);
 	void	 (*close)(int fd, uint32_t bo);
 	int	 (*copy)(int fd, uint32_t dst, uint32_t src,
diff --git a/tests/gem_userptr_blits.c b/tests/gem_userptr_blits.c
index 41d5769..1f2cc96 100644
--- a/tests/gem_userptr_blits.c
+++ b/tests/gem_userptr_blits.c
@@ -362,7 +362,7 @@ static void free_handle_ptr(uint32_t handle)
 	handle_ptr_map[handle] = NULL;
 }
 
-static uint32_t create_userptr_bo(int fd, int size)
+static uint32_t create_userptr_bo(int fd, uint64_t size)
 {
 	void *ptr;
 	uint32_t handle;
-- 
2.1.0



More information about the Intel-gfx mailing list