From: James S. <jsi...@us...> - 2002-01-28 18:30:36
|
Update of /cvsroot/linux-mips/linux/arch/mips/mm In directory usw-pr-cvs1:/tmp/cvs-serv25211 Modified Files: fault.c Log Message: Fix address of lower boundary of vmalloc address space. Index: fault.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/mm/fault.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- fault.c 2001/12/07 19:28:37 1.8 +++ fault.c 2002/01/28 18:30:33 1.9 @@ -89,7 +89,7 @@ * only copy the information from the master page table, * nothing more. */ - if (address >= TASK_SIZE) + if (address >= VMALLOC_START) goto vmalloc_fault; info.si_code = SEGV_MAPERR; |