Changeset a1b9f63 in mainline for kernel/arch/ia32/src
- Timestamp:
- 2018-08-31T10:32:40Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6bf5b8c
- Parents:
- b1834a01
- git-author:
- Jakub Jermar <jakub@…> (2018-08-31 09:54:11)
- git-committer:
- Jakub Jermar <jakub@…> (2018-08-31 10:32:40)
- Location:
- kernel/arch/ia32/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/smp/smp.c
rb1834a01 ra1b9f63 76 76 if (config.cpu_count > 1) { 77 77 l_apic = (uint32_t *) km_map((uintptr_t) l_apic, PAGE_SIZE, 78 PAGE_ WRITE | PAGE_NOT_CACHEABLE);78 PAGE_SIZE, PAGE_WRITE | PAGE_NOT_CACHEABLE); 79 79 io_apic = (uint32_t *) km_map((uintptr_t) io_apic, PAGE_SIZE, 80 PAGE_ WRITE | PAGE_NOT_CACHEABLE);80 PAGE_SIZE, PAGE_WRITE | PAGE_NOT_CACHEABLE); 81 81 } 82 82 } -
kernel/arch/ia32/src/vreg.c
rb1834a01 ra1b9f63 67 67 panic("Cannot allocate VREG frame."); 68 68 69 page = (uint32_t *) km_map(frame, PAGE_SIZE, 69 page = (uint32_t *) km_map(frame, PAGE_SIZE, PAGE_SIZE, 70 70 PAGE_READ | PAGE_WRITE | PAGE_USER | PAGE_CACHEABLE); 71 71
Note:
See TracChangeset
for help on using the changeset viewer.