diff options
author | Mikael Starvik <mikael.starvik@axis.com> | 2005-07-27 14:44:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 19:26:00 -0400 |
commit | 4f18cfbf0990bfc2e8e7706eeb9e5bef898ae923 (patch) | |
tree | b6bd033aac034e5d3cb83be8efb03506135866b2 /include/asm-cris/arch-v10 | |
parent | 7cf32cad153d63ac4f6f2d5dd16ddd32ad72d578 (diff) |
[PATCH] CRIS update: mm
Memory management patches.
* SMP support.
* Non-executable stack (on v32).
* 4-level page tables.
* Added simple Thread Local Storage support.
Signed-off-by: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-cris/arch-v10')
-rw-r--r-- | include/asm-cris/arch-v10/mmu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-cris/arch-v10/mmu.h b/include/asm-cris/arch-v10/mmu.h index d18aa00e50bc..df84f1716e6b 100644 --- a/include/asm-cris/arch-v10/mmu.h +++ b/include/asm-cris/arch-v10/mmu.h | |||
@@ -7,7 +7,10 @@ | |||
7 | 7 | ||
8 | /* type used in struct mm to couple an MMU context to an active mm */ | 8 | /* type used in struct mm to couple an MMU context to an active mm */ |
9 | 9 | ||
10 | typedef unsigned int mm_context_t; | 10 | typedef struct |
11 | { | ||
12 | unsigned int page_id; | ||
13 | } mm_context_t; | ||
11 | 14 | ||
12 | /* kernel memory segments */ | 15 | /* kernel memory segments */ |
13 | 16 | ||