summaryrefslogtreecommitdiffstats
path: root/kernel/smpboot.c
diff options
context:
space:
mode:
authorArnd Bergmann2013-03-08 21:43:31 +0100
committerLinus Torvalds2013-03-09 00:05:34 +0100
commitdc893e19b5800d7743fb58235877bfa9091805ff (patch)
tree56d2de512a83e9883dace8f4a6be26eddddfa6f7 /kernel/smpboot.c
parentidr: remove WARN_ON_ONCE() on negative IDs (diff)
downloadkernel-qcow2-linux-dc893e19b5800d7743fb58235877bfa9091805ff.tar.gz
kernel-qcow2-linux-dc893e19b5800d7743fb58235877bfa9091805ff.tar.xz
kernel-qcow2-linux-dc893e19b5800d7743fb58235877bfa9091805ff.zip
Revert parts of "hlist: drop the node parameter from iterators"
Commit b67bfe0d42ca ("hlist: drop the node parameter from iterators") did a lot of nice changes but also contains two small hunks that seem to have slipped in accidentally and have no apparent connection to the intent of the patch. This reverts the two extraneous changes. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Peter Senna Tschudin <peter.senna@gmail.com> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: Sasha Levin <sasha.levin@oracle.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/smpboot.c')
-rw-r--r--kernel/smpboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/smpboot.c b/kernel/smpboot.c
index 25d3d8b6e4e1..8eaed9aa9cf0 100644
--- a/kernel/smpboot.c
+++ b/kernel/smpboot.c
@@ -131,7 +131,7 @@ static int smpboot_thread_fn(void *data)
continue;
}
- //BUG_ON(td->cpu != smp_processor_id());
+ BUG_ON(td->cpu != smp_processor_id());
/* Check for state change setup */
switch (td->status) {