diff options
| author | Alan Cox <alc@FreeBSD.org> | 2011-06-29 16:40:41 +0000 |
|---|---|---|
| committer | Alan Cox <alc@FreeBSD.org> | 2011-06-29 16:40:41 +0000 |
| commit | 6bbee8e28ac29f267af2a8e2a7d8bc33a93c7158 (patch) | |
| tree | bffb0499b364b344b9d5ddbae978932a240d3045 /sys/arm | |
| parent | b37e0f6e9acd612db80c6dade85adfd6aa0d76d0 (diff) | |
Notes
Diffstat (limited to 'sys/arm')
| -rw-r--r-- | sys/arm/arm/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arm/arm/pmap.c b/sys/arm/arm/pmap.c index cecf3638d95f..f68440200c52 100644 --- a/sys/arm/arm/pmap.c +++ b/sys/arm/arm/pmap.c @@ -3120,8 +3120,8 @@ pmap_remove_all(vm_page_t m) pmap_t curpm; int flags = 0; - KASSERT((m->flags & PG_FICTITIOUS) == 0, - ("pmap_remove_all: page %p is fictitious", m)); + KASSERT((m->flags & (PG_FICTITIOUS | PG_UNMANAGED)) == 0, + ("pmap_remove_all: page %p is not managed", m)); if (TAILQ_EMPTY(&m->md.pv_list)) return; vm_page_lock_queues(); |
