diff options
author | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2010-06-28 04:49:29 -0400 |
---|---|---|
committer | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2010-07-22 21:02:10 -0400 |
commit | 7ecaa46cfea453238a369b3019739d50ff5d7c37 (patch) | |
tree | c69911a31c3a2cd4966979de2d34764e08471f2a /fs/nilfs2/super.c | |
parent | bde4e696e4a527c3cc579ed77e4844d11ca17e12 (diff) |
nilfs2: add nilfs_cleanup_super
This function write out filesystem state to super blocks in order to
share the same cleanup work. This is a preparation for making super
block writeback alternately.
Cc: Jiro SEKIBA <jir@unicus.jp>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Diffstat (limited to 'fs/nilfs2/super.c')
-rw-r--r-- | fs/nilfs2/super.c | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 39b28cf3cf8e..f23a31b04e14 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c | |||
@@ -278,6 +278,24 @@ int nilfs_commit_super(struct nilfs_sb_info *sbi, int dupsb) | |||
278 | return nilfs_sync_super(sbi, dupsb); | 278 | return nilfs_sync_super(sbi, dupsb); |
279 | } | 279 | } |
280 | 280 | ||
281 | /** | ||
282 | * nilfs_cleanup_super() - write filesystem state for cleanup | ||
283 | * @sbi: nilfs_sb_info to be unmounted or degraded to read-only | ||
284 | * | ||
285 | * This function restores state flags in the on-disk super block. | ||
286 | * This will set "clean" flag (i.e. NILFS_VALID_FS) unless the | ||
287 | * filesystem was not clean previously. | ||
288 | */ | ||
289 | int nilfs_cleanup_super(struct nilfs_sb_info *sbi) | ||
290 | { | ||
291 | struct nilfs_super_block **sbp = sbi->s_nilfs->ns_sbp; | ||
292 | int ret; | ||
293 | |||
294 | sbp[0]->s_state = cpu_to_le16(sbi->s_nilfs->ns_mount_state); | ||
295 | ret = nilfs_commit_super(sbi, 1); | ||
296 | return ret; | ||
297 | } | ||
298 | |||
281 | static void nilfs_put_super(struct super_block *sb) | 299 | static void nilfs_put_super(struct super_block *sb) |
282 | { | 300 | { |
283 | struct nilfs_sb_info *sbi = NILFS_SB(sb); | 301 | struct nilfs_sb_info *sbi = NILFS_SB(sb); |
@@ -289,8 +307,7 @@ static void nilfs_put_super(struct super_block *sb) | |||
289 | 307 | ||
290 | if (!(sb->s_flags & MS_RDONLY)) { | 308 | if (!(sb->s_flags & MS_RDONLY)) { |
291 | down_write(&nilfs->ns_sem); | 309 | down_write(&nilfs->ns_sem); |
292 | nilfs->ns_sbp[0]->s_state = cpu_to_le16(nilfs->ns_mount_state); | 310 | nilfs_cleanup_super(sbi); |
293 | nilfs_commit_super(sbi, 1); | ||
294 | up_write(&nilfs->ns_sem); | 311 | up_write(&nilfs->ns_sem); |
295 | } | 312 | } |
296 | down_write(&nilfs->ns_super_sem); | 313 | down_write(&nilfs->ns_super_sem); |
@@ -819,7 +836,6 @@ nilfs_fill_super(struct super_block *sb, void *data, int silent, | |||
819 | static int nilfs_remount(struct super_block *sb, int *flags, char *data) | 836 | static int nilfs_remount(struct super_block *sb, int *flags, char *data) |
820 | { | 837 | { |
821 | struct nilfs_sb_info *sbi = NILFS_SB(sb); | 838 | struct nilfs_sb_info *sbi = NILFS_SB(sb); |
822 | struct nilfs_super_block *sbp; | ||
823 | struct the_nilfs *nilfs = sbi->s_nilfs; | 839 | struct the_nilfs *nilfs = sbi->s_nilfs; |
824 | unsigned long old_sb_flags; | 840 | unsigned long old_sb_flags; |
825 | struct nilfs_mount_options old_opts; | 841 | struct nilfs_mount_options old_opts; |
@@ -880,11 +896,7 @@ static int nilfs_remount(struct super_block *sb, int *flags, char *data) | |||
880 | * the RDONLY flag and then mark the partition as valid again. | 896 | * the RDONLY flag and then mark the partition as valid again. |
881 | */ | 897 | */ |
882 | down_write(&nilfs->ns_sem); | 898 | down_write(&nilfs->ns_sem); |
883 | sbp = nilfs->ns_sbp[0]; | 899 | nilfs_cleanup_super(sbi); |
884 | if (!(sbp->s_state & le16_to_cpu(NILFS_VALID_FS)) && | ||
885 | (nilfs->ns_mount_state & NILFS_VALID_FS)) | ||
886 | sbp->s_state = cpu_to_le16(nilfs->ns_mount_state); | ||
887 | nilfs_commit_super(sbi, 1); | ||
888 | up_write(&nilfs->ns_sem); | 900 | up_write(&nilfs->ns_sem); |
889 | } else { | 901 | } else { |
890 | /* | 902 | /* |