summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/alpha/alpha/pmap.c3
-rw-r--r--sys/amd64/amd64/pmap.c3
-rw-r--r--sys/i386/i386/pmap.c3
3 files changed, 0 insertions, 9 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.)
diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c
index eef5b72..35bd99f 100644
--- a/sys/amd64/amd64/pmap.c
+++ b/sys/amd64/amd64/pmap.c
@@ -1134,9 +1134,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.)
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c
index e363da1..dc524f5 100644
--- a/sys/i386/i386/pmap.c
+++ b/sys/i386/i386/pmap.c
@@ -1199,9 +1199,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.)
OpenPOWER on IntegriCloud