Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 245580
b: refs/heads/master
c: a8e4f2e
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Apr 14, 2011
1 parent 3b40d2c commit 8bb4dfd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3fe1698b7fe05aeb063564e71e40d09f28d8e80c
refs/heads/master: a8e4f2eaecc9bfa4954adf79a04f4f22fddd829c
1 change: 1 addition & 0 deletions trunk/include/linux/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -1273,6 +1273,7 @@ struct task_struct {

/* Revert to default priority/policy when forking */
unsigned sched_reset_on_fork:1;
unsigned sched_contributes_to_load:1;

pid_t pid;
pid_t tgid;
Expand Down
16 changes: 4 additions & 12 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -2519,18 +2519,7 @@ static int try_to_wake_up(struct task_struct *p, unsigned int state,
if (unlikely(task_running(rq, p)))
goto out_activate;

/*
* In order to handle concurrent wakeups and release the rq->lock
* we put the task in TASK_WAKING state.
*
* First fix up the nr_uninterruptible count:
*/
if (task_contributes_to_load(p)) {
if (likely(cpu_online(orig_cpu)))
rq->nr_uninterruptible--;
else
this_rq()->nr_uninterruptible--;
}
p->sched_contributes_to_load = !!task_contributes_to_load(p);
p->state = TASK_WAKING;

if (p->sched_class->task_waking) {
Expand All @@ -2555,6 +2544,9 @@ static int try_to_wake_up(struct task_struct *p, unsigned int state,
WARN_ON(task_cpu(p) != cpu);
WARN_ON(p->state != TASK_WAKING);

if (p->sched_contributes_to_load)
rq->nr_uninterruptible--;

out_activate:
#endif /* CONFIG_SMP */
ttwu_activate(rq, p, en_flags);
Expand Down

0 comments on commit 8bb4dfd

Please sign in to comment.