From owner-cvs-src@FreeBSD.ORG Fri Nov 3 17:06:36 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 218EF16A417 for ; Fri, 3 Nov 2006 17:06:36 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C5A143D7D for ; Fri, 3 Nov 2006 17:06:18 +0000 (GMT) (envelope-from pawel.worach@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so417913uge for ; Fri, 03 Nov 2006 09:06:17 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type; b=GEd6ZwOGofFS05/Na01X5dE3BWTy6miabyVW1xkPCOfgJ7AEKVTBZ7qjAEILVzB0jr5a2pn9IYOa8yj6ylZbrwI81iATtShNfut0BpFeGxEZOZGjpXP5GN41kZlcWmyiTwnD1a1yUe8DfDMniOn6AkTlVVVHlOyOnzLmg4vYGlI= Received: by 10.66.232.9 with SMTP id e9mr3048830ugh.1162573576427; Fri, 03 Nov 2006 09:06:16 -0800 (PST) Received: from ?192.168.1.200? ( [80.217.194.157]) by mx.google.com with ESMTP id 28sm1077880ugc.2006.11.03.09.06.15; Fri, 03 Nov 2006 09:06:16 -0800 (PST) Message-ID: <454B7703.60705@gmail.com> Date: Fri, 03 Nov 2006 18:06:11 +0100 From: Pawel Worach User-Agent: Thunderbird 1.5.0.7 (X11/20061025) MIME-Version: 1.0 To: Randall Stewart References: <200611031523.kA3FNGfm010445@repoman.freebsd.org> In-Reply-To: <200611031523.kA3FNGfm010445@repoman.freebsd.org> Content-Type: multipart/mixed; boundary="------------000805000409060304040800" Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/freebsd32 syscalls.master src/sys/conf NOTES files options src/sys/kern init_sysent.c syscalls.c syscalls.master systrace_args.c uipc_syscalls.c src/sys/net rtsock.c src/sys/netinet in_proto.c sctp.h sctp_asconf.c ... 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: Fri, 03 Nov 2006 17:06:36 -0000 This is a multi-part message in MIME format. --------------000805000409060304040800 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Randall Stewart wrote: > rrs 2006-11-03 15:23:16 UTC > > FreeBSD src repository > > Modified files: ... > Log: > Ok, here it is, we finally add SCTP to current. Note that this Hi, sctp_asconf.c and sctp6_usrreq.c don't build because __FBSDID macro is defined in sys/cdefs.h so that needs to be included first. Regards -- Pawel --------------000805000409060304040800 Content-Type: text/x-patch; name="sctp6_usrreq.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sctp6_usrreq.c.diff" --- sctp6_usrreq.c.orig Fri Nov 3 17:50:49 2006 +++ sctp6_usrreq.c Fri Nov 3 17:51:26 2006 @@ -28,7 +28,10 @@ * THE POSSIBILITY OF SUCH DAMAGE. */ /* $KAME: sctp6_usrreq.c,v 1.38 2005/08/24 08:08:56 suz Exp $ */ + +#include __FBSDID("$FreeBSD: src/sys/netinet6/sctp6_usrreq.c,v 1.1 2006/11/03 15:23:15 rrs Exp $"); + #include "opt_inet.h" #include "opt_inet6.h" #include "opt_inet.h" --------------000805000409060304040800 Content-Type: text/x-patch; name="sctp_asconf.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sctp_asconf.c.diff" --- sctp_asconf.c.orig Fri Nov 3 17:42:22 2006 +++ sctp_asconf.c Fri Nov 3 17:42:45 2006 @@ -29,10 +29,9 @@ */ /* $KAME: sctp_asconf.c,v 1.24 2005/03/06 16:04:16 itojun Exp $ */ -__FBSDID("$FreeBSD: src/sys/netinet/sctp_asconf.c,v 1.1 2006/11/03 15:23:15 rrs Exp $"); #include - +__FBSDID("$FreeBSD: src/sys/netinet/sctp_asconf.c,v 1.1 2006/11/03 15:23:15 rrs Exp $"); #include "opt_ipsec.h" #include "opt_compat.h" --------------000805000409060304040800--