diff options
author | alc <alc@FreeBSD.org> | 2004-09-19 02:39:31 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2004-09-19 02:39:31 +0000 |
commit | 78d7eda383c8601a0076d9fde2d78795be629740 (patch) | |
tree | 0382c086807834ebdfa20797a7c5d3421054b9c2 /sys/alpha | |
parent | 5e1860a66acc79d19b16cdd50ef72f39e140b3e8 (diff) | |
download | FreeBSD-src-78d7eda383c8601a0076d9fde2d78795be629740.zip FreeBSD-src-78d7eda383c8601a0076d9fde2d78795be629740.tar.gz |
Remove an outdated assertion from _pmap_allocpte(). (When vm_page_alloc()
succeeds, the page's queue field is unconditionally set to PQ_NONE by
vm_pageq_remove_nowakeup().)
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/alpha/pmap.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/alpha/alpha/pmap.c b/sys/alpha/alpha/pmap.c index 26861a2..7bf6174 100644 --- a/sys/alpha/alpha/pmap.c +++ b/sys/alpha/alpha/pmap.c @@ -1073,9 +1073,6 @@ _pmap_allocpte(pmap, ptepindex) if ((m->flags & PG_ZERO) == 0) pmap_zero_page(m); - KASSERT(m->queue == PQ_NONE, - ("_pmap_allocpte: %p->queue != PQ_NONE", m)); - /* * Increment the hold count for the page table page * (denoting a new mapping.) |