Module Name:    src
Committed By:   martin
Date:           Sun Aug  9 13:15:05 UTC 2009

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

Log Message:
Fix misplaced #endif, from Henning Petersen in PR port-sparc64/41856


To generate a diff of this commit:
cvs rdiff -u -r1.236 -r1.237 src/sys/arch/sparc64/sparc64/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/sparc64/sparc64/pmap.c
diff -u src/sys/arch/sparc64/sparc64/pmap.c:1.236 src/sys/arch/sparc64/sparc64/pmap.c:1.237
--- src/sys/arch/sparc64/sparc64/pmap.c:1.236	Tue Apr 21 21:30:00 2009
+++ src/sys/arch/sparc64/sparc64/pmap.c	Sun Aug  9 13:15:05 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.236 2009/04/21 21:30:00 cegger Exp $	*/
+/*	$NetBSD: pmap.c,v 1.237 2009/08/09 13:15:05 martin Exp $	*/
 /*
  *
  * Copyright (C) 1996-1999 Eduardo Horvath.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.236 2009/04/21 21:30:00 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.237 2009/08/09 13:15:05 martin Exp $");
 
 #undef	NO_VCACHE /* Don't forget the locked TLB in dostart */
 #define	HWREF
@@ -2687,9 +2687,9 @@
 		if (res)
 			pv->pv_va |= PV_WE;
 #endif
-#endif
 		mutex_exit(&pmap_lock);
 	}
+#endif
 
 	DPRINTF(PDB_CHANGEPROT|PDB_REF, ("pmap_is_modified(%p) = %d\n", pg,
 	    res));

Reply via email to