From owner-freebsd-i386@FreeBSD.ORG Wed Jun 9 12:21:53 2004 Return-Path: Delivered-To: freebsd-i386@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC94D16A4CE; Wed, 9 Jun 2004 12:21:53 +0000 (GMT) Received: from imap.univie.ac.at (mail.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DC6E43D46; Wed, 9 Jun 2004 12:21:53 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from pcle.cc.univie.ac.at (pcle.cc.univie.ac.at [131.130.2.107]) by imap.univie.ac.at (8.12.10/8.12.10) with ESMTP id i59CLe52568012; Wed, 9 Jun 2004 14:21:41 +0200 Date: Wed, 9 Jun 2004 14:21:41 +0200 (CEST) From: Lukas Ertl To: freebsd-current@FreeBSD.org, phk@FreeBSD.org In-Reply-To: <20040609120940.548AF7306D@freebsd-current.sentex.ca> Message-ID: <20040609141716.S94982@korben.in.tern> References: <20040609120940.548AF7306D@freebsd-current.sentex.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-DCC-ZID-Univie-Metrics: imap 4247; Body=3 Fuz1=3 Fuz2=3 cc: i386@FreeBSD.org Subject: Re: [current tinderbox] failure on i386/i386 X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jun 2004 12:21:54 -0000 On Wed, 9 Jun 2004, FreeBSD Tinderbox wrote: > ===> usr.sbin/pstat > cc -O2 -pipe -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /tinderbox/sandbox/CURRENT/i386/i386/src/usr.sbin/pstat/pstat.c > /tinderbox/sandbox/CURRENT/i386/i386/src/usr.sbin/pstat/pstat.c: In function `ttymode_kvm': > /tinderbox/sandbox/CURRENT/i386/i386/src/usr.sbin/pstat/pstat.c:241: error: structure has no member named `sle_next' > *** Error code 1 Member t_list in struct tty was changed from an SLIST_ENTRY to a TAILQ_ENTRY in rev 1.79. This patch should fix the tinderbox (untested): ---8<--- Index: pstat.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pstat/pstat.c,v retrieving revision 1.89 diff -u -r1.89 pstat.c --- pstat.c 26 Mar 2004 09:28:03 -0000 1.89 +++ pstat.c 9 Jun 2004 12:19:22 -0000 @@ -238,7 +238,7 @@ XT_COPY(olowat); #undef XT_COPY ttyprt(&xt); - tp = tty.t_list.sle_next; + tp = tty.t_list.stqe_next; } } ---8<--- cheers, le -- Lukas Ertl http://homepage.univie.ac.at/l.ertl/ le@FreeBSD.org http://people.freebsd.org/~le/