diff options
author | neel <neel@FreeBSD.org> | 2012-10-29 01:51:24 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2012-10-29 01:51:24 +0000 |
commit | 9631d598ccea6dd526400bad0a438a10c8294542 (patch) | |
tree | d6816c15087fd01a1a206aebf2334002366f4d95 /sys/modules | |
parent | 6a8b1eb58304d3599b0ddcb57d8340deac56f139 (diff) | |
download | FreeBSD-src-9631d598ccea6dd526400bad0a438a10c8294542.zip FreeBSD-src-9631d598ccea6dd526400bad0a438a10c8294542.tar.gz |
Corral all the host state associated with the virtual machine into its own file.
This state is independent of the type of hardware assist used so there is
really no need for it to be in Intel-specific code.
Obtained from: NetApp
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/vmm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/modules/vmm/Makefile b/sys/modules/vmm/Makefile index af93567..8b565da 100644 --- a/sys/modules/vmm/Makefile +++ b/sys/modules/vmm/Makefile @@ -13,6 +13,7 @@ CFLAGS+= -I${.CURDIR}/../../amd64/vmm/intel .PATH: ${.CURDIR}/../../amd64/vmm SRCS+= vmm.c \ vmm_dev.c \ + vmm_host.c \ vmm_instruction_emul.c \ vmm_ipi.c \ vmm_lapic.c \ |