[xtensa-cvscommit] linux/include/asm-xtensa pgtable.h,1.1.1.1,1.2
Brought to you by:
zankel
|
From: <jgr...@us...> - 2002-09-12 18:14:14
|
Update of /cvsroot/xtensa/linux/include/asm-xtensa In directory usw-pr-cvs1:/tmp/cvs-serv6017/include/asm-xtensa Modified Files: pgtable.h Log Message: Move vmalloc memory to 0xC0000000 so modules can call kernel code. Index: pgtable.h =================================================================== RCS file: /cvsroot/xtensa/linux/include/asm-xtensa/pgtable.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** pgtable.h 28 Aug 2002 16:11:31 -0000 1.1.1.1 --- pgtable.h 12 Sep 2002 18:14:11 -0000 1.2 *************** *** 86,92 **** #define FIRST_USER_PGD_NR 0 ! #define VMALLOC_START 0xB0010000 #define VMALLOC_VMADDR(x) ((unsigned long)(x)) ! #define VMALLOC_END 0xBFFF0000 /* Xtensa Linux config PTE layout: --- 86,102 ---- #define FIRST_USER_PGD_NR 0 ! /* ! * XTFIXME: The CHAL should provide memory-map info on local memories and ! * XLMI ports that are identity mapped. They are typically located just ! * below the kernel space at 0xD0000000, and they are relatively small ! * (today). We want to verify (with #error directives), however, that ! * these memory-mapped processor features do not overlap the VMALLOC space ! * we define here. [Sep 11, 2002] ! */ ! ! /* 0xC0000000-0xC8000000 reserved for vmalloc; below allows guard memory */ ! #define VMALLOC_START 0xC0010000 #define VMALLOC_VMADDR(x) ((unsigned long)(x)) ! #define VMALLOC_END 0xC7FF0000 /* Xtensa Linux config PTE layout: |