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>
This commit is contained in:
committed by
Ingo Molnar
parent
9cb5baba5e
commit
3e51e3edfd
@@ -2741,7 +2741,7 @@ static void __sched_fork(struct task_struct *p)
|
||||
/*
|
||||
* fork()/clone()-time setup:
|
||||
*/
|
||||
void sched_fork(struct task_struct *p, int clone_flags)
|
||||
void sched_fork(struct task_struct *p)
|
||||
{
|
||||
unsigned long flags;
|
||||
int cpu = get_cpu();
|
||||
@@ -2823,7 +2823,7 @@ void sched_fork(struct task_struct *p, int clone_flags)
|
||||
* that must be done for every newly created context, then puts the task
|
||||
* on the runqueue and wakes it.
|
||||
*/
|
||||
void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
|
||||
void wake_up_new_task(struct task_struct *p)
|
||||
{
|
||||
unsigned long flags;
|
||||
struct rq *rq;
|
||||
|
Reference in New Issue
Block a user