diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 14:50:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 14:50:49 -0700 |
commit | 948769a5ba304ed3329a2f42ee3561f04a0b5692 (patch) | |
tree | 7430c5fcae383d90c7c0101364440ac24e5cbc18 /kernel/softirq.c | |
parent | e18425a0abc8eafa8e98ecffac517bb0c0904f4b (diff) | |
parent | 773dc8eacaedb2e8c8d0defb5de2c66ea7dc4a08 (diff) | |
download | linux-948769a5ba304ed3329a2f42ee3561f04a0b5692.tar.bz2 |
Merge branch 'sched/new-API-sched_setscheduler' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'sched/new-API-sched_setscheduler' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
sched: add new API sched_setscheduler_nocheck: add a flag to control access checks
Diffstat (limited to 'kernel/softirq.c')
-rw-r--r-- | kernel/softirq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index 36e061740047..afd9120c2fc4 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -645,7 +645,7 @@ static int __cpuinit cpu_callback(struct notifier_block *nfb, p = per_cpu(ksoftirqd, hotcpu); per_cpu(ksoftirqd, hotcpu) = NULL; - sched_setscheduler(p, SCHED_FIFO, ¶m); + sched_setscheduler_nocheck(p, SCHED_FIFO, ¶m); kthread_stop(p); takeover_tasklets(hotcpu); break; |