intel/stub: Implement I915_PARAM_HAS_USERPTR_PROBE

Just say no for now.

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14132>
This commit is contained in:
Ian Romanick 2021-12-06 13:04:41 -08:00
parent 832db9d900
commit c5d731ac5c
1 changed files with 3 additions and 0 deletions

View File

@ -212,6 +212,9 @@ i915_ioctl_get_param(int fd, unsigned long request, void *arg)
case I915_PARAM_PERF_REVISION:
*gp->value = 3;
return 0;
case I915_PARAM_HAS_USERPTR_PROBE:
*gp->value = 0;
return 0;
default:
break;
}