From d20d30442cee855bdfc722e4ab1279db5f8ee8d1 Mon Sep 17 00:00:00 2001 From: Mel Henning Date: Fri, 16 Jan 2026 17:32:02 -0500 Subject: [PATCH] nvk: Disable large pages for now Reviewed-by: Mary Guillemard Fixes: cabfdb4404a ("nvk: Enable compression") Part-of: (cherry picked from commit f3c53cf66bfcc38f3f54de01a16e40db0e7f79b6) --- .pick_status.json | 2 +- src/nouveau/vulkan/nvkmd/nouveau/nvkmd_nouveau_pdev.c | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index 38a3194b9aa..c01fd48efd0 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -674,7 +674,7 @@ "description": "nvk: Disable large pages for now", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "cabfdb4404ad65b2a6a2a3b469e5e09d9b63f96a", "notes": null diff --git a/src/nouveau/vulkan/nvkmd/nouveau/nvkmd_nouveau_pdev.c b/src/nouveau/vulkan/nvkmd/nouveau/nvkmd_nouveau_pdev.c index 44bf06e4c94..76a325727db 100644 --- a/src/nouveau/vulkan/nvkmd/nouveau/nvkmd_nouveau_pdev.c +++ b/src/nouveau/vulkan/nvkmd/nouveau/nvkmd_nouveau_pdev.c @@ -101,8 +101,13 @@ nvkmd_nouveau_try_create_pdev(struct _drmDevice *drm_device, .has_alloc_tiled = nouveau_ws_device_has_tiled_bo(ws_dev), .has_map_fixed = true, .has_overmap = true, - .has_compression = ws_dev->nouveau_version >= 0x01000401 && - ws_dev->info.cls_eng3d >= TURING_A, + /* + * Disabled for now due to + * https://gitlab.freedesktop.org/mesa/mesa/-/issues/14610 + * .has_compression = ws_dev->nouveau_version >= 0x01000401 && + * ws_dev->info.cls_eng3d >= TURING_A, + */ + .has_compression = false, }; /* We get this ourselves */