diff options
author | Dave Airlie <airlied@redhat.com> | 2015-12-19 12:42:28 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2015-12-19 12:42:28 +1000 |
commit | 8e73a108acdb7c30ec84edcde1c550ad9448b6ac (patch) | |
tree | 070c936af7ce70fa6d84d975395aa5dddd0fe77f /drivers/gpu/drm/amd/amdgpu/amdgpu.h | |
parent | 76b8ebdc4c7a8299e6365428a36cc0fb1c2a4103 (diff) | |
parent | 91acbeb68ab10c0c0f65f30b5b7fddbde4c97dd2 (diff) |
Merge branch 'drm-fixes-4.4' of git://people.freedesktop.org/~agd5f/linux into drm-fixes
Just one important fix for amdgpu to avoid possible memory corruption.
* 'drm-fixes-4.4' of git://people.freedesktop.org/~agd5f/linux:
drm/amdgpu: fix user fence handling
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index 5a5f04d0902d..048cfe073dae 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -1264,7 +1264,8 @@ struct amdgpu_cs_parser { struct ww_acquire_ctx ticket; /* user fence */ - struct amdgpu_user_fence uf; + struct amdgpu_user_fence uf; + struct amdgpu_bo_list_entry uf_entry; }; struct amdgpu_job { |