Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
1b3c872c
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
1b3c872c
编写于
5月 31, 2017
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rt_sigtimedwait(): move compat to native
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
464d6242
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
35 addition
and
35 deletion
+35
-35
include/linux/signal.h
include/linux/signal.h
+0
-2
kernel/compat.c
kernel/compat.c
+0
-32
kernel/signal.c
kernel/signal.c
+35
-1
未找到文件。
include/linux/signal.h
浏览文件 @
1b3c872c
...
...
@@ -246,8 +246,6 @@ extern int do_send_sig_info(int sig, struct siginfo *info,
struct
task_struct
*
p
,
bool
group
);
extern
int
group_send_sig_info
(
int
sig
,
struct
siginfo
*
info
,
struct
task_struct
*
p
);
extern
int
__group_send_sig_info
(
int
,
struct
siginfo
*
,
struct
task_struct
*
);
extern
int
do_sigtimedwait
(
const
sigset_t
*
,
siginfo_t
*
,
const
struct
timespec
*
);
extern
int
sigprocmask
(
int
,
sigset_t
*
,
sigset_t
*
);
extern
void
set_current_blocked
(
sigset_t
*
);
extern
void
__set_current_blocked
(
const
sigset_t
*
);
...
...
kernel/compat.c
浏览文件 @
1b3c872c
...
...
@@ -866,38 +866,6 @@ sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
}
}
COMPAT_SYSCALL_DEFINE4
(
rt_sigtimedwait
,
compat_sigset_t
__user
*
,
uthese
,
struct
compat_siginfo
__user
*
,
uinfo
,
struct
compat_timespec
__user
*
,
uts
,
compat_size_t
,
sigsetsize
)
{
compat_sigset_t
s32
;
sigset_t
s
;
struct
timespec
t
;
siginfo_t
info
;
long
ret
;
if
(
sigsetsize
!=
sizeof
(
sigset_t
))
return
-
EINVAL
;
if
(
copy_from_user
(
&
s32
,
uthese
,
sizeof
(
compat_sigset_t
)))
return
-
EFAULT
;
sigset_from_compat
(
&
s
,
&
s32
);
if
(
uts
)
{
if
(
compat_get_timespec
(
&
t
,
uts
))
return
-
EFAULT
;
}
ret
=
do_sigtimedwait
(
&
s
,
&
info
,
uts
?
&
t
:
NULL
);
if
(
ret
>
0
&&
uinfo
)
{
if
(
copy_siginfo_to_user32
(
uinfo
,
&
info
))
ret
=
-
EFAULT
;
}
return
ret
;
}
#ifdef __ARCH_WANT_COMPAT_SYS_TIME
/* compat_time_t is a 32 bit "long" and needs to get converted. */
...
...
kernel/signal.c
浏览文件 @
1b3c872c
...
...
@@ -2768,7 +2768,7 @@ int copy_siginfo_to_user(siginfo_t __user *to, const siginfo_t *from)
* @info: if non-null, the signal's siginfo is returned here
* @ts: upper bound on process time suspension
*/
int
do_sigtimedwait
(
const
sigset_t
*
which
,
siginfo_t
*
info
,
static
int
do_sigtimedwait
(
const
sigset_t
*
which
,
siginfo_t
*
info
,
const
struct
timespec
*
ts
)
{
ktime_t
*
to
=
NULL
,
timeout
=
KTIME_MAX
;
...
...
@@ -2857,6 +2857,40 @@ SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
return
ret
;
}
#ifdef CONFIG_COMPAT
COMPAT_SYSCALL_DEFINE4
(
rt_sigtimedwait
,
compat_sigset_t
__user
*
,
uthese
,
struct
compat_siginfo
__user
*
,
uinfo
,
struct
compat_timespec
__user
*
,
uts
,
compat_size_t
,
sigsetsize
)
{
compat_sigset_t
s32
;
sigset_t
s
;
struct
timespec
t
;
siginfo_t
info
;
long
ret
;
if
(
sigsetsize
!=
sizeof
(
sigset_t
))
return
-
EINVAL
;
if
(
copy_from_user
(
&
s32
,
uthese
,
sizeof
(
compat_sigset_t
)))
return
-
EFAULT
;
sigset_from_compat
(
&
s
,
&
s32
);
if
(
uts
)
{
if
(
compat_get_timespec
(
&
t
,
uts
))
return
-
EFAULT
;
}
ret
=
do_sigtimedwait
(
&
s
,
&
info
,
uts
?
&
t
:
NULL
);
if
(
ret
>
0
&&
uinfo
)
{
if
(
copy_siginfo_to_user32
(
uinfo
,
&
info
))
ret
=
-
EFAULT
;
}
return
ret
;
}
#endif
/**
* sys_kill - send a signal to a process
* @pid: the PID of the process
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录