From 559f105a8862e2740e60c20612afb2ef0b556e12 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 15 Mar 2021 00:54:54 -0700 Subject: [PATCH] nv2a: Bump up LRU bins --- hw/xbox/nv2a/lru.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xbox/nv2a/lru.h b/hw/xbox/nv2a/lru.h index 0ef842d045..a692eb998f 100644 --- a/hw/xbox/nv2a/lru.h +++ b/hw/xbox/nv2a/lru.h @@ -29,7 +29,7 @@ #include #include "qemu/queue.h" -#define LRU_NUM_BINS (1<<8) +#define LRU_NUM_BINS (1<<16) typedef struct LruNode { QTAILQ_ENTRY(LruNode) next_global;