From: Thomas Hellstrom Date: Tue, 9 Feb 2010 21:54:15 +0000 (+0100) Subject: vmware: Update vmwgfx_drm.h to kernel version. X-Git-Tag: mesa-7.8~362 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fd43b09224c0e3b37de54e24508dcea5cd50dd8;p=platform%2Fupstream%2Fmesa.git vmware: Update vmwgfx_drm.h to kernel version. Signed-off-by: Thomas Hellstrom --- diff --git a/src/gallium/winsys/drm/vmware/core/vmwgfx_drm.h b/src/gallium/winsys/drm/vmware/core/vmwgfx_drm.h index 1457966..47914bd 100644 --- a/src/gallium/winsys/drm/vmware/core/vmwgfx_drm.h +++ b/src/gallium/winsys/drm/vmware/core/vmwgfx_drm.h @@ -260,15 +260,23 @@ union drm_vmw_surface_reference_arg { * to the nearest kernel tick. * @fence_rep: User-space address of a struct drm_vmw_fence_rep cast to an * uint64_t. + * @version: Allows expanding the execbuf ioctl parameters without breaking + * backwards compatibility, since user-space will always tell the kernel + * which version it uses. + * @flags: Execbuf flags. None currently. * * Argument to the DRM_VMW_EXECBUF Ioctl. */ +#define DRM_VMW_EXECBUF_VERSION 0 + struct drm_vmw_execbuf_arg { uint64_t commands; uint32_t command_size; uint32_t throttle_us; uint64_t fence_rep; + uint32_t version; + uint32_t flags; }; /**