Module Name: src Committed By: matt Date: Fri Feb 10 08:15:58 UTC 2012
Modified Files: src/sys/arch/mips/mips [matt-nb5-mips64]: pmap.c Log Message: Fix typo. To generate a diff of this commit: cvs rdiff -u -r1.179.16.38 -r1.179.16.39 src/sys/arch/mips/mips/pmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/mips/mips/pmap.c diff -u src/sys/arch/mips/mips/pmap.c:1.179.16.38 src/sys/arch/mips/mips/pmap.c:1.179.16.39 --- src/sys/arch/mips/mips/pmap.c:1.179.16.38 Fri Feb 10 07:19:44 2012 +++ src/sys/arch/mips/mips/pmap.c Fri Feb 10 08:15:58 2012 @@ -1840,7 +1840,7 @@ pmap_extract(pmap_t pmap, vaddr_t va, pa } #elif defined(ENABLE_MIPS_KSEGX) if (VM_KSEGX_ADDRESS <= va - && va < VM_KSEGX_ADDRESS + VM_KSEGX_SIZE) + && va < VM_KSEGX_ADDRESS + VM_KSEGX_SIZE) { pa = mips_ksegx_start + va - VM_KSEGX_ADDRESS; goto done; }