Loading include/linux/time.h +0 −1 Original line number Diff line number Diff line Loading @@ -167,7 +167,6 @@ extern void get_monotonic_boottime(struct timespec *ts); extern struct timespec timespec_trunc(struct timespec t, unsigned gran); extern int timekeeping_valid_for_hres(void); extern u64 timekeeping_max_deferment(void); extern void timekeeping_leap_insert(int leapsecond); extern int timekeeping_inject_offset(struct timespec *ts); struct tms; Loading kernel/time/ntp.c +3 −5 Original line number Diff line number Diff line Loading @@ -412,6 +412,7 @@ int second_overflow(unsigned long secs) if (secs % 86400 == 0) { leap = -1; time_state = TIME_OOP; time_tai++; printk(KERN_NOTICE "Clock: inserting leap second 23:59:60 UTC\n"); } Loading @@ -426,7 +427,6 @@ int second_overflow(unsigned long secs) } break; case TIME_OOP: time_tai++; time_state = TIME_WAIT; break; Loading Loading @@ -473,8 +473,6 @@ int second_overflow(unsigned long secs) << NTP_SCALE_SHIFT; time_adjust = 0; out: spin_unlock_irqrestore(&ntp_lock, flags); Loading Loading @@ -559,10 +557,10 @@ static inline void process_adj_status(struct timex *txc, struct timespec *ts) /* only set allowed bits */ time_status &= STA_RONLY; time_status |= txc->status & ~STA_RONLY; } /* * Called with the xtime lock held, so we can access and modify * Called with ntp_lock held, so we can access and modify * all the global NTP state: */ static inline void process_adjtimex_modes(struct timex *txc, struct timespec *ts) Loading kernel/time/timekeeping.c +1 −3 Original line number Diff line number Diff line Loading @@ -240,7 +240,6 @@ void getnstimeofday(struct timespec *ts) timespec_add_ns(ts, nsecs); } EXPORT_SYMBOL(getnstimeofday); ktime_t ktime_get(void) Loading Loading @@ -357,8 +356,8 @@ void do_gettimeofday(struct timeval *tv) tv->tv_sec = now.tv_sec; tv->tv_usec = now.tv_nsec/1000; } EXPORT_SYMBOL(do_gettimeofday); /** * do_settimeofday - Sets the time of day * @tv: pointer to the timespec variable containing the new time Loading Loading @@ -392,7 +391,6 @@ int do_settimeofday(const struct timespec *tv) return 0; } EXPORT_SYMBOL(do_settimeofday); Loading Loading
include/linux/time.h +0 −1 Original line number Diff line number Diff line Loading @@ -167,7 +167,6 @@ extern void get_monotonic_boottime(struct timespec *ts); extern struct timespec timespec_trunc(struct timespec t, unsigned gran); extern int timekeeping_valid_for_hres(void); extern u64 timekeeping_max_deferment(void); extern void timekeeping_leap_insert(int leapsecond); extern int timekeeping_inject_offset(struct timespec *ts); struct tms; Loading
kernel/time/ntp.c +3 −5 Original line number Diff line number Diff line Loading @@ -412,6 +412,7 @@ int second_overflow(unsigned long secs) if (secs % 86400 == 0) { leap = -1; time_state = TIME_OOP; time_tai++; printk(KERN_NOTICE "Clock: inserting leap second 23:59:60 UTC\n"); } Loading @@ -426,7 +427,6 @@ int second_overflow(unsigned long secs) } break; case TIME_OOP: time_tai++; time_state = TIME_WAIT; break; Loading Loading @@ -473,8 +473,6 @@ int second_overflow(unsigned long secs) << NTP_SCALE_SHIFT; time_adjust = 0; out: spin_unlock_irqrestore(&ntp_lock, flags); Loading Loading @@ -559,10 +557,10 @@ static inline void process_adj_status(struct timex *txc, struct timespec *ts) /* only set allowed bits */ time_status &= STA_RONLY; time_status |= txc->status & ~STA_RONLY; } /* * Called with the xtime lock held, so we can access and modify * Called with ntp_lock held, so we can access and modify * all the global NTP state: */ static inline void process_adjtimex_modes(struct timex *txc, struct timespec *ts) Loading
kernel/time/timekeeping.c +1 −3 Original line number Diff line number Diff line Loading @@ -240,7 +240,6 @@ void getnstimeofday(struct timespec *ts) timespec_add_ns(ts, nsecs); } EXPORT_SYMBOL(getnstimeofday); ktime_t ktime_get(void) Loading Loading @@ -357,8 +356,8 @@ void do_gettimeofday(struct timeval *tv) tv->tv_sec = now.tv_sec; tv->tv_usec = now.tv_nsec/1000; } EXPORT_SYMBOL(do_gettimeofday); /** * do_settimeofday - Sets the time of day * @tv: pointer to the timespec variable containing the new time Loading Loading @@ -392,7 +391,6 @@ int do_settimeofday(const struct timespec *tv) return 0; } EXPORT_SYMBOL(do_settimeofday); Loading