summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian König2016-07-26 10:51:29 +0200
committerAlex Deucher2016-07-29 20:37:10 +0200
commite5a6858d8a92f726f3339f6c9592cf95d894b0c1 (patch)
tree72c09cfd3f6f8f49226d6d9ccbc948e10290b52c
parentdrm/amdgpu: fix incorrect type of info_id (diff)
downloadkernel-qcow2-linux-e5a6858d8a92f726f3339f6c9592cf95d894b0c1.tar.gz
kernel-qcow2-linux-e5a6858d8a92f726f3339f6c9592cf95d894b0c1.tar.xz
kernel-qcow2-linux-e5a6858d8a92f726f3339f6c9592cf95d894b0c1.zip
drm/amdgpu: fix default UVD context size
Context buffers should be denied by default, not allowed. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c
index c3712498c2c2..6c8d16559b00 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c
@@ -435,7 +435,7 @@ static int amdgpu_uvd_cs_msg_decode(struct amdgpu_device *adev, uint32_t *msg,
unsigned fs_in_mb = width_in_mb * height_in_mb;
unsigned image_size, tmp, min_dpb_size, num_dpb_buffer;
- unsigned min_ctx_size = 0;
+ unsigned min_ctx_size = ~0;
image_size = width * height;
image_size += image_size / 2;