diff options
author | Nicolai Hähnle <[email protected]> | 2016-09-12 16:27:41 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-09-27 16:45:41 +0200 |
commit | 4421c0fb0dc7a51c3d639c452ad8a5d55a99cec1 (patch) | |
tree | fe8256b9fcf727432e2696a08ccf8c8f4cb86faf /src/gallium/auxiliary/pipebuffer/pb_cache.h | |
parent | fb827c055cb1bdd2b18d0687c06c56b537d805f3 (diff) |
gallium/radeon/winsyses: reduce the number of pb_cache buckets
Small buffers are now handled via the slabs code, so separate buckets in
pb_cache have become redundant.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer/pb_cache.h')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_cache.h b/src/gallium/auxiliary/pipebuffer/pb_cache.h index aa83cc8b38c..7000fcd1c5a 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_cache.h +++ b/src/gallium/auxiliary/pipebuffer/pb_cache.h @@ -50,7 +50,7 @@ struct pb_cache /* The cache is divided into buckets for minimizing cache misses. * The driver controls which buffer goes into which bucket. */ - struct list_head buckets[8]; + struct list_head buckets[4]; pipe_mutex mutex; uint64_t cache_size; |