diff options
author | alc <alc@FreeBSD.org> | 2008-03-29 04:29:50 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2008-03-29 04:29:50 +0000 |
commit | fe959556c5ffd74a2ddc5bc267e852972cdd8e65 (patch) | |
tree | 20750c470bbfb224a347202a60e08b6f3fe65f6c | |
parent | 834e2b5e85c714f14867db5b5ff48321a9c09573 (diff) | |
download | FreeBSD-src-fe959556c5ffd74a2ddc5bc267e852972cdd8e65.zip FreeBSD-src-fe959556c5ffd74a2ddc5bc267e852972cdd8e65.tar.gz |
Eliminate an #if 0/#endif that was unintentionally introduced
by the previous revision.
-rw-r--r-- | sys/i386/i386/pmap.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c index 2176f0a..567363a 100644 --- a/sys/i386/i386/pmap.c +++ b/sys/i386/i386/pmap.c @@ -2627,10 +2627,8 @@ pmap_remove_all(vm_page_t m) vm_offset_t va; vm_page_t free; -#if 0 KASSERT((m->flags & PG_FICTITIOUS) == 0, ("pmap_remove_all: page %p is fictitious", m)); -#endif mtx_assert(&vm_page_queue_mtx, MA_OWNED); sched_pin(); pvh = pa_to_pvh(VM_PAGE_TO_PHYS(m)); |