fix(debugger): Add page fault address to L0 PF event

Related-to: GSD-9110

Signed-off-by: Brandon Yates <brandon.yates@intel.com>
This commit is contained in:
Brandon Yates
2024-05-15 16:47:16 +00:00
committed by Compute-Runtime-Automation
parent 6b04cd4a1e
commit a0cb7b0a14
3 changed files with 4 additions and 0 deletions

View File

@@ -1026,6 +1026,7 @@ void DebugSessionLinuxi915::handlePageFaultEvent(prelim_drm_i915_debug_event_pag
if (threadsWithPF.size() == 0) {
zet_debug_event_t debugEvent = {};
debugEvent.type = ZET_DEBUG_EVENT_TYPE_PAGE_FAULT;
debugEvent.info.page_fault.address = pf->page_fault_address;
PRINT_DEBUGGER_INFO_LOG("PageFault event for unknown thread", 0);
enqueueApiEvent(debugEvent);
}