Re: [PATCH 2/2] ntp:Change the type of time_reftime to time64_t and replace get_seconds with __ktime_get_real_seconds

2015-12-15 Thread John Stultz
On Sat, Dec 12, 2015 at 8:24 PM, DengChao  wrote:
> The type of static variant "time_reftime" and the call of get_seconds
> in ntp are both not y2038 safe.
> So change the type of time_reftime to time64_t and replace get_seconds
> with __ktime_get_real_seconds.
> The local variant "secs" in ntp_update_offset represents seconds between
> now and last ntp adjustment, it seems impossible that this time will last
> more than 68 years, so keep its type as "long".
>
> Reviewed-by: John Stultz 
> Signed-off-by: DengChao 

Reworked the commit log a bit, but queued this for testing.

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


[PATCH 2/2] ntp:Change the type of time_reftime to time64_t and replace get_seconds with __ktime_get_real_seconds

2015-12-12 Thread DengChao
The type of static variant "time_reftime" and the call of get_seconds
in ntp are both not y2038 safe.
So change the type of time_reftime to time64_t and replace get_seconds
with __ktime_get_real_seconds.
The local variant "secs" in ntp_update_offset represents seconds between
now and last ntp adjustment, it seems impossible that this time will last
more than 68 years, so keep its type as "long".

Reviewed-by: John Stultz 
Signed-off-by: DengChao 
---
 kernel/time/ntp.c | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c
index 149cc80..f9b9d8e 100644
--- a/kernel/time/ntp.c
+++ b/kernel/time/ntp.c
@@ -18,6 +18,8 @@
 #include 
 
 #include "ntp_internal.h"
+#include "timekeeping_internal.h"
+
 
 /*
  * NTP timekeeping variables:
@@ -70,7 +72,7 @@ static long   time_esterror = NTP_PHASE_LIMIT;
 static s64 time_freq;
 
 /* time at last adjustment (secs): */
-static longtime_reftime;
+static time64_ttime_reftime;
 
 static longtime_adjust;
 
@@ -311,11 +313,11 @@ static void ntp_update_offset(long offset)
 * Select how the frequency is to be controlled
 * and in which mode (PLL or FLL).
 */
-   secs = get_seconds() - time_reftime;
+   secs = (long)(__ktime_get_real_seconds() - time_reftime);
if (unlikely(time_status & STA_FREQHOLD))
secs = 0;
 
-   time_reftime = get_seconds();
+   time_reftime = __ktime_get_real_seconds();
 
offset64= offset;
freq_adj= ntp_update_offset_fll(offset64, secs);
@@ -590,7 +592,7 @@ static inline void process_adj_status(struct timex *txc, 
struct timespec64 *ts)
 * reference time to current time.
 */
if (!(time_status & STA_PLL) && (txc->status & STA_PLL))
-   time_reftime = get_seconds();
+   time_reftime = __ktime_get_real_seconds();
 
/* only set allowed bits */
time_status &= STA_RONLY;
-- 
1.9.1

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