From: James S. <jsi...@us...> - 2001-10-11 18:19:10
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv21694 Modified Files: head.S Log Message: Ralph missed a change for current_pgd. Will submit patch to him. Index: head.S =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/head.S,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- head.S 2001/10/09 21:37:55 1.7 +++ head.S 2001/10/11 18:19:06 1.8 @@ -105,7 +105,7 @@ .set mips3 mfc0 k0, CP0_BADVADDR # Get faulting address srl k0, k0, 22 # get pgd only bits - lw k1, current_pgd # get pgd pointer + lw k1, pgd_current # get pgd pointer sll k0, k0, 2 addu k1, k1, k0 # add in pgd offset mfc0 k0, CP0_CONTEXT # get context reg |