From owner-freebsd-stable@FreeBSD.ORG Thu Nov 16 02:05:45 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABF9916A416 for ; Thu, 16 Nov 2006 02:05:45 +0000 (UTC) (envelope-from pokui@psg.com) Received: from mail.trueafrican.com (mail.trueafrican.com [212.88.98.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E5A743D46 for ; Thu, 16 Nov 2006 02:05:42 +0000 (GMT) (envelope-from pokui@psg.com) Received: from mail.trueafrican.com ([127.0.0.1]) by localhost (mail.trueafrican.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02083-09 for ; Thu, 16 Nov 2006 05:05:25 +0300 (EAT) Received: from andromeda.trueafrican.com (pokui.trueafrican.com [169.254.0.7]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.trueafrican.com (Postfix) with ESMTP id 3D65825F1C0 for ; Thu, 16 Nov 2006 05:05:20 +0300 (EAT) Received: from [127.0.0.1] (helo=localhost) by andromeda.trueafrican.com with esmtp (Exim 4.62) (envelope-from ) id 1GkWdv-0002LX-U1 for freebsd-stable@freebsd.org; Thu, 16 Nov 2006 05:06:20 +0300 From: Patrick Okui To: freebsd-stable@freebsd.org Date: Thu, 16 Nov 2006 05:06:16 +0300 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200611160506.17630.pokui@psg.com> X-Virus-Scanned: by amavisd-new at trueafrican.com Subject: kernel build on RELENG_6 (as of 15:00 GMT on 16.November.2006) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Nov 2006 02:05:45 -0000 Fails with something along the lines of.. ...In function `ASR_failActiveCommands': /usr/src/sys/dev/asr/asr.c:840: error: `bcb' undeclared (first use in this function) /usr/src/sys/dev/asr/asr.c:840: error: (Each undeclared identifie .... changing bcb to ccb on that line fixes that... then later.. In file included from /usr/src/sys/kern/sched_4bsd.c:1390: /usr/src/sys/kern/kern_switch.c: In function `runq_choose': /usr/src/sys/kern/kern_switch.c:871: error: stray '\8' in program *** Error code 1 Replacing the ^H at the beginning of the file with a tab fixes that.. (funny enough, just deleting the charcter with 'x' in vi didn't work, I had to 'dd' the line and retype it out ... makes me wonder what editor was used to put that character there in the first place.) I'm guessing a committer has already caught this and fixed... but thought I'd post just in case someone hits the same bugs. -- patrick