feature: Implement debugger open IOCTL

Related-To: NEO-8405

Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
This commit is contained in:
Jitendra Sharma
2024-01-23 16:25:51 +00:00
committed by Compute-Runtime-Automation
parent cfba0e0861
commit 548ecec7f8
4 changed files with 26 additions and 0 deletions

View File

@@ -1132,6 +1132,9 @@ int IoctlHelperXe::ioctl(DrmIoctl request, void *arg) {
xeLog(" -> IoctlHelperXe::ioctl GemCreate h=0x%x s=0x%lx p=0x%x f=0x%x r=%d\n",
gemCreate->handle, gemCreate->size, gemCreate->flags, ret);
} break;
case DrmIoctl::debuggerOpen: {
ret = debuggerOpenIoctl(request, arg);
} break;
default:
xeLog("Not handled 0x%x\n", request);
UNRECOVERABLE_IF(true);