diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-02 02:36:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-02 02:36:47 +0000 |
commit | 8624512aa908741ba2795200133eae0d7f4557ea (patch) | |
tree | d5d3036fccf2604f4c98dedc11e8adb929d6b52e /fs/msdos | |
parent | 7b8f5d6f1d45d9f9de1d26e7d3c32aa5af11b488 (diff) |
Merge with 2.3.48.
Diffstat (limited to 'fs/msdos')
-rw-r--r-- | fs/msdos/namei.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/fs/msdos/namei.c b/fs/msdos/namei.c index 155489072..d74c71049 100644 --- a/fs/msdos/namei.c +++ b/fs/msdos/namei.c @@ -585,16 +585,13 @@ rename_done: /* The public inode operations for the msdos fs */ struct inode_operations msdos_dir_inode_operations = { - &fat_dir_operations, /* default directory file-ops */ - msdos_create, /* create */ - msdos_lookup, /* lookup */ - NULL, /* link */ - msdos_unlink, /* unlink */ - NULL, /* symlink */ - msdos_mkdir, /* mkdir */ - msdos_rmdir, /* rmdir */ - NULL, /* mknod */ - msdos_rename, /* rename */ + create: msdos_create, + lookup: msdos_lookup, + unlink: msdos_unlink, + mkdir: msdos_mkdir, + rmdir: msdos_rmdir, + rename: msdos_rename, + setattr: fat_notify_change, }; static void msdos_put_super_callback(struct super_block *sb) |