public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Leonard Norrgard <leonard.norrgard-g2GXA8XeJSExHbG02/KK1g@public.gmane.org>
To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: [PATCH 2/3] Add a vcpu_migrated statistic
Date: Fri, 02 Mar 2007 18:53:16 +0200	[thread overview]
Message-ID: <45E8567C.6080704@refactor.fi> (raw)
In-Reply-To: <45E853A0.3080207-g2GXA8XeJSExHbG02/KK1g@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 829 bytes --]

The previous patch introduces an IPI on every vcpu migration on SMP
machines to find out the TSC value on the previous cpu. We might be
able to avoid this IPI on systems that have a synchronized TSC by
checking for it in svm/vmx_vcpu_load:

+               /* If this isn't the first vcpu_load and if the TSC
+                  doesn't run at a constant rate, we must handle TSC
+                  offsets. */
+               if (vcpu->cpu != -1
+                   && !boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {

Wether this is actually reliable and working in the intended way is
not know yet.  In the meantime, introduce a statistic for vcpu
migration, so we get some decision support for the needs for such an
optimization.

Signed-off-by: Leonard Norrgård <vinsci-g2GXA8XeJSExHbG02/KK1g@public.gmane.org>


[-- Attachment #2: 02_add_vcpu_migrated_statistic.patch --]
[-- Type: text/x-diff, Size: 1472 bytes --]

Index: linux-2.6/drivers/kvm/kvm_main.c
===================================================================
--- linux-2.6.orig/drivers/kvm/kvm_main.c	2007-03-02 17:31:59.000000000 +0200
+++ linux-2.6/drivers/kvm/kvm_main.c	2007-03-02 17:34:13.000000000 +0200
@@ -67,6 +67,7 @@
 	{ "halt_exits", &kvm_stat.halt_exits },
 	{ "request_irq", &kvm_stat.request_irq_exits },
 	{ "irq_exits", &kvm_stat.irq_exits },
+	{ "vcpu_migrated", &kvm_stat.vcpu_migrated },
 	{ NULL, NULL }
 };
 
Index: linux-2.6/drivers/kvm/svm.c
===================================================================
--- linux-2.6.orig/drivers/kvm/svm.c	2007-03-02 17:32:02.000000000 +0200
+++ linux-2.6/drivers/kvm/svm.c	2007-03-02 17:33:13.000000000 +0200
@@ -621,6 +621,8 @@
 		if (vcpu->cpu != -1) {
 			u64 tsc_this, tsc_previous;
 
+			++kvm_stat.vcpu_migrated;
+
 			/* Get TSC value for this and the previous cpu. */
 			rdtscll(tsc_this);
 			smp_call_function_single(vcpu->cpu, ipi_rdtscll,
Index: linux-2.6/drivers/kvm/vmx.c
===================================================================
--- linux-2.6.orig/drivers/kvm/vmx.c	2007-03-02 17:32:06.000000000 +0200
+++ linux-2.6/drivers/kvm/vmx.c	2007-03-02 17:33:34.000000000 +0200
@@ -242,6 +242,8 @@
 		if (vcpu->cpu != -1) {
 			u64 tsc_this, tsc_previous, guest_tsc_offset;
 
+			++kvm_stat.vcpu_migrated;
+
 			/* Get TSC value for this and the previous cpu. */
 			rdtscll(tsc_this);
 			smp_call_function_single(vcpu->cpu, ipi_rdtscll,

[-- Attachment #3: Type: text/plain, Size: 345 bytes --]

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

[-- Attachment #4: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

  parent reply	other threads:[~2007-03-02 16:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-02 16:41 [PATCH 0/3] Sync TSC for guest when vcpu has been migrated to another cpu Leonard Norrgard
     [not found] ` <45E853A0.3080207-g2GXA8XeJSExHbG02/KK1g@public.gmane.org>
2007-03-02 16:48   ` [PATCH 1/3] Sync guest viewable TSC when vcpu migrated Leonard Norrgard
     [not found]     ` <45E85566.3010706-g2GXA8XeJSExHbG02/KK1g@public.gmane.org>
2007-03-02 16:55       ` Anthony Liguori
     [not found]         ` <45E85717.6030906-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2007-03-02 17:13           ` Leonard Norrgard
2007-03-03  8:47       ` Avi Kivity
2007-03-02 16:53   ` Leonard Norrgard [this message]
     [not found]     ` <45E8567C.6080704-g2GXA8XeJSExHbG02/KK1g@public.gmane.org>
2007-03-03  8:58       ` [PATCH 2/3] Add a vcpu_migrated statistic Avi Kivity
2007-03-02 16:55   ` [PATCH 3/3] Widen key column in kvm_stat Leonard Norrgard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=45E8567C.6080704@refactor.fi \
    --to=leonard.norrgard-g2gxa8xejsexhbg02/kk1g@public.gmane.org \
    --cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox