Changeset cc205f1 in mainline for arch/mips32/include/mm/asid.h


Ignore:
Timestamp:
2005-10-06T12:45:22Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fd3c9e5
Parents:
bca1b47
Message:

Add mm/mapping1 test.
(Will not make it past TLB Invalid exception on mips32.)
Fixes in asid.c.
Make TLB register types union with u32 value.
Implement tlb_invalidate() for mips32.
(TLB invalidation and shootdown path will have to be revised.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/include/mm/asid.h

    rbca1b47 rcc205f1  
    3131
    3232#include <arch/types.h>
     33#include <typedefs.h>
     34
     35#define ASIDS           256
     36#define ASID_INVALID    0
     37#define ASID_START      1
    3338
    3439typedef __u8 asid_t;
     
    3641extern asid_t asid_get(void);
    3742extern void asid_put(asid_t asid);
     43extern bool asid_has_conflicts(asid_t asid);
    3844
    3945#endif
Note: See TracChangeset for help on using the changeset viewer.