summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>2010-06-27 21:38:05 +0900
committerRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>2010-07-23 10:02:10 +0900
commitbde4e696e4a527c3cc579ed77e4844d11ca17e12 (patch)
treefb93204331c64f1cac3a7cd8e579941224580b73
parent57a4bfc486727b68e4422031aeba427fb7262668 (diff)
downloadlinux-stable-bde4e696e4a527c3cc579ed77e4844d11ca17e12.tar.gz
linux-stable-bde4e696e4a527c3cc579ed77e4844d11ca17e12.tar.bz2
linux-stable-bde4e696e4a527c3cc579ed77e4844d11ca17e12.zip
nilfs2: do not update mount time on rw->ro remount
Mount time field in super block is wrongly updated when nilfs remounts the partition from read-write to read-only. This fixes the issue. Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
-rw-r--r--fs/nilfs2/super.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c
index 414ef68931cf..39b28cf3cf8e 100644
--- a/fs/nilfs2/super.c
+++ b/fs/nilfs2/super.c
@@ -884,7 +884,6 @@ static int nilfs_remount(struct super_block *sb, int *flags, char *data)
if (!(sbp->s_state & le16_to_cpu(NILFS_VALID_FS)) &&
(nilfs->ns_mount_state & NILFS_VALID_FS))
sbp->s_state = cpu_to_le16(nilfs->ns_mount_state);
- sbp->s_mtime = cpu_to_le64(get_seconds());
nilfs_commit_super(sbi, 1);
up_write(&nilfs->ns_sem);
} else {