From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751399AbbJET0h (ORCPT ); Mon, 5 Oct 2015 15:26:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36881 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750879AbbJET0g (ORCPT ); Mon, 5 Oct 2015 15:26:36 -0400 Date: Mon, 5 Oct 2015 21:26:30 +0200 From: Radim =?utf-8?B?S3LEjW3DocWZ?= To: Haozhong Zhang Cc: kvm@vger.kernel.org, Gleb Natapov , Paolo Bonzini , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, Joerg Roedel , Wanpeng Li , Xiao Guangrong , Mihai =?utf-8?B?RG9uyJt1?= , Andy Lutomirski , Kai Huang , linux-kernel@vger.kernel.org Subject: Re: [PATCH 02/12] KVM: x86: Add a common TSC scaling ratio field in kvm_vcpu_arch Message-ID: <20151005192630.GA25653@potion.brq.redhat.com> References: <1443418691-24050-1-git-send-email-haozhong.zhang@intel.com> <1443418691-24050-3-git-send-email-haozhong.zhang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1443418691-24050-3-git-send-email-haozhong.zhang@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2015-09-28 13:38+0800, Haozhong Zhang: > This patch moves the field of TSC scaling ratio from the architecture > struct vcpu_svm to the common struct kvm_vcpu_arch. > > Signed-off-by: Haozhong Zhang > --- > diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c > @@ -7080,6 +7080,9 @@ struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, > > vcpu = kvm_x86_ops->vcpu_create(kvm, id); > > + if (!IS_ERR(vcpu)) > + vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio; This shouldn't be necessary, (and we can definitely do it without error checking later) kvm_arch_vcpu_create (vmx|svm)_create_vcpu kvm_vcpu_init kvm_arch_vcpu_init kvm_set_tsc_khz sets vcpu->arch.tsc_scaling_ratio to something reasonable and SVM didn't overwrite that value. (kvm_set_tsc_khz() only doesn't set the ration if this_tsc_khz == 0, which we could extend to be extra safe.)