Changeset 80a3bd9 in mainline


Ignore:
Timestamp:
2009-07-07T21:11:38Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
925be4e
Parents:
8a81a73a
Message:

Initialize the Accessed and Dirty bits when the page hash table is used.

File:
1 edited

Legend:

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

    r8a81a73a r80a3bd9  
    193193                t->c = (flags & PAGE_CACHEABLE) != 0;
    194194                t->p = !(flags & PAGE_NOT_PRESENT);
     195                t->a = false;
     196                t->d = false;
    195197
    196198                t->as = as;
Note: See TracChangeset for help on using the changeset viewer.