From 378c6f2246d66254ce0f88cac6daf25b1c012a41 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Fri, 28 Feb 2014 13:40:12 -0800 Subject: [PATCH] mesa: Drop unused hash_table::mem_ctx field. It's never used, and it's equivalent to ralloc_parent(ht) if you really need it. Signed-off-by: Kenneth Graunke Reviewed-by: Eric Anholt --- src/mesa/main/hash_table.c | 1 - src/mesa/main/hash_table.h | 1 - src/mesa/main/set.c | 1 - 3 files changed, 3 deletions(-) diff --git a/src/mesa/main/hash_table.c b/src/mesa/main/hash_table.c index 008b4cdbcc0..ad8f8985291 100644 --- a/src/mesa/main/hash_table.c +++ b/src/mesa/main/hash_table.c @@ -119,7 +119,6 @@ _mesa_hash_table_create(void *mem_ctx, if (ht == NULL) return NULL; - ht->mem_ctx = mem_ctx; ht->size_index = 0; ht->size = hash_sizes[ht->size_index].size; ht->rehash = hash_sizes[ht->size_index].rehash; diff --git a/src/mesa/main/hash_table.h b/src/mesa/main/hash_table.h index ad1dae478ed..f51131aeed8 100644 --- a/src/mesa/main/hash_table.h +++ b/src/mesa/main/hash_table.h @@ -44,7 +44,6 @@ struct hash_entry { }; struct hash_table { - void *mem_ctx; struct hash_entry *table; bool (*key_equals_function)(const void *a, const void *b); const void *deleted_key; diff --git a/src/mesa/main/set.c b/src/mesa/main/set.c index dc3550c767c..989e5dece86 100644 --- a/src/mesa/main/set.c +++ b/src/mesa/main/set.c @@ -112,7 +112,6 @@ _mesa_set_create(void *mem_ctx, if (ht == NULL) return NULL; - ht->mem_ctx = mem_ctx; ht->size_index = 0; ht->size = hash_sizes[ht->size_index].size; ht->rehash = hash_sizes[ht->size_index].rehash;