From owner-svn-src-head@FreeBSD.ORG Thu Mar 1 16:53:03 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 285C31065678; Thu, 1 Mar 2012 16:53:03 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id ED2748FC17; Thu, 1 Mar 2012 16:53:02 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [96.47.65.170]) by cyrus.watson.org (Postfix) with ESMTPSA id A412046B23; Thu, 1 Mar 2012 11:53:02 -0500 (EST) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 0FCB8B991; Thu, 1 Mar 2012 11:53:02 -0500 (EST) From: John Baldwin To: "Bjoern A. Zeeb" Date: Thu, 1 Mar 2012 09:33:56 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p10; KDE/4.5.5; amd64; ; ) References: <201202292138.q1TLcVFv046104@svn.freebsd.org> <14D2BDEC-B9C7-4B2D-AF2C-60598CCE1EBF@lists.zabbadoz.net> In-Reply-To: <14D2BDEC-B9C7-4B2D-AF2C-60598CCE1EBF@lists.zabbadoz.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201203010933.56172.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Thu, 01 Mar 2012 11:53:02 -0500 (EST) Cc: Mikolaj Golub , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Konstantin Belousov Subject: Re: svn commit: r232317 - in head: . sys/kern sys/sys X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 16:53:03 -0000 On Wednesday, February 29, 2012 6:44:47 pm Bjoern A. Zeeb wrote: > > On 29. Feb 2012, at 21:38 , Mikolaj Golub wrote: > > > Author: trociny > > Date: Wed Feb 29 21:38:31 2012 > > New Revision: 232317 > > URL: http://svn.freebsd.org/changeset/base/232317 > > > > Log: > > Introduce VOP_UNP_BIND(), VOP_UNP_CONNECT(), and VOP_UNP_DETACH() > > operations for setting and accessing vnode's v_socket field. > > > > The operations are necessary to implement proper unix socket handling > > on layered file systems like nullfs(5). > > > > This change fixes the long standing issue with nullfs(5) being in that > > unix sockets did not work between lower and upper layers: if we bound > > to a socket on the lower layer we could connect only to the lower > > path; if we bound to the upper layer we could connect only to the > > upper path. The new behavior is one can connect to both the lower and > > the upper paths regardless what layer path one binds to. > > At this point I wonder if jhb has added (enough) spares with an earlier MFC of another change or whether we'll break thing again? Well, we added 5. This will use up 3 of the 5 in 9. Presumably most new VOPs would be added one at a time, so having 2 available still gives us some room. -- John Baldwin