diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-09-14 19:37:39 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-15 16:51:29 +0200 |
commit | 0763a660a84220cc3900fd32abdd7ad109e2278d (patch) | |
tree | 1b745884fb79627e05c026ee5bfb115b1f722db8 /include/linux/sched.h | |
parent | 8e6598af3f35629c37249a610cf13e73f70db279 (diff) | |
download | op-kernel-dev-0763a660a84220cc3900fd32abdd7ad109e2278d.zip op-kernel-dev-0763a660a84220cc3900fd32abdd7ad109e2278d.tar.gz |
sched: Rename select_task_rq() argument
In order to be able to rename the sync argument, we need to rename
the current flag argument.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index fc4c0f9..5c116f0 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1037,7 +1037,7 @@ struct sched_class { void (*put_prev_task) (struct rq *rq, struct task_struct *p); #ifdef CONFIG_SMP - int (*select_task_rq)(struct task_struct *p, int flag, int sync); + int (*select_task_rq)(struct task_struct *p, int sd_flag, int sync); unsigned long (*load_balance) (struct rq *this_rq, int this_cpu, struct rq *busiest, unsigned long max_load_move, |