summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_kern.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2002-08-10 07:11:16 +0000
committeralc <alc@FreeBSD.org>2002-08-10 07:11:16 +0000
commit5b6c90a737ecc7cff2ca8c7bdd1568dff940bd24 (patch)
treea6dcbf7e86151d377b197cd262f59d3673ac732e /sys/vm/vm_kern.c
parente2c33f00df09e37c682b64837ebac6f07e9fb612 (diff)
downloadFreeBSD-src-5b6c90a737ecc7cff2ca8c7bdd1568dff940bd24.zip
FreeBSD-src-5b6c90a737ecc7cff2ca8c7bdd1568dff940bd24.tar.gz
o Remove the setting and clearing of the PG_MAPPED flag. (This flag is
obsolete.)
Diffstat (limited to 'sys/vm/vm_kern.c')
-rw-r--r--sys/vm/vm_kern.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index 5fe1b1e..f6fa55a 100644
--- a/sys/vm/vm_kern.c
+++ b/sys/vm/vm_kern.c
@@ -429,7 +429,7 @@ retry:
* Because this is kernel_pmap, this call will not block.
*/
pmap_enter(kernel_pmap, addr + i, m, VM_PROT_ALL, 1);
- vm_page_flag_set(m, PG_MAPPED | PG_WRITEABLE | PG_REFERENCED);
+ vm_page_flag_set(m, PG_WRITEABLE | PG_REFERENCED);
}
vm_map_unlock(map);
OpenPOWER on IntegriCloud