From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752656AbdJDNVr (ORCPT ); Wed, 4 Oct 2017 09:21:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37856 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752256AbdJDNVp (ORCPT ); Wed, 4 Oct 2017 09:21:45 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 80FED13D1A Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=rkrcmar@redhat.com Date: Wed, 4 Oct 2017 15:21:41 +0200 From: Radim =?utf-8?B?S3LEjW3DocWZ?= To: Wanpeng Li Cc: "linux-kernel@vger.kernel.org" , kvm , Paolo Bonzini , Wanpeng Li Subject: Re: [PATCH v2 1/4] KVM: LAPIC: Fix lapic timer mode transition Message-ID: <20171004132141.GF21107@flask> References: <1506647099-2688-1-git-send-email-wanpeng.li@hotmail.com> <1506647099-2688-2-git-send-email-wanpeng.li@hotmail.com> <20171003170544.GA21107@flask> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Wed, 04 Oct 2017 13:21:45 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2017-10-04 09:45+0800, Wanpeng Li: > 2017-10-04 1:05 GMT+08:00 Radim Krčmář : > > 2017-09-28 18:04-0700, Wanpeng Li: > >> From: Wanpeng Li > >> > >> SDM 10.5.4.1 TSC-Deadline Mode mentioned that "Transitioning between TSC-Deadline > >> mode and other timer modes also disarms the timer". So the APIC Timer Initial Count > >> Register for one-shot/periodic mode should be reset. This patch do it. > > > > At the beginning of the secion is also: > > > > A write to the LVT Timer Register that changes the timer mode disarms > > the local APIC timer. The supported timer modes are given in Table > > 10-2. The three modes of the local APIC timer are mutually exclusive. > > Yeah, I saw it before sending out the patches, but it is mentioned in > TSC-deadline section which looks strange, if the timer is still > disarmed when switching between one-shot and periodic mode before > TSC-deadline is introduced and w/o TSC-deadline section? Yeah, maybe it is only true if the machine has TSC. APM doesn't mention disarming at all. Bochs only disables the timer it on switch from/to TSC-deadline. > > So we should also disarm when switching between one-shot and periodic. > > > > apic_update_lvtt() already has logic to determine whether the timer mode > > has changed and is the perfect place to clear APIC_TMICT. > > Agreed, thanks for your review, Radim. :) Bochs doesn't write 0 to APIC_TMICT, but it seems that Xen guys verified that on bare-metal, so the behavior is fine. Please just move it to apic_update_lvtt(), thanks.