浏览代码

drm/amdgpu: fix cgs alignment handling

This always allocated on PAGE_SIZE alignment.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Christian König 8 年之前
父节点
当前提交
9f0ed7aab6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c

+ 1 - 1
drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c

@@ -121,7 +121,7 @@ static int amdgpu_cgs_alloc_gpu_mem(struct cgs_device *cgs_device,
 	placement.busy_placement = &place;
 	placement.busy_placement = &place;
 	placement.num_busy_placement = 1;
 	placement.num_busy_placement = 1;
 
 
-	ret = amdgpu_bo_create_restricted(adev, size, PAGE_SIZE,
+	ret = amdgpu_bo_create_restricted(adev, size, align,
 					  true, domain, flags,
 					  true, domain, flags,
 					  NULL, &placement, NULL,
 					  NULL, &placement, NULL,
 					  0, &obj);
 					  0, &obj);