diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-06-05 18:24:41 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-06-05 18:24:41 +0000 |
commit | b9519d7a447c7c282a24de06b70db4f204ec6ab8 (patch) | |
tree | 7a90a4f1b2638bf912a7bf04eb9e0967f041f1ea | |
parent | b11ca4bc203aade138ee2578a7ac84661dcb5cb0 (diff) | |
download | FreeBSD-src-b9519d7a447c7c282a24de06b70db4f204ec6ab8.zip FreeBSD-src-b9519d7a447c7c282a24de06b70db4f204ec6ab8.tar.gz |
Correct a harmless typo introduced when copying code from mmu_oea64.
Submitted by: alc
MFC after: 8.1-RELEASE
-rw-r--r-- | sys/powerpc/aim/mmu_oea.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/aim/mmu_oea.c b/sys/powerpc/aim/mmu_oea.c index 373b17e..3d7845d 100644 --- a/sys/powerpc/aim/mmu_oea.c +++ b/sys/powerpc/aim/mmu_oea.c @@ -1786,7 +1786,7 @@ moea_remove_all(mmu_t mmu, vm_page_t m) PMAP_UNLOCK(pmap); } if ((m->flags & PG_WRITEABLE) && moea_is_modified(mmu, m)) { - moea_attr_clear(m, LPTE_CHG); + moea_attr_clear(m, PTE_CHG); vm_page_dirty(m); } vm_page_flag_clear(m, PG_WRITEABLE); |