git: cfb2aa3f530f - main - iommu_gas: Rename a function missed earlier
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 31 Dec 2021 07:50:47 UTC
The branch main has been updated by dougm: URL: https://cgit.FreeBSD.org/src/commit/?id=cfb2aa3f530f45897c1059a45ab82479d90d63fc commit cfb2aa3f530f45897c1059a45ab82479d90d63fc Author: Doug Moore <dougm@FreeBSD.org> AuthorDate: 2021-12-31 07:48:11 +0000 Commit: Doug Moore <dougm@FreeBSD.org> CommitDate: 2021-12-31 07:50:30 +0000 iommu_gas: Rename a function missed earlier Reported by: jenkins Fixes: c606ab59e7f9 vm_extern: use standard address checkers everywhere --- sys/dev/iommu/iommu_gas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/iommu/iommu_gas.c b/sys/dev/iommu/iommu_gas.c index a38835566fba..043bd0e0f039 100644 --- a/sys/dev/iommu/iommu_gas.c +++ b/sys/dev/iommu/iommu_gas.c @@ -329,7 +329,7 @@ iommu_gas_match_one(struct iommu_gas_match_args *a, iommu_gaddr_t beg, /* IOMMU_PAGE_SIZE to create gap after new entry. */ if (start + a->offset + a->size + IOMMU_PAGE_SIZE <= end && start + a->offset + a->size <= maxaddr && - iommu_test_boundary(start + a->offset, a->size, + vm_addr_bound_ok(start + a->offset, a->size, a->common->boundary)) { a->entry->start = start; return (true);