Source-Changes-HG archive

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

[src/trunk]: src/sys/uvm/pmap Unwrap short line KASSERT



details:   https://anonhg.NetBSD.org/src/rev/961598125d5b
branches:  trunk
changeset: 942770:961598125d5b
user:      skrll <skrll%NetBSD.org@localhost>
date:      Wed Aug 19 06:08:27 2020 +0000

description:
Unwrap short line KASSERT

diffstat:

 sys/uvm/pmap/pmap_tlb.c |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 1a3496e97ef0 -r 961598125d5b sys/uvm/pmap/pmap_tlb.c
--- a/sys/uvm/pmap/pmap_tlb.c   Wed Aug 19 06:07:03 2020 +0000
+++ b/sys/uvm/pmap/pmap_tlb.c   Wed Aug 19 06:08:27 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap_tlb.c,v 1.37 2020/08/19 06:07:03 skrll Exp $      */
+/*     $NetBSD: pmap_tlb.c,v 1.38 2020/08/19 06:08:27 skrll Exp $      */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: pmap_tlb.c,v 1.37 2020/08/19 06:07:03 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap_tlb.c,v 1.38 2020/08/19 06:08:27 skrll Exp $");
 
 /*
  * Manages address spaces in a TLB.
@@ -551,8 +551,7 @@
 #endif
 
        KASSERT(cpu_intr_p());
-       KASSERTMSG(ci->ci_cpl >= IPL_SCHED,
-           "%s: cpl (%d) < IPL_SCHED (%d)",
+       KASSERTMSG(ci->ci_cpl >= IPL_SCHED, "%s: cpl (%d) < IPL_SCHED (%d)",
            __func__, ci->ci_cpl, IPL_SCHED);
 
        TLBINFO_LOCK(ti);



Home | Main Index | Thread Index | Old Index