Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
9f4646d2
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9f4646d2
编写于
2月 14, 2013
作者:
T
Thomas Gleixner
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fortglx/3.9/time' of
git://git.linaro.org/people/jstultz/linux
into timers/core
上级
86c8ead5
84e345e4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
2 deletion
+15
-2
include/linux/time.h
include/linux/time.h
+1
-0
kernel/time.c
kernel/time.c
+8
-0
kernel/time/ntp.c
kernel/time/ntp.c
+6
-2
未找到文件。
include/linux/time.h
浏览文件 @
9f4646d2
...
@@ -128,6 +128,7 @@ static inline bool has_persistent_clock(void)
...
@@ -128,6 +128,7 @@ static inline bool has_persistent_clock(void)
extern
void
read_persistent_clock
(
struct
timespec
*
ts
);
extern
void
read_persistent_clock
(
struct
timespec
*
ts
);
extern
void
read_boot_clock
(
struct
timespec
*
ts
);
extern
void
read_boot_clock
(
struct
timespec
*
ts
);
extern
int
persistent_clock_is_local
;
extern
int
update_persistent_clock
(
struct
timespec
now
);
extern
int
update_persistent_clock
(
struct
timespec
now
);
void
timekeeping_init
(
void
);
void
timekeeping_init
(
void
);
extern
int
timekeeping_suspended
;
extern
int
timekeeping_suspended
;
...
...
kernel/time.c
浏览文件 @
9f4646d2
...
@@ -114,6 +114,12 @@ SYSCALL_DEFINE2(gettimeofday, struct timeval __user *, tv,
...
@@ -114,6 +114,12 @@ SYSCALL_DEFINE2(gettimeofday, struct timeval __user *, tv,
return
0
;
return
0
;
}
}
/*
* Indicates if there is an offset between the system clock and the hardware
* clock/persistent clock/rtc.
*/
int
persistent_clock_is_local
;
/*
/*
* Adjust the time obtained from the CMOS to be UTC time instead of
* Adjust the time obtained from the CMOS to be UTC time instead of
* local time.
* local time.
...
@@ -135,6 +141,8 @@ static inline void warp_clock(void)
...
@@ -135,6 +141,8 @@ static inline void warp_clock(void)
struct
timespec
adjust
;
struct
timespec
adjust
;
adjust
=
current_kernel_time
();
adjust
=
current_kernel_time
();
if
(
sys_tz
.
tz_minuteswest
!=
0
)
persistent_clock_is_local
=
1
;
adjust
.
tv_sec
+=
sys_tz
.
tz_minuteswest
*
60
;
adjust
.
tv_sec
+=
sys_tz
.
tz_minuteswest
*
60
;
do_settimeofday
(
&
adjust
);
do_settimeofday
(
&
adjust
);
}
}
...
...
kernel/time/ntp.c
浏览文件 @
9f4646d2
...
@@ -511,13 +511,17 @@ static void sync_cmos_clock(struct work_struct *work)
...
@@ -511,13 +511,17 @@ static void sync_cmos_clock(struct work_struct *work)
getnstimeofday
(
&
now
);
getnstimeofday
(
&
now
);
if
(
abs
(
now
.
tv_nsec
-
(
NSEC_PER_SEC
/
2
))
<=
tick_nsec
/
2
)
{
if
(
abs
(
now
.
tv_nsec
-
(
NSEC_PER_SEC
/
2
))
<=
tick_nsec
/
2
)
{
struct
timespec
adjust
=
now
;
fail
=
-
ENODEV
;
fail
=
-
ENODEV
;
if
(
persistent_clock_is_local
)
adjust
.
tv_sec
-=
(
sys_tz
.
tz_minuteswest
*
60
);
#ifdef CONFIG_GENERIC_CMOS_UPDATE
#ifdef CONFIG_GENERIC_CMOS_UPDATE
fail
=
update_persistent_clock
(
now
);
fail
=
update_persistent_clock
(
adjust
);
#endif
#endif
#ifdef CONFIG_RTC_SYSTOHC
#ifdef CONFIG_RTC_SYSTOHC
if
(
fail
==
-
ENODEV
)
if
(
fail
==
-
ENODEV
)
fail
=
rtc_set_ntp_time
(
now
);
fail
=
rtc_set_ntp_time
(
adjust
);
#endif
#endif
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录