feature: enable tbx fault manager by default

Related-To: NEO-13748
Signed-off-by: Jack Myers <jack.myers@intel.com>
This commit is contained in:
Jack Myers
2025-05-21 23:55:55 +00:00
committed by Compute-Runtime-Automation
parent b462f990b6
commit f2b5126598
7 changed files with 31 additions and 19 deletions

View File

@@ -24,7 +24,7 @@ bool TbxPageFaultManager::verifyAndHandlePageFault(void *ptr, bool handleFault)
if (allocPtr != nullptr) {
auto faultData = memoryData[allocPtr];
if (faultData.domain == CpuPageFaultManager::AllocationDomain::gpu) {
this->allowCPUMemoryAccess(ptr, faultData.size);
this->allowCPUMemoryAccess(allocPtr, faultData.size);
}
}
}