Skip to content

Commit

Permalink
iommufd/selftest: Cover IOMMU_FAULT_QUEUE_ALLOC in iommufd_fail_nth
Browse files Browse the repository at this point in the history
This was missing in the series introducing the fault object. Thus, add it.

Link: https://patch.msgid.link/r/d61b9b7f73276cc8f1aef9602bd35c486917506e.1733212723.git.nicolinc@nvidia.com
Signed-off-by: Nicolin Chen <[email protected]>
Signed-off-by: Jason Gunthorpe <[email protected]>
  • Loading branch information
nicolinc authored and jgunthorpe committed Dec 3, 2024
1 parent af7f478 commit a8c9df2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tools/testing/selftests/iommu/iommufd_fail_nth.c
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,12 @@ TEST_FAIL_NTH(basic_fail_nth, access_pin_domain)
/* device.c */
TEST_FAIL_NTH(basic_fail_nth, device)
{
struct iommu_hwpt_selftest data = {
.iotlb = IOMMU_TEST_IOTLB_DEFAULT,
};
struct iommu_test_hw_info info;
uint32_t fault_id, fault_fd;
uint32_t fault_hwpt_id;
uint32_t ioas_id;
uint32_t ioas_id2;
uint32_t stdev_id;
Expand Down Expand Up @@ -678,6 +683,15 @@ TEST_FAIL_NTH(basic_fail_nth, device)
if (_test_cmd_vdevice_alloc(self->fd, viommu_id, idev_id, 0, &vdev_id))
return -1;

if (_test_ioctl_fault_alloc(self->fd, &fault_id, &fault_fd))
return -1;
close(fault_fd);

if (_test_cmd_hwpt_alloc(self->fd, idev_id, hwpt_id, fault_id,
IOMMU_HWPT_FAULT_ID_VALID, &fault_hwpt_id,
IOMMU_HWPT_DATA_SELFTEST, &data, sizeof(data)))
return -1;

return 0;
}

Expand Down

0 comments on commit a8c9df2

Please sign in to comment.