Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/smp/ipi.c

    rfe32163 r26d3ae2  
    4747 * @param ipi Message to broadcast.
    4848 *
     49 * @bug The decision whether to actually send the IPI must be based
     50 *      on a different criterion. The current version has
     51 *      problems when some of the detected CPUs are marked
     52 *      disabled in machine configuration.
    4953 */
    5054void ipi_broadcast(int ipi)
     
    5660         */
    5761       
    58         if (config.cpu_count > 1)
     62        if ((config.cpu_active > 1) && (config.cpu_active == config.cpu_count))
    5963                ipi_broadcast_arch(ipi);
    6064}
Note: See TracChangeset for help on using the changeset viewer.