Home
last modified time | relevance | path

Searched refs:vm_set_desc (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/test/bhyve-tests/tests/common/
H A Din_guest.c470 err = vm_set_desc(vcpu, VM_REG_GUEST_CS, 0, UINT32_MAX, in test_setup_vcpu()
476 err = vm_set_desc(vcpu, VM_REG_GUEST_SS, 0, UINT32_MAX, in test_setup_vcpu()
483 err = vm_set_desc(vcpu, VM_REG_GUEST_DS, 0, UINT32_MAX, in test_setup_vcpu()
493 err = vm_set_desc(vcpu, VM_REG_GUEST_TR, MEM_LOC_TSS, 0xff, in test_setup_vcpu()
498 err = vm_set_desc(vcpu, VM_REG_GUEST_GDTR, MEM_LOC_GDT, 0x1ff, 0); in test_setup_vcpu()
502 err = vm_set_desc(vcpu, VM_REG_GUEST_IDTR, MEM_LOC_IDT, 0xfff, 0); in test_setup_vcpu()
515 err = vm_set_desc(vcpu, unsable_segs[i], 0, 0, in test_setup_vcpu()
/illumos-gate/usr/src/cmd/bhyve/amd64/
H A Dspinup_ap.c78 error = vm_set_desc(newcpu, VM_REG_GUEST_CS, in spinup_ap_realmode()
H A Dtask_switch.c484 error = vm_set_desc(vcpu, reg, sd->base, sd->limit, sd->access); in update_seg_desc()
/illumos-gate/usr/src/lib/libvmmapi/common/
H A Dvmmapi.c803 vm_set_desc(struct vcpu *vcpu, int reg, in vm_set_desc() function
1594 error = vm_set_desc(vcpu, VM_REG_GUEST_CS, in vcpu_reset()
1609 error = vm_set_desc(vcpu, VM_REG_GUEST_SS, in vcpu_reset()
1614 error = vm_set_desc(vcpu, VM_REG_GUEST_DS, in vcpu_reset()
1619 error = vm_set_desc(vcpu, VM_REG_GUEST_ES, in vcpu_reset()
1624 error = vm_set_desc(vcpu, VM_REG_GUEST_FS, in vcpu_reset()
1629 error = vm_set_desc(vcpu, VM_REG_GUEST_GS, in vcpu_reset()
1688 error = vm_set_desc(vcpu, VM_REG_GUEST_GDTR, in vcpu_reset()
1693 error = vm_set_desc(vcpu, VM_REG_GUEST_IDTR, in vcpu_reset()
1702 error = vm_set_desc(vcpu, VM_REG_GUEST_TR, 0, 0, desc_access); in vcpu_reset()
[all …]
H A Dmapfile-vers113 vm_set_desc;
H A Dvmmapi.h185 int vm_set_desc(struct vcpu *vcpu, int reg,
/illumos-gate/usr/src/cmd/bhyvectl/
H A Dbhyvectl.c1878 error = vm_set_desc(vcpu, VM_REG_GUEST_DS, in main()
1883 error = vm_set_desc(vcpu, VM_REG_GUEST_ES, in main()
1888 error = vm_set_desc(vcpu, VM_REG_GUEST_SS, in main()
1893 error = vm_set_desc(vcpu, VM_REG_GUEST_CS, in main()
1898 error = vm_set_desc(vcpu, VM_REG_GUEST_FS, in main()
1903 error = vm_set_desc(vcpu, VM_REG_GUEST_GS, in main()
1908 error = vm_set_desc(vcpu, VM_REG_GUEST_TR, in main()
1913 error = vm_set_desc(vcpu, VM_REG_GUEST_LDTR, in main()
1918 error = vm_set_desc(vcpu, VM_REG_GUEST_GDTR, in main()
1923 error = vm_set_desc(vcpu, VM_REG_GUEST_IDTR, in main()
/illumos-gate/usr/src/lib/libvmm/
H A Dlibvmm.c631 return (vm_set_desc(vmm->vmm_vcpu[vcpuid], desc, vd->vd_base, in vmm_set_desc()