From patchwork Wed Jan 27 11:13:49 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Wang X-Patchwork-Id: 75435 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.2) with ESMTP id o0RBAbp9030527 for ; Wed, 27 Jan 2010 11:10:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754395Ab0A0LKU (ORCPT ); Wed, 27 Jan 2010 06:10:20 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754389Ab0A0LKR (ORCPT ); Wed, 27 Jan 2010 06:10:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:8959 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754384Ab0A0LKP (ORCPT ); Wed, 27 Jan 2010 06:10:15 -0500 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0RBAFPL017057 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 27 Jan 2010 06:10:15 -0500 Received: from localhost.localdomain ([10.66.91.25]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0RBACqI025600; Wed, 27 Jan 2010 06:10:13 -0500 Subject: [PATCH 2/2] kvmclock: count total_sleep_time when updating guest clock To: mtosatti@redhat.com, avi@redhat.com From: Jason Wang Cc: glommer@redhat.com, kvm@vger.kernel.org Date: Wed, 27 Jan 2010 19:13:49 +0800 Message-ID: <20100127111349.25521.79809.stgit@localhost.localdomain> In-Reply-To: <20100127111340.25521.95424.stgit@localhost.localdomain> References: <20100127111340.25521.95424.stgit@localhost.localdomain> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index ac8672f..d47ceda 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -723,7 +723,7 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) { static int version; struct pvclock_wall_clock wc; - struct timespec now, sys, boot; + struct timespec boot; if (!wall_clock) return; @@ -738,9 +738,7 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) * wall clock specified here. guest system time equals host * system time for us, thus we must fill in host boot time here. */ - now = current_kernel_time(); - ktime_get_ts(&sys); - boot = ns_to_timespec(timespec_to_ns(&now) - timespec_to_ns(&sys)); + getboottime(&boot); wc.sec = boot.tv_sec; wc.nsec = boot.tv_nsec; @@ -815,6 +813,7 @@ static void kvm_write_guest_time(struct kvm_vcpu *v) local_irq_save(flags); kvm_get_msr(v, MSR_IA32_TSC, &vcpu->hv_clock.tsc_timestamp); ktime_get_ts(&ts); + monotonic_to_bootbased(&ts); local_irq_restore(flags); /* With all the info we got, fill in the values */