Date: Mon, 18 Sep 2000 14:10:52 -0700 From: David Greenman <dg@root.com> To: Doug Barton <DougB@gorean.org> Cc: current@FreeBSD.ORG Subject: Re: kernel breakage in aac.c (Was: Can't build a kernel) Message-ID: <200009182110.OAA01170@implode.root.com> In-Reply-To: Your message of "Mon, 18 Sep 2000 14:11:00 PDT." <Pine.BSF.4.21.0009181407570.8076-100000@dt051n37.san.rr.com>
next in thread | previous in thread | raw e-mail | index | archive | help
> This is still broken: > >===> aac >cc -O -pipe -DAAC_COMPAT_LINUX -D_KERNEL -Wall -Wredundant-decls >-Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith >-Winline -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- >-I. -I@ -I@/../include -mpreferred-stack-boundary=2 -c >/usr/amd/realmounts/slave/usr/current/src/sys/modules/aac/../../dev/aac/aac.c >/usr/amd/realmounts/slave/usr/current/src/sys/modules/aac/../../dev/aac/aac.c: In >function `aac_linux_ioctl': >/usr/amd/realmounts/slave/usr/current/src/sys/modules/aac/../../dev/aac/aac.c:1815: dereferencing >pointer to incomplete type Here is a fix. Hopefully Mike will commit it soon. -DG David Greenman Co-founder, The FreeBSD Project - http://www.freebsd.org President, TeraSolutions, Inc. - http://www.terasolutions.com Pave the road of life with opportunities. Index: aac.c =================================================================== RCS file: /home/ncvs/src/sys/dev/aac/aac.c,v retrieving revision 1.1 diff -c -r1.1 aac.c *** aac.c 2000/09/13 03:20:34 1.1 --- aac.c 2000/09/18 08:45:08 *************** *** 35,40 **** --- 35,41 ---- #include <sys/systm.h> #include <sys/malloc.h> #include <sys/kernel.h> + #include <sys/proc.h> #include <dev/aac/aac_compat.h> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200009182110.OAA01170>