diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-12 23:15:27 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-12 23:15:27 +0000 |
commit | ae38fd1e4c98588314a42097c5a5e77dcef23561 (patch) | |
tree | f9f10c203bb9e5fbad4810d1f8774c08dfad20ff /fs/vfat | |
parent | 466a823d79f41d0713b272e48fd73e494b0588e0 (diff) |
Merge with Linux 2.3.50.
Diffstat (limited to 'fs/vfat')
-rw-r--r-- | fs/vfat/namei.c | 26 |
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, } }; |