projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8159730
)
drm/amdgpu: fix amdgpu_move_blit on 32bit systems
author
Christian König
<
[email protected]
>
Wed, 17 Aug 2016 07:45:25 +0000
(09:45 +0200)
committer
Alex Deucher
<
[email protected]
>
Wed, 28 Sep 2016 20:16:23 +0000
(16:16 -0400)
This bug seems to be present for a very long time.
Signed-off-by: Christian König <
[email protected]
>
Reviewed-by: Alex Deucher <
[email protected]
>
Signed-off-by: Alex Deucher <
[email protected]
>
Cc:
[email protected]
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
index e30d3fda0f6db9ab5539565f77bb5a5a11fced50..9660026c99d665789a4b52b499bd154a721c2fb4 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
+++ b/
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
@@
-272,8
+272,8
@@
static int amdgpu_move_blit(struct ttm_buffer_object *bo,
adev = amdgpu_get_adev(bo->bdev);
ring = adev->mman.buffer_funcs_ring;
- old_start = old_mem->start << PAGE_SHIFT;
- new_start = new_mem->start << PAGE_SHIFT;
+ old_start =
(u64)
old_mem->start << PAGE_SHIFT;
+ new_start =
(u64)
new_mem->start << PAGE_SHIFT;
switch (old_mem->mem_type) {
case TTM_PL_TT: