mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
winsys/amdgpu: Stop using amdgpu_bo_handle_type_kms_noimport
It only behaves any different from amdgpu_bo_handle_type_kms with libdrm 2.4.93, and it breaks if an older version is picked up. Bugzilla: https://bugs.freedesktop.org/108096 Reviewed-by: Marek Olšák <marek.olsak@amd.com> Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de>
This commit is contained in:
parent
792dde66f2
commit
32b0eb51a3
1 changed files with 3 additions and 3 deletions
|
|
@ -486,7 +486,7 @@ static struct amdgpu_winsys_bo *amdgpu_create_bo(struct amdgpu_winsys *ws,
|
|||
else if (initial_domain & RADEON_DOMAIN_GTT)
|
||||
ws->allocated_gtt += align64(size, ws->info.gart_page_size);
|
||||
|
||||
amdgpu_bo_export(bo->bo, amdgpu_bo_handle_type_kms_noimport, &bo->u.real.kms_handle);
|
||||
amdgpu_bo_export(bo->bo, amdgpu_bo_handle_type_kms, &bo->u.real.kms_handle);
|
||||
|
||||
amdgpu_add_buffer_to_global_list(bo);
|
||||
|
||||
|
|
@ -1355,7 +1355,7 @@ static struct pb_buffer *amdgpu_bo_from_handle(struct radeon_winsys *rws,
|
|||
else if (bo->initial_domain & RADEON_DOMAIN_GTT)
|
||||
ws->allocated_gtt += align64(bo->base.size, ws->info.gart_page_size);
|
||||
|
||||
amdgpu_bo_export(bo->bo, amdgpu_bo_handle_type_kms_noimport, &bo->u.real.kms_handle);
|
||||
amdgpu_bo_export(bo->bo, amdgpu_bo_handle_type_kms, &bo->u.real.kms_handle);
|
||||
|
||||
amdgpu_add_buffer_to_global_list(bo);
|
||||
|
||||
|
|
@ -1463,7 +1463,7 @@ static struct pb_buffer *amdgpu_bo_from_ptr(struct radeon_winsys *rws,
|
|||
|
||||
amdgpu_add_buffer_to_global_list(bo);
|
||||
|
||||
amdgpu_bo_export(bo->bo, amdgpu_bo_handle_type_kms_noimport, &bo->u.real.kms_handle);
|
||||
amdgpu_bo_export(bo->bo, amdgpu_bo_handle_type_kms, &bo->u.real.kms_handle);
|
||||
|
||||
return (struct pb_buffer*)bo;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue