Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Jun 2020 08:51:57 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r361904 - head/sys/riscv/riscv
Message-ID:  <202006080851.0588pwDO010136@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arichardson
Date: Mon Jun  8 08:51:57 2020
New Revision: 361904
URL: https://svnweb.freebsd.org/changeset/base/361904

Log:
  sys/riscv: Remove debug printfs
  
  They are only visible with EARLY_PRINTF so don't show up by default.
  
  Reviewed By:	mhorne
  Differential Revision: https://reviews.freebsd.org/D25152

Modified:
  head/sys/riscv/riscv/pmap.c

Modified: head/sys/riscv/riscv/pmap.c
==============================================================================
--- head/sys/riscv/riscv/pmap.c	Mon Jun  8 08:51:52 2020	(r361903)
+++ head/sys/riscv/riscv/pmap.c	Mon Jun  8 08:51:57 2020	(r361904)
@@ -563,8 +563,6 @@ pmap_bootstrap(vm_offset_t l1pt, vm_paddr_t kernstart,
 	int i;
 
 	printf("pmap_bootstrap %lx %lx %lx\n", l1pt, kernstart, kernlen);
-	printf("%lx\n", l1pt);
-	printf("%lx\n", (KERNBASE >> L1_SHIFT) & Ln_ADDR_MASK);
 
 	/* Set this early so we can use the pagetable walking functions */
 	kernel_pmap_store.pm_l1 = (pd_entry_t *)l1pt;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006080851.0588pwDO010136>