Changeset 7cb567cd in mainline for kernel/arch/ia32/src/smp/smp.c
- Timestamp:
- 2007-04-08T20:52:53Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e5dbbe5
- Parents:
- 328f324b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/smp/smp.c
r328f324b r7cb567cd 83 83 if (config.cpu_count > 1) { 84 84 page_mapping_insert(AS_KERNEL, l_apic_address, (uintptr_t) l_apic, 85 PAGE_NOT_CACHEABLE );85 PAGE_NOT_CACHEABLE | PAGE_WRITE); 86 86 page_mapping_insert(AS_KERNEL, io_apic_address, (uintptr_t) io_apic, 87 PAGE_NOT_CACHEABLE );87 PAGE_NOT_CACHEABLE | PAGE_WRITE); 88 88 89 89 l_apic = (uint32_t *) l_apic_address; 90 90 io_apic = (uint32_t *) io_apic_address; 91 91 } 92 92 } 93 93
Note:
See TracChangeset
for help on using the changeset viewer.