Module Name:    src
Committed By:   he
Date:           Sun Oct 25 09:25:10 UTC 2009

Modified Files:
        src/sys/arch/vax/vax: pmap.c

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


To generate a diff of this commit:
cvs rdiff -u -r1.169 -r1.170 src/sys/arch/vax/vax/pmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/vax/vax/pmap.c
diff -u src/sys/arch/vax/vax/pmap.c:1.169 src/sys/arch/vax/vax/pmap.c:1.170
--- src/sys/arch/vax/vax/pmap.c:1.169	Wed Oct 21 21:12:04 2009
+++ src/sys/arch/vax/vax/pmap.c	Sun Oct 25 09:25:10 2009
@@ -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))

Reply via email to