Changes in kernel/generic/src/smp/ipi.c [26d3ae2:df4ed85] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/smp/ipi.c
r26d3ae2 rdf4ed85 27 27 */ 28 28 29 /** @addtogroup generic 29 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 33 33 /** 34 34 * @file 35 * @brief 35 * @brief Generic IPI interface. 36 36 */ 37 37 38 38 #ifdef CONFIG_SMP 39 39 40 40 #include <smp/ipi.h> 41 41 #include <config.h> 42 42 43 43 44 /** Broadcast IPI message … … 48 49 * 49 50 * @bug The decision whether to actually send the IPI must be based 50 * 51 * 52 * 51 * on a different criterion. The current version has 52 * problems when some of the detected CPUs are marked 53 * disabled in machine configuration. 53 54 */ 54 55 void ipi_broadcast(int ipi) … … 59 60 * - if there is only one CPU but the kernel was compiled with CONFIG_SMP 60 61 */ 61 62 62 63 if ((config.cpu_active > 1) && (config.cpu_active == config.cpu_count)) 63 64 ipi_broadcast_arch(ipi);
Note:
See TracChangeset
for help on using the changeset viewer.