From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Borntraeger Subject: Re: [PATCH] KVM: halt-polling: poll if emulated lapic timer will fire soon Date: Thu, 19 May 2016 13:42:32 +0200 Message-ID: <573DA6A8.1000401@de.ibm.com> References: <1463649990-5889-1-git-send-email-wanpeng.li@hotmail.com> <573DA24D.3080507@de.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: "linux-kernel@vger.kernel.org" , kvm , Wanpeng Li , Paolo Bonzini , =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= , David Matlack To: Wanpeng Li Return-path: Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:39247 "EHLO e06smtp10.uk.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753824AbcESLmj (ORCPT ); Thu, 19 May 2016 07:42:39 -0400 Received: from localhost by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 19 May 2016 12:42:37 +0100 In-Reply-To: Sender: kvm-owner@vger.kernel.org List-ID: On 05/19/2016 01:35 PM, Wanpeng Li wrote: > 2016-05-19 19:23 GMT+08:00 Christian Borntraeger : >> On 05/19/2016 11:26 AM, Wanpeng Li wrote: >> >> I think in general a good idea to poll if a timer will expire soon. >> >> Some patch comments: >> >> Same for all non-x86 archs: >>> +static inline unsigned int kvm_arch_timer_remaining(struct kvm_vcpu *vcpu) {} >> >> A function returning int, without a return statement? >> That gives at least a compiler warning. > > How about return 0 for all non-x86 archs? We will provide an s390 implementation soon, but until then a proper default would be good. [....] >>> + if (vcpu->halt_poll_ns || (remaining < halt_poll_ns_base)) { but then remaining is 0 and the 2nd condition will always be true, no?