All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFC] xen-time: decreasing the rating of the xen clocksource below that of the tsc clocksource for dom0's
@ 2015-01-07 16:16 Imre Palik
  2015-01-07 16:30 ` [Xen-devel] " Ian Campbell
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Imre Palik @ 2015-01-07 16:16 UTC (permalink / raw)
  To: xen-devel
  Cc: Konrad Rzeszutek Wilk, Boris Ostrovsky, David Vrabel,
	Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, linux-kernel,
	Palik, Imre, Anthony Liguori

From: "Palik, Imre" <imrep@amazon.de>

In Dom0's the use of the TSC clocksource (whenever it is stable enough to
be used) instead of the Xen clocksource should not cause any issues, as
Dom0 VMs never live-migrated.  The TSC clocksource is somewhat more
efficient than the Xen paravirtualised clocksource, thus it should have
higher rating.

Cc: Anthony Liguori <aliguori@amazon.com>
Signed-off-by: Imre Palik <imrep@amazon.de>
---
 arch/x86/xen/time.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c
index f473d26..c768726 100644
--- a/arch/x86/xen/time.c
+++ b/arch/x86/xen/time.c
@@ -487,6 +487,10 @@ static void __init xen_time_init(void)
 	int cpu = smp_processor_id();
 	struct timespec tp;
 
+	/* As Dom0 is never moved, no penalty on using TSC there */
+	if (xen_initial_domain())
+		xen_clocksource.rating = 275;
+
 	clocksource_register_hz(&xen_clocksource, NSEC_PER_SEC);
 
 	if (HYPERVISOR_vcpu_op(VCPUOP_stop_periodic_timer, cpu, NULL) == 0) {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-01-12 11:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-07 16:16 [PATCH RFC] xen-time: decreasing the rating of the xen clocksource below that of the tsc clocksource for dom0's Imre Palik
2015-01-07 16:30 ` [Xen-devel] " Ian Campbell
2015-01-07 16:57   ` Jan Beulich
2015-01-07 16:57   ` Jan Beulich
2015-01-08 15:06   ` [Xen-devel] " Imre Palik
2015-01-12 11:30     ` David Vrabel
2015-01-12 11:30     ` [Xen-devel] " David Vrabel
2015-01-08 15:06   ` Imre Palik
2015-01-07 16:30 ` Ian Campbell
2015-01-07 16:59 ` Boris Ostrovsky
2015-01-07 16:59 ` Boris Ostrovsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.