mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-05 10:08:23 +02:00
amdgpu: Fix wrappers for AMDGPU_VM IOCTL.
Rmove amdgpu_context_handle from the interface and use amdgpu_device_handle instead. Uupdate VMID reservation test accordingly. Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
b617f059ad
commit
f3091bac21
3 changed files with 8 additions and 8 deletions
|
|
@ -1496,7 +1496,7 @@ void amdgpu_cs_chunk_fence_info_to_data(struct amdgpu_cs_fence_info *fence_info,
|
|||
*
|
||||
* \return 0 on success otherwise POSIX Error code
|
||||
*/
|
||||
int amdgpu_vm_reserve_vmid(amdgpu_context_handle context, uint32_t flags);
|
||||
int amdgpu_vm_reserve_vmid(amdgpu_device_handle dev, uint32_t flags);
|
||||
|
||||
/**
|
||||
* Free reserved VMID
|
||||
|
|
@ -1505,7 +1505,7 @@ int amdgpu_vm_reserve_vmid(amdgpu_context_handle context, uint32_t flags);
|
|||
*
|
||||
* \return 0 on success otherwise POSIX Error code
|
||||
*/
|
||||
int amdgpu_vm_unreserve_vmid(amdgpu_context_handle context, uint32_t flags);
|
||||
int amdgpu_vm_unreserve_vmid(amdgpu_device_handle dev, uint32_t flags);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,24 +30,24 @@
|
|||
#include "xf86drm.h"
|
||||
#include "amdgpu_internal.h"
|
||||
|
||||
int amdgpu_vm_reserve_vmid(amdgpu_context_handle context, uint32_t flags)
|
||||
int amdgpu_vm_reserve_vmid(amdgpu_device_handle dev, uint32_t flags)
|
||||
{
|
||||
union drm_amdgpu_vm vm;
|
||||
|
||||
vm.in.op = AMDGPU_VM_OP_RESERVE_VMID;
|
||||
vm.in.flags = flags;
|
||||
|
||||
return drmCommandWriteRead(context->dev->fd, DRM_AMDGPU_VM,
|
||||
return drmCommandWriteRead(dev->fd, DRM_AMDGPU_VM,
|
||||
&vm, sizeof(vm));
|
||||
}
|
||||
|
||||
int amdgpu_vm_unreserve_vmid(amdgpu_context_handle context, uint32_t flags)
|
||||
int amdgpu_vm_unreserve_vmid(amdgpu_device_handle dev, uint32_t flags)
|
||||
{
|
||||
union drm_amdgpu_vm vm;
|
||||
|
||||
vm.in.op = AMDGPU_VM_OP_UNRESERVE_VMID;
|
||||
vm.in.flags = flags;
|
||||
|
||||
return drmCommandWriteRead(context->dev->fd, DRM_AMDGPU_VM,
|
||||
return drmCommandWriteRead(dev->fd, DRM_AMDGPU_VM,
|
||||
&vm, sizeof(vm));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ static void amdgpu_vmid_reserve_test(void)
|
|||
CU_ASSERT_EQUAL(r, 0);
|
||||
|
||||
flags = 0;
|
||||
r = amdgpu_vm_reserve_vmid(context_handle, flags);
|
||||
r = amdgpu_vm_reserve_vmid(device_handle, flags);
|
||||
CU_ASSERT_EQUAL(r, 0);
|
||||
|
||||
|
||||
|
|
@ -142,7 +142,7 @@ static void amdgpu_vmid_reserve_test(void)
|
|||
CU_ASSERT_EQUAL(r, 0);
|
||||
|
||||
flags = 0;
|
||||
r = amdgpu_vm_unreserve_vmid(context_handle, flags);
|
||||
r = amdgpu_vm_unreserve_vmid(device_handle, flags);
|
||||
CU_ASSERT_EQUAL(r, 0);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue