svn commit: r361570 - head/sys/powerpc/powerpc

Justin Hibbits jhibbits at FreeBSD.org
Thu May 28 03:08:51 UTC 2020


Author: jhibbits
Date: Thu May 28 03:08:50 2020
New Revision: 361570
URL: https://svnweb.freebsd.org/changeset/base/361570

Log:
  powerpc/pmap: Remove some debug from r361544

Modified:
  head/sys/powerpc/powerpc/pmap_dispatch.c

Modified: head/sys/powerpc/powerpc/pmap_dispatch.c
==============================================================================
--- head/sys/powerpc/powerpc/pmap_dispatch.c	Thu May 28 01:53:35 2020	(r361569)
+++ head/sys/powerpc/powerpc/pmap_dispatch.c	Thu May 28 03:08:50 2020	(r361570)
@@ -205,19 +205,15 @@ pmap_mmu_install(char *name, int prio)
 	mmu_t	*mmupp, mmup;
 	static int	curr_prio = 0;
 
-	printf("Trying to install pmap %s\n", name);
-
 	/*
 	 * Try and locate the MMU kobj corresponding to the name
 	 */
 	SET_FOREACH(mmupp, mmu_set) {
 		mmup = *mmupp;
 
-		printf("Checking %s(%p)\n", mmup->name, mmup->name);
 		if (mmup->name &&
 		    !strcmp(mmup->name, name) &&
 		    (prio >= curr_prio || mmu_obj == NULL)) {
-		    	printf("match found: %p\n", mmup);
 			curr_prio = prio;
 			mmu_obj = mmup;
 			return (TRUE);


More information about the svn-src-head mailing list