1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

disable IPIs to wakeup cores

because the halt state is only used to shutdown the system
This commit is contained in:
Stefan Lankes 2016-03-06 13:22:48 +01:00
parent cf1dc59240
commit e1bf63d863

View file

@ -412,8 +412,10 @@ out:
if (ret)
kfree(stack);
#if 0
if (core_id != CORE_ID)
apic_send_ipi(core_id, 121);
#endif
return ret;
}
@ -511,8 +513,10 @@ out:
kfree(counter);
}
#if 0
if (core_id != CORE_ID)
apic_send_ipi(core_id, 121);
#endif
return ret;
}