From owner-cvs-src@FreeBSD.ORG Sun Jun 18 06:16:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 224FD16A47A; Sun, 18 Jun 2006 06:16:37 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FB7543D45; Sun, 18 Jun 2006 06:16:36 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k5I6GVpW010182; Sun, 18 Jun 2006 10:16:35 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Sun, 18 Jun 2006 10:16:31 +0400 (MSD) From: Maxim Konovalov To: Robert Watson In-Reply-To: <20060618013509.M67789@fledge.watson.org> Message-ID: <20060618101345.V10122@mp2.macomnet.net> References: <200606171732.k5HHWdl9086272@repoman.freebsd.org> <20060618013509.M67789@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Andre Oppermann , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c tcp_syncache.c tcp_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:16:37 -0000 On Sun, 18 Jun 2006, 01:37+0100, Robert Watson wrote: > > On Sat, 17 Jun 2006, Andre Oppermann wrote: > > > Revision Changes Path > > 1.299 +9 -6 src/sys/netinet/tcp_input.c > > 1.87 +286 -255 src/sys/netinet/tcp_syncache.c > > 1.130 +9 -6 src/sys/netinet/tcp_var.h > > This change appears to have broken world on all architectures by > exposing the mutex data structure to usr.bin/netstat/inet.c via > tcp_var.h. I'm not quite sure what the "right" solution is, but if usr.bin/systat/netstat.c and usr.bin/netstat/inet.c contrib/bsnmp/snmp_mibII/mibII_tcp.c as well. +#include fixes the build. Index: usr.bin/systat/netstat.c =================================================================== RCS file: /home/ncvs/src/usr.bin/systat/netstat.c,v retrieving revision 1.25 diff -u -p -r1.25 netstat.c --- usr.bin/systat/netstat.c 30 Apr 2006 04:47:23 -0000 1.25 +++ usr.bin/systat/netstat.c 17 Jun 2006 22:32:03 -0000 @@ -43,6 +43,7 @@ static const char sccsid[] = "@(#)netsta * netstat */ #include +#include #include #include #include Index: usr.bin/netstat/inet.c =================================================================== RCS file: /home/ncvs/src/usr.bin/netstat/inet.c,v retrieving revision 1.70 diff -u -p -r1.70 inet.c --- usr.bin/netstat/inet.c 12 Apr 2005 08:47:04 -0000 1.70 +++ usr.bin/netstat/inet.c 17 Jun 2006 22:25:36 -0000 @@ -41,6 +41,7 @@ static char sccsid[] = "@(#)inet.c 8.5 ( __FBSDID("$FreeBSD: src/usr.bin/netstat/inet.c,v 1.70 2005/04/12 08:47:04 ru Exp $"); #include +#include #include #include #include Index: contrib/bsnmp/snmp_mibII/mibII_tcp.c =================================================================== RCS file: /home/ncvs/src/contrib/bsnmp/snmp_mibII/mibII_tcp.c,v retrieving revision 1.1.1.4 diff -u -p -r1.1.1.4 mibII_tcp.c --- contrib/bsnmp/snmp_mibII/mibII_tcp.c 23 May 2005 11:19:09 -0000 1.1.1.4 +++ contrib/bsnmp/snmp_mibII/mibII_tcp.c 17 Jun 2006 22:40:28 -0000 @@ -32,6 +32,7 @@ */ #include "mibII.h" #include "mibII_oid.h" +#include #include #include #include %%% -- Maxim Konovalov