diff options
author | Dave Airlie <airlied@redhat.com> | 2017-11-22 19:56:11 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-11-22 19:56:11 -0500 |
commit | 9cae7751dc6896fb0c11ac858d3cbd9d6a8c022f (patch) | |
tree | d01ec99e5703f9a12bda4bc4ab36dad0539c3d4c /drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | |
parent | af5ecb53c8333df424aedf97024f38ea4ec5cbb2 (diff) | |
parent | 446947b44fb8cabc0213ff4efd706931e36b1963 (diff) |
Merge branch 'drm-next-4.15' of git://people.freedesktop.org/~agd5f/linux into drm-next
more misc amdgpu fixes.
* 'drm-next-4.15' of git://people.freedesktop.org/~agd5f/linux:
drm/amdgpu: fix rmmod KCQ disable failed error
drm/amdgpu: fix kernel hang when starting VNC server
drm/amdgpu: don't skip attributes when powerplay is enabled
drm/amd/pp: fix typecast error in powerplay.
Revert "drm/radeon: dont switch vt on suspend"
drm/amd/amdgpu: fix over-bound accessing in amdgpu_cs_wait_any_fence
drm/amd/powerplay: fix unfreeze level smc message for smu7
drm/amdgpu:fix memleak
drm/amdgpu:fix memleak in takedown
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c index 146e05f21d35..bdef497a6a26 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | |||
@@ -1498,7 +1498,7 @@ out: | |||
1498 | wait->out.status = (r > 0); | 1498 | wait->out.status = (r > 0); |
1499 | wait->out.first_signaled = first; | 1499 | wait->out.first_signaled = first; |
1500 | 1500 | ||
1501 | if (array[first]) | 1501 | if (first < fence_count && array[first]) |
1502 | r = array[first]->error; | 1502 | r = array[first]->error; |
1503 | else | 1503 | else |
1504 | r = 0; | 1504 | r = 0; |