浏览代码

drm/ttm: use NUM_PAGES_TO_ALLOC always

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

+ 1 - 2
drivers/gpu/drm/ttm/ttm_page_alloc.c

@@ -510,8 +510,7 @@ static int ttm_alloc_new_pages(struct list_head *pages, gfp_t gfp_flags,
 	int r = 0;
 	int r = 0;
 	unsigned i, j, cpages;
 	unsigned i, j, cpages;
 	unsigned npages = 1 << order;
 	unsigned npages = 1 << order;
-	unsigned max_cpages = min(count,
-			(unsigned)(PAGE_SIZE/sizeof(struct page *)));
+	unsigned max_cpages = min(count, (unsigned)NUM_PAGES_TO_ALLOC);
 
 
 	/* allocate array for page caching change */
 	/* allocate array for page caching change */
 	caching_array = kmalloc(max_cpages*sizeof(struct page *), GFP_KERNEL);
 	caching_array = kmalloc(max_cpages*sizeof(struct page *), GFP_KERNEL);