diff options
author | Samir Bellabes <sam@synack.fr> | 2011-05-11 12:18:05 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-05-12 03:36:37 -0400 |
commit | 3e51e3edfd81bfd9853ad7de91167e4ce33d0fe7 (patch) | |
tree | 777d871949911f3e79a5b94545a7b6a55bdc2259 /kernel/fork.c | |
parent | 9cb5baba5e3acba0994ad899ee908799104c9965 (diff) |
sched: Remove unused parameters from sched_fork() and wake_up_new_task()
sched_fork() and wake_up_new_task() are defined with a parameter
'unsigned long clone_flags', which is unused.
This patch removes the parameters.
Signed-off-by: Samir Bellabes <sam@synack.fr>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1305130685-1047-1-git-send-email-sam@synack.fr
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/fork.c')
-rw-r--r-- | kernel/fork.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index aca62871a4f9..2b44d82b8237 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -1152,7 +1152,7 @@ static struct task_struct *copy_process(unsigned long clone_flags, | |||
1152 | #endif | 1152 | #endif |
1153 | 1153 | ||
1154 | /* Perform scheduler related setup. Assign this task to a CPU. */ | 1154 | /* Perform scheduler related setup. Assign this task to a CPU. */ |
1155 | sched_fork(p, clone_flags); | 1155 | sched_fork(p); |
1156 | 1156 | ||
1157 | retval = perf_event_init_task(p); | 1157 | retval = perf_event_init_task(p); |
1158 | if (retval) | 1158 | if (retval) |
@@ -1463,7 +1463,7 @@ long do_fork(unsigned long clone_flags, | |||
1463 | */ | 1463 | */ |
1464 | p->flags &= ~PF_STARTING; | 1464 | p->flags &= ~PF_STARTING; |
1465 | 1465 | ||
1466 | wake_up_new_task(p, clone_flags); | 1466 | wake_up_new_task(p); |
1467 | 1467 | ||
1468 | tracehook_report_clone_complete(trace, regs, | 1468 | tracehook_report_clone_complete(trace, regs, |
1469 | clone_flags, nr, p); | 1469 | clone_flags, nr, p); |