diff options
author | dg <dg@FreeBSD.org> | 1994-08-07 14:53:27 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-07 14:53:27 +0000 |
commit | 5f96899afd71cd76db4e154abb60bdfa6bd25637 (patch) | |
tree | 0ee6f6ce06328a7477a4948e22cc320188d1456b /sys/kern/vfs_bio.c | |
parent | 81dc370a9d5a2ec97a413123079d94be91110fbe (diff) | |
download | FreeBSD-src-5f96899afd71cd76db4e154abb60bdfa6bd25637.zip FreeBSD-src-5f96899afd71cd76db4e154abb60bdfa6bd25637.tar.gz |
Made pmap_kenter "TLB safe". ...and then removed all the pmap_updates that
are no longer needed because of this.
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r-- | sys/kern/vfs_bio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 31f43ee..61a3476 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: vfs_bio.c,v 1.5 1994/08/04 19:43:13 davidg Exp $ + * $Id: vfs_bio.c,v 1.6 1994/08/06 09:15:28 davidg Exp $ */ #include <sys/param.h> @@ -692,7 +692,6 @@ vm_hold_load_pages(vm_offset_t froma, vm_offset_t toa) { vm_page_wire(p); pmap_kenter( pg, VM_PAGE_TO_PHYS(p)); } - pmap_update(); } void @@ -707,7 +706,6 @@ vm_hold_free_pages(vm_offset_t froma, vm_offset_t toa) { pmap_kremove( pg); vm_page_free(p); } - pmap_update(); } void |