Searched refs:vme (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/sys/security/mac/
H A Dmac_process.c256 vm_map_entry_t vme; local
268 for (vme = map->header.next; vme != &map->header; vme = vme->next) {
269 if (vme->eflags & MAP_ENTRY_IS_SUB_MAP) {
271 vme->object.sub_map);
277 if (vme->eflags & (MAP_ENTRY_COW | MAP_ENTRY_NOSYNC) ||
278 !vme->max_protection)
283 offset = vme
[all...]
/freebsd-10-stable/sys/amd64/vmm/
H A Dvmm_ioport.h35 int vm_handle_inout(struct vm *vm, int vcpuid, struct vm_exit *vme, bool *retu);
H A Dvmm.c1335 struct vm_exit *vme; local
1338 vme = &vcpu->exitinfo;
1340 KASSERT(vme->inst_length == 0, ("%s: invalid inst_length %d",
1341 __func__, vme->inst_length));
1343 ftype = vme->u.paging.fault_type;
1350 vme->u.paging.gpa, ftype);
1354 vme->u.paging.gpa);
1360 rv = vm_fault(map, vme->u.paging.gpa, ftype, VM_FAULT_NORMAL);
1363 "ftype = %d", rv, vme->u.paging.gpa, ftype);
1376 struct vm_exit *vme; local
1602 struct vm_exit *vme; local
[all...]
/freebsd-10-stable/contrib/ntp/ntpd/
H A Drefclock_bancomm.c154 struct vmedate vmedata; /* data returned from vme read */
217 register struct vmeunit *vme; local
264 vme = emalloc_zero(sizeof(struct vmeunit));
271 pp->unitptr = vme;
300 register struct vmeunit *vme; local
307 vme = pp->unitptr;
310 if (NULL != vme)
311 free(vme);
341 struct vmeunit *vme; local
347 vme
[all...]
/freebsd-10-stable/usr.sbin/bhyve/
H A Dbhyverun.c298 vmexit_handle_notify(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu, argument
310 vmexit_inout(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu) argument
318 port = vme->u.inout.port;
319 bytes = vme->u.inout.bytes;
320 in = vme->u.inout.in;
325 error = vmexit_handle_notify(ctx, vme, pvcpu, vme->u.inout.eax);
329 error = emulate_inout(ctx, vcpu, vme, strictio);
342 vmexit_rdmsr(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu) argument
349 error = emulate_rdmsr(ctx, *pvcpu, vme
371 vmexit_wrmsr(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu) argument
388 vmexit_spinup_ap(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu) argument
[all...]
/freebsd-10-stable/sys/amd64/vmm/amd/
H A Dsvm.c588 vm_exit_svm(struct vm_exit *vme, uint64_t code, uint64_t info1, uint64_t info2) argument
591 vme->exitcode = VM_EXITCODE_SVM;
592 vme->u.svm.exitcode = code;
593 vme->u.svm.exitinfo1 = info1;
594 vme->u.svm.exitinfo2 = info2;
1103 struct vm_exit *vme; local
1144 vme = vm_exitinfo(sc->vm, vcpu);
1145 vm_exit_svm(vme, VMCB_EXIT_MSR, 1, 0);

Completed in 126 milliseconds