diff options
author | Mikael Starvik <mikael.starvik@axis.com> | 2005-07-27 11:44:39 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 16:26:00 -0700 |
commit | 4f18cfbf0990bfc2e8e7706eeb9e5bef898ae923 (patch) | |
tree | b6bd033aac034e5d3cb83be8efb03506135866b2 /include | |
parent | 7cf32cad153d63ac4f6f2d5dd16ddd32ad72d578 (diff) | |
download | blackbird-obmc-linux-4f18cfbf0990bfc2e8e7706eeb9e5bef898ae923.tar.gz blackbird-obmc-linux-4f18cfbf0990bfc2e8e7706eeb9e5bef898ae923.zip |
[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')
-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 @@ /* type used in struct mm to couple an MMU context to an active mm */ -typedef unsigned int mm_context_t; +typedef struct +{ + unsigned int page_id; +} mm_context_t; /* kernel memory segments */ |