nv2a: Bump up LRU bins

This commit is contained in:
Matt Borgerson 2021-03-15 00:54:54 -07:00 committed by mborgerson
parent ceee8d67b9
commit 559f105a88
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#include <stdint.h>
#include "qemu/queue.h"
#define LRU_NUM_BINS (1<<8)
#define LRU_NUM_BINS (1<<16)
typedef struct LruNode {
QTAILQ_ENTRY(LruNode) next_global;