Changeset 39539da in mainline for arch/amd64/src/mm/page.c


Ignore:
Timestamp:
2005-11-21T22:15:05Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8cd20b70
Parents:
db79676
Message:

Rename map_page_to_frame() to page_mapping_insert() and find_mapping() to page_mapping_find().
New names should make it more apparent that these two belong together.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/mm/page.c

    rdb79676 r39539da  
    5454                 */
    5555                for (i = 0; i < config.memory_size/FRAME_SIZE; i++) {
    56                         map_page_to_frame(PA2KA(i * PAGE_SIZE), i * PAGE_SIZE, PAGE_CACHEABLE | PAGE_EXEC, KA2PA(dba));
     56                        page_mapping_insert(PA2KA(i * PAGE_SIZE), i * PAGE_SIZE, PAGE_CACHEABLE | PAGE_EXEC, KA2PA(dba));
    5757                }
    5858
Note: See TracChangeset for help on using the changeset viewer.