From owner-cvs-all@FreeBSD.ORG Mon Jun 6 04:28:34 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6BDA16A41C; Mon, 6 Jun 2005 04:28:34 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from harmony.village.org (berlin-qwest.village.org [168.103.84.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88F3443D48; Mon, 6 Jun 2005 04:28:23 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.13.3/8.13.1) with ESMTP id j564P1wg073235; Sun, 5 Jun 2005 22:25:01 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 05 Jun 2005 22:25:48 -0600 (MDT) Message-Id: <20050605.222548.50586913.imp@bsdimp.com> To: max@love2party.net From: "M. Warner Losh" In-Reply-To: <200506060615.03647.max@love2party.net> References: <200506050313.j553DDw0014630@repoman.freebsd.org> <20050605.211805.76955371.imp@bsdimp.com> <200506060615.03647.max@love2party.net> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, thompsa@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c if.h if_ethersubr.c if_llc.h if_types.h if_var.h src/sys/netinet if_ether.c src/sys/sys sockio.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jun 2005 04:28:34 -0000 In message: <200506060615.03647.max@love2party.net> Max Laier writes: : On Monday 06 June 2005 05:18, M. Warner Losh wrote: : > In message: <200506050313.j553DDw0014630@repoman.freebsd.org> : > : > Andrew Thompson writes: : > : Add hooks into the networking layer to support if_bridge. This changes : > : struct ifnet so a buildworld is necessary. : > : > Can one at least ifconfig the IP address of a network interface with a : > new kernel/old ifconfig and old kernel/new ifconfig? : : ifconfig uses plain ioctl's for that, it doesn't know anything about struct : ifnet. What suffers from changes like this are programs that use kmem(4) to : access the ifnet list directly. A grep turns up: routed(8), ifmcstat(8) and : netstat(1), but there might be others. A buildworld is best when in doubt. : : To answer your concern, there should be no problem with ifconfig. OK. I was worried this might break the 'nfs mounted source/object' upgrade path. Sounds like it won't. Thanks for the confirmation. Warner