diff options
Diffstat (limited to 'fs/isofs')
-rw-r--r-- | fs/isofs/inode.c | 24 |
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 }; |