]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/commit
MFC r276428:
authorneel <neel@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sat, 27 Jun 2015 22:48:22 +0000 (22:48 +0000)
committerneel <neel@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sat, 27 Jun 2015 22:48:22 +0000 (22:48 +0000)
commit3ef69dbd831bb9e8096379c4a4ef3432fa21f687
treecb845c4cb2d3a3b67b3e1134742c3c5b250ae954
parent7120f39c8250b864c42a681c31d53c733d972ff5
MFC r276428:
Replace bhyve's minimal RTC emulation with a fully featured one in vmm.ko.

MFC r276432:
Initialize all fields of 'struct vm_exception exception' before passing it
to vm_inject_exception().

MFC r276763:
Clear blocking due to STI or MOV SS in the hypervisor when an instruction is
emulated or when the vcpu incurs an exception.

MFC r277149:
Clean up usage of 'struct vm_exception' to only to communicate information
from userspace to vmm.ko when injecting an exception.

MFC r277168:
Fix typo (missing comma).

MFC r277309:
Make the error message explicit instead of just printing the usage if the
virtual machine name is not specified.

MFC r277310:
Simplify instruction restart logic in bhyve.

MFC r277359:
Fix a bug in libvmmapi 'vm_copy_setup()' where it would return success even
if the 'gpa' was in the guest MMIO region.

MFC r277360:
MOVS instruction emulation.

MFC r277626:
Add macro to identify AVIC capability (advanced virtual interrupt controller)
in AMD processors.

MFC r279220:
Don't close a block context if it couldn't be opened avoiding a null deref.

MFC r279225:
Add "-u" option to bhyve(8) to indicate that the RTC should maintain UTC time.

MFC r279227:
Emulate MSR 0xC0011024 when running on AMD processors.

MFC r279228:
Always emulate MSR_PAT on Intel processors and don't rely on PAT save/restore
capability of VT-x. This lets bhyve run nested in older VMware versions that
don't support the PAT save/restore capability.

MFC r279540:
Fix warnings/errors when building vmm.ko with gcc.

git-svn-id: svn://svn.freebsd.org/base/stable/10@284894 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
30 files changed:
lib/libvmmapi/vmmapi.c
lib/libvmmapi/vmmapi.h
share/examples/bhyve/vmrun.sh
sys/amd64/include/vmm.h
sys/amd64/include/vmm_dev.h
sys/amd64/vmm/amd/svm.c
sys/amd64/vmm/amd/svm_softc.h
sys/amd64/vmm/amd/svm_support.S
sys/amd64/vmm/intel/vmcs.c
sys/amd64/vmm/intel/vmx.c
sys/amd64/vmm/intel/vmx.h
sys/amd64/vmm/intel/vmx_msr.c
sys/amd64/vmm/io/vhpet.c
sys/amd64/vmm/io/vrtc.c [new file with mode: 0644]
sys/amd64/vmm/io/vrtc.h [new file with mode: 0644]
sys/amd64/vmm/vmm.c
sys/amd64/vmm/vmm_dev.c
sys/amd64/vmm/vmm_instruction_emul.c
sys/amd64/vmm/vmm_ioport.c
sys/modules/vmm/Makefile
usr.sbin/bhyve/bhyve.8
usr.sbin/bhyve/bhyverun.c
usr.sbin/bhyve/bhyverun.h
usr.sbin/bhyve/inout.c
usr.sbin/bhyve/pci_ahci.c
usr.sbin/bhyve/rtc.c
usr.sbin/bhyve/rtc.h
usr.sbin/bhyve/task_switch.c
usr.sbin/bhyve/xmsr.c
usr.sbin/bhyvectl/bhyvectl.c