repo.or.cz
/
linux-2.6.9-moxart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git]
/
include
/
asm-arm
/
arch-moxacpu
/
vmalloc.h
blob
3167c93f1f4d4e05fadc94b9b3a5bc06d18969bf
1
#ifndef _VMALLOC_H_
2
#define _VMALLOC_H_
3
4
#define VMALLOC_OFFSET (8*1024*1024)
5
#define VMALLOC_START (((unsigned long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
6
#define VMALLOC_VMADDR(x) ((unsigned long)(x))
7
#define VMALLOC_END (PAGE_OFFSET + 0x10000000)
8
9
#endif