diff options
author | Dave Airlie <airlied@redhat.com> | 2013-12-13 06:03:52 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-12-13 06:03:52 +0400 |
commit | 0ca9fff744c8ae22401d1ef10a378588afd55abc (patch) | |
tree | f78f01333f7f0c9ce684bfc2b793c2ae6d0977bb /drivers/gpu | |
parent | 7fc61f845859fdca5a2c85a45eb39ce57cdd2276 (diff) | |
parent | 11e6a09fba446ce799a9de51d2d99586024bbdaa (diff) | |
download | linux-0ca9fff744c8ae22401d1ef10a378588afd55abc.tar.xz |
Merge branch 'vmwgfx-fixes-3.13' of git://people.freedesktop.org/~thomash/linux into drm-fixes
Part of a driver stack fix that fixes surface overcommiting on single execbuf calls.
* 'vmwgfx-fixes-3.13' of git://people.freedesktop.org/~thomash/linux:
drm/vmwgfx: Add max surface memory param
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c index a51f48e3e917..45d5b5ab6ca9 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.c @@ -68,6 +68,9 @@ int vmw_getparam_ioctl(struct drm_device *dev, void *data, SVGA_FIFO_3D_HWVERSION)); break; } + case DRM_VMW_PARAM_MAX_SURF_MEMORY: + param->value = dev_priv->memory_size; + break; default: DRM_ERROR("Illegal vmwgfx get param request: %d\n", param->param); |