From owner-svn-src-all@FreeBSD.ORG Tue May 29 23:45:35 2012 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 E7C121065670 for ; Tue, 29 May 2012 23:45:35 +0000 (UTC) (envelope-from andy@fud.org.nz) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id B677C8FC15 for ; Tue, 29 May 2012 23:45:35 +0000 (UTC) Received: by dadv36 with SMTP id v36so6375992dad.13 for ; Tue, 29 May 2012 16:45:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding:x-gm-message-state; bh=+ceQPLAE/je9Cy++m5VJwdxZ+PHXDs63ZaRe4eqyTC8=; b=RqtS5Sn3IokjPMvmxOXEPpW4bLHEWuI+QNQGn2nZnlKSPztoHgZeRhuMAT4/fQzPCH jnuvxHMkXRvJy0splEKwcbp1mMHI1l0Wgr0v2OeCVgSw9RYqQOpp4ZdmY77UudHIQpDc VK9FVn2qO/MIqHz7HD1duzAUzoHMMJGvjO4RWEbXStuu71kiNHANexR2CeP5RLZBDLjw 1aHV2u9jxHcktZK/SzPhfzCtzq7fNEl/HOXJExK0ktJtlMpnr27MiYrl1vfKYN69jh8L tgn/3SyPORC0NXyDNdOxKDIMQb5Ipq4Uq7NtqAC2RS8N4t8bDnhsSQVJMx7TwifwRzmX Rvtg== MIME-Version: 1.0 Received: by 10.68.201.73 with SMTP id jy9mr42184843pbc.19.1338335135369; Tue, 29 May 2012 16:45:35 -0700 (PDT) Sender: andy@fud.org.nz Received: by 10.68.220.72 with HTTP; Tue, 29 May 2012 16:45:35 -0700 (PDT) In-Reply-To: <201112161216.pBGCGu8B006328@svn.freebsd.org> References: <201112161216.pBGCGu8B006328@svn.freebsd.org> Date: Wed, 30 May 2012 11:45:35 +1200 X-Google-Sender-Auth: hQj7x7NT--paPuzgsvbL58cMbc0 Message-ID: From: Andrew Thompson To: Gleb Smirnoff Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQm4tGsKkV3p2wJcZbTTlwmi1rBvDeFbvtQgwPcS/bqPSGn034Uc2riIC6OtJv1UZX1mttOX Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r228571 - in head: . lib/libc/net sbin/ifconfig share/man/man4 sys/net sys/netinet sys/netinet6 sys/sys 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, 29 May 2012 23:45:36 -0000 On 17 December 2011 01:16, Gleb Smirnoff wrote: > Author: glebius > Date: Fri Dec 16 12:16:56 2011 > New Revision: 228571 > URL: http://svn.freebsd.org/changeset/base/228571 > > Log: > =A0A major overhaul of the CARP implementation. The ip_carp.c was started > =A0from scratch, copying needed functionality from the old implemenation > =A0on demand, with a thorough review of all code. The main change is that > =A0interface layer has been removed from the CARP. Now redundant addresse= s > =A0are configured exactly on the interfaces, they run on. This commit seems to have a mistake in the PACKET_TAG_CARP mtag handling. carp_macmatch6() places the ifp pointer on the tag while carp_output() dereferences it as a softc. Andrew