mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
intel/tools: Advertise I915_PARAM_HAS_EXEC_TIMELINE_FENCES
This has been required from the kernel for quite some time, but it wasn't (and technically still isn't) explicitly checked. Commit7da5b1caefchanged the code paths such that an assertion is hit when I915_PARAM_HAS_EXEC_TIMELINE_FENCES is not available. Fixes:7da5b1caef("anv: move trtt submissions over to the anv_async_submit") Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29920>
This commit is contained in:
parent
dd85b50d18
commit
5bc05c6f53
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ i915_ioctl_get_param(int fd, unsigned long request, void *arg)
|
|||
*gp->value = true;
|
||||
return 0;
|
||||
case I915_PARAM_HAS_EXEC_TIMELINE_FENCES:
|
||||
*gp->value = false;
|
||||
*gp->value = true;
|
||||
return 0;
|
||||
case I915_PARAM_CMD_PARSER_VERSION:
|
||||
/* Most recent version in drivers/gpu/drm/i915/i915_cmd_parser.c */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue