From owner-svn-src-head@FreeBSD.ORG Sat Nov 13 10:45:00 2010 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 11EC2106566B; Sat, 13 Nov 2010 10:45:00 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id B68E78FC15; Sat, 13 Nov 2010 10:44:58 +0000 (UTC) Received: from porto.topspin.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA12132; Sat, 13 Nov 2010 12:44:57 +0200 (EET) (envelope-from avg@freebsd.org) Received: from localhost.topspin.kiev.ua ([127.0.0.1]) by porto.topspin.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1PHDbM-000Muv-S8; Sat, 13 Nov 2010 12:44:56 +0200 Message-ID: <4CDE6BD8.7040501@freebsd.org> Date: Sat, 13 Nov 2010 12:43:36 +0200 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.12) Gecko/20101029 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: Dimitry Andric References: <201011122259.oACMxoIV026900@svn.freebsd.org> In-Reply-To: <201011122259.oACMxoIV026900@svn.freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r215212 - head/sys/net 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: Sat, 13 Nov 2010 10:45:00 -0000 on 13/11/2010 00:59 Dimitry Andric said the following: > Author: dim > Date: Fri Nov 12 22:59:50 2010 > New Revision: 215212 > URL: http://svn.freebsd.org/changeset/base/215212 > > Log: > Similar to r212647, remove the workaround in sys/net/vnet.h for an ld > bug (incorrect placement of __start_SECNAME in some cases) that was > fixed in r210245. Thanks! > There is already an UPDATING entry about needing a recent ld. > > MFC after: 1 month > > Modified: > head/sys/net/vnet.h > > Modified: head/sys/net/vnet.h > ============================================================================== > --- head/sys/net/vnet.h Fri Nov 12 22:43:40 2010 (r215211) > +++ head/sys/net/vnet.h Fri Nov 12 22:59:50 2010 (r215212) > @@ -193,15 +193,6 @@ extern struct sx vnet_sxlock; > * Virtual network stack memory allocator, which allows global variables to > * be automatically instantiated for each network stack instance. > */ > -__asm__( > -#if defined(__arm__) > - ".section " VNET_SETNAME ", \"aw\", %progbits\n" > -#else > - ".section " VNET_SETNAME ", \"aw\", @progbits\n" > -#endif > - "\t.p2align " __XSTRING(CACHE_LINE_SHIFT) "\n" > - "\t.previous"); > - > #define VNET_NAME(n) vnet_entry_##n > #define VNET_DECLARE(t, n) extern t VNET_NAME(n) > #define VNET_DEFINE(t, n) t VNET_NAME(n) __section(VNET_SETNAME) __used -- Andriy Gapon