diff options
author | Dave Voutila <dv@cvs.openbsd.org> | 2024-07-09 09:31:38 +0000 |
---|---|---|
committer | Dave Voutila <dv@cvs.openbsd.org> | 2024-07-09 09:31:38 +0000 |
commit | 4316864a53c3007498bacef755d1b19cb5127bda (patch) | |
tree | dd19ecaed52a7f5472c1868a10c1390e749e6a26 /usr.sbin/vmd/virtio.c | |
parent | ff8c8e07adc82a0422ce8f46a8ba09e7cced592f (diff) |
vmd/vmm: move vm_run_params into mi header.
To prepare for mi/md splitting vmd, need to fixup the dev/vmm/vmm.h
mi header. Move the vm_run_params struct and clean up the includes
in vmd.
"sure", mlarkin@
Diffstat (limited to 'usr.sbin/vmd/virtio.c')
-rw-r--r-- | usr.sbin/vmd/virtio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/vmd/virtio.c b/usr.sbin/vmd/virtio.c index 536c7733a7a..80d035ef60b 100644 --- a/usr.sbin/vmd/virtio.c +++ b/usr.sbin/vmd/virtio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: virtio.c,v 1.113 2024/02/20 21:40:37 dv Exp $ */ +/* $OpenBSD: virtio.c,v 1.114 2024/07/09 09:31:37 dv Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -20,13 +20,13 @@ #include <sys/socket.h> #include <sys/wait.h> -#include <machine/vmmvar.h> #include <dev/pci/pcireg.h> #include <dev/pci/pcidevs.h> #include <dev/pv/virtioreg.h> #include <dev/pci/virtio_pcireg.h> #include <dev/pv/vioblkreg.h> #include <dev/pv/vioscsireg.h> +#include <dev/vmm/vmm.h> #include <net/if.h> #include <netinet/in.h> |