diff options
| author | Alan Cox <alc@FreeBSD.org> | 2002-11-30 17:46:59 +0000 |
|---|---|---|
| committer | Alan Cox <alc@FreeBSD.org> | 2002-11-30 17:46:59 +0000 |
| commit | 0d51d232e5107bf978170478cec35b494ce2abbb (patch) | |
| tree | f3c99d4dc967dc570632ef374c81d5274876689b | |
| parent | ccda14e09fbe62d6af69a6a02f900d61de1fb113 (diff) | |
Notes
| -rw-r--r-- | sys/amd64/amd64/pmap.c | 2 | ||||
| -rw-r--r-- | sys/i386/i386/pmap.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c index 5906837374e4..6424880b5850 100644 --- a/sys/amd64/amd64/pmap.c +++ b/sys/amd64/amd64/pmap.c @@ -2867,7 +2867,7 @@ pmap_page_exists_quick(pmap, m) return FALSE; s = splvm(); - + mtx_assert(&vm_page_queue_mtx, MA_OWNED); TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) { if (pv->pv_pmap == pmap) { splx(s); diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c index 5906837374e4..6424880b5850 100644 --- a/sys/i386/i386/pmap.c +++ b/sys/i386/i386/pmap.c @@ -2867,7 +2867,7 @@ pmap_page_exists_quick(pmap, m) return FALSE; s = splvm(); - + mtx_assert(&vm_page_queue_mtx, MA_OWNED); TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) { if (pv->pv_pmap == pmap) { splx(s); |
