Searched refs:VM_MAXCPU (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.0-release/sys/amd64/vmm/intel/
H A Dvmx.h97 struct vmcs vmcs[VM_MAXCPU]; /* one vmcs per virtual cpu */
99 struct msr_entry guest_msrs[VM_MAXCPU][GUEST_MSR_MAX_ENTRIES];
100 struct vmxctx ctx[VM_MAXCPU];
101 struct vmxcap cap[VM_MAXCPU];
102 struct vmxstate state[VM_MAXCPU];
H A Dvmx.c390 * VPIDs [0,VM_MAXCPU] are special and are not allocated from
394 if (vpid > VM_MAXCPU)
403 if (num <= 0 || num > VM_MAXCPU)
432 * VPIDs then we need to allocate from the [1,VM_MAXCPU] range.
456 * VPIDs [1,VM_MAXCPU] are used as the "overflow namespace" when the
462 vpid_unr = new_unrhdr(VM_MAXCPU + 1, 0xffff, NULL);
746 uint16_t vpid[VM_MAXCPU];
811 vpid_alloc(vpid, VM_MAXCPU);
813 for (i = 0; i < VM_MAXCPU; i++) {
1690 for (i = 0; i < VM_MAXCPU;
[all...]
/freebsd-10.0-release/sys/amd64/vmm/
H A Dvmm.c111 struct vcpu vcpu[VM_MAXCPU];
192 if (cpuid < 0 || cpuid >= VM_MAXCPU)
305 for (i = 0; i < VM_MAXCPU; i++) {
342 for (i = 0; i < VM_MAXCPU; i++)
682 if (vcpu < 0 || vcpu >= VM_MAXCPU)
695 if (vcpu < 0 || vcpu >= VM_MAXCPU)
741 if (vcpu < 0 || vcpu >= VM_MAXCPU)
754 if (vcpu < 0 || vcpu >= VM_MAXCPU)
992 if (vcpuid < 0 || vcpuid >= VM_MAXCPU)
1058 if (vcpuid < 0 || vcpuid >= VM_MAXCPU)
[all...]
H A Dvmm_stat.c87 if (vcpu < 0 || vcpu >= VM_MAXCPU)
H A Dvmm_dev.c192 if (vcpu < 0 || vcpu >= VM_MAXCPU) {
213 for (vcpu = 0; vcpu < VM_MAXCPU; vcpu++) {
365 for (vcpu = 0; vcpu < VM_MAXCPU; vcpu++)
H A Dvmm_lapic.c69 if (cpu < 0 || cpu >= VM_MAXCPU)
/freebsd-10.0-release/usr.sbin/bhyve/
H A Dmem.c67 static struct mmio_rb_range *mmio_hint[VM_MAXCPU];
249 for (i=0; i < VM_MAXCPU; i++) {
H A Dbhyverun.c102 struct vm_exit vmexit[VM_MAXCPU];
120 } mt_vmm_info[VM_MAXCPU];
493 return (VM_MAXCPU);
/freebsd-10.0-release/sys/amd64/vmm/io/
H A Dvlapic.c433 static VMM_STAT_ARRAY(IPIS_SENT, VM_MAXCPU, "ipis sent to vcpu");
489 if (vlapic->vcpuid == 0 && dest != 0 && dest < VM_MAXCPU) {
502 if (vlapic->vcpuid == 0 && dest != 0 && dest < VM_MAXCPU) {
843 static struct io_region vlapic_mmio[VM_MAXCPU];
H A Dppt.c450 if ((destcpu >= VM_MAXCPU || destcpu < 0) ||
/freebsd-10.0-release/sys/amd64/include/
H A Dvmm.h162 #define VM_MAXCPU 16 /* maximum virtual cpus */ macro

Completed in 123 milliseconds