Changeset 7e4e532 in mainline for genarch/src/mm/page_ht.c


Ignore:
Timestamp:
2006-02-08T23:37:38Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
874878a
Parents:
bb68433
Message:

Reimplement ASID stealing logic.
This time, hopefully, with correct synchronization.

File:
1 edited

Legend:

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

    rbb68433 r7e4e532  
    170170
    171171        if (!hash_table_find(&page_ht, key)) {
    172                 t = (pte_t *) malloc(sizeof(pte_t));
     172                t = (pte_t *) malloc(sizeof(pte_t), FRAME_ATOMIC);
    173173                ASSERT(t != NULL);
    174174       
Note: See TracChangeset for help on using the changeset viewer.