Changeset 4edd57fd in mainline for kernel/arch/ia32/src/smp/mps.c


Ignore:
Timestamp:
2010-06-30T09:25:07Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c6c49de
Parents:
263bda2
Message:

the limit in the APIC driver is on CPU ids, not APIC ids
(however, I believe that there is still some unfortunate change of even a deeper confusion somewhere ..)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/smp/mps.c

    r263bda2 r4edd57fd  
    8585        /*
    8686         * FIXME: The current local APIC driver limits usable
    87          * APIC IDs to 8.
     87         * CPU IDs to 8.
    8888         *
    8989         */
    90         if (get_cpu_apic_id(i) > 7)
     90        if (i > 7)
    9191                return false;
    9292       
Note: See TracChangeset for help on using the changeset viewer.