Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/vax Correct the previous by adding an obviously...



details:   https://anonhg.NetBSD.org/src/rev/3e6a46ad3030
branches:  trunk
changeset: 748484:3e6a46ad3030
user:      he <he%NetBSD.org@localhost>
date:      Sun Oct 25 09:25:10 2009 +0000

description:
Correct the previous by adding an obviously overlooked
"struct pmap *pm" argument declaration to pmap_vax_swappable().

diffstat:

 sys/arch/vax/vax/pmap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 96ddfbf47100 -r 3e6a46ad3030 sys/arch/vax/vax/pmap.c
--- a/sys/arch/vax/vax/pmap.c   Sun Oct 25 04:42:16 2009 +0000
+++ b/sys/arch/vax/vax/pmap.c   Sun Oct 25 09:25:10 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.169 2009/10/21 21:12:04 rmind Exp $    */
+/*     $NetBSD: pmap.c,v 1.170 2009/10/25 09:25:10 he Exp $       */
 /*
  * Copyright (c) 1994, 1998, 1999, 2003 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.169 2009/10/21 21:12:04 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.170 2009/10/25 09:25:10 he Exp $");
 
 #include "opt_ddb.h"
 #include "opt_cputype.h"
@@ -680,7 +680,7 @@
  */
 
 static inline bool
-pmap_vax_swappable(struct lwp *l)
+pmap_vax_swappable(struct lwp *l, struct pmap *pm)
 {
 
        if (l->l_flag & (LW_SYSTEM | LW_WEXIT))



Home | Main Index | Thread Index | Old Index