From owner-freebsd-geom@FreeBSD.ORG Tue May 1 13:39:15 2007 Return-Path: X-Original-To: freebsd-geom@freebsd.org Delivered-To: freebsd-geom@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AD0416A406 for ; Tue, 1 May 2007 13:39:15 +0000 (UTC) (envelope-from anderson@freebsd.org) Received: from mh2.centtech.com (moat3.centtech.com [64.129.166.50]) by mx1.freebsd.org (Postfix) with ESMTP id 61AB813C483 for ; Tue, 1 May 2007 13:39:15 +0000 (UTC) (envelope-from anderson@freebsd.org) Received: from neutrino.centtech.com (neutrino.centtech.com [10.177.171.220]) by mh2.centtech.com (8.13.8/8.13.8) with ESMTP id l41DdDaw006007; Tue, 1 May 2007 08:39:13 -0500 (CDT) (envelope-from anderson@freebsd.org) Message-ID: <46374301.1080406@freebsd.org> Date: Tue, 01 May 2007 08:39:13 -0500 From: Eric Anderson User-Agent: Thunderbird 2.0.0.0 (X11/20070420) MIME-Version: 1.0 To: Frans Haarman References: <2DC959620A73E842969792F5B47FCA01037D44DD@dg-exch1.giessen.nl> In-Reply-To: <2DC959620A73E842969792F5B47FCA01037D44DD@dg-exch1.giessen.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.4/3188/Tue May 1 05:24:57 2007 on mh2.centtech.com X-Virus-Status: Clean X-Spam-Status: No, score=-2.4 required=8.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.6 X-Spam-Checker-Version: SpamAssassin 3.1.6 (2006-10-03) on mh2.centtech.com Cc: freebsd-geom@freebsd.org Subject: Re: gmirror magic ? X-BeenThere: freebsd-geom@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GEOM-specific discussions and implementations List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 May 2007 13:39:15 -0000 On 05/01/07 08:28, Frans Haarman wrote: > Excuse my ignorance, > > What I tried was removing a file on disk which > was attached as a "md vnode". > > I assumed removing the file on disk will "kill" > the "md vnode" but it does not. > > It seems this has nothing todo with gmirror/gstripe > but the way md vnodes work! It's the way all files in UFS work - if it's in use, and it gets removed, the directory entry goes away, but the data stays there until all references are gone. Once they are all gone, the data blocks get recycled too. Eric