Source-Changes-HG archive

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

[src/nathanw_sa]: src/sys/uvm L_INMEM, not P_INMEM.



details:   https://anonhg.NetBSD.org/src/rev/e6e3b374521c
branches:  nathanw_sa
changeset: 506358:e6e3b374521c
user:      nathanw <nathanw%NetBSD.org@localhost>
date:      Fri Oct 18 03:42:16 2002 +0000

description:
L_INMEM, not P_INMEM.

diffstat:

 sys/uvm/uvm_glue.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 2509ebf31bcb -r e6e3b374521c sys/uvm/uvm_glue.c
--- a/sys/uvm/uvm_glue.c        Fri Oct 18 03:36:05 2002 +0000
+++ b/sys/uvm/uvm_glue.c        Fri Oct 18 03:42:16 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uvm_glue.c,v 1.44.2.18 2002/10/18 02:45:58 nathanw Exp $       */
+/*     $NetBSD: uvm_glue.c,v 1.44.2.19 2002/10/18 03:42:16 nathanw Exp $       */
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -67,7 +67,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_glue.c,v 1.44.2.18 2002/10/18 02:45:58 nathanw Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_glue.c,v 1.44.2.19 2002/10/18 03:42:16 nathanw Exp $");
 
 #include "opt_kgdb.h"
 #include "opt_kstack.h"
@@ -353,7 +353,7 @@
 {
        vaddr_t va = (vaddr_t)l->l_addr;
 
-       l->l_flag &= ~P_INMEM;
+       l->l_flag &= ~L_INMEM;
        uvm_uarea_free(va);
        l->l_addr = NULL;
 }



Home | Main Index | Thread Index | Old Index