Changeset 4edd57fd in mainline


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 ..)

Location:
kernel
Files:
2 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       
  • kernel/genarch/src/acpi/madt.c

    r263bda2 r4edd57fd  
    9595        /*
    9696         * FIXME: The current local APIC driver limits usable
    97          * APIC IDs to 8.
     97         * CPU IDs to 8.
    9898         *
    9999         */
    100         if (madt_cpu_apic_id(i) > 7)
     100        if (i > 7)
    101101                return false;
    102102       
Note: See TracChangeset for help on using the changeset viewer.