Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 74 lines 2.5 kB view raw
1From 6d22383149e4cdc646c68e29238f41d895a4705b Mon Sep 17 00:00:00 2001 2From: David McFarland <corngood@gmail.com> 3Date: Mon, 6 Aug 2018 15:52:11 -0300 4Subject: [PATCH] disk_cache: include dri driver path in cache key 5 6This fixes invalid cache hits on NixOS where all shared library 7timestamps in /nix/store are zero. 8--- 9 meson_options.txt | 6 ++++++ 10 src/util/disk_cache.c | 3 +++ 11 src/util/meson.build | 7 ++++++- 12 3 files changed, 15 insertions(+), 1 deletion(-) 13 14diff --git a/meson_options.txt b/meson_options.txt 15index 626baf3..579c15b 100644 16--- a/meson_options.txt 17+++ b/meson_options.txt 18@@ -341,6 +341,12 @@ option( 19 value : true, 20 description : 'Enable direct rendering in GLX and EGL for DRI', 21 ) 22+option( 23+ 'disk-cache-key', 24+ type : 'string', 25+ value : '', 26+ description : 'Mesa cache key.' 27+) 28 option( 29 'I-love-half-baked-turnips', 30 type : 'boolean', 31diff --git a/src/util/disk_cache.c b/src/util/disk_cache.c 32index 0cd92ca..fc1c173 100644 33--- a/src/util/disk_cache.c 34+++ b/src/util/disk_cache.c 35@@ -395,8 +395,10 @@ disk_cache_create(const char *gpu_name, const char *driver_id, 36 37 /* Create driver id keys */ 38 size_t id_size = strlen(driver_id) + 1; 39+ size_t key_size = strlen(DISK_CACHE_KEY) + 1; 40 size_t gpu_name_size = strlen(gpu_name) + 1; 41 cache->driver_keys_blob_size += id_size; 42+ cache->driver_keys_blob_size += key_size; 43 cache->driver_keys_blob_size += gpu_name_size; 44 45 /* We sometimes store entire structs that contains a pointers in the cache, 46@@ -417,6 +419,7 @@ disk_cache_create(const char *gpu_name, const char *driver_id, 47 uint8_t *drv_key_blob = cache->driver_keys_blob; 48 DRV_KEY_CPY(drv_key_blob, &cache_version, cv_size) 49 DRV_KEY_CPY(drv_key_blob, driver_id, id_size) 50+ DRV_KEY_CPY(drv_key_blob, DISK_CACHE_KEY, key_size) 51 DRV_KEY_CPY(drv_key_blob, gpu_name, gpu_name_size) 52 DRV_KEY_CPY(drv_key_blob, &ptr_size, ptr_size_size) 53 DRV_KEY_CPY(drv_key_blob, &driver_flags, driver_flags_size) 54diff --git a/src/util/meson.build b/src/util/meson.build 55index f69ebe9..e2bd8e2 100644 56--- a/src/util/meson.build 57+++ b/src/util/meson.build 58@@ -158,7 +158,12 @@ _libmesa_util = static_library( 59 [files_mesa_util, format_srgb], 60 include_directories : inc_common, 61 dependencies : deps_for_libmesa_util, 62- c_args : [c_msvc_compat_args, c_vis_args], 63+ c_args : [ 64+ c_msvc_compat_args, c_vis_args, 65+ '-DDISK_CACHE_KEY="@0@"'.format( 66+ get_option('disk-cache-key') 67+ ), 68+ ], 69 build_by_default : false 70 ) 71 72-- 732.24.1 74