Module Name: src Committed By: thorpej Date: Sat Mar 7 18:49:49 UTC 2020
Modified Files: src/sys/arch/mips/mips: trap.c Log Message: Add missing newline to a diagnostic printf. To generate a diff of this commit: cvs rdiff -u -r1.249 -r1.250 src/sys/arch/mips/mips/trap.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/mips/mips/trap.c diff -u src/sys/arch/mips/mips/trap.c:1.249 src/sys/arch/mips/mips/trap.c:1.250 --- src/sys/arch/mips/mips/trap.c:1.249 Sat Apr 6 11:54:20 2019 +++ src/sys/arch/mips/mips/trap.c Sat Mar 7 18:49:49 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: trap.c,v 1.249 2019/04/06 11:54:20 kamil Exp $ */ +/* $NetBSD: trap.c,v 1.250 2020/03/07 18:49:49 thorpej Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -39,7 +39,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.249 2019/04/06 11:54:20 kamil Exp $"); +__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.250 2020/03/07 18:49:49 thorpej Exp $"); #include "opt_cputype.h" /* which mips CPU levels do we support? */ #include "opt_ddb.h" @@ -298,7 +298,7 @@ trap(uint32_t status, uint32_t cause, va kpreempt_enable(); if (ok != 1) printf("pmap_tlb_update_addr(%p,%#" - PRIxVADDR",%#"PRIxPTE", 0) returned %d", + PRIxVADDR",%#"PRIxPTE", 0) returned %d\n", pmap, vaddr, pte_value(pte), ok); paddr_t pa = pte_to_paddr(pte); KASSERTMSG(uvm_pageismanaged(pa),