diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2013-07-12 06:34:42 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2013-07-12 06:34:42 -0400 |
| commit | f2006e27396f55276f24434f56e208d86e7f9908 (patch) | |
| tree | 71896db916d33888b4286f80117d3cac0da40e6d /fs/ext3/super.c | |
| parent | e399eb56a6110e13f97e644658648602e2b08de7 (diff) | |
| parent | 9903883f1dd6e86f286b7bfa6e4b423f98c1cd9e (diff) | |
Merge branch 'linus' into timers/urgent
Get upstream changes so we can apply fixes against them
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/ext3/super.c')
| -rw-r--r-- | fs/ext3/super.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 6356665a74bb..c47f14750722 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c | |||
| @@ -174,6 +174,11 @@ static void ext3_handle_error(struct super_block *sb) | |||
| 174 | if (test_opt (sb, ERRORS_RO)) { | 174 | if (test_opt (sb, ERRORS_RO)) { |
| 175 | ext3_msg(sb, KERN_CRIT, | 175 | ext3_msg(sb, KERN_CRIT, |
| 176 | "error: remounting filesystem read-only"); | 176 | "error: remounting filesystem read-only"); |
| 177 | /* | ||
| 178 | * Make sure updated value of ->s_mount_state will be visible | ||
| 179 | * before ->s_flags update. | ||
| 180 | */ | ||
| 181 | smp_wmb(); | ||
| 177 | sb->s_flags |= MS_RDONLY; | 182 | sb->s_flags |= MS_RDONLY; |
| 178 | } | 183 | } |
| 179 | ext3_commit_super(sb, es, 1); | 184 | ext3_commit_super(sb, es, 1); |
| @@ -291,8 +296,14 @@ void ext3_abort(struct super_block *sb, const char *function, | |||
| 291 | ext3_msg(sb, KERN_CRIT, | 296 | ext3_msg(sb, KERN_CRIT, |
| 292 | "error: remounting filesystem read-only"); | 297 | "error: remounting filesystem read-only"); |
| 293 | EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS; | 298 | EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS; |
| 294 | sb->s_flags |= MS_RDONLY; | ||
| 295 | set_opt(EXT3_SB(sb)->s_mount_opt, ABORT); | 299 | set_opt(EXT3_SB(sb)->s_mount_opt, ABORT); |
| 300 | /* | ||
| 301 | * Make sure updated value of ->s_mount_state will be visible | ||
| 302 | * before ->s_flags update. | ||
| 303 | */ | ||
| 304 | smp_wmb(); | ||
| 305 | sb->s_flags |= MS_RDONLY; | ||
| 306 | |||
| 296 | if (EXT3_SB(sb)->s_journal) | 307 | if (EXT3_SB(sb)->s_journal) |
| 297 | journal_abort(EXT3_SB(sb)->s_journal, -EIO); | 308 | journal_abort(EXT3_SB(sb)->s_journal, -EIO); |
| 298 | } | 309 | } |
