Changeset 9b9e385 in mainline for genarch/src/mm/as_ht.c


Ignore:
Timestamp:
2006-02-05T16:08:27Z (19 years ago)
Author:
Sergey Bondari <bondari@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
266294a9
Parents:
328e0d3
Message:

frame_alloc() functions variations in order to avoid problems with frame_alloc_generic() changes.
IMPORTANT: Parameter order for frame_alloc() was changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • genarch/src/mm/as_ht.c

    r328e0d3 r9b9e385  
    5454{
    5555        if (!page_ht) {
    56                 page_ht = (pte_t *) frame_alloc(FRAME_KA | FRAME_PANIC, HT_WIDTH - FRAME_WIDTH, NULL, NULL);
     56                page_ht = (pte_t *) frame_alloc(HT_WIDTH - FRAME_WIDTH, FRAME_KA | FRAME_PANIC);
    5757                memsetb((__address) page_ht, HT_SIZE, 0);
    5858        }
Note: See TracChangeset for help on using the changeset viewer.