From 09c3ff01dfd72aa84334fe82cc3319594fc99ac6 Mon Sep 17 00:00:00 2001 From: Caio Marcelo de Oliveira Filho Date: Fri, 11 Jan 2019 12:01:30 -0800 Subject: src/intel: use new hash table and set creation helpers Replace calls to create hash tables and sets that use _mesa_hash_pointer/_mesa_key_pointer_equal with the helpers _mesa_pointer_hash_table_create() and _mesa_pointer_set_create(). Reviewed-by: Jason Ekstrand Acked-by: Eric Engestrom --- src/intel/tools/intel_sanitize_gpu.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/intel/tools') diff --git a/src/intel/tools/intel_sanitize_gpu.c b/src/intel/tools/intel_sanitize_gpu.c index 8f4f2ff8ec6..ddfe1768b4a 100644 --- a/src/intel/tools/intel_sanitize_gpu.c +++ b/src/intel/tools/intel_sanitize_gpu.c @@ -110,8 +110,7 @@ add_drm_fd(int fd) { struct refcnt_hash_table *r = malloc(sizeof(*r)); r->refcnt = 1; - r->t = _mesa_hash_table_create(NULL, _mesa_hash_pointer, - _mesa_key_pointer_equal); + r->t = _mesa_pointer_hash_table_create(NULL); _mesa_hash_table_insert(fds_to_bo_sizes, (void*)(uintptr_t)fd, (void*)(uintptr_t)r); } @@ -426,8 +425,7 @@ ioctl(int fd, unsigned long request, ...) static void __attribute__ ((constructor)) init(void) { - fds_to_bo_sizes = _mesa_hash_table_create(NULL, _mesa_hash_pointer, - _mesa_key_pointer_equal); + fds_to_bo_sizes = _mesa_pointer_hash_table_create(NULL); libc_open = dlsym(RTLD_NEXT, "open"); libc_close = dlsym(RTLD_NEXT, "close"); libc_fcntl = dlsym(RTLD_NEXT, "fcntl"); -- cgit v1.2.3