Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Aug 2004 22:29:28 -0400
From:      "Michael W. Oliver" <freebsd-current@gargantuan.com>
To:        Taku YAMAMOTO <taku@tackymt.homeip.net>
Cc:        freebsd-current@FreeBSD.org
Subject:   Re: pcm_chn_create failed with 2004-08-12 kernel
Message-ID:  <20040813022928.GE1337@gargantuan.com>
In-Reply-To: <20040813090231.3c6acb13.taku@tackymt.homeip.net>
References:  <20040812221348.GA1337@gargantuan.com> <200408122253.i7CMrseZ021586@gw.catspoiler.org> <20040813090231.3c6acb13.taku@tackymt.homeip.net>

next in thread | previous in thread | raw e-mail | index | archive | help

--pY3vCvL1qV+PayAL
Content-Type: multipart/mixed; boundary="at6+YcpfzWZg/htY"
Content-Disposition: inline


--at6+YcpfzWZg/htY
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On 2004-08-13T09:02:31+0900, Taku YAMAMOTO wrote:
> On Thu, 12 Aug 2004 15:53:54 -0700 (PDT)
> Don Lewis <truckman@FreeBSD.org> wrote:
> > On 12 Aug, Michael W. Oliver wrote:
> > > Ok, this world was cvsup'd on 2004.08.12 at 09:59:03 EDT.  I removed =
the
> > > 'sound' and 'snd_maestro' device lines from my kernel config and deci=
ded
> > > to load them as modules (after I got the same output shown below with
> > > sound and snd_maestro compiled into the kernel).  When I kldload
> > > 'sound', I get no output.  After that, when I kldload 'snd_maestro', I
> > > get the following output:
> > >=20
> > >=20
> > > pcm0: <ESS Technology Maestro-2E> port 0x1400-0x14ff irq 10 at device=
 8.0 on pci0
> > > pcm0: <SigmaTel STAC9721/23 AC97 Codec>
> > > pcm0: [GIANT-LOCKED]
> > > pcm0: offset 0xfffa1000 exceeds limit. pcm0: chn_init(pcm0:play:0) fa=
iled: err =3D 19
> > > pcm0: pcm_chn_create(aggch, 1, 0xc223e700) failed
> > > pcm0: offset 0xfffa1000 exceeds limit. pcm0: chn_init(pcm0:play:0) fa=
iled: err =3D 19
> > > pcm0: pcm_chn_create(aggch, 1, 0xc223e700) failed
> > > pcm0: offset 0xfffa1000 exceeds limit. pcm0: chn_init(pcm0:play:0) fa=
iled: err =3D 19
> > > pcm0: pcm_chn_create(aggch, 1, 0xc223e700) failed
> > > pcm0: offset 0xfffa1000 exceeds limit. pcm0: chn_init(pcm0:play:0) fa=
iled: err =3D 19
> > > pcm0: pcm_chn_create(aggch, 1, 0xc223e700) failed
> >=20
> > It sure looks to me like physaddr is getting set to zero in
> > aggch_init().  It also looks like the device_printf() format string is
> > missing a newline.
> >=20
> > Try adding a device_printf() to aggch_init() to print out both physaddr
> > and ess->baseaddr so that we can figure out where the calculation
> > 	 ch->offset =3D physaddr - ess->baseaddr;
> > is going wrong.  The source file is /usr/src/sys/dev/sound/pci/maestro.c
>=20
> This is caused by physaddr which is smaller than ess->baseaddr.
> It will often occur when memory is fragmented, I think.
>=20
> Michael, would you try the newer driver?
> 	http://www.tackymt.homeip.net/~taku/maestro-latest/

Ok, I compiled and loaded your new driver, and aside from noise when
compiling, it seems to be working ok.  As an added bonus, I now have one
record channel where there was none before.  Whoo-hoo!

The aforementioned noise from compilation is attached (note that I am
using "-O2 -pipe" in /etc/make.conf - I don't know if that makes a
difference).

--=20
Mike
perl -e 'print unpack("u","88V]N=3D&%C=3D\"!I;F9O(&EN(&AE861E<G,*");'


--at6+YcpfzWZg/htY
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="maestro_compilation_noise.txt"

===> sound/driver/maestro
cc -O2 -pipe -march=pentium2  -D_KERNEL -DKLD_MODULE -nostdinc -I-   -include /usr/obj/usr/src/sys/CYCLOPS/opt_global.h -I. -I@ -I@/contrib/altq -I@/../include -finline-limit=8000 -fno-common  -I/usr/obj/usr/src/sys/CYCLOPS -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -fformat-extensions -std=c99 -c /usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c: In function `agg_init':
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:654: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:656: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:658: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:660: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:663: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:664: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:665: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:666: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:667: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:668: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:669: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:672: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:675: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:676: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:677: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:567: warning: inlining failed in call to 'agg_stopclock': --param large-function-growth limit reached
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:678: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c: In function `aggch_start_dac':
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:479: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:480: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:481: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:482: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:483: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:484: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:485: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:488: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:490: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:479: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:480: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:481: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:482: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:483: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:484: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:485: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:488: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:490: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c: In function `aggch_start_adc':
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:479: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:480: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:481: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:482: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:483: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:484: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:485: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:488: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:490: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:479: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:480: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:481: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:482: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:483: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:484: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:485: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:488: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:490: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:479: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:480: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:481: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:482: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:483: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:484: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:485: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:488: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:490: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:479: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:480: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:481: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:482: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:483: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:484: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:485: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:488: warning: called from here
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:464: warning: inlining failed in call to 'wp_wrapu': --param large-function-growth limit reached while inlining the caller
/usr/src/sys/modules/sound/driver/maestro/../../../../dev/sound/pci/maestro.c:490: warning: called from here
ld  -d -warn-common -r -d -o snd_maestro.kld maestro.o
touch /usr/obj/usr/src/sys/CYCLOPS/modules/usr/src/sys/modules/sound/driver/maestro/export_syms
awk -f /usr/src/sys/modules/sound/driver/maestro/../../../../conf/kmod_syms.awk snd_maestro.kld  /usr/obj/usr/src/sys/CYCLOPS/modules/usr/src/sys/modules/sound/driver/maestro/export_syms |  xargs -J% objcopy % snd_maestro.kld
ld -Bshareable  -d -warn-common -o snd_maestro.ko snd_maestro.kld
objcopy --strip-debug snd_maestro.ko


--at6+YcpfzWZg/htY--

--pY3vCvL1qV+PayAL
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (FreeBSD)

iD8DBQFBHCeIsWv7q8X6o8kRAk2mAJ4pods7lISq66G0/WencpkqCI4iBgCeL18c
fBZug0uUmPVuhvOL4JNvaOg=
=WuNS
-----END PGP SIGNATURE-----

--pY3vCvL1qV+PayAL--



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