Skip to content

Commit

Permalink
iommufd: Fix spelling errors in comments
Browse files Browse the repository at this point in the history
requres -> requires
dramtically -> dramatically

Link: https://lore.kernel.org/r/31680D47D9533D91+20230904023236.GA12494@xgk8823
Signed-off-by: GuokaiXu <[email protected]>
Signed-off-by: Jason Gunthorpe <[email protected]>
  • Loading branch information
xgkucas authored and jgunthorpe committed Sep 19, 2023
1 parent ce9ecca commit 474d9f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/testing/selftests/iommu/iommufd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ TEST_F(vfio_compat_mock_domain, map)
ASSERT_EQ(0, ioctl(self->fd, VFIO_IOMMU_UNMAP_DMA, &unmap_cmd));
ASSERT_EQ(BUFFER_SIZE, unmap_cmd.size);

/* UNMAP_FLAG_ALL requres 0 iova/size */
/* UNMAP_FLAG_ALL requires 0 iova/size */
ASSERT_EQ(0, ioctl(self->fd, VFIO_IOMMU_MAP_DMA, &map_cmd));
unmap_cmd.flags = VFIO_DMA_UNMAP_FLAG_ALL;
EXPECT_ERRNO(EINVAL, ioctl(self->fd, VFIO_IOMMU_UNMAP_DMA, &unmap_cmd));
Expand Down
2 changes: 1 addition & 1 deletion tools/testing/selftests/iommu/iommufd_fail_nth.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static bool fail_nth_next(struct __test_metadata *_metadata,

/*
* This is just an arbitrary limit based on the current kernel
* situation. Changes in the kernel can dramtically change the number of
* situation. Changes in the kernel can dramatically change the number of
* required fault injection sites, so if this hits it doesn't
* necessarily mean a test failure, just that the limit has to be made
* bigger.
Expand Down

0 comments on commit 474d9f3

Please sign in to comment.