From owner-p4-projects@FreeBSD.ORG Tue Apr 8 17:40:55 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 280E837B404; Tue, 8 Apr 2003 17:40:55 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD06837B401 for ; Tue, 8 Apr 2003 17:40:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47C3F43F93 for ; Tue, 8 Apr 2003 17:40:54 -0700 (PDT) (envelope-from peter@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h390es0U015226 for ; Tue, 8 Apr 2003 17:40:54 -0700 (PDT) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h390erik015216 for perforce@freebsd.org; Tue, 8 Apr 2003 17:40:53 -0700 (PDT) Date: Tue, 8 Apr 2003 17:40:53 -0700 (PDT) Message-Id: <200304090040.h390erik015216@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm To: Perforce Change Reviews Subject: PERFORCE change 28582 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Apr 2003 00:40:56 -0000 http://perforce.freebsd.org/chv.cgi?CH=28582 Change 28582 by peter@peter_daintree on 2003/04/08 17:40:07 less chatty Affected files ... .. //depot/projects/hammer/sys/x86_64/x86_64/autoconf.c#8 edit .. //depot/projects/hammer/sys/x86_64/x86_64/machdep.c#56 edit Differences ... ==== //depot/projects/hammer/sys/x86_64/x86_64/autoconf.c#8 (text+ko) ==== @@ -107,7 +107,6 @@ configure(dummy) void *dummy; { -printf("configure\n"); /* * Activate the ICU's. Note that we are explicitly at splhigh() @@ -125,16 +124,12 @@ * * This is all rather inconvenient. */ -printf("enable_intr\n"); enable_intr(); -printf("enable IRQ_SLAVE\n"); INTREN(IRQ_SLAVE); -printf("add nexus\n"); /* nexus0 is the top of the i386 device tree */ device_add_child(root_bus, "nexus", 0); -printf("root bus config\n"); /* initialize new bus architecture */ root_bus_configure(); @@ -143,19 +138,15 @@ * Explicitly probe and attach ISA last. The isa bus saves * it's device node at attach time for us here. */ - if (isa_bus_device) { -printf("isa_probe_children\n"); + if (isa_bus_device) isa_probe_children(isa_bus_device); - } #endif -printf("spl0()\n"); /* * Now we're ready to handle (pending) interrupts. * XXX this is slightly misplaced. */ spl0(); -printf("end configure\n"); } static void ==== //depot/projects/hammer/sys/x86_64/x86_64/machdep.c#56 (text+ko) ==== @@ -737,7 +737,7 @@ */ smapbase = MD_FETCH(kmdp, MODINFOMD_SMAP, struct bios_smap *) + KERNBASE; if (smapbase == 0) { - printf("no bios smap info from loader, winging it\n"); + printf("No BIOS smap info from loader!\n"); goto deep_shit; } printf("smapbase: %p\n", smapbase); @@ -798,7 +798,6 @@ if (basemem == 0) { basemem = rtcin(RTC_BASELO) + (rtcin(RTC_BASEHI) << 8); -printf("rtc says basemem = %d\n", basemem); } if (basemem == 0) { @@ -825,7 +824,6 @@ * Prefer the RTC value for extended memory. */ extmem = rtcin(RTC_EXTLO) + (rtcin(RTC_EXTHI) << 8); -printf("rtc says extmem = %d\n", extmem); /* * Special hack for chipsets that still remap the 384k hole when