summaryrefslogtreecommitdiffstats
path: root/sys/powerpc/aim
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2013-05-21 20:38:19 +0000
committerattilio <attilio@FreeBSD.org>2013-05-21 20:38:19 +0000
commitfdf82ef9cfb84888e76e303fe6c9ee30fbc21d1e (patch)
tree24458ef5e2585280bf95280f83f977fde60faeaa /sys/powerpc/aim
parent05bd8275f3829e7d1f55e8faabd64095eab3c291 (diff)
downloadFreeBSD-src-fdf82ef9cfb84888e76e303fe6c9ee30fbc21d1e.zip
FreeBSD-src-fdf82ef9cfb84888e76e303fe6c9ee30fbc21d1e.tar.gz
o Relax locking assertions for vm_page_find_least()
o Relax locking assertions for pmap_enter_object() and add them also to architectures that currently don't have any o Introduce VM_OBJECT_LOCK_DOWNGRADE() which is basically a downgrade operation on the per-object rwlock o Use all the mechanisms above to make vm_map_pmap_enter() to work mostl of the times only with readlocks. Sponsored by: EMC / Isilon storage division Reviewed by: alc
Diffstat (limited to 'sys/powerpc/aim')
-rw-r--r--sys/powerpc/aim/mmu_oea.c2
-rw-r--r--sys/powerpc/aim/mmu_oea64.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/powerpc/aim/mmu_oea.c b/sys/powerpc/aim/mmu_oea.c
index 3c024de..17dcf66 100644
--- a/sys/powerpc/aim/mmu_oea.c
+++ b/sys/powerpc/aim/mmu_oea.c
@@ -1217,6 +1217,8 @@ moea_enter_object(mmu_t mmu, pmap_t pm, vm_offset_t start, vm_offset_t end,
vm_page_t m;
vm_pindex_t diff, psize;
+ VM_OBJECT_ASSERT_LOCKED(m_start->object);
+
psize = atop(end - start);
m = m_start;
rw_wlock(&pvh_global_lock);
diff --git a/sys/powerpc/aim/mmu_oea64.c b/sys/powerpc/aim/mmu_oea64.c
index 709501b..df91892 100644
--- a/sys/powerpc/aim/mmu_oea64.c
+++ b/sys/powerpc/aim/mmu_oea64.c
@@ -1360,6 +1360,8 @@ moea64_enter_object(mmu_t mmu, pmap_t pm, vm_offset_t start, vm_offset_t end,
vm_page_t m;
vm_pindex_t diff, psize;
+ VM_OBJECT_ASSERT_LOCKED(m_start->object);
+
psize = atop(end - start);
m = m_start;
while (m != NULL && (diff = m->pindex - m_start->pindex) < psize) {
OpenPOWER on IntegriCloud