ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / include / mem.h
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __MEM_H__
7 #define __MEM_H__
8
9 struct vm_reserved {
10         struct list_head list;
11         unsigned long start;
12         unsigned long end;
13 };
14
15 extern void set_usable_vm(unsigned long start, unsigned long end);
16 extern void set_kmem_end(unsigned long new);
17
18 #endif
19
20 /*
21  * Overrides for Emacs so that we follow Linus's tabbing style.
22  * Emacs will notice this stuff at the end of the file and automatically
23  * adjust the settings for this buffer only.  This must remain at the end
24  * of the file.
25  * ---------------------------------------------------------------------------
26  * Local variables:
27  * c-file-style: "linux"
28  * End:
29  */