Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bb380ec3
cloud-kernel
项目概览
openanolis
/
cloud-kernel
接近 2 年 前同步成功
通知
170
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看板
提交
bb380ec3
编写于
5月 14, 2017
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
kill wait_noreap_copyout()
folds into callers Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
e61a2502
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
25 addition
and
40 deletion
+25
-40
kernel/exit.c
kernel/exit.c
+25
-40
未找到文件。
kernel/exit.c
浏览文件 @
bb380ec3
...
@@ -1057,22 +1057,6 @@ eligible_child(struct wait_opts *wo, bool ptrace, struct task_struct *p)
...
@@ -1057,22 +1057,6 @@ eligible_child(struct wait_opts *wo, bool ptrace, struct task_struct *p)
return
1
;
return
1
;
}
}
static
int
wait_noreap_copyout
(
struct
wait_opts
*
wo
,
struct
task_struct
*
p
,
pid_t
pid
,
uid_t
uid
,
int
why
,
int
status
)
{
struct
waitid_info
*
infop
;
put_task_struct
(
p
);
infop
=
wo
->
wo_info
;
if
(
infop
)
{
infop
->
cause
=
why
;
infop
->
pid
=
pid
;
infop
->
uid
=
uid
;
infop
->
status
=
status
;
}
return
pid
;
}
/*
/*
* Handle sys_wait4 work for one task in state EXIT_ZOMBIE. We hold
* Handle sys_wait4 work for one task in state EXIT_ZOMBIE. We hold
* read_lock(&tasklist_lock) on entry. If we return zero, we still hold
* read_lock(&tasklist_lock) on entry. If we return zero, we still hold
...
@@ -1091,22 +1075,27 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
...
@@ -1091,22 +1075,27 @@ static int wait_task_zombie(struct wait_opts *wo, struct task_struct *p)
if
(
unlikely
(
wo
->
wo_flags
&
WNOWAIT
))
{
if
(
unlikely
(
wo
->
wo_flags
&
WNOWAIT
))
{
int
exit_code
=
p
->
exit_code
;
int
exit_code
=
p
->
exit_code
;
int
why
;
get_task_struct
(
p
);
get_task_struct
(
p
);
read_unlock
(
&
tasklist_lock
);
read_unlock
(
&
tasklist_lock
);
sched_annotate_sleep
();
sched_annotate_sleep
();
if
(
wo
->
wo_rusage
)
if
(
wo
->
wo_rusage
)
getrusage
(
p
,
RUSAGE_BOTH
,
wo
->
wo_rusage
);
getrusage
(
p
,
RUSAGE_BOTH
,
wo
->
wo_rusage
);
put_task_struct
(
p
);
if
((
exit_code
&
0x7f
)
==
0
)
{
infop
=
wo
->
wo_info
;
why
=
CLD_EXITED
;
if
(
infop
)
{
status
=
exit_code
>>
8
;
if
((
exit_code
&
0x7f
)
==
0
)
{
}
else
{
infop
->
cause
=
CLD_EXITED
;
why
=
(
exit_code
&
0x80
)
?
CLD_DUMPED
:
CLD_KILLED
;
infop
->
status
=
exit_code
>>
8
;
status
=
exit_code
&
0x7f
;
}
else
{
infop
->
cause
=
(
exit_code
&
0x80
)
?
CLD_DUMPED
:
CLD_KILLED
;
infop
->
status
=
exit_code
&
0x7f
;
}
infop
->
pid
=
pid
;
infop
->
uid
=
uid
;
}
}
return
wait_noreap_copyout
(
wo
,
p
,
pid
,
uid
,
why
,
status
)
;
return
pid
;
}
}
/*
/*
* Move the task's state to DEAD/TRACE, only one thread can do this.
* Move the task's state to DEAD/TRACE, only one thread can do this.
...
@@ -1297,11 +1286,10 @@ static int wait_task_stopped(struct wait_opts *wo,
...
@@ -1297,11 +1286,10 @@ static int wait_task_stopped(struct wait_opts *wo,
sched_annotate_sleep
();
sched_annotate_sleep
();
if
(
wo
->
wo_rusage
)
if
(
wo
->
wo_rusage
)
getrusage
(
p
,
RUSAGE_BOTH
,
wo
->
wo_rusage
);
getrusage
(
p
,
RUSAGE_BOTH
,
wo
->
wo_rusage
);
put_task_struct
(
p
);
if
(
unlikely
(
wo
->
wo_flags
&
WNOWAIT
))
if
(
likely
(
!
(
wo
->
wo_flags
&
WNOWAIT
)))
return
wait_noreap_copyout
(
wo
,
p
,
pid
,
uid
,
why
,
exit_code
);
wo
->
wo_stat
=
(
exit_code
<<
8
)
|
0x7f
;
wo
->
wo_stat
=
(
exit_code
<<
8
)
|
0x7f
;
infop
=
wo
->
wo_info
;
infop
=
wo
->
wo_info
;
if
(
infop
)
{
if
(
infop
)
{
...
@@ -1310,9 +1298,6 @@ static int wait_task_stopped(struct wait_opts *wo,
...
@@ -1310,9 +1298,6 @@ static int wait_task_stopped(struct wait_opts *wo,
infop
->
pid
=
pid
;
infop
->
pid
=
pid
;
infop
->
uid
=
uid
;
infop
->
uid
=
uid
;
}
}
put_task_struct
(
p
);
BUG_ON
(
!
pid
);
return
pid
;
return
pid
;
}
}
...
@@ -1324,7 +1309,7 @@ static int wait_task_stopped(struct wait_opts *wo,
...
@@ -1324,7 +1309,7 @@ static int wait_task_stopped(struct wait_opts *wo,
*/
*/
static
int
wait_task_continued
(
struct
wait_opts
*
wo
,
struct
task_struct
*
p
)
static
int
wait_task_continued
(
struct
wait_opts
*
wo
,
struct
task_struct
*
p
)
{
{
int
retval
;
struct
waitid_info
*
infop
;
pid_t
pid
;
pid_t
pid
;
uid_t
uid
;
uid_t
uid
;
...
@@ -1351,18 +1336,18 @@ static int wait_task_continued(struct wait_opts *wo, struct task_struct *p)
...
@@ -1351,18 +1336,18 @@ static int wait_task_continued(struct wait_opts *wo, struct task_struct *p)
sched_annotate_sleep
();
sched_annotate_sleep
();
if
(
wo
->
wo_rusage
)
if
(
wo
->
wo_rusage
)
getrusage
(
p
,
RUSAGE_BOTH
,
wo
->
wo_rusage
);
getrusage
(
p
,
RUSAGE_BOTH
,
wo
->
wo_rusage
);
put_task_struct
(
p
);
i
f
(
!
wo
->
wo_info
)
{
i
nfop
=
wo
->
wo_info
;
put_task_struct
(
p
);
if
(
!
infop
)
{
wo
->
wo_stat
=
0xffff
;
wo
->
wo_stat
=
0xffff
;
retval
=
pid
;
}
else
{
}
else
{
retval
=
wait_noreap_copyout
(
wo
,
p
,
pid
,
uid
,
infop
->
cause
=
CLD_CONTINUED
;
CLD_CONTINUED
,
SIGCONT
);
infop
->
pid
=
pid
;
BUG_ON
(
retval
==
0
);
infop
->
uid
=
uid
;
infop
->
status
=
SIGCONT
;
}
}
return
pid
;
return
retval
;
}
}
/*
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录