Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 May 2003 00:14:25 -0700 (PDT)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 31054 for review
Message-ID:  <200305130714.h4D7EPmL077724@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=31054

Change 31054 by jmallett@jmallett_dalek on 2003/05/13 00:13:36

	Remove these printfs, adding some to the mutex code in
	specific locations fixes whatever the hell it is that's
	going wrong.

Affected files ...

.. //depot/projects/mips/sys/vm/vm_init.c#4 integrate

Differences ...

==== //depot/projects/mips/sys/vm/vm_init.c#4 (text+ko) ====

@@ -110,21 +110,15 @@
 	 * memory is accounted for, and we use only virtual addresses.
 	 */
 	vm_set_page_size();
-	printf("Doing page startup...\n");
 	virtual_avail = vm_page_startup(avail_start, avail_end, virtual_avail);
 	
 	/*
 	 * Initialize other VM packages
 	 */
-	printf("vm_object_init...\n");
 	vm_object_init();
-	printf("vm_map_startup...\n");
 	vm_map_startup();
-	printf("kmem_init...\n");
 	kmem_init(virtual_avail, virtual_end);
-	printf("pmap_init...\n");
 	pmap_init(avail_start, avail_end);
-	printf("vm_pager_init...\n");
 	vm_pager_init();
 }
 



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