summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | - Add in an XSDT to stop acpidump from exiting with agrehan2012-11-301-8/+48
| * | | | | | Properly screen for the AND 0x81 instruction from the setgrehan2012-11-301-0/+7
| * | | | | | Remove debug printf.grehan2012-11-291-1/+0
| * | | | | | Add support for the 0x81 AND instruction, now generatedgrehan2012-11-292-4/+34
| * | | | | | Cleanup the user-space paging exit handler now that the unified instructionneel2012-11-285-10/+3
| * | | | | | Change emulate_rdmsr() and emulate_wrmsr() to return 0 on sucess and errno onneel2012-11-283-65/+37
| * | | | | | Revamp the x86 instruction emulation in bhyve.neel2012-11-2816-915/+649
| * | | | | | MSI-X does not need to be enabled in the message control register for theneel2012-11-221-2/+2
| * | | | | | Fix a bug in the MSI-X resource allocation for PCI passthrough devices.neel2012-11-221-37/+26
| * | | | | | Get rid of redundant comparision which is guaranteed to be "true" for unsignedneel2012-11-221-1/+1
| * | | | | | Mask the %eax register properly based on whether the "out" instruction isneel2012-11-211-0/+16
| * | | | | | ACPI support for bhyve.grehan2012-11-205-5/+958
| * | | | | | Handle CPUID leaf 0x7 now that FreeBSD is using it.grehan2012-11-202-0/+2
| * | | | | | disk_open() is smart enough to detect MBR and GPT partitions. If it is neitherneel2012-11-201-29/+6
| * | | | | | IFC @ r243164neel2012-11-17324-2467/+3876
| |\ \ \ \ \ \
| * \ \ \ \ \ \ IFC @ r242940neel2012-11-13251-2349/+5617
| |\ \ \ \ \ \ \
| * | | | | | | | Revert r229954 which in turn had reverted r228556 in projects/bhyve.neel2012-11-132-0/+4
| * | | | | | | | IFC @ r242684neel2012-11-118512-387891/+906061
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Use the new userboot 'getenv' callback to set a couple of environment variablesneel2012-11-061-1/+22
| * | | | | | | | | Add a callback function to userboot.so to fetch a list of environmentneel2012-11-063-3/+41
| * | | | | | | | | Fix issue found with clang build. Avoid code insertion by the compilergrehan2012-11-061-29/+48
| * | | | | | | | | Change the thread name of the vCPU threads to contain thegrehan2012-10-311-1/+8
| * | | | | | | | | Exit if the requested num vCPUs exceeds the maximum rathergrehan2012-10-311-16/+27
| * | | | | | | | | Teach FreeBSD to detect that it is a guest running inside BHyVe.neel2012-10-302-0/+2
| * | | | | | | | | Convert VMCS_ENTRY_INTR_INFO field into a vmcs identifier before passing itneel2012-10-291-1/+1
| * | | | | | | | | Corral all the host state associated with the virtual machine into its own file.neel2012-10-297-24/+220
| * | | | | | | | | Present the bvm dbgport to the guest only when explicitly requested vianeel2012-10-271-27/+40
| * | | | | | | | | Probe for existence of the bvm debug port instead of just assuming that it isneel2012-10-271-9/+15
| * | | | | | | | | Present the bvm console device to the guest only when explicitly requested vianeel2012-10-273-3/+25
| * | | | | | | | | Ignore PCI configuration accesses to all bus numbers other than PCI bus 0.neel2012-10-271-1/+5
| * | | | | | | | | Rename vmmctl to bhyvectl. 'vmmctl' came from a pre-bhyvegrehan2012-10-275-78/+78
| * | | | | | | | | Set the valid field of the newly allocated field as all othergrehan2012-10-261-0/+1
| * | | | | | | | | Remove mptable generation code from libvmmapi and move it to bhyve.grehan2012-10-2611-511/+202
| * | | | | | | | | Unconditionally enable fpu emulation by setting CR0.TS in the host after theneel2012-10-262-1/+22
| * | | | | | | | | If the guest vcpu wants to idle then use that opportunity to relinquish theneel2012-10-252-23/+95
| * | | | | | | | | Hide the monitor/mwait instruction capability from the guest until we know howneel2012-10-251-0/+6
| * | | | | | | | | Fix typo: host_rip -> host_rspneel2012-10-251-1/+1
| * | | | | | | | | Maintain state regarding NMI delivery to guest vcpu in VT-x independent manner.neel2012-10-245-34/+45
| * | | | | | | | | Test for AST pending with interrupts disabled right before entering the guest.neel2012-10-234-28/+86
| * | | | | | | | | Calculate the number of host ticks until the next guest timer interrupt.neel2012-10-204-56/+65
| * | | | | | | | | Rework how guest MMIO regions are dealt with.grehan2012-10-1913-374/+850
| * | | | | | | | | Add the guest physical address and r/w/x bits togrehan2012-10-122-0/+4
| * | | | | | | | | Deal with transient EBUSY error return from vm_run() by retrying the operation.neel2012-10-121-2/+13
| * | | | | | | | | Provide per-vcpu locks instead of relying on a single big lock.neel2012-10-127-76/+134
| * | | | | | | | | Output the value of all capabilities when the "--getcap" option is used withoutneel2012-10-121-8/+21
| * | | | | | | | | Add an api to map a vm capability type into a string to be used for displayneel2012-10-122-11/+25
| * | | | | | | | | Fix warnings generated by 'debug.witness.watch' during VM creation andneel2012-10-113-39/+59
| * | | | | | | | | Deliver the MSI to the correct guest virtual cpu.neel2012-10-111-4/+1
| * | | | | | | | | Grab the softc from the ACPI host-pci bridge device instead of from the pcineel2012-10-101-1/+1
| * | | | | | | | | Allocate memory pages for the guest from the host's free page queue.neel2012-10-088-374/+193
OpenPOWER on IntegriCloud