ntp.c (3527a86b7ae17c949307d00e1eb7087604bca1b4) ntp.c (bfb83b27519aa7ed9510f601a8f825a2c1484bc2)
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#include <linux/rtc.h>
19
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#include <linux/rtc.h>
19
20#include "tick-internal.h"
21#include "ntp_internal.h"
22
23/*
24 * NTP timekeeping variables:
25 *
26 * Note: All of the NTP state is protected by the timekeeping locks.
27 */
28

--- 927 unchanged lines hidden ---
20#include "ntp_internal.h"
21
22/*
23 * NTP timekeeping variables:
24 *
25 * Note: All of the NTP state is protected by the timekeeping locks.
26 */
27

--- 927 unchanged lines hidden ---