The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=e85ae6f6a6c0574fdad92b986e37f04f20d5135f
commit e85ae6f6a6c0574fdad92b986e37f04f20d5135f Author: Nimish Jain <[email protected]> AuthorDate: 2026-08-11 15:46:24 +0000 Commit: Mark Johnston <[email protected]> CommitDate: 2026-08-11 15:46:31 +0000 fbsdrun_virtio_msix(): update virtio_msix to virtio.msix Fixes: 2d985d577d79 ("bhyve: namescope virtio_msix to virtio.msix") Reviewed by: markj Differential Revision: https://reviews.freebsd.org/D58787 --- usr.sbin/bhyve/bhyverun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bhyve/bhyverun.c b/usr.sbin/bhyve/bhyverun.c index 09605b7c114f..c089d1fbc8fa 100644 --- a/usr.sbin/bhyve/bhyverun.c +++ b/usr.sbin/bhyve/bhyverun.c @@ -562,7 +562,7 @@ int fbsdrun_virtio_msix(void) { - return (get_config_bool_default("virtio_msix", true)); + return (get_config_bool_default("virtio.msix", true)); } struct vcpu *
