Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4507257 authored by John Stultz's avatar John Stultz Committed by Thomas Gleixner
Browse files

time: Clean up direct xtime usage in xen



Cleanup xen's direct use of internal timekeeping values.

Signed-off-by: default avatarJohn Stultz <johnstul@us.ibm.com>
Acked-by: default avatarJeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 522dba71
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -475,6 +475,7 @@ void xen_timer_resume(void)
__init void xen_time_init(void)
{
	int cpu = smp_processor_id();
	struct timespec tp;

	clocksource_register(&xen_clocksource);

@@ -486,9 +487,8 @@ __init void xen_time_init(void)
	}

	/* Set initial system time with full resolution */
	xen_read_wallclock(&xtime);
	set_normalized_timespec(&wall_to_monotonic,
				-xtime.tv_sec, -xtime.tv_nsec);
	xen_read_wallclock(&tp);
	do_settimeofday(&tp);

	setup_force_cpu_cap(X86_FEATURE_TSC);