SWDEV-480772 - Remove name variable from amd::Monitor class.

Change-Id: Ie2a4fa44f485786227230f8a892e090e718aa30e
This commit is contained in:
kjayapra-amd
2024-08-07 18:10:41 -04:00
committed by Karthik Jayaprakash
parent cfdc9dfc36
commit 12a39fbf22
27 changed files with 76 additions and 83 deletions
+3 -2
View File
@@ -181,7 +181,7 @@ Device::Device(hsa_agent_t bkendDevice)
, xferRead_(nullptr)
, xferWrite_(nullptr)
, freeMem_(0)
, vgpusAccess_("Virtual GPU List Ops Lock", true)
, vgpusAccess_(true) /* Virtual GPU List Ops Lock */
, hsa_exclusive_gpu_access_(false)
, queuePool_(QueuePriority::Total)
, coopHostcallBuffer_(nullptr)
@@ -809,7 +809,8 @@ bool Device::create() {
return false;
}
mapCacheOps_ = new amd::Monitor("Map Cache Lock", true);
// Map Cache Lock
mapCacheOps_ = new amd::Monitor(true);
if (nullptr == mapCacheOps_) {
return false;
}