Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/arm32 Fix build after PV locking change



details:   https://anonhg.NetBSD.org/src/rev/5193fd2f0032
branches:  trunk
changeset: 930921:5193fd2f0032
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Apr 17 11:21:06 2020 +0000

description:
Fix build after PV locking change

diffstat:

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

diffs (27 lines):

diff -r f20d561177af -r 5193fd2f0032 sys/arch/arm/arm32/pmap.c
--- a/sys/arch/arm/arm32/pmap.c Fri Apr 17 10:35:06 2020 +0000
+++ b/sys/arch/arm/arm32/pmap.c Fri Apr 17 11:21:06 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.406 2020/04/17 08:17:06 skrll Exp $ */
+/*     $NetBSD: pmap.c,v 1.407 2020/04/17 11:21:06 skrll Exp $ */
 
 /*
  * Copyright 2003 Wasabi Systems, Inc.
@@ -198,7 +198,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.406 2020/04/17 08:17:06 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.407 2020/04/17 11:21:06 skrll Exp $");
 
 #include <sys/atomic.h>
 #include <sys/param.h>
@@ -2413,7 +2413,7 @@
                /*
                 * Kernel entries are unmanaged and as such not to be changed.
                 */
-               if (PV_IS_KENTRY_P(oflags))
+               if (PV_IS_KENTRY_P(oflags)) {
                        pv = SLIST_NEXT(pv, pv_link);
                        continue;
                }



Home | Main Index | Thread Index | Old Index