Re: [Mesa-dev] [PATCH 4/5] util/disk_cache: actually enforce cache size

2017-03-15 Thread Michel Dänzer
On 14/03/17 11:08 AM, Timothy Arceri wrote: > From: Alan Swanson > > Currently only a one in one out eviction so if at max_size and > cache files were to constantly increase in size then so would the > cache. Restrict to limit of 8 evictions per new cache entry. > >

Re: [Mesa-dev] [PATCH 4/5] util/disk_cache: actually enforce cache size

2017-03-14 Thread Grazvydas Ignotas
On Tue, Mar 14, 2017 at 4:08 AM, Timothy Arceri wrote: > From: Alan Swanson > > Currently only a one in one out eviction so if at max_size and > cache files were to constantly increase in size then so would the > cache. Restrict to limit of 8

[Mesa-dev] [PATCH 4/5] util/disk_cache: actually enforce cache size

2017-03-13 Thread Timothy Arceri
From: Alan Swanson Currently only a one in one out eviction so if at max_size and cache files were to constantly increase in size then so would the cache. Restrict to limit of 8 evictions per new cache entry. V2: (Timothy Arceri) fix make check tests ---