* [PATCH] ext4: Enable asynchronous commits by default
@ 2008-09-21 0:53 Theodore Ts'o
2008-09-22 2:53 ` Eric Sandeen
0 siblings, 1 reply; 2+ messages in thread
From: Theodore Ts'o @ 2008-09-21 0:53 UTC (permalink / raw)
To: linux-ext4
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
---
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index fb5766e..e6d5af7 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -747,8 +747,15 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
*/
seq_puts(seq, ",barrier=");
seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
+ /* journal_async_commit enables journal_checksum internally */
if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
seq_puts(seq, ",journal_async_commit");
+ else {
+ seq_puts(seq, ",journal_sync_commit");
+ if (test_opt(sb, JOURNAL_CHECKSUM))
+ seq_puts(seq, ",journal_checksum");
+ }
+
if (test_opt(sb, NOBH))
seq_puts(seq, ",nobh");
if (!test_opt(sb, EXTENTS))
@@ -902,6 +909,7 @@ enum {
Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
Opt_journal_checksum, Opt_journal_async_commit,
+ Opt_journal_sync_commit,
Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
@@ -944,6 +952,7 @@ static match_table_t tokens = {
{Opt_journal_dev, "journal_dev=%u"},
{Opt_journal_checksum, "journal_checksum"},
{Opt_journal_async_commit, "journal_async_commit"},
+ {Opt_journal_sync_commit, "journal_sync_commit"},
{Opt_abort, "abort"},
{Opt_data_journal, "data=journal"},
{Opt_data_ordered, "data=ordered"},
@@ -1145,7 +1154,9 @@ static int parse_options(char *options, struct super_block *sb,
break;
case Opt_journal_async_commit:
set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
- set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
+ break;
+ case Opt_journal_sync_commit:
+ clear_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
break;
case Opt_noload:
set_opt(sbi->s_mount_opt, NOLOAD);
@@ -2026,6 +2037,11 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
*/
set_opt(sbi->s_mount_opt, DELALLOC);
+ /*
+ * enable async commit by default
+ * Use -o sync_commit to turn it off
+ */
+ set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
if (!parse_options((char *) data, sb, &journal_inum, &journal_devnum,
NULL, 0))
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ext4: Enable asynchronous commits by default
2008-09-21 0:53 [PATCH] ext4: Enable asynchronous commits by default Theodore Ts'o
@ 2008-09-22 2:53 ` Eric Sandeen
0 siblings, 0 replies; 2+ messages in thread
From: Eric Sandeen @ 2008-09-22 2:53 UTC (permalink / raw)
To: Theodore Ts'o; +Cc: linux-ext4
Theodore Ts'o wrote:
> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
> ---
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index fb5766e..e6d5af7 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -747,8 +747,15 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
> */
> seq_puts(seq, ",barrier=");
> seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
> + /* journal_async_commit enables journal_checksum internally */
> if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
> seq_puts(seq, ",journal_async_commit");
> + else {
> + seq_puts(seq, ",journal_sync_commit");
> + if (test_opt(sb, JOURNAL_CHECKSUM))
> + seq_puts(seq, ",journal_checksum");
> + }
> +
Technically, I guess if async_commit is the default, it doesn't need to
be shown. But maybe since it's a new default it's fine at least for a
time.
Rest seems good.
Acked-by: Eric Sandeen <sandeen@redhat.com>
-Eric
> if (test_opt(sb, NOBH))
> seq_puts(seq, ",nobh");
> if (!test_opt(sb, EXTENTS))
> @@ -902,6 +909,7 @@ enum {
> Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
> Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
> Opt_journal_checksum, Opt_journal_async_commit,
> + Opt_journal_sync_commit,
> Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
> Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
> Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
> @@ -944,6 +952,7 @@ static match_table_t tokens = {
> {Opt_journal_dev, "journal_dev=%u"},
> {Opt_journal_checksum, "journal_checksum"},
> {Opt_journal_async_commit, "journal_async_commit"},
> + {Opt_journal_sync_commit, "journal_sync_commit"},
> {Opt_abort, "abort"},
> {Opt_data_journal, "data=journal"},
> {Opt_data_ordered, "data=ordered"},
> @@ -1145,7 +1154,9 @@ static int parse_options(char *options, struct super_block *sb,
> break;
> case Opt_journal_async_commit:
> set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
> - set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
> + break;
> + case Opt_journal_sync_commit:
> + clear_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
> break;
> case Opt_noload:
> set_opt(sbi->s_mount_opt, NOLOAD);
> @@ -2026,6 +2037,11 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
> */
> set_opt(sbi->s_mount_opt, DELALLOC);
>
> + /*
> + * enable async commit by default
> + * Use -o sync_commit to turn it off
> + */
> + set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
>
> if (!parse_options((char *) data, sb, &journal_inum, &journal_devnum,
> NULL, 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-09-22 2:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-21 0:53 [PATCH] ext4: Enable asynchronous commits by default Theodore Ts'o
2008-09-22 2:53 ` Eric Sandeen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox