diff options
author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2011-04-12 21:08:37 +0900 |
---|---|---|
committer | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2011-04-12 21:12:00 +0900 |
commit | 384f5c96ea05aba24a11172ebd6f5d427ca199fc (patch) | |
tree | 08e9b5b70cf2e9fcdde8922df660b9fdd5a6da5e /fs/fat/namei_msdos.c | |
parent | a6360dd37e1a144ed11e6548371bade559a1e4df (diff) | |
download | linux-stable-384f5c96ea05aba24a11172ebd6f5d427ca199fc.tar.gz linux-stable-384f5c96ea05aba24a11172ebd6f5d427ca199fc.tar.bz2 linux-stable-384f5c96ea05aba24a11172ebd6f5d427ca199fc.zip |
fat: use new setup() for ->dir_ops too
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Diffstat (limited to 'fs/fat/namei_msdos.c')
-rw-r--r-- | fs/fat/namei_msdos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/fat/namei_msdos.c b/fs/fat/namei_msdos.c index 711499040eb6..3b222dafd15b 100644 --- a/fs/fat/namei_msdos.c +++ b/fs/fat/namei_msdos.c @@ -659,14 +659,14 @@ static const struct inode_operations msdos_dir_inode_operations = { static void setup(struct super_block *sb) { + MSDOS_SB(sb)->dir_ops = &msdos_dir_inode_operations; sb->s_d_op = &msdos_dentry_operations; sb->s_flags |= MS_NOATIME; } static int msdos_fill_super(struct super_block *sb, void *data, int silent) { - return fat_fill_super(sb, data, silent, &msdos_dir_inode_operations, - 0, setup); + return fat_fill_super(sb, data, silent, 0, setup); } static struct dentry *msdos_mount(struct file_system_type *fs_type, |