diff options
Diffstat (limited to 'fs/adfs/super.c')
-rw-r--r-- | fs/adfs/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/adfs/super.c b/fs/adfs/super.c index c9fdfb112933..cfda2c7caedc 100644 --- a/fs/adfs/super.c +++ b/fs/adfs/super.c | |||
@@ -213,7 +213,7 @@ static int parse_options(struct super_block *sb, char *options) | |||
213 | static int adfs_remount(struct super_block *sb, int *flags, char *data) | 213 | static int adfs_remount(struct super_block *sb, int *flags, char *data) |
214 | { | 214 | { |
215 | sync_filesystem(sb); | 215 | sync_filesystem(sb); |
216 | *flags |= MS_NODIRATIME; | 216 | *flags |= SB_NODIRATIME; |
217 | return parse_options(sb, data); | 217 | return parse_options(sb, data); |
218 | } | 218 | } |
219 | 219 | ||
@@ -372,7 +372,7 @@ static int adfs_fill_super(struct super_block *sb, void *data, int silent) | |||
372 | struct inode *root; | 372 | struct inode *root; |
373 | int ret = -EINVAL; | 373 | int ret = -EINVAL; |
374 | 374 | ||
375 | sb->s_flags |= MS_NODIRATIME; | 375 | sb->s_flags |= SB_NODIRATIME; |
376 | 376 | ||
377 | asb = kzalloc(sizeof(*asb), GFP_KERNEL); | 377 | asb = kzalloc(sizeof(*asb), GFP_KERNEL); |
378 | if (!asb) | 378 | if (!asb) |