Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/uvm make sure 'wide' fault handling is actually done onl...



details:   https://anonhg.NetBSD.org/src/rev/f2402065bce4
branches:  trunk
changeset: 474770:f2402065bce4
user:      cgd <cgd%NetBSD.org@localhost>
date:      Mon Jul 19 19:02:22 1999 +0000

description:
make sure 'wide' fault handling is actually done only once per fault.
('narrow' was mistakenly set to FALSE instead of TRUE.)  Committed after
discussion with chuq.

diffstat:

 sys/uvm/uvm_fault.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r f3fb6d542242 -r f2402065bce4 sys/uvm/uvm_fault.c
--- a/sys/uvm/uvm_fault.c       Mon Jul 19 18:37:19 1999 +0000
+++ b/sys/uvm/uvm_fault.c       Mon Jul 19 19:02:22 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_fault.c,v 1.42 1999/07/11 17:47:12 thorpej Exp $   */
+/*     $NetBSD: uvm_fault.c,v 1.43 1999/07/19 19:02:22 cgd Exp $       */
 
 /*
  *
@@ -725,7 +725,7 @@
                npages = nback + nforw + 1;
                centeridx = nback;
 
-               narrow = FALSE; /* ensure only once per-fault */
+               narrow = TRUE;  /* ensure only once per-fault */
 
        } else {
                



Home | Main Index | Thread Index | Old Index