[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <0233f2dc-31b9-ff30-67c9-2ad5871e7dda@intel.com>
Date: Fri, 6 May 2022 13:27:33 +0800
From: Xiaoyao Li <xiaoyao.li@...el.com>
To: isaku.yamahata@...el.com, kvm@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: isaku.yamahata@...il.com, Paolo Bonzini <pbonzini@...hat.com>,
erdemaktas@...gle.com, Sean Christopherson <seanjc@...gle.com>,
Sagi Shahar <sagis@...gle.com>
Subject: Re: [RFC PATCH v6 025/104] KVM: TDX: initialize VM with TDX specific
parameters
On 5/6/2022 2:14 AM, isaku.yamahata@...el.com wrote:
...
> + if (init_vm->tsc_khz) {
> + guest_tsc_khz = init_vm->tsc_khz;
> + kvm->arch.default_tsc_khz = guest_tsc_khz;
> + } else
> + guest_tsc_khz = kvm->arch.default_tsc_khz;
> + td_params->tsc_frequency = TDX_TSC_KHZ_TO_25MHZ(guest_tsc_khz);
Isaku,
I think Paolo meant
1. user space calls VM-scope KVM_SET_TSC_KHZ
and
2. td_params->tsc_frequency =
TDX_TSC_KHZ_TO_25MHZ(kvm->arch.default_tsc_khz);
in
https://lore.kernel.org/all/e392b53a-fbaa-4724-07f4-171424144f70@redhat.com/
so we can drop @tsc_khz in struct kvm_tdx_init_vm.
Powered by blists - more mailing lists