On Sat, Jun 02, 2012 at 11:34:21PM +0000, Benjamin Kaduk wrote:
> Hi all,
> 
> My colleague recently pointed out to me that I was calling vgone() when I 
> probably wanted to be using cache_purge() (as is done for implementations 
> of this OS-specific function in other BSDs [1]).
> 
> This caused me to take a look at the namecache functions and find not very 
> much documentation of their use.  I see that NetBSD has had a namecache.9 
> man page since 2001 [2], and their actual code shares its origin from 4.2 
> BSD with ours ... but our vfs_cache.c is at (CVS) revision 1.181 versus 
> NetBSD's 1.88, and there are at least superficial differences between the 
> two.
Superficial ? How can you judge ?

> 
> Is there a summary of the design/implementation somewhere that I could use 
> as a reference, or can someone send one here?  I would like to come up 
> with a namecache.9 for FreeBSD's implementation.
> 
> The particular question which promped my investigation is for the locking 
> around cache_purge(); I was not immediately able to tell from looking at 
> other consumers whether the vnode lock needs to or should be held around 
> such calls.  Looking at the implementation of some of the other namecache 
> functions makes it seem that the lock order is vnode lock then namecache 
> lock, which would suggest that holding the vnode lock across cache_purge 
> would be okay, but I would like some confirmation before I use and 
> document it as such.
Vnode lock is not needed around cache_purge(). This is in fact documented
by not making asserts for lock ownership inside the function.

The cache_purge() does not operate on any fs-specific data associated
with the vnode, and the data it does operate on is protected by
namecache rwlock. The only guarantee which cache_purge() needs from its
caller is that passed vnode pointer remains valid for duration of the
call, which is normally ensured by holding the vnode, often implicitely.

The order between namecache rwlock and vnode lock is obvious, since vnode
lock is lockmgr/sleepable. On the other hand, vnode interlock is after
namecache rwlock.

Attachment: pgpQb3vrfIUFX.pgp
Description: PGP signature

Reply via email to