diff options
author | grehan <grehan@FreeBSD.org> | 2014-08-17 01:00:42 +0000 |
---|---|---|
committer | grehan <grehan@FreeBSD.org> | 2014-08-17 01:00:42 +0000 |
commit | 7a365d2c053ebcca4ab5c48af1d3e404e5db0159 (patch) | |
tree | d0a923d882ace027d5d1341c58694ac5860fc7ff /lib/libvmmapi/vmmapi.c | |
parent | e83027edbbda961289c2ed185571fb6272b4f756 (diff) | |
download | FreeBSD-src-7a365d2c053ebcca4ab5c48af1d3e404e5db0159.zip FreeBSD-src-7a365d2c053ebcca4ab5c48af1d3e404e5db0159.tar.gz |
MFC r267216
Add ioctl(VM_REINIT) to reinitialize the virtual machine state maintained
by vmm.ko. This allows the virtual machine to be restarted without having
to destroy it first.
Diffstat (limited to 'lib/libvmmapi/vmmapi.c')
-rw-r--r-- | lib/libvmmapi/vmmapi.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libvmmapi/vmmapi.c b/lib/libvmmapi/vmmapi.c index 89c7825..5ce3d8e 100644 --- a/lib/libvmmapi/vmmapi.c +++ b/lib/libvmmapi/vmmapi.c @@ -367,6 +367,13 @@ vm_suspend(struct vmctx *ctx, enum vm_suspend_how how) return (ioctl(ctx->fd, VM_SUSPEND, &vmsuspend)); } +int +vm_reinit(struct vmctx *ctx) +{ + + return (ioctl(ctx->fd, VM_REINIT, 0)); +} + static int vm_inject_exception_real(struct vmctx *ctx, int vcpu, int vector, int error_code, int error_code_valid) |