From 5f29edff076e29d3321f8fb180db5302a0581f2b Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Thu, 15 Aug 2024 12:25:34 -0500 Subject: [PATCH] nvk: Increase the context init size We're about to add a bunch more MMEs and we're going to blow past the old limit. Part-of: --- src/nouveau/vulkan/nvk_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/vulkan/nvk_queue.c b/src/nouveau/vulkan/nvk_queue.c index 3bd188f0999..eebc5b754f6 100644 --- a/src/nouveau/vulkan/nvk_queue.c +++ b/src/nouveau/vulkan/nvk_queue.c @@ -460,7 +460,7 @@ nvk_queue_init_context_state(struct nvk_queue *queue, struct nvk_physical_device *pdev = nvk_device_physical(dev); VkResult result; - uint32_t push_data[1024 * 3]; + uint32_t push_data[4096]; struct nv_push push; nv_push_init(&push, push_data, ARRAY_SIZE(push_data)); struct nv_push *p = &push;