]> Pileus Git - ~andy/linux/blobdiff - kernel/time/timekeeping.c
time: Fix casting issue in tk_set_xtime and tk_xtime_add
[~andy/linux] / kernel / time / timekeeping.c
index 5980e902978c4b84b4c3723ff6c1ffab2b2e6a14..8f2aba1246f27b2dadcf5b8c2207a150a057167d 100644 (file)
@@ -108,13 +108,13 @@ static struct timespec tk_xtime(struct timekeeper *tk)
 static void tk_set_xtime(struct timekeeper *tk, const struct timespec *ts)
 {
        tk->xtime_sec = ts->tv_sec;
-       tk->xtime_nsec = ts->tv_nsec << tk->shift;
+       tk->xtime_nsec = (u64)ts->tv_nsec << tk->shift;
 }
 
 static void tk_xtime_add(struct timekeeper *tk, const struct timespec *ts)
 {
        tk->xtime_sec += ts->tv_sec;
-       tk->xtime_nsec += ts->tv_nsec << tk->shift;
+       tk->xtime_nsec += (u64)ts->tv_nsec << tk->shift;
 }
 
 /**