Changeset 74df77d in mainline for arch/ia32/src/mm/page.c
- Timestamp:
- 2005-06-10T16:18:43Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 87cd61f
- Parents:
- 18e0a6c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/mm/page.c
r18e0a6c r74df77d 61 61 62 62 /* 63 * Identity mapping for all but 0th page.64 * PA2KA(identity) mapping for all but 0th page.63 * Identity mapping for all frames. 64 * PA2KA(identity) mapping for all frames. 65 65 */ 66 for (i = 1; i < frames; i++) {66 for (i = 0; i < frames; i++) { 67 67 map_page_to_frame(i * PAGE_SIZE, i * PAGE_SIZE, PAGE_CACHEABLE, KA2PA(dba)); 68 68 map_page_to_frame(PA2KA(i * PAGE_SIZE), i * PAGE_SIZE, PAGE_CACHEABLE, KA2PA(dba));
Note:
See TracChangeset
for help on using the changeset viewer.