ocfs2: Add dentry tracking API
authorMark Fasheh <mark.fasheh@oracle.com>
Fri, 8 Sep 2006 21:43:18 +0000 (14:43 -0700)
committerMark Fasheh <mark.fasheh@oracle.com>
Sun, 24 Sep 2006 20:50:43 +0000 (13:50 -0700)
commit80c05846f604bab6d61e9732c262420ee9f5f358
tree3fcd80cec6e3a3a1e56abaff0a559817dbcb95a2
parentd680efe9d8fe0eb99d9dd063a4def6b362cdb40d
ocfs2: Add dentry tracking API

Replace the dentry vote mechanism with a cluster lock which covers a set
of dentries. This allows us to force d_delete() only on nodes which actually
care about an unlink.

Every node that does a ->lookup() gets a read only lock on the dentry, until
an unlink during which the unlinking node, will request an exclusive lock,
forcing the other nodes who care about that dentry to d_delete() it. The
effect is that we retain a very lightweight ->d_revalidate(), and at the
same time get to make large improvements to the average case performance of
the ocfs2 unlink and rename operations.

This patch adds the higher level API and the dentry manipulation code.

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
fs/ocfs2/dcache.c
fs/ocfs2/dcache.h
fs/ocfs2/sysfile.c