From owner-freebsd-current Thu Apr 16 23:35:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10151 for freebsd-current-outgoing; Thu, 16 Apr 1998 23:35:39 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from parkplace.cet.co.jp (parkplace.cet.co.jp [202.32.64.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10110; Fri, 17 Apr 1998 06:35:27 GMT (envelope-from michaelh@cet.co.jp) Received: from localhost (michaelh@localhost) by parkplace.cet.co.jp (8.8.8/CET-v2.2) with SMTP id GAA17997; Fri, 17 Apr 1998 06:34:15 GMT Date: Fri, 17 Apr 1998 15:34:15 +0900 (JST) From: Michael Hancock To: Julian Elischer cc: freebsd-current@FreeBSD.ORG, freebsd-fs@FreeBSD.ORG Subject: Re: Updated vfs patches In-Reply-To: <3536EE71.41C67EA6@whistle.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 16 Apr 1998, Julian Elischer wrote: > > I found it (POST_SOFTUPDATES)! Do we not block when calling truncate with > > softupdates on? > > now THAT is a good question...... > I basically took the code from kirk's changes and he seemed > (from my memory.. I don't have the changes here) to have made > that change, so I did too. I'd have to ask kirk WHY he did that > and he's out of town for 1 more week. The changes look intentional because it was like this before... vput(dvp) dvp = NULL truncate out: if (dvp) vput(dvp) return Now it looks like this ... truncate out: vput(dvp) return You had to make a couple of changes to do this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message