[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1572060239-17401-2-git-send-email-zhenzhong.duan@oracle.com>
Date: Sat, 26 Oct 2019 11:23:55 +0800
From: Zhenzhong Duan <zhenzhong.duan@...cle.com>
To: linux-kernel@...r.kernel.org
Cc: kvm@...r.kernel.org, mtosatti@...hat.com,
joao.m.martins@...cle.com, rafael.j.wysocki@...el.com,
rkrcmar@...hat.com, pbonzini@...hat.com,
Zhenzhong Duan <zhenzhong.duan@...cle.com>
Subject: [PATCH 1/5] KVM: simplify branch check in host poll code
Remove redundant check.
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@...cle.com>
---
virt/kvm/kvm_main.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index 67ef3f2..2ca2979 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -2366,13 +2366,12 @@ void kvm_vcpu_block(struct kvm_vcpu *vcpu)
} else if (halt_poll_ns) {
if (block_ns <= vcpu->halt_poll_ns)
;
- /* we had a long block, shrink polling */
- else if (vcpu->halt_poll_ns && block_ns > halt_poll_ns)
- shrink_halt_poll_ns(vcpu);
/* we had a short halt and our poll time is too small */
- else if (vcpu->halt_poll_ns < halt_poll_ns &&
- block_ns < halt_poll_ns)
+ else if (block_ns < halt_poll_ns)
grow_halt_poll_ns(vcpu);
+ /* we had a long block, shrink polling */
+ else if (vcpu->halt_poll_ns)
+ shrink_halt_poll_ns(vcpu);
} else {
vcpu->halt_poll_ns = 0;
}
--
1.8.3.1
Powered by blists - more mailing lists