diff options
| author | Flora Cui <[email protected]> | 2016-09-20 09:07:31 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2016-09-28 20:16:23 +0000 |
| commit | 815973039406d77210166ff5cc6b23504f10eb0e (patch) | |
| tree | 628ba9bb857d901d8700cd9e31458887f4a3d4e7 /drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c | |
| parent | drm/amdgpu: fix initializing the VM BO shadow (diff) | |
| download | kernel-815973039406d77210166ff5cc6b23504f10eb0e.tar.gz kernel-815973039406d77210166ff5cc6b23504f10eb0e.zip | |
drm/amdgpu: fix gtt_mgr bo's offset
Signed-off-by: Flora Cui <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c index 262e872bea0e..f86c84427778 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.c @@ -128,8 +128,9 @@ int amdgpu_gtt_mgr_alloc(struct ttm_mem_type_manager *man, if (!r) { mem->start = node->start; - tbo->offset = (tbo->mem.start << PAGE_SHIFT) + - tbo->bdev->man[tbo->mem.mem_type].gpu_offset; + if (&tbo->mem == mem) + tbo->offset = (tbo->mem.start << PAGE_SHIFT) + + tbo->bdev->man[tbo->mem.mem_type].gpu_offset; } return r; |
