[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.11.1410301553040.5308@nanos>
Date: Thu, 30 Oct 2014 15:57:04 +0100 (CET)
From: Thomas Gleixner <tglx@...utronix.de>
To: "pang.xunlei" <pang.xunlei@...aro.org>
cc: linux-kernel@...r.kernel.org, rtc-linux@...glegroups.com,
xen-devel@...ts.xenproject.org,
John Stultz <john.stultz@...aro.org>,
Alessandro Zummo <a.zummo@...ertech.it>,
Stefano Stabellini <stefano.stabellini@...citrix.com>
Subject: Re: [RFC PATCH v2 09/11] time: Convert pvclock_read_wallclock() to
use timespec64
On Thu, 30 Oct 2014, pang.xunlei wrote:
> /* get wallclock at system boot */
> do {
> version = wall_clock->version;
> rmb(); /* fetch version before time */
> - now.tv_sec = wall_clock->sec;
> + /* TODO: [2038 safety] wall_clock->sec uses time64_t */
Wrong. This is part of the hypervisor ABI and you can add as many
TODOs here as you want. They will not change the ABI ever. If XEN
wants to fix that it needs to implement a new hypervisor interface.
> + now.tv_sec = (time64_t)wall_clock->sec;
copy & paste does not solve all these problems magically.
Thanks,
tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists