diff mbox

[RFC,v2,08/11] time: Convert xen_read_wallclock() to use timespec64

Message ID 1414667745-7703-9-git-send-email-pang.xunlei@linaro.org
State New
Headers show

Commit Message

pang.xunlei Oct. 30, 2014, 11:15 a.m. UTC
As part of addressing 2038 safety for in-kernel uses, this patch
creates no functional change, converts xen_read_wallclock() to
use timespec64 instead of timespec.

Signed-off-by: pang.xunlei <pang.xunlei@linaro.org>
---
 arch/x86/xen/time.c |   23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

Comments

David Vrabel Oct. 30, 2014, 11:30 a.m. UTC | #1
On 30/10/14 11:15, pang.xunlei wrote:
> As part of addressing 2038 safety for in-kernel uses, this patch
> creates no functional change, converts xen_read_wallclock() to
> use timespec64 instead of timespec.

Acked-by: David Vrabel <david.vrabel@citrix.com>

But I do think all the TODOs for things that are fixed by later patches
in the series aren't necessary.

David
Thomas Gleixner Oct. 30, 2014, 2:58 p.m. UTC | #2
On Thu, 30 Oct 2014, David Vrabel wrote:

> On 30/10/14 11:15, pang.xunlei wrote:
> > As part of addressing 2038 safety for in-kernel uses, this patch
> > creates no functional change, converts xen_read_wallclock() to
> > use timespec64 instead of timespec.
> 
> Acked-by: David Vrabel <david.vrabel@citrix.com>
> 
> But I do think all the TODOs for things that are fixed by later patches
> in the series aren't necessary.

Amen to that.

And of course the whole XEN part should be a seperate series on top of
the series which provides the new core interfaces.

Thanks,

	tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
diff mbox

Patch

diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c
index 16fce39..4e14439 100644
--- a/arch/x86/xen/time.c
+++ b/arch/x86/xen/time.c
@@ -169,20 +169,27 @@  static cycle_t xen_clocksource_get_cycles(struct clocksource *cs)
 	return xen_clocksource_read();
 }
 
-static void xen_read_wallclock(struct timespec *ts)
+static void xen_read_wallclock(struct timespec64 *ts)
 {
+	struct timespec ts_unsafe;
 	struct shared_info *s = HYPERVISOR_shared_info;
 	struct pvclock_wall_clock *wall_clock = &(s->wc);
         struct pvclock_vcpu_time_info *vcpu_time;
 
 	vcpu_time = &get_cpu_var(xen_vcpu)->time;
-	pvclock_read_wallclock(wall_clock, vcpu_time, ts);
+	/* TODO: [2038 safety] pvclock_read_wallclock() uses timespec64 */
+	pvclock_read_wallclock(wall_clock, vcpu_time, &ts_unsafe);
+	*ts = timespec_to_timespec64(ts_unsafe);
 	put_cpu_var(xen_vcpu);
 }
 
+/* TODO: [2038 safety] xen_get_wallclock() uses timespec64 */
 static void xen_get_wallclock(struct timespec *now)
 {
-	xen_read_wallclock(now);
+	struct timespec64 now64;
+
+	xen_read_wallclock(&now64);
+	*now = timespec64_to_timespec(now64);
 }
 
 static int xen_set_wallclock(const struct timespec *now)
@@ -485,8 +492,7 @@  static const struct pv_time_ops xen_time_ops __initconst = {
 static void __init xen_time_init(void)
 {
 	int cpu = smp_processor_id();
-	struct timespec tp;
-	struct timespec64 tp64;
+	struct timespec64 tp;
 
 	clocksource_register_hz(&xen_clocksource, NSEC_PER_SEC);
 
@@ -497,13 +503,8 @@  static void __init xen_time_init(void)
 		xen_clockevent = &xen_vcpuop_clockevent;
 	}
 
-	/*
-	 * Set initial system time with full resolution
-	 * TODO: [2038 safety] xen_read_wallclock() uses timespec64
-	 */
 	xen_read_wallclock(&tp);
-	tp64 = timespec_to_timespec64(tp);
-	do_settimeofday64(&tp64);
+	do_settimeofday64(&tp);
 
 	setup_force_cpu_cap(X86_FEATURE_TSC);