Changeset 3063d56 in mainline for kernel/arch/arm32/src/mm/as.c


Ignore:
Timestamp:
2009-12-07T22:39:58Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
63c4e28
Parents:
216cb85
Message:

Do not flush TLB every time a thread is scheduled. Flush TLB only when a new
address space is installed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mm/as.c

    r216cb85 r3063d56  
    3939#include <genarch/mm/asid_fifo.h>
    4040#include <mm/as.h>
     41#include <mm/tlb.h>
    4142#include <arch.h>
    4243
     
    5051}
    5152
     53void as_install_arch(as_t *as)
     54{
     55        tlb_invalidate_all();
     56}
     57
    5258/** @}
    5359 */
Note: See TracChangeset for help on using the changeset viewer.