MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_exit_svm

Function vm_exit_svm

freebsd/amd64/vmm/amd/svm.c:630–638  ·  view source on GitHub ↗

* Collateral for a generic SVM VM-exit. */

Source from the content-addressed store, hash-verified

628 * Collateral for a generic SVM VM-exit.
629 */
630static void
631vm_exit_svm(struct vm_exit *vme, uint64_t code, uint64_t info1, uint64_t info2)
632{
633
634 vme->exitcode = VM_EXITCODE_SVM;
635 vme->u.svm.exitcode = code;
636 vme->u.svm.exitinfo1 = info1;
637 vme->u.svm.exitinfo2 = info2;
638}
639
640static int
641svm_cpl(struct vmcb_state *state)

Callers 2

svm_write_eferFunction · 0.85
svm_vmexitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected