Commit 6978c705 authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Adrian Bunk

BUG_ON() Conversion in kernel/cpu.c

this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.
Signed-off-by: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 8cd5283b
...@@ -223,8 +223,7 @@ int __devinit cpu_up(unsigned int cpu) ...@@ -223,8 +223,7 @@ int __devinit cpu_up(unsigned int cpu)
ret = __cpu_up(cpu); ret = __cpu_up(cpu);
if (ret != 0) if (ret != 0)
goto out_notify; goto out_notify;
if (!cpu_online(cpu)) BUG_ON(!cpu_online(cpu));
BUG();
/* Now call notifier in preparation. */ /* Now call notifier in preparation. */
notifier_call_chain(&cpu_chain, CPU_ONLINE, hcpu); notifier_call_chain(&cpu_chain, CPU_ONLINE, hcpu);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment