]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/commit
KVM: Fix user memslot overlap check
authorAlex Williamson <alex.williamson@redhat.com>
Thu, 29 Nov 2012 21:07:59 +0000 (14:07 -0700)
committerMarcelo Tosatti <mtosatti@redhat.com>
Fri, 30 Nov 2012 01:30:32 +0000 (23:30 -0200)
commit5419369ed6bd4cf711fdda5e52a5999b940413f5
tree723920e638aa5adadf5252121b7126e1ad125a44
parent5a560f8b5ed361c7be783d5a671ea26ca4d6fa01
KVM: Fix user memslot overlap check

Prior to memory slot sorting this loop compared all of the user memory
slots for overlap with new entries.  With memory slot sorting, we're
just checking some number of entries in the array that may or may not
be user slots.  Instead, walk all the slots with kvm_for_each_memslot,
which has the added benefit of terminating early when we hit the first
empty slot, and skip comparison to private slots.

Cc: stable@vger.kernel.org
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
virt/kvm/kvm_main.c