Ignore:
File:
1 edited

Legend:

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

    rde73242 rc868e2d  
    4545#include <typedefs.h>
    4646#include <arch/asm.h>
    47 #include <arch/barrier.h>
    4847#include <synch/spinlock.h>
    4948#include <arch.h>
     
    208207                pte->page = ALIGN_DOWN(page, PAGE_SIZE);
    209208                pte->frame = ALIGN_DOWN(frame, FRAME_SIZE);
    210 
    211                 /*
    212                  * Make sure that a concurrent ht_mapping_find() will see the
    213                  * new entry only after it is fully initialized.
    214                  */
    215                 write_barrier();
    216209               
    217210                hash_table_insert(&page_ht, key, &pte->link);
Note: See TracChangeset for help on using the changeset viewer.