Changeset 95c675b in mainline for kernel/arch/sparc64/src/smp/sun4u/ipi.c
- Timestamp:
- 2017-10-17T13:11:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/smp/sun4u/ipi.c
rdbf32b1 r95c675b 35 35 #include <smp/ipi.h> 36 36 #include <arch/smp/sun4u/ipi.h> 37 #include <assert.h> 37 38 #include <cpu.h> 38 39 #include <arch.h> … … 103 104 panic("Interrupt Dispatch Status busy bit set\n"); 104 105 105 ASSERT(!(pstate_read() & PSTATE_IE_BIT));106 assert(!(pstate_read() & PSTATE_IE_BIT)); 106 107 107 108 do { … … 185 186 void ipi_unicast_arch(unsigned int cpu_id, int ipi) 186 187 { 187 ASSERT(&cpus[cpu_id] != CPU);188 assert(&cpus[cpu_id] != CPU); 188 189 189 190 if (ipi == IPI_SMP_CALL) {
Note:
See TracChangeset
for help on using the changeset viewer.