From: akpm@osdl.org Date: Tue, 10 Jan 2006 04:51:38 +0000 (-0800) Subject: [PATCH] Remove set_fs() in stop_machine() X-Git-Tag: v2.6.16-rc1~642 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=ed653a640419cd9d1ad0f8dc176478e6634a694e;p=powerpc.git [PATCH] Remove set_fs() in stop_machine() ) From: Brian Gerst Call sched_setscheduler() directly instead. Signed-off-by: Brian Gerst Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/stop_machine.c b/kernel/stop_machine.c index b3d4dc858e..dcfb5d7314 100644 --- a/kernel/stop_machine.c +++ b/kernel/stop_machine.c @@ -87,13 +87,9 @@ static int stop_machine(void) { int i, ret = 0; struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 }; - mm_segment_t old_fs = get_fs(); /* One high-prio thread per cpu. We'll do this one. */ - set_fs(KERNEL_DS); - sys_sched_setscheduler(current->pid, SCHED_FIFO, - (struct sched_param __user *)¶m); - set_fs(old_fs); + sched_setscheduler(current, SCHED_FIFO, ¶m); atomic_set(&stopmachine_thread_ack, 0); stopmachine_num_threads = 0;