Subject: Change to scsipiconf.h faulty
To: None <current-users@netbsd.org, thorpej@netbsd.org>
From: Heiko W.Rupp <hwr@pilhuhn.de>
List: current-users
Date: 12/09/1998 09:17:15
cc  -O2 -Werror -Wall -Wmissing-prototypes -Wstrict-prototypes -I. -I../../../../arch -I../../../.. -nostdinc -DLKM -DDIAGNOSTIC -DCOMPAT_43 -DGERMAN_KBD -DMAXUSERS=32 -D_KERNEL  -Di386  -c ../../../../dev/ic/aic7xxx.c
../../../../dev/ic/aic7xxx.c: In function `ahc_xxx_enqueue':
../../../../dev/ic/aic7xxx.c:2525: structure has no member named `free_list'
../../../../dev/ic/aic7xxx.c:2525: structure has no member named `free_list'
../../../../dev/ic/aic7xxx.c:2525: structure has no member named `free_list'
../../../../dev/ic/aic7xxx.c:2525: structure has no member named `free_list'
../../../../dev/ic/aic7xxx.c:2529: structure has no member named `free_list'
../../../../dev/ic/aic7xxx.c:2529: structure has no member named `free_list'


this comes probably from:

RCS file: /cvsroot/src/sys/dev/scsipi/scsipiconf.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -r1.26 -r1.27
1c1
< /*    $NetBSD: scsipiconf.h,v 1.26 1998/12/05 19:41:31 mjacob Exp $   */
---
> /*    $NetBSD: scsipiconf.h,v 1.27 1998/12/08 00:13:58 thorpej Exp $  */
254c265,266
<       LIST_ENTRY(scsipi_xfer) free_list;
---
>       TAILQ_ENTRY(scsipi_xfer) adapter_q; /* queue entry for use by adapter */
>       TAILQ_ENTRY(scsipi_xfer) device_q;  /* device's pending xfers */

Could anyone look into this?