Changeset 4edd57fd in mainline
- Timestamp:
- 2010-06-30T09:25:07Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6c49de
- Parents:
- 263bda2
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/smp/mps.c
r263bda2 r4edd57fd 85 85 /* 86 86 * FIXME: The current local APIC driver limits usable 87 * APICIDs to 8.87 * CPU IDs to 8. 88 88 * 89 89 */ 90 if ( get_cpu_apic_id(i)> 7)90 if (i > 7) 91 91 return false; 92 92 -
kernel/genarch/src/acpi/madt.c
r263bda2 r4edd57fd 95 95 /* 96 96 * FIXME: The current local APIC driver limits usable 97 * APICIDs to 8.97 * CPU IDs to 8. 98 98 * 99 99 */ 100 if ( madt_cpu_apic_id(i)> 7)100 if (i > 7) 101 101 return false; 102 102
Note:
See TracChangeset
for help on using the changeset viewer.