drm/ttm: add bo as parameter to the ttm_tt_create callback
Instead of calculating the size in bytes just to recalculate the number of pages from it pass the BO directly to the function. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Roger He <Hongbo.He@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
このコミットが含まれているのは:
@@ -176,8 +176,7 @@ static struct ttm_backend_func bochs_tt_backend_func = {
|
||||
.destroy = &bochs_ttm_backend_destroy,
|
||||
};
|
||||
|
||||
static struct ttm_tt *bochs_ttm_tt_create(struct ttm_bo_device *bdev,
|
||||
unsigned long size,
|
||||
static struct ttm_tt *bochs_ttm_tt_create(struct ttm_buffer_object *bo,
|
||||
uint32_t page_flags)
|
||||
{
|
||||
struct ttm_tt *tt;
|
||||
@@ -186,7 +185,7 @@ static struct ttm_tt *bochs_ttm_tt_create(struct ttm_bo_device *bdev,
|
||||
if (tt == NULL)
|
||||
return NULL;
|
||||
tt->func = &bochs_tt_backend_func;
|
||||
if (ttm_tt_init(tt, bdev, size, page_flags)) {
|
||||
if (ttm_tt_init(tt, bo, page_flags)) {
|
||||
kfree(tt);
|
||||
return NULL;
|
||||
}
|
||||
|
新しいイシューから参照
ユーザーをブロックする