[TCP]: Add Scalable TCP congestion control module.
[linux-2.6/verdex.git] / include / asm-v850 / mmu.h
blobe30a52becfd67e6f0145f04bfe97222784d25562
1 /* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
3 #ifndef __V850_MMU_H__
4 #define __V850_MMU_H__
6 struct mm_rblock_struct {
7 int size;
8 int refcount;
9 void *kblock;
12 struct mm_tblock_struct {
13 struct mm_rblock_struct *rblock;
14 struct mm_tblock_struct *next;
17 typedef struct {
18 struct mm_tblock_struct tblock;
19 unsigned long end_brk;
20 } mm_context_t;
22 #endif /* __V850_MMU_H__ */