summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_fault.c
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1997-05-19 14:36:56 +0000
committerdfr <dfr@FreeBSD.org>1997-05-19 14:36:56 +0000
commitd7e320b30e346cf2c6e56f2137bd257b8f8278e7 (patch)
treeafc51a58d727816c7b373ca2288b232ae4d5dd97 /sys/vm/vm_fault.c
parent9d3c1b4d788c8e5f07a10319b51b2125f3731f85 (diff)
downloadFreeBSD-src-d7e320b30e346cf2c6e56f2137bd257b8f8278e7.zip
FreeBSD-src-d7e320b30e346cf2c6e56f2137bd257b8f8278e7.tar.gz
Fix a few bugs with NFS and mmap caused by NFS' use of b_validoff
and b_validend. The changes to vfs_bio.c are a bit ugly but hopefully can be tidied up later by a slight redesign. PR: kern/2573, kern/2754, kern/3046 (possibly) Reviewed by: dyson
Diffstat (limited to 'sys/vm/vm_fault.c')
-rw-r--r--sys/vm/vm_fault.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index c96c42a..c138ff2 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -66,7 +66,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_fault.c,v 1.67 1997/04/06 02:29:41 dyson Exp $
+ * $Id: vm_fault.c,v 1.68 1997/04/06 16:16:11 peter Exp $
*/
/*
@@ -326,7 +326,7 @@ RetryFault:;
m->flags |= PG_BUSY;
- if (m->valid &&
+ if (/*m->valid && */
((m->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) &&
m->object != kernel_object && m->object != kmem_object) {
goto readrest;
OpenPOWER on IntegriCloud