summaryrefslogtreecommitdiffstats
path: root/src/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/misc.C10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/kernel/misc.C b/src/kernel/misc.C
index 75f476187..d1ff0c45a 100644
--- a/src/kernel/misc.C
+++ b/src/kernel/misc.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2011,2017 */
+/* Contributors Listed Below - COPYRIGHT 2011,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -439,13 +439,11 @@ namespace KernelMisc
KERNEL_MAX_SUPPORTED_NODES; i++)
{
cpu_t* slave = CpuManager::getCpu(i);
-
if ((NULL != slave) && (slave != cpu))
{
- if (slave->winkled)
- {
- InterruptMsgHdlr::sendThreadWakeupMsg(i);
- }
+ uint64_t l_pir = slave->cpu;
+ printkd("Sending dbell to wakeup cpu:%d", (int)l_pir);
+ doorbell_send(l_pir);
}
}
};
OpenPOWER on IntegriCloud