ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-m68knommu / mmu.h
1 #ifndef __M68KNOMMU_MMU_H
2 #define __M68KNOMMU_MMU_H
3
4 /* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
5
6 struct mm_rblock_struct {
7         int     size;
8         int     refcount;
9         void    *kblock;
10 };
11
12 struct mm_tblock_struct {
13         struct mm_rblock_struct *rblock;
14         struct mm_tblock_struct *next;
15 };
16
17 typedef struct {
18         struct mm_tblock_struct tblock;
19         unsigned long           end_brk;
20 } mm_context_t;
21
22 #endif /* __M68KNOMMU_MMU_H */