diff options
| author | Alan Cox <alc@FreeBSD.org> | 2002-12-28 00:19:40 +0000 |
|---|---|---|
| committer | Alan Cox <alc@FreeBSD.org> | 2002-12-28 00:19:40 +0000 |
| commit | 84cdcd85a03610d9a3113fbbc3a89da4e4298246 (patch) | |
| tree | d0265b6ca2299035259af0e248cbc2828a25c296 /sys | |
| parent | 35c016315f153b63976155d91df01897a8908a85 (diff) | |
Notes
Diffstat (limited to 'sys')
| -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 5a54365d7699..f9f102c20e9d 100644 --- a/sys/amd64/amd64/pmap.c +++ b/sys/amd64/amd64/pmap.c @@ -3007,7 +3007,7 @@ pmap_testbit(m, bit) return FALSE; s = splvm(); - + mtx_assert(&vm_page_queue_mtx, MA_OWNED); TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) { /* * if the bit being tested is the modified bit, then diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c index 5a54365d7699..f9f102c20e9d 100644 --- a/sys/i386/i386/pmap.c +++ b/sys/i386/i386/pmap.c @@ -3007,7 +3007,7 @@ pmap_testbit(m, bit) return FALSE; s = splvm(); - + mtx_assert(&vm_page_queue_mtx, MA_OWNED); TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) { /* * if the bit being tested is the modified bit, then |
