diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-12 16:25:02 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-12 20:02:48 -0500 |
commit | 9501e4c48e1561443e1a16c2c9917ec6c63118a4 (patch) | |
tree | b3b0a5117443153dd4b8703321862207887470ee /fs/coda/dir.c | |
parent | b5c7d208ca48e7769aa38731665283790de49840 (diff) | |
download | op-kernel-dev-9501e4c48e1561443e1a16c2c9917ec6c63118a4.zip op-kernel-dev-9501e4c48e1561443e1a16c2c9917ec6c63118a4.tar.gz |
switch coda
Coda ->d_revalidate() actually checks for root, ->d_delete() is irrelevant.
So we can use the same d_op for all coda dentries
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/coda/dir.c')
-rw-r--r-- | fs/coda/dir.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/coda/dir.c b/fs/coda/dir.c index 29badd9..9df71f0 100644 --- a/fs/coda/dir.c +++ b/fs/coda/dir.c @@ -61,7 +61,7 @@ static int coda_return_EIO(void) } #define CODA_EIO_ERROR ((void *) (coda_return_EIO)) -static const struct dentry_operations coda_dentry_operations = +const struct dentry_operations coda_dentry_operations = { .d_revalidate = coda_dentry_revalidate, .d_delete = coda_dentry_delete, @@ -126,8 +126,6 @@ static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry, struc return ERR_PTR(error); exit: - d_set_d_op(entry, &coda_dentry_operations); - if (inode && (type & CODA_NOCACHE)) coda_flag_inode(inode, C_VATTR | C_PURGE); |