From owner-freebsd-current@FreeBSD.ORG Thu Nov 11 09:01:57 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FABF16A4CE for ; Thu, 11 Nov 2004 09:01:57 +0000 (GMT) Received: from basalt.tackymt.homeip.net (YahooBB219181148048.bbtec.net [219.181.148.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E78743D48 for ; Thu, 11 Nov 2004 09:01:56 +0000 (GMT) (envelope-from taku@tackymt.homeip.net) Received: from localhost (localhost [127.0.0.1]) by basalt.tackymt.homeip.net (Postfix) with ESMTP id AC7201078F for ; Thu, 11 Nov 2004 18:01:49 +0900 (JST) Received: from maestro.tackymt.homeip.net (maestro.tackymt.homeip.net [IPv6:2001:3e0:577:0:240:26ff:fe49:1c9d]) by basalt.tackymt.homeip.net (Postfix) with ESMTP for ; Thu, 11 Nov 2004 18:01:48 +0900 (JST) Date: Thu, 11 Nov 2004 18:01:47 +0900 From: Taku YAMAMOTO To: freebsd-current@freebsd.org Message-Id: <20041111180147.4ab32772.taku@tackymt.homeip.net> In-Reply-To: <20041111072853.441627306E@freebsd-current.sentex.ca> References: <20041111072853.441627306E@freebsd-current.sentex.ca> X-Mailer: Sylpheed version 0.9.12-gtk2-20040622 (GTK+ 2.2.4; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Thu__11_Nov_2004_18_01_47_+0900_70oA9GM83LjqhXHB" Subject: Re: [current tinderbox] failure on alpha/alpha X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Nov 2004 09:01:57 -0000 This is a multi-part message in MIME format. --Multipart=_Thu__11_Nov_2004_18_01_47_+0900_70oA9GM83LjqhXHB Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Ouch! I forgot to solve the inlining problem. A patch is attached. On Thu, 11 Nov 2004 02:28:53 -0500 (EST) FreeBSD Tinderbox wrote: (snip) > TB --- 2004-11-11 07:23:20 - generating LINT kernel config > TB --- 2004-11-11 07:23:20 - cd /home/tinderbox/CURRENT/alpha/alpha/src/sys/alpha/conf > TB --- 2004-11-11 07:23:20 - /usr/bin/make -B LINT > TB --- 2004-11-11 07:23:20 - building LINT kernel (COPTFLAGS=-O2 -pipe) > TB --- 2004-11-11 07:23:20 - cd /home/tinderbox/CURRENT/alpha/alpha/src > TB --- 2004-11-11 07:23:20 - /usr/bin/make buildkernel KERNCONF=LINT > >>> Kernel build for LINT started on Thu Nov 11 07:23:20 UTC 2004 > >>> stage 1: configuring the kernel > >>> stage 2.1: cleaning up the object tree > >>> stage 2.2: rebuilding the object tree > >>> stage 2.3: build tools > >>> stage 3.1: making dependencies > >>> stage 3.2: building everything > [...] > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:484: warning: called from here > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:485: warning: called from here > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:488: warning: called from here > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller > /tinderbox/CURRENT/alpha/alpha/src/sys/dev/sound/pci/maestro.c:490: warning: called from here > *** Error code 1 > > Stop in /tinderbox/CURRENT/alpha/alpha/obj/alpha/tinderbox/CURRENT/alpha/alpha/src/sys/LINT. > *** Error code 1 > > Stop in /tinderbox/CURRENT/alpha/alpha/src. > *** Error code 1 > > Stop in /tinderbox/CURRENT/alpha/alpha/src. > TB --- 2004-11-11 07:28:53 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2004-11-11 07:28:53 - ERROR: failed to build lint kernel > TB --- 2004-11-11 07:28:53 - tinderbox aborted --Multipart=_Thu__11_Nov_2004_18_01_47_+0900_70oA9GM83LjqhXHB Content-Type: text/plain; name="maestro-uninline.patch" Content-Disposition: attachment; filename="maestro-uninline.patch" Content-Transfer-Encoding: 7bit --- maestro.c.orig Tue Aug 10 15:26:22 2004 +++ maestro.c Thu Nov 11 17:58:11 2004 @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2000 Taku YAMAMOTO + * Copyright (c) 2000-2004 Taku YAMAMOTO * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -472,7 +472,7 @@ } } -static inline void +static void apu_setparam(struct agg_info *ess, int apuch, u_int32_t wpwa, u_int16_t size, int16_t pan, u_int dv) { --Multipart=_Thu__11_Nov_2004_18_01_47_+0900_70oA9GM83LjqhXHB--