Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Apr 1998 15:34:15 +0900 (JST)
From:      Michael Hancock <michaelh@cet.co.jp>
To:        Julian Elischer <julian@whistle.com>
Cc:        freebsd-current@FreeBSD.ORG, freebsd-fs@FreeBSD.ORG
Subject:   Re: Updated vfs patches
Message-ID:  <Pine.SV4.3.95.980417151801.17823A-100000@parkplace.cet.co.jp>
In-Reply-To: <3536EE71.41C67EA6@whistle.com>

next in thread | previous in thread | raw e-mail | index | archive | help
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-fs" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.SV4.3.95.980417151801.17823A-100000>