From mboxrd@z Thu Jan 1 00:00:00 1970 From: Haozhong Zhang Subject: [PATCH 02/13] x86/time.c: Get the correct guest TSC rate in tsc_get_info() Date: Mon, 28 Sep 2015 15:13:47 +0800 Message-ID: <1443424438-13404-3-git-send-email-haozhong.zhang@intel.com> References: <1443424438-13404-1-git-send-email-haozhong.zhang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1443424438-13404-1-git-send-email-haozhong.zhang@intel.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org Cc: Haozhong Zhang , Kevin Tian , Wei Liu , Ian Campbell , Stefano Stabellini , Jun Nakajima , Andrew Cooper , Ian Jackson , Aravind Gopalakrishnan , Jan Beulich , Keir Fraser , Boris Ostrovsky , Suravee Suthikulpanit List-Id: xen-devel@lists.xenproject.org When the TSC mode of a domain is TSC_MODE_DEFAULT and no TSC emulation is used, the existing tsc_get_info() returns the host TSC rate (cpu_khz) as the guest TSC rate. However, tsc_set_info() may set the guest TSC rate of a domain in TSC_MODE_DEFAULT to a value different than the host TSC rate. In order to keep consistent to tsc_set_info(), this patch make tsc_get_info() use the value set by tsc_set_info() as the guest TSC rate. Signed-off-by: Haozhong Zhang --- xen/arch/x86/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/time.c b/xen/arch/x86/time.c index a345efb..92dd8a1 100644 --- a/xen/arch/x86/time.c +++ b/xen/arch/x86/time.c @@ -1869,7 +1869,7 @@ void tsc_get_info(struct domain *d, uint32_t *tsc_mode, break; } *elapsed_nsec = get_s_time(); - *gtsc_khz = cpu_khz; + *gtsc_khz = d->arch.tsc_khz; break; case TSC_MODE_PVRDTSCP: if ( d->arch.vtsc ) -- 2.4.8