From: Jan Kara <jack@suse.cz>
To: Theodore Ts'o <tytso@mit.edu>
Cc: Ext4 Developers List <linux-ext4@vger.kernel.org>,
Dexuan Cui <decui@microsoft.com>
Subject: Re: [PATCH 1/3] ext4: fold ext4_sync_fs_nojournal() into ext4_sync_fs()
Date: Tue, 23 Sep 2014 14:29:56 +0200 [thread overview]
Message-ID: <20140923122956.GF2359@quack.suse.cz> (raw)
In-Reply-To: <1411071989-4974-1-git-send-email-tytso@mit.edu>
On Thu 18-09-14 16:26:27, Ted Tso wrote:
> This allows us to eliminate duplicate code, and eventually allow us to
> also fold ext4_sops and ext4_nojournal_sops together.
>
> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Looks good. You can add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> ---
> fs/ext4/super.c | 36 +++++++++++++-----------------------
> 1 file changed, 13 insertions(+), 23 deletions(-)
>
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index 115e27d..4770c98 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -70,7 +70,6 @@ static void ext4_mark_recovery_complete(struct super_block *sb,
> static void ext4_clear_journal_err(struct super_block *sb,
> struct ext4_super_block *es);
> static int ext4_sync_fs(struct super_block *sb, int wait);
> -static int ext4_sync_fs_nojournal(struct super_block *sb, int wait);
> static int ext4_remount(struct super_block *sb, int *flags, char *data);
> static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
> static int ext4_unfreeze(struct super_block *sb);
> @@ -1131,7 +1130,7 @@ static const struct super_operations ext4_nojournal_sops = {
> .dirty_inode = ext4_dirty_inode,
> .drop_inode = ext4_drop_inode,
> .evict_inode = ext4_evict_inode,
> - .sync_fs = ext4_sync_fs_nojournal,
> + .sync_fs = ext4_sync_fs,
> .put_super = ext4_put_super,
> .statfs = ext4_statfs,
> .remount_fs = ext4_remount,
> @@ -4718,15 +4717,19 @@ static int ext4_sync_fs(struct super_block *sb, int wait)
> * being sent at the end of the function. But we can skip it if
> * transaction_commit will do it for us.
> */
> - target = jbd2_get_latest_transaction(sbi->s_journal);
> - if (wait && sbi->s_journal->j_flags & JBD2_BARRIER &&
> - !jbd2_trans_will_send_data_barrier(sbi->s_journal, target))
> + if (sbi->s_journal) {
> + target = jbd2_get_latest_transaction(sbi->s_journal);
> + if (wait && sbi->s_journal->j_flags & JBD2_BARRIER &&
> + !jbd2_trans_will_send_data_barrier(sbi->s_journal, target))
> + needs_barrier = true;
> +
> + if (jbd2_journal_start_commit(sbi->s_journal, &target)) {
> + if (wait)
> + ret = jbd2_log_wait_commit(sbi->s_journal,
> + target);
> + }
> + } else if (wait && test_opt(sb, BARRIER))
> needs_barrier = true;
> -
> - if (jbd2_journal_start_commit(sbi->s_journal, &target)) {
> - if (wait)
> - ret = jbd2_log_wait_commit(sbi->s_journal, target);
> - }
> if (needs_barrier) {
> int err;
> err = blkdev_issue_flush(sb->s_bdev, GFP_KERNEL, NULL);
> @@ -4737,19 +4740,6 @@ static int ext4_sync_fs(struct super_block *sb, int wait)
> return ret;
> }
>
> -static int ext4_sync_fs_nojournal(struct super_block *sb, int wait)
> -{
> - int ret = 0;
> -
> - trace_ext4_sync_fs(sb, wait);
> - flush_workqueue(EXT4_SB(sb)->rsv_conversion_wq);
> - dquot_writeback_dquots(sb, -1);
> - if (wait && test_opt(sb, BARRIER))
> - ret = blkdev_issue_flush(sb->s_bdev, GFP_KERNEL, NULL);
> -
> - return ret;
> -}
> -
> /*
> * LVM calls this function before a (read-only) snapshot is created. This
> * gives us a chance to flush the journal completely and mark the fs clean.
> --
> 2.1.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
prev parent reply other threads:[~2014-09-23 12:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-18 20:26 [PATCH 1/3] ext4: fold ext4_sync_fs_nojournal() into ext4_sync_fs() Theodore Ts'o
2014-09-18 20:26 ` [PATCH 2/3] ext4: support freezing ext2 (nojournal) file systems Theodore Ts'o
2014-09-18 20:46 ` Andreas Dilger
2014-09-18 21:13 ` Theodore Ts'o
2014-09-23 12:33 ` Jan Kara
2014-09-18 20:26 ` [PATCH 3/3] ext4: fold ext4_nojournal_sops into ext4_sops Theodore Ts'o
2014-09-23 12:31 ` Jan Kara
2014-09-23 12:29 ` Jan Kara [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140923122956.GF2359@quack.suse.cz \
--to=jack@suse.cz \
--cc=decui@microsoft.com \
--cc=linux-ext4@vger.kernel.org \
--cc=tytso@mit.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).