git: DragonFly_RELEASE_4_6 kernel - Fix a system lockup with vmm
Matthew Dillon
dillon at crater.dragonflybsd.org
Sun Oct 16 14:49:38 PDT 2016
commit 8e73479e3c0ecf0d527bad07de2065334da5e59b
Author: Matthew Dillon <dillon at apollo.backplane.com>
Date: Fri Oct 7 19:10:06 2016 -0700
kernel - Fix a system lockup with vmm
* Fix an issue where vkernel_lwp_exit() was improperly trying to kfree()
the vklp->ve pointer for the guest-thread case. This field holds a
user-supplied address in that case, not a kernel structure.
* Yield the cpu more aggressively in the VMM_GUEST_RUN loop. We were
testing for pending interrupts but we were not calling lwkt_switch()
* Do not exit the vkernel on a call or jump to address 0. This debugging
code should have been removed and wasn't. A user process running under
the vkernel could cause the vkernel itself to exit.
* Numerous syntactical cleanups.
Reported-by: tuxillo
Summary of changes:
sys/kern/sys_vmm.c | 82 +++---
sys/platform/pc64/include/pmap.h | 2 +
sys/platform/pc64/vmm/ept.c | 17 +-
sys/platform/pc64/vmm/vmm.c | 6 +
sys/platform/pc64/vmm/vmm.h | 7 +
sys/platform/pc64/vmm/vmx.c | 563 +++++++++++++++++++++------------------
sys/platform/pc64/x86_64/pmap.c | 2 +
sys/sys/proc.h | 2 +-
sys/vm/vm_vmspace.c | 23 +-
9 files changed, 388 insertions(+), 316 deletions(-)
http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/8e73479e3c0ecf0d527bad07de2065334da5e59b
--
DragonFly BSD source repository
More information about the Commits
mailing list