Changeset 68965ec5 in mainline for arch/ppc32/src/mm/tlb.c


Ignore:
Timestamp:
2006-05-14T15:26:47Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7c23af9
Parents:
b1b723e
Message:

ppc32: TLB manipulation stub

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/src/mm/tlb.c

    rb1b723e r68965ec5  
    233233
    234234
     235void tlb_invalidate_all(void)
     236{
     237        ipl_t ipl;
     238
     239        ipl = interrupts_disable();
     240        memsetb((__address) phte, 1 << PHT_BITS, 0);
     241        interrupts_restore(ipl);
     242}
     243
     244
    235245/** Print contents of Page Hash Table. */
    236246void tlb_print(void)
Note: See TracChangeset for help on using the changeset viewer.