From owner-cvs-src-old@FreeBSD.ORG Thu Jun 11 10:26:59 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53F321065676 for ; Thu, 11 Jun 2009 10:26:59 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 407388FC15 for ; Thu, 11 Jun 2009 10:26:59 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n5BAQx3u032851 for ; Thu, 11 Jun 2009 10:26:59 GMT (envelope-from bz@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n5BAQx3Z032850 for cvs-src-old@freebsd.org; Thu, 11 Jun 2009 10:26:59 GMT (envelope-from bz@repoman.freebsd.org) Message-Id: <200906111026.n5BAQx3Z032850@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to bz@repoman.freebsd.org using -f From: "Bjoern A. Zeeb" Date: Thu, 11 Jun 2009 10:26:38 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/net if.c if_bridge.c if_ethersubr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 10:26:59 -0000 bz 2009-06-11 10:26:38 UTC FreeBSD src repository Modified files: sys/conf files sys/net if.c if_bridge.c if_ethersubr.c Log: SVN rev 193983 on 2009-06-11 10:26:38Z by bz carp(4) allows people to share a set of IP addresses and can only use IPv4/v6 for inter-node communication (according to my reading). Properly wrap the carp callouts in INET || INET6 and refelect this in sys/conf/files as well. While in theory this should be ok, it might be a bit optimistic to think that carp could build with inet6 only[1]. Discussed with: mlaier [1] Revision Changes Path 1.1428 +1 -1 src/sys/conf/files 1.338 +8 -0 src/sys/net/if.c 1.128 +3 -1 src/sys/net/if_bridge.c 1.265 +6 -0 src/sys/net/if_ethersubr.c