From owner-svn-src-all@FreeBSD.ORG Tue May 12 17:44:28 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 840EA106566B; Tue, 12 May 2009 17:44:28 +0000 (UTC) (envelope-from dimitry@andric.com) Received: from tensor.andric.com (cl-327.ede-01.nl.sixxs.net [IPv6:2001:7b8:2ff:146::2]) by mx1.freebsd.org (Postfix) with ESMTP id 45FC38FC18; Tue, 12 May 2009 17:44:28 +0000 (UTC) (envelope-from dimitry@andric.com) Received: from [IPv6:2001:7b8:3a7:0:755a:47e8:c7ef:3a5e] (unknown [IPv6:2001:7b8:3a7:0:755a:47e8:c7ef:3a5e]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 2FABE5C43; Tue, 12 May 2009 19:44:27 +0200 (CEST) Message-ID: <4A09B57C.6050709@andric.com> Date: Tue, 12 May 2009 19:44:28 +0200 From: Dimitry Andric User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1b5pre) Gecko/20090508 Shredder/3.0b3pre MIME-Version: 1.0 To: Qing Li References: <200905120741.n4C7fK8o014803@svn.freebsd.org> In-Reply-To: <200905120741.n4C7fK8o014803@svn.freebsd.org> 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: r192011 - head/sys/netinet X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2009 17:44:28 -0000 On 2009-05-12 09:41, Qing Li wrote: > Author: qingli > Date: Tue May 12 07:41:20 2009 > New Revision: 192011 > URL: http://svn.freebsd.org/changeset/base/192011 > > Log: > This patch adds a host route to an interface address (that is assigned > to a non loopback/ppp link types) through the loopback interface. Prior > to the new L2/L3 rewrite, this host route is implicitly added by the L2 > code during RTM_RESOLVE of that interface address. This host route is > deleted when that interface is removed. This commit breaks dhclient startup, I now get: [...] in_ifinit: insertion failed ifconfig: ioctl (SIOCAIFADDR): File exists em0: not found exiting. So it seems to hit this part: + } else if (error != 0) + log(LOG_INFO, "in_ifinit: insertion failed\n"); Reverting the commit makes dhclient work again.