From 4782000fd5b2a1ae3041884f64ab192dbcb853c0 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 11 Oct 2017 12:48:19 +0500 Subject: Cycles: Fix possible race condition when initializing devices list --- intern/cycles/device/device.cpp | 26 +++++++++++--------------- intern/cycles/device/device.h | 1 + 2 files changed, 12 insertions(+), 15 deletions(-) (limited to 'intern') diff --git a/intern/cycles/device/device.cpp b/intern/cycles/device/device.cpp index e5a1aa610b6..7b0875965f8 100644 --- a/intern/cycles/device/device.cpp +++ b/intern/cycles/device/device.cpp @@ -34,6 +34,7 @@ CCL_NAMESPACE_BEGIN bool Device::need_types_update = true; bool Device::need_devices_update = true; +thread_mutex Device::device_mutex; vector Device::types; vector Device::devices; @@ -296,54 +297,49 @@ string Device::string_from_type(DeviceType type) vector& Device::available_types() { + thread_scoped_lock lock(device_mutex); if(need_types_update) { types.clear(); types.push_back(DEVICE_CPU); - #ifdef WITH_CUDA - if(device_cuda_init()) + if(device_cuda_init()) { types.push_back(DEVICE_CUDA); + } #endif - #ifdef WITH_OPENCL - if(device_opencl_init()) + if(device_opencl_init()) { types.push_back(DEVICE_OPENCL); + } #endif - #ifdef WITH_NETWORK types.push_back(DEVICE_NETWORK); #endif - need_types_update = false; } - return types; } vector& Device::available_devices() { + thread_scoped_lock lock(device_mutex); if(need_devices_update) { devices.clear(); - #ifdef WITH_OPENCL - if(device_opencl_init()) + if(device_opencl_init()) { device_opencl_info(devices); + } #endif - #ifdef WITH_CUDA - if(device_cuda_init()) + if(device_cuda_init()) { device_cuda_info(devices); + } #endif - device_cpu_info(devices); - #ifdef WITH_NETWORK device_network_info(devices); #endif - need_devices_update = false; } - return devices; } diff --git a/intern/cycles/device/device.h b/intern/cycles/device/device.h index c134fc9411e..5cd9cf46769 100644 --- a/intern/cycles/device/device.h +++ b/intern/cycles/device/device.h @@ -354,6 +354,7 @@ public: private: /* Indicted whether device types and devices lists were initialized. */ static bool need_types_update, need_devices_update; + static thread_mutex device_mutex; static vector types; static vector devices; }; -- cgit v1.2.3