git: 15fb45610f6f - stable/13 - bhyve: fix spelling mistake in passthru emulation
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 09 Dec 2022 13:18:56 UTC
The branch stable/13 has been updated by corvink: URL: https://cgit.FreeBSD.org/src/commit/?id=15fb45610f6f4dbda8dbc998fdc695e06bd65eb6 commit 15fb45610f6f4dbda8dbc998fdc695e06bd65eb6 Author: Corvin Köhne <CorvinK@beckhoff.com> AuthorDate: 2022-07-27 14:43:01 +0000 Commit: Corvin Köhne <corvink@FreeBSD.org> CommitDate: 2022-12-09 13:17:56 +0000 bhyve: fix spelling mistake in passthru emulation Reviewed by: jhb Differential Revision: https://reviews.freebsd.org/D35707 Sponsored by: Beckhoff Automation GmbH & Co. KG (cherry picked from commit 50526f522bc4e26e7bd610e376d85bb897c2686c) --- usr.sbin/bhyve/pci_passthru.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bhyve/pci_passthru.c b/usr.sbin/bhyve/pci_passthru.c index 9940a13250ac..d68fe25570cc 100644 --- a/usr.sbin/bhyve/pci_passthru.c +++ b/usr.sbin/bhyve/pci_passthru.c @@ -1184,7 +1184,7 @@ passthru_addr_rom(struct pci_devinst *const pi, const int idx, } else { if (vm_mmap_memseg(pi->pi_vmctx, addr, VM_PCIROM, pi->pi_romoffset, size, PROT_READ | PROT_EXEC) != 0) { - errx(4, "%s: mnmap_memseg @ [%016lx - %016lx] failed", + errx(4, "%s: mmap_memseg @ [%016lx - %016lx] failed", __func__, addr, addr + size); } }