projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7f0765
)
do_wait() wakeup optimization: shift security_task_wait() from eligible_child() to...
author
Oleg Nesterov
<
[email protected]
>
Wed, 23 Sep 2009 22:56:45 +0000
(15:56 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 24 Sep 2009 14:20:59 +0000
(07:20 -0700)
Preparation, no functional changes.
eligible_child() has a single caller, wait_consider_task(). We can move
security_task_wait() out from eligible_child(), this allows us to use it
for filtered wake_up().
Signed-off-by: Oleg Nesterov <
[email protected]
>
Acked-by: Roland McGrath <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Ratan Nalumasu <
[email protected]
>
Cc: Vitaly Mayatskikh <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
kernel/exit.c
patch
|
blob
|
history
diff --git
a/kernel/exit.c
b/kernel/exit.c
index 782b2e1f7ca286b17bddd6d5c3afeb1fb8911118..ef2dfa818bf139e214b78833f243782358cb5988 100644
(file)
--- a/
kernel/exit.c
+++ b/
kernel/exit.c
@@
-1112,8
+1112,6
@@
static struct pid *task_pid_type(struct task_struct *task, enum pid_type type)
static int eligible_child(struct wait_opts *wo, struct task_struct *p)
{
- int err;
-
if (wo->wo_type < PIDTYPE_MAX) {
if (task_pid_type(p, wo->wo_type) != wo->wo_pid)
return 0;
@@
-1128,10
+1126,6
@@
static int eligible_child(struct wait_opts *wo, struct task_struct *p)
&& !(wo->wo_flags & __WALL))
return 0;
- err = security_task_wait(p);
- if (err)
- return err;
-
return 1;
}
@@
-1492,6
+1486,7
@@
static int wait_consider_task(struct wait_opts *wo, struct task_struct *parent,
if (!ret)
return ret;
+ ret = security_task_wait(p);
if (unlikely(ret < 0)) {
/*
* If we have not yet seen any eligible child,