提交 35f5cad8 编写于 作者: O Oleg Nesterov 提交者: Linus Torvalds

[PATCH] revert "Optimize sys_times for a single thread process"

This patch reverts 'CONFIG_SMP && thread_group_empty()' optimization in
sys_times().  The reason is that the next patch breaks memory ordering which
is needed for that optimization.

tasklist_lock in sys_times() will be eliminated completely by further patch.
Signed-off-by: NOleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 6a14c5c9
...@@ -139,11 +139,7 @@ void release_task(struct task_struct * p) ...@@ -139,11 +139,7 @@ void release_task(struct task_struct * p)
ptrace_unlink(p); ptrace_unlink(p);
BUG_ON(!list_empty(&p->ptrace_list) || !list_empty(&p->ptrace_children)); BUG_ON(!list_empty(&p->ptrace_list) || !list_empty(&p->ptrace_children));
__exit_signal(p); __exit_signal(p);
/*
* Note that the fastpath in sys_times depends on __exit_signal having
* updated the counters before a task is removed from the tasklist of
* the process by __unhash_process.
*/
__unhash_process(p); __unhash_process(p);
/* /*
......
...@@ -1202,69 +1202,35 @@ asmlinkage long sys_times(struct tms __user * tbuf) ...@@ -1202,69 +1202,35 @@ asmlinkage long sys_times(struct tms __user * tbuf)
*/ */
if (tbuf) { if (tbuf) {
struct tms tmp; struct tms tmp;
struct task_struct *tsk = current;
struct task_struct *t;
cputime_t utime, stime, cutime, cstime; cputime_t utime, stime, cutime, cstime;
#ifdef CONFIG_SMP read_lock(&tasklist_lock);
if (thread_group_empty(current)) { utime = tsk->signal->utime;
/* stime = tsk->signal->stime;
* Single thread case without the use of any locks. t = tsk;
* do {
* We may race with release_task if two threads are utime = cputime_add(utime, t->utime);
* executing. However, release task first adds up the stime = cputime_add(stime, t->stime);
* counters (__exit_signal) before removing the task t = next_thread(t);
* from the process tasklist (__unhash_process). } while (t != tsk);
* __exit_signal also acquires and releases the
* siglock which results in the proper memory ordering /*
* so that the list modifications are always visible * While we have tasklist_lock read-locked, no dying thread
* after the counters have been updated. * can be updating current->signal->[us]time. Instead,
* * we got their counts included in the live thread loop.
* If the counters have been updated by the second thread * However, another thread can come in right now and
* but the thread has not yet been removed from the list * do a wait call that updates current->signal->c[us]time.
* then the other branch will be executing which will * To make sure we always see that pair updated atomically,
* block on tasklist_lock until the exit handling of the * we take the siglock around fetching them.
* other task is finished. */
* spin_lock_irq(&tsk->sighand->siglock);
* This also implies that the sighand->siglock cannot cutime = tsk->signal->cutime;
* be held by another processor. So we can also cstime = tsk->signal->cstime;
* skip acquiring that lock. spin_unlock_irq(&tsk->sighand->siglock);
*/ read_unlock(&tasklist_lock);
utime = cputime_add(current->signal->utime, current->utime);
stime = cputime_add(current->signal->utime, current->stime);
cutime = current->signal->cutime;
cstime = current->signal->cstime;
} else
#endif
{
/* Process with multiple threads */
struct task_struct *tsk = current;
struct task_struct *t;
read_lock(&tasklist_lock);
utime = tsk->signal->utime;
stime = tsk->signal->stime;
t = tsk;
do {
utime = cputime_add(utime, t->utime);
stime = cputime_add(stime, t->stime);
t = next_thread(t);
} while (t != tsk);
/*
* While we have tasklist_lock read-locked, no dying thread
* can be updating current->signal->[us]time. Instead,
* we got their counts included in the live thread loop.
* However, another thread can come in right now and
* do a wait call that updates current->signal->c[us]time.
* To make sure we always see that pair updated atomically,
* we take the siglock around fetching them.
*/
spin_lock_irq(&tsk->sighand->siglock);
cutime = tsk->signal->cutime;
cstime = tsk->signal->cstime;
spin_unlock_irq(&tsk->sighand->siglock);
read_unlock(&tasklist_lock);
}
tmp.tms_utime = cputime_to_clock_t(utime); tmp.tms_utime = cputime_to_clock_t(utime);
tmp.tms_stime = cputime_to_clock_t(stime); tmp.tms_stime = cputime_to_clock_t(stime);
tmp.tms_cutime = cputime_to_clock_t(cutime); tmp.tms_cutime = cputime_to_clock_t(cutime);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册