ntp.c (f97b12cce6dea51880a6a89d4607c29c70a6a841) | ntp.c (e2830b5c1b2b2217894370a3b95af87d4a958401) |
---|---|
1/* 2 * NTP state machine interfaces and logic. 3 * 4 * This code was mainly moved from kernel/timer.c and kernel/time.c 5 * Please see those files for relevant copyright info and historical 6 * changelogs. 7 */ 8#include <linux/capability.h> 9#include <linux/clocksource.h> 10#include <linux/workqueue.h> 11#include <linux/hrtimer.h> 12#include <linux/jiffies.h> 13#include <linux/math64.h> 14#include <linux/timex.h> 15#include <linux/time.h> 16#include <linux/mm.h> 17#include <linux/module.h> 18 | 1/* 2 * NTP state machine interfaces and logic. 3 * 4 * This code was mainly moved from kernel/timer.c and kernel/time.c 5 * Please see those files for relevant copyright info and historical 6 * changelogs. 7 */ 8#include <linux/capability.h> 9#include <linux/clocksource.h> 10#include <linux/workqueue.h> 11#include <linux/hrtimer.h> 12#include <linux/jiffies.h> 13#include <linux/math64.h> 14#include <linux/timex.h> 15#include <linux/time.h> 16#include <linux/mm.h> 17#include <linux/module.h> 18 |
19#include "tick-internal.h" 20 |
|
19/* 20 * NTP timekeeping variables: 21 */ 22 23/* USER_HZ period (usecs): */ 24unsigned long tick_usec = TICK_USEC; 25 26/* ACTHZ period (nsecs): */ --- 931 unchanged lines hidden --- | 21/* 22 * NTP timekeeping variables: 23 */ 24 25/* USER_HZ period (usecs): */ 26unsigned long tick_usec = TICK_USEC; 27 28/* ACTHZ period (nsecs): */ --- 931 unchanged lines hidden --- |