diff options
author | 2017-05-27 02:27:48 +0000 | |
---|---|---|
committer | 2017-05-27 02:27:48 +0000 | |
commit | 849c1663177227d444d8a6f996523aa01859a733 (patch) | |
tree | 6278a4c73ebac21b92c5b5d9e79b613931f7014f | |
parent | move variables expansion out of lka_session into their own file, this is a (diff) | |
download | wireguard-openbsd-849c1663177227d444d8a6f996523aa01859a733.tar.xz wireguard-openbsd-849c1663177227d444d8a6f996523aa01859a733.zip |
add missing prototype
-rw-r--r-- | sys/arch/amd64/amd64/vmm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index 8b89fd503a9..6b947de0985 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.143 2017/05/19 06:29:21 mlarkin Exp $ */ +/* $OpenBSD: vmm.c,v 1.144 2017/05/27 02:27:48 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -106,6 +106,7 @@ struct vmm_softc { uint8_t vpids[512]; /* bitmap of used VPID/ASIDs */ }; +void vmx_dump_vmcs_field(uint16_t, const char *); int vmm_enabled(void); int vmm_probe(struct device *, void *, void *); void vmm_attach(struct device *, struct device *, void *); |