From owner-svn-src-head@FreeBSD.ORG Mon Feb 9 12:58:27 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5AF51065672; Mon, 9 Feb 2009 12:58:27 +0000 (UTC) (envelope-from root@dchagin.static.corbina.ru) Received: from contrabass.post.ru (contrabass.post.ru [85.21.78.5]) by mx1.freebsd.org (Postfix) with ESMTP id 95C9C8FC12; Mon, 9 Feb 2009 12:58:27 +0000 (UTC) (envelope-from root@dchagin.static.corbina.ru) Received: from corbina.ru (mail.post.ru [195.14.50.16]) by contrabass.post.ru (Postfix) with ESMTP id 9DE1B53FE9; Mon, 9 Feb 2009 15:41:43 +0300 (MSK) X-Virus-Scanned: by cgpav Uf39PSi9pFi9oFi9 Received: from [10.208.17.3] (HELO dchagin.static.corbina.ru) by corbina.ru (CommuniGate Pro SMTP 5.1.14) with ESMTPS id 1614091631; Mon, 09 Feb 2009 15:41:43 +0300 Received: from dchagin.static.corbina.ru (localhost.chd.net [127.0.0.1]) by dchagin.static.corbina.ru (8.14.3/8.14.3) with ESMTP id n19CfhvW009917; Mon, 9 Feb 2009 15:41:43 +0300 (MSK) (envelope-from root@dchagin.static.corbina.ru) Received: (from root@localhost) by dchagin.static.corbina.ru (8.14.3/8.14.3/Submit) id n19CffW1009916; Mon, 9 Feb 2009 15:41:41 +0300 (MSK) (envelope-from root) Date: Mon, 9 Feb 2009 15:41:41 +0300 From: Chagin Dmitry To: Randall Stewart Message-ID: <20090209124141.GA2071@dchagin.static.corbina.ru> References: <200902091142.n19BgNnb059032@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200902091142.n19BgNnb059032@svn.freebsd.org> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r188388 - head/sys/netinet X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Feb 2009 12:58:28 -0000 On Mon, Feb 09, 2009 at 11:42:23AM +0000, Randall Stewart wrote: > Author: rrs > Date: Mon Feb 9 11:42:23 2009 > New Revision: 188388 > URL: http://svn.freebsd.org/changeset/base/188388 > > Log: > Fix minor spacing problem found by s9indent from last > commit. > > Modified: > head/sys/netinet/sctp_crc32.c > > Modified: head/sys/netinet/sctp_crc32.c > ============================================================================== > --- head/sys/netinet/sctp_crc32.c Mon Feb 9 11:41:54 2009 (r188387) > +++ head/sys/netinet/sctp_crc32.c Mon Feb 9 11:42:23 2009 (r188388) > @@ -729,10 +729,11 @@ sctp_finalize_crc32(uint32_t crc32c) > #endif > return (crc32c); > } > + > #else > uint32_t > -update_crc32(uint32_t crc32c, unsigned char *buffer, unsigned int length) { > - > +update_crc32(uint32_t crc32c, unsigned char *buffer, unsigned int length) > +{ > return (0); > } > > @@ -741,6 +742,7 @@ sctp_finalize_crc32(uint32_t crc32c) > { > return (0); > } > + > #endif /* !defined(SCTP_WITH_NO_CSUM) */ > > #if defined(SCTP_WITH_NO_CSUM) What would you say about this? (I do not have SCTP option in the kernel config) linking kernel.debug alias_sctp.o(.text+0x1744): In function `TxAbortErrorM': /work/pub/head/sys/netinet/libalias/alias_sctp.c:946: undefined reference to `update_crc32' alias_sctp.o(.text+0x174b):/work/pub/head/sys/netinet/libalias/alias_sctp.c:946: undefined reference to `sctp_finalize_crc32' *** Error code 1 Stop in /tank/obj/work/pub/head/sys/YOY. *** Error code 1 -- Have fun! chd