fix build with VMM_DEBUG option
authorjan <jan@openbsd.org>
Thu, 11 Jan 2024 17:13:48 +0000 (17:13 +0000)
committerjan <jan@openbsd.org>
Thu, 11 Jan 2024 17:13:48 +0000 (17:13 +0000)
ok dv@

sys/arch/amd64/amd64/vmm_machdep.c
sys/dev/vmm/vmm.h

index 0be59cb..53f4424 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm_machdep.c,v 1.14 2024/01/10 04:13:59 dv Exp $ */
+/* $OpenBSD: vmm_machdep.c,v 1.15 2024/01/11 17:13:48 jan Exp $ */
 /*
  * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org>
  *
@@ -158,7 +158,6 @@ static int vmx_remote_vmclear(struct cpu_info*, struct vcpu *);
 #endif
 
 #ifdef VMM_DEBUG
-void dump_vcpu(struct vcpu *);
 void vmx_vcpu_dump_regs(struct vcpu *);
 void vmx_dump_vmcs(struct vcpu *);
 const char *msr_name_decode(uint32_t);
index 38b4a3f..47f5e12 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm.h,v 1.3 2023/05/13 23:15:28 dv Exp $ */
+/* $OpenBSD: vmm.h,v 1.4 2024/01/11 17:13:48 jan Exp $ */
 /*
  * Copyright (c) 2014-2023 Mike Larkin <mlarkin@openbsd.org>
  *
@@ -203,5 +203,9 @@ int vm_resetcpu(struct vm_resetcpu_params *);
 int vcpu_must_stop(struct vcpu *);
 int vm_share_mem(struct vm_sharemem_params *, struct proc *);
 
+#ifdef VMM_DEBUG
+void dump_vcpu(struct vcpu *);
+#endif
+
 #endif /* _KERNEL */
 #endif /* DEV_VMM_H */