From owner-freebsd-current@FreeBSD.ORG Sat Jun 14 12:44:33 2003 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 86DE137B401; Sat, 14 Jun 2003 12:44:33 -0700 (PDT) Received: from wall.polstra.com (wall-gw.polstra.com [206.213.73.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C3B43FA3; Sat, 14 Jun 2003 12:44:32 -0700 (PDT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (strings.polstra.com [206.213.73.20]) by wall.polstra.com (8.12.3p2/8.12.3) with ESMTP id h5EJiVPL031443; Sat, 14 Jun 2003 12:44:31 -0700 (PDT) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Sat, 14 Jun 2003 12:44:31 -0700 (PDT) From: John Polstra To: current@freebsd.org X-Bogosity: No, tests=bogofilter, spamicity=0.241627, version=0.11.2 cc: harti@freebsd.org Subject: Build breakage in the "en" module 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: Sat, 14 Jun 2003 19:44:33 -0000 With this morning's sources, my kernel build is failing in the "en" module: /a/src/sys/dev/en/midway.c: In function `en_get_vccs': /a/src/sys/dev/en/midway.c:1474: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1474: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1479: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1480: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1488: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1492: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1493: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1493: `ATMIO_FLAG_PVC' undeclared (first use in this function) /a/src/sys/dev/en/midway.c:1493: (Each undeclared identifier is reported only once /a/src/sys/dev/en/midway.c:1493: for each function it appears in.) /a/src/sys/dev/en/midway.c:1494: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1495: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1497: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1497: `ATMIO_AAL_5' undeclared (first use in this function) /a/src/sys/dev/en/midway.c:1499: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1499: `ATMIO_AAL_0' undeclared (first use in this function) /a/src/sys/dev/en/midway.c:1500: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1500: `ATMIO_TRAFFIC_UBR' undeclared (first use in this function) /a/src/sys/dev/en/midway.c:1501: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1502: increment of pointer to unknown structure /a/src/sys/dev/en/midway.c:1502: arithmetic on pointer to an incomplete type /a/src/sys/dev/en/midway.c: In function `en_ioctl': /a/src/sys/dev/en/midway.c:1591: `SIOCATMGETVCCS' undeclared (first use in this function) /a/src/sys/dev/en/midway.c:1600: `SIOCATMGVCCS' undeclared (first use in this function) /a/src/sys/dev/en/midway.c:1606: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1607: dereferencing pointer to incomplete type /a/src/sys/dev/en/midway.c:1607: dereferencing pointer to incomplete type *** Error code 1 At line 1474, the incomplete type is "struct atmio_vcctable". I grepped all of the *.h files under src/sys, but none of them contained "atmio_vcctable". Perhaps a new header file was omitted from the commit? John