kvm: update_memslots: drop not needed check for the same number of pages

if number of pages haven't changed sorting algorithm
will do nothing, so there is no need to do extra check
to avoid entering sorting logic.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Igor Mammedov 2014-12-01 17:29:23 +00:00 коммит произвёл Paolo Bonzini
Родитель 45c3094a64
Коммит 5a38b6e6b4
1 изменённых файлов: 13 добавлений и 15 удалений

Просмотреть файл

@ -679,7 +679,6 @@ static void update_memslots(struct kvm_memslots *slots,
struct kvm_memory_slot *mslots = slots->memslots;
WARN_ON(mslots[i].id != id);
if (new->npages != mslots[i].npages) {
if (new->npages < mslots[i].npages) {
while (i < KVM_MEM_SLOTS_NUM - 1 &&
new->npages < mslots[i + 1].npages) {
@ -695,7 +694,6 @@ static void update_memslots(struct kvm_memslots *slots,
i--;
}
}
}
mslots[i] = *new;
slots->id_to_index[mslots[i].id] = i;