From owner-freebsd-alpha@FreeBSD.ORG Thu Jul 1 15:11:27 2004 Return-Path: Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 249A116A4CE for ; Thu, 1 Jul 2004 15:11:27 +0000 (GMT) Received: from mail.FreeBSD.org.cn (dns3.freebsd.org.cn [61.129.66.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CFE43D39 for ; Thu, 1 Jul 2004 15:11:26 +0000 (GMT) (envelope-from junsu@delphij.net) Received: (qmail 6527 invoked by uid 0); 1 Jul 2004 15:09:04 -0000 Received: from unknown (HELO beastie.frontfree.net) (218.107.145.7) by mail.FreeBSD.org.cn with AES256-SHA encrypted SMTP; 1 Jul 2004 15:09:04 -0000 Received: from localhost (localhost.frontfree.net [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id E487D1160B; Thu, 1 Jul 2004 22:51:59 +0800 (CST) Received: from beastie.frontfree.net ([127.0.0.1]) by localhost (beastie.frontfree.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00191-01; Thu, 1 Jul 2004 22:51:59 +0800 (CST) Received: from sujunmobile (unknown [211.161.222.90]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by beastie.frontfree.net (Postfix) with ESMTP id CE23811430; Thu, 1 Jul 2004 22:51:53 +0800 (CST) Message-ID: <002701c45f7a$f5a31110$5adea1d3@fareast.corp.microsoft.com> From: "csj" To: Date: Thu, 1 Jul 2004 22:51:46 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 X-Virus-Scanned: by amavisd-new at frontfree.net Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: current@freebsd.org Subject: [Patch] Fix for build break for alpha X-BeenThere: freebsd-alpha@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the Alpha List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jul 2004 15:11:27 -0000 I noticed the build is break in the alpha due to 1.21 reversion of = rman.h. In my config, I manually added the #define = __RMAN_RESOURCE_VISIBLE into the following files: src/sys/alpha/alpha/sgmap.c src/sys/alpha/pci/cia.c src/sys/alpha/isa/isa.c src/sys/alpha/mcbus/mcpcia.c src/sys/alpha/tlsb/dwlpx.c src/sys/alpha/pci/tsunami_pci.c to build the kernel.=20 Thanks, Jun =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- src/sys/alpha/alpha/sgmap.c~ Fri Sep 19 00:40:43 2003 +++ src/sys/alpha/alpha/sgmap.c Thu Jul 1 19:18:44 2004 @@ -27,6 +27,8 @@ #include __FBSDID("$FreeBSD: src/sys/alpha/alpha/sgmap.c,v 1.6 2003/08/22 = 07:20:25 imp Exp $"); +#define __RMAN_RESOURCE_VISIBLE + #include #include #include --- src/sys/alpha/pci/cia.c~ Fri Feb 13 01:56:47 2004 +++ src/sys/alpha/pci/cia.c Thu Jul 1 19:20:31 2004 @@ -91,6 +91,8 @@ #include "opt_cpu.h" +#define __RMAN_RESOURCE_VISIBLE + #include #include #include --- src/sys/alpha/isa/isa.c~ Thu Mar 25 13:17:51 2004 +++ src/sys/alpha/isa/isa.c Thu Jul 1 19:19:47 2004 @@ -27,6 +27,8 @@ #include __FBSDID("$FreeBSD: src/sys/alpha/isa/isa.c,v 1.35 2004/03/17 21:45:55 = jmg Exp $"); +#define __RMAN_RESOURCE_VISIBLE + #include #include #include --- src/sys/alpha/mcbus/mcpcia.c~ Fri Feb 13 01:56:46 2004 +++ src/sys/alpha/mcbus/mcpcia.c Thu Jul 1 20:03:03 2004 @@ -27,6 +27,8 @@ #include __FBSDID("$FreeBSD: src/sys/alpha/mcbus/mcpcia.c,v 1.28 2003/11/17 = 06:10:14 peter Exp $"); +#define __RMAN_RESOURCE_VISIBLE + #include #include #include --- src/sys/alpha/tlsb/dwlpx.c~ Fri Sep 19 00:40:45 2003 +++ src/sys/alpha/tlsb/dwlpx.c Thu Jul 1 20:04:22 2004 @@ -58,6 +58,8 @@ #include __FBSDID("$FreeBSD: src/sys/alpha/tlsb/dwlpx.c,v 1.26 2003/08/22 = 07:20:27 imp Exp $"); +#define __RMAN_RESOURCE_VISIBLE + #include #include #include --- src/sys/alpha/pci/tsunami_pci.c~ Fri Sep 19 00:40:45 2003 +++ src/sys/alpha/pci/tsunami_pci.c Thu Jul 1 20:05:13 2004 @@ -27,6 +27,8 @@ #include __FBSDID("$FreeBSD: src/sys/alpha/pci/tsunami_pci.c,v 1.16 2003/08/22 = 07:20:27 imp Exp $"); +#define __RMAN_RESOURCE_VISIBLE + #include #include #include