git: 0cbb744f96db - stable/13 - iommu_gas: Rename a function missed earlier
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 12 Jul 2022 17:32:32 UTC
The branch stable/13 has been updated by dougm:
URL: https://cgit.FreeBSD.org/src/commit/?id=0cbb744f96dbfcba4f0bfc79a3328620165ee664
commit 0cbb744f96dbfcba4f0bfc79a3328620165ee664
Author: Doug Moore <dougm@FreeBSD.org>
AuthorDate: 2021-12-31 07:48:11 +0000
Commit: Doug Moore <dougm@FreeBSD.org>
CommitDate: 2022-07-12 16:26:07 +0000
iommu_gas: Rename a function missed earlier
Reported by: jenkins
Fixes: c606ab59e7f9 vm_extern: use standard address checkers everywhere
(cherry picked from commit cfb2aa3f530f45897c1059a45ab82479d90d63fc)
---
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 2c18d0b1b032..8007aa575e00 100644
--- a/sys/dev/iommu/iommu_gas.c
+++ b/sys/dev/iommu/iommu_gas.c
@@ -335,7 +335,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);