Module: Mesa Branch: master Commit: 9df1d92bbd5b2c6d6382e5d9bd640313fb279e1a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9df1d92bbd5b2c6d6382e5d9bd640313fb279e1a
Author: Lionel Landwerlin <[email protected]> Date: Tue Mar 3 14:29:39 2020 +0200 drm-shim: stub syncobj wait ioctl Reviewed-by: Eric Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4726> --- src/drm-shim/device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/drm-shim/device.c b/src/drm-shim/device.c index a2176f8d058..f3f0e53347b 100644 --- a/src/drm-shim/device.c +++ b/src/drm-shim/device.c @@ -213,6 +213,7 @@ ioctl_fn_t core_ioctls[] = { [_IOC_NR(DRM_IOCTL_SYNCOBJ_DESTROY)] = drm_shim_ioctl_stub, [_IOC_NR(DRM_IOCTL_SYNCOBJ_HANDLE_TO_FD)] = drm_shim_ioctl_stub, [_IOC_NR(DRM_IOCTL_SYNCOBJ_FD_TO_HANDLE)] = drm_shim_ioctl_stub, + [_IOC_NR(DRM_IOCTL_SYNCOBJ_WAIT)] = drm_shim_ioctl_stub, }; /** _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
