Remove unneeded header includes in vmd.
authordv <dv@openbsd.org>
Fri, 28 Apr 2023 18:52:22 +0000 (18:52 +0000)
committerdv <dv@openbsd.org>
Fri, 28 Apr 2023 18:52:22 +0000 (18:52 +0000)
No functional change. virtio block/networking emulation do not need
to know about vmm or any kernel types.

usr.sbin/vmd/vioblk.c
usr.sbin/vmd/vionet.c
usr.sbin/vmd/vioqcow2.c

index 08e5f39..9373a13 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vioblk.c,v 1.1 2023/04/27 22:47:27 dv Exp $   */
+/*     $OpenBSD: vioblk.c,v 1.2 2023/04/28 18:52:22 dv Exp $   */
 
 /*
  * Copyright (c) 2023 Dave Voutila <dv@openbsd.org>
@@ -18,9 +18,7 @@
  */
 #include <sys/mman.h>
 #include <sys/param.h> /* PAGE_SIZE */
-#include <sys/socket.h>
 
-#include <machine/vmmvar.h>
 #include <dev/pci/virtio_pcireg.h>
 #include <dev/pv/vioblkreg.h>
 #include <dev/pv/virtioreg.h>
index 77ba469..6ce905f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vionet.c,v 1.1 2023/04/27 22:47:27 dv Exp $   */
+/*     $OpenBSD: vionet.c,v 1.2 2023/04/28 18:52:22 dv Exp $   */
 
 /*
  * Copyright (c) 2023 Dave Voutila <dv@openbsd.org>
@@ -23,8 +23,6 @@
 #include <dev/pci/virtio_pcireg.h>
 #include <dev/pv/virtioreg.h>
 
-#include <machine/vmmvar.h>
-
 #include <net/if.h>
 #include <netinet/in.h>
 #include <netinet/if_ether.h>
index 035f199..96f830d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vioqcow2.c,v 1.21 2023/04/27 22:47:27 dv Exp $        */
+/*     $OpenBSD: vioqcow2.c,v 1.22 2023/04/28 18:52:22 dv Exp $        */
 
 /*
  * Copyright (c) 2018 Ori Bernstein <ori@eigenstate.org>
@@ -20,7 +20,6 @@
 #include <sys/stat.h>
 
 #include <dev/pci/pcireg.h>
-#include <machine/vmmvar.h>
 
 #include <assert.h>
 #include <err.h>