From owner-freebsd-current@FreeBSD.ORG Wed May 13 00:25:00 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0F9B106564A for ; Wed, 13 May 2009 00:25:00 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158]) by mx1.freebsd.org (Postfix) with ESMTP id C232C8FC19 for ; Wed, 13 May 2009 00:25:00 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1M42HL-0003m9-KD for freebsd-current@freebsd.org; Tue, 12 May 2009 17:24:59 -0700 Message-ID: <23513281.post@talk.nabble.com> Date: Tue, 12 May 2009 17:24:59 -0700 (PDT) From: Jakub Lach To: freebsd-current@freebsd.org In-Reply-To: <200905121723.26171.jkim@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: jakub_lach@mailplus.pl References: <23507827.post@talk.nabble.com> <4A09C292.5070700@andric.com> <200905121723.26171.jkim@FreeBSD.org> Subject: Re: dead dhclient em0 in r192014 /Thinkpad T400 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2009 00:25:01 -0000 Jung-uk Kim wrote: > > On Tuesday 12 May 2009 02:40 pm, Dimitry Andric wrote: >> On 2009-05-12 20:27, Jakub Lach wrote: >> > After updating to 192014, gigabit Intel ethernet is dead. >> >> ... >> >> > in_ifinit: insertion failed >> >> Revert r192011 to fix this issue. > > Or you can try the attached patch until it gets fixed. > > Jung-uk Kim > > --- sys/netinet/in.c 12 May 2009 07:41:20 -0000 1.131 > +++ sys/netinet/in.c 12 May 2009 21:18:51 -0000 > @@ -917,6 +917,8 @@ in_ifinit(struct ifnet *ifp, struct in_i > info.rti_info[RTAX_GATEWAY] = (struct sockaddr *)&null_sdl; > error = rtrequest1_fib(RTM_ADD, &info, &rt, 0); > > + if (error == EEXIST) > + return (0); > if (error == 0 && rt != NULL) { > RT_LOCK(rt); > ((struct sockaddr_dl *)rt->rt_gateway)->sdl_type = > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > Thanks for replies. I've already reverted 192011 for now, thanks for patch anyway. -best regards, Jakub Lach -- View this message in context: http://www.nabble.com/dead-dhclient-em0-in-r192014--Thinkpad-T400-tp23507827p23513281.html Sent from the freebsd-current mailing list archive at Nabble.com.