summaryrefslogtreecommitdiffstats
path: root/fs/isofs
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-03-12 23:15:27 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-03-12 23:15:27 +0000
commitae38fd1e4c98588314a42097c5a5e77dcef23561 (patch)
treef9f10c203bb9e5fbad4810d1f8774c08dfad20ff /fs/isofs
parent466a823d79f41d0713b272e48fd73e494b0588e0 (diff)
Merge with Linux 2.3.50.
Diffstat (limited to 'fs/isofs')
-rw-r--r--fs/isofs/inode.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c
index b4a633e9f..996d5ba68 100644
--- a/fs/isofs/inode.c
+++ b/fs/isofs/inode.c
@@ -84,29 +84,21 @@ static struct super_operations isofs_sops = {
static struct dentry_operations isofs_dentry_ops[] = {
{
- NULL, /* d_revalidate */
- isofs_hash,
- isofs_cmp,
- NULL /* d_delete */
+ d_hash: isofs_hash,
+ d_compare: isofs_cmp,
},
{
- NULL, /* d_revalidate */
- isofs_hashi,
- isofs_cmpi,
- NULL /* d_delete */
+ d_hash: isofs_hashi,
+ d_compare: isofs_cmpi,
},
#ifdef CONFIG_JOLIET
{
- NULL, /* d_revalidate */
- isofs_hash_ms,
- isofs_cmp_ms,
- NULL /* d_delete */
+ d_hash: isofs_hash_ms,
+ d_compare: isofs_cmp_ms,
},
{
- NULL, /* d_revalidate */
- isofs_hashi_ms,
- isofs_cmpi_ms,
- NULL /* d_delete */
+ d_hash: isofs_hashi_ms,
+ d_compare: isofs_cmpi_ms,
}
#endif
};