diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-04-24 16:05:09 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-05-08 15:44:59 -0700 |
commit | 6d6ad1be8584fd05ba44539d2fba421564abb46b (patch) | |
tree | e32b047f51ac2ccbfe39e6a1cbc2304a7da6ef7a /include | |
parent | d595990048ad17ba7b0ad50438ed64f88b7c25ca (diff) |
KVM: Fix overlapping check for memory slots
upstream commit: 4cd481f68dde99ac416003b825c835f71e364393
When checking for overlapping slots on registration of a new one, kvm
currently also considers zero-length (ie. deleted) slots and rejects
requests incorrectly. This finally denies user space from joining slots.
Fix the check by skipping deleted slots and advertise this via a
KVM_CAP_JOIN_MEMORY_REGIONS_WORKS.
Cc: stable@kernel.org
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kvm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 0424326f167..c344599d1be 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h @@ -396,6 +396,8 @@ struct kvm_trace_rec { #ifdef __KVM_HAVE_USER_NMI #define KVM_CAP_USER_NMI 22 #endif +/* Another bug in KVM_SET_USER_MEMORY_REGION fixed: */ +#define KVM_CAP_JOIN_MEMORY_REGIONS_WORKS 30 /* * ioctls for VM fds |