Re: [Mesa-dev] [PATCH 1/2] util: Implement a hash table cloning function

2018-03-14 Thread Emil Velikov
On 13 March 2018 at 20:04, Thomas Helland wrote: > 2018-03-12 19:48 GMT+01:00 Emil Velikov : >> Hi Thomas, >> >> On 12 March 2018 at 17:55, Thomas Helland wrote: >>> V2: Don't rzalloc; we are about to rewrite the whole thing (Vladislav) >>> --- >>> src/util/hash_table.c | 22

[Mesa-dev] [PATCH 1/2] util: Implement a hash table cloning function

2018-03-13 Thread Thomas Helland
V2: Don't rzalloc; we are about to rewrite the whole thing (Vladislav) Reviewed-by: Eric Anholt --- src/util/hash_table.c | 22 ++ src/util/hash_table.h | 2 ++ 2 files changed, 24 insertions(+) diff --git a/src/util/hash_table.c b/src/util/hash_table.c index b7421a0144..f8

Re: [Mesa-dev] [PATCH 1/2] util: Implement a hash table cloning function

2018-03-13 Thread Thomas Helland
2018-03-12 19:48 GMT+01:00 Emil Velikov : > Hi Thomas, > > On 12 March 2018 at 17:55, Thomas Helland wrote: >> V2: Don't rzalloc; we are about to rewrite the whole thing (Vladislav) >> --- >> src/util/hash_table.c | 22 ++ >> src/util/hash_table.h | 2 ++ >> 2 files changed,

Re: [Mesa-dev] [PATCH 1/2] util: Implement a hash table cloning function

2018-03-12 Thread Emil Velikov
Hi Thomas, On 12 March 2018 at 17:55, Thomas Helland wrote: > V2: Don't rzalloc; we are about to rewrite the whole thing (Vladislav) > --- > src/util/hash_table.c | 22 ++ > src/util/hash_table.h | 2 ++ > 2 files changed, 24 insertions(+) > > diff --git a/src/util/hash_tabl

[Mesa-dev] [PATCH 1/2] util: Implement a hash table cloning function

2018-03-12 Thread Thomas Helland
V2: Don't rzalloc; we are about to rewrite the whole thing (Vladislav) --- src/util/hash_table.c | 22 ++ src/util/hash_table.h | 2 ++ 2 files changed, 24 insertions(+) diff --git a/src/util/hash_table.c b/src/util/hash_table.c index b7421a0144..f8d5d0f88a 100644 --- a/src/u