summaryrefslogtreecommitdiffstats
path: root/fs/vfat
diff options
context:
space:
mode:
Diffstat (limited to 'fs/vfat')
-rw-r--r--fs/vfat/namei.c26
1 files changed, 10 insertions, 16 deletions
diff --git a/fs/vfat/namei.c b/fs/vfat/namei.c
index b07708286..476a09e9c 100644
--- a/fs/vfat/namei.c
+++ b/fs/vfat/namei.c
@@ -59,28 +59,22 @@ static int vfat_revalidate(struct dentry *dentry, int);
static struct dentry_operations vfat_dentry_ops[4] = {
{
- NULL, /* d_revalidate */
- vfat_hashi,
- vfat_cmpi,
- NULL /* d_delete */
+ d_hash: vfat_hashi,
+ d_compare: vfat_cmpi,
},
{
- vfat_revalidate,
- vfat_hashi,
- vfat_cmpi,
- NULL /* d_delete */
+ d_revalidate: vfat_revalidate,
+ d_hash: vfat_hashi,
+ d_compare: vfat_cmpi,
},
{
- NULL, /* d_revalidate */
- vfat_hash,
- vfat_cmp,
- NULL /* d_delete */
+ d_hash: vfat_hash,
+ d_compare: vfat_cmp,
},
{
- vfat_revalidate,
- vfat_hash,
- vfat_cmp,
- NULL /* d_delete */
+ d_revalidate: vfat_revalidate,
+ d_hash: vfat_hash,
+ d_compare: vfat_cmp,
}
};