Mesa (master): radv: use device name in cache creation like radeonsi.

Dave Airlie airlied at kemper.freedesktop.org
Wed Oct 25 01:30:59 UTC 2017


Module: Mesa
Branch: master
Commit: d8cefaa197f02944812ef535b1b303dd5bf26848
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d8cefaa197f02944812ef535b1b303dd5bf26848

Author: Dave Airlie <airlied at redhat.com>
Date:   Wed Oct 25 02:23:08 2017 +0100

radv: use device name in cache creation like radeonsi.

Not sure how useful this is, but it makes it more consistent.

Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
Cc: "17.3" <mesa-stable at lists.freedesktop.org>
Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/amd/vulkan/radv_device.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
index c4e25222ea..ebc74fbade 100644
--- a/src/amd/vulkan/radv_device.c
+++ b/src/amd/vulkan/radv_device.c
@@ -152,6 +152,8 @@ radv_physical_device_init(struct radv_physical_device *device,
 		goto fail;
 	}
 
+	device->name = get_chip_name(device->rad_info.family);
+
 	if (radv_device_get_cache_uuid(device->rad_info.family, device->cache_uuid)) {
 		radv_finish_wsi(device);
 		device->ws->destroy(device->ws);
@@ -170,10 +172,9 @@ radv_physical_device_init(struct radv_physical_device *device,
 	 */
 	char buf[VK_UUID_SIZE + 1];
 	disk_cache_format_hex_id(buf, device->cache_uuid, VK_UUID_SIZE);
-	device->disk_cache = disk_cache_create("radv", buf, shader_env_flags);
+	device->disk_cache = disk_cache_create(device->name, buf, shader_env_flags);
 
 	fprintf(stderr, "WARNING: radv is not a conformant vulkan implementation, testing use only.\n");
-	device->name = get_chip_name(device->rad_info.family);
 
 	radv_get_driver_uuid(&device->device_uuid);
 	radv_get_device_uuid(&device->rad_info, &device->device_uuid);




More information about the mesa-commit mailing list