Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1291856 > unrolled thread

[PATCH 7/8] f2fs: introduce new option for controlling data flush

Started byChao Yu <chao2.yu@samsung.com>
First post2015-12-15 06:40 +0100
Last post2015-12-16 18:00 +0100
Articles 7 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 7/8] f2fs: introduce new option for controlling data flush Chao Yu <chao2.yu@samsung.com> - 2015-12-15 06:40 +0100
    Re: [f2fs-dev] [PATCH 7/8] f2fs: introduce new option for controlling  data flush Chao Yu <chao@kernel.org> - 2015-12-15 17:10 +0100
    Re: [PATCH 7/8] f2fs: introduce new option for controlling data flush Jaegeuk Kim <jaegeuk@kernel.org> - 2015-12-15 23:10 +0100
      RE: [PATCH 7/8] f2fs: introduce new option for controlling data flush Chao Yu <chao2.yu@samsung.com> - 2015-12-16 03:40 +0100
        Re: [PATCH 7/8] f2fs: introduce new option for controlling data flush Jaegeuk Kim <jaegeuk@kernel.org> - 2015-12-16 03:50 +0100
          RE: [PATCH 7/8] f2fs: introduce new option for controlling data flush Chao Yu <chao2.yu@samsung.com> - 2015-12-16 04:20 +0100
            Re: [PATCH 7/8] f2fs: introduce new option for controlling data flush Jaegeuk Kim <jaegeuk@kernel.org> - 2015-12-16 18:00 +0100

#1291856 — [PATCH 7/8] f2fs: introduce new option for controlling data flush

FromChao Yu <chao2.yu@samsung.com>
Date2015-12-15 06:40 +0100
Subject[PATCH 7/8] f2fs: introduce new option for controlling data flush
Message-ID<qFQv9-8dt-21@gated-at.bofh.it>
Add a new option 'data_flush' to enable/disable data flush functionality
in checkpoint.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
---
 Documentation/filesystems/f2fs.txt | 2 ++
 fs/f2fs/checkpoint.c               | 2 +-
 fs/f2fs/f2fs.h                     | 1 +
 fs/f2fs/super.c                    | 7 +++++++
 4 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/Documentation/filesystems/f2fs.txt b/Documentation/filesystems/f2fs.txt
index 8088bd9..727373e 100644
--- a/Documentation/filesystems/f2fs.txt
+++ b/Documentation/filesystems/f2fs.txt
@@ -151,6 +151,8 @@ noextent_cache         Disable an extent cache based on rb-tree explicitly, see
                        the above extent_cache mount option.
 noinline_data          Disable the inline data feature, inline data feature is
                        enabled by default.
+data_flush             Enable data flushing during checkpoint in order to
+                       persist data of regular and symlink.
 
 ================================================================================
 DEBUGFS ENTRIES
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
index a73909c..2fdf271 100644
--- a/fs/f2fs/checkpoint.c
+++ b/fs/f2fs/checkpoint.c
@@ -855,7 +855,7 @@ static int block_operations(struct f2fs_sb_info *sbi)
 
 retry_flush_datas:
 	/* write all the dirty data pages */
-	if (get_pages(sbi, F2FS_DIRTY_DATAS)) {
+	if (test_opt(sbi, DATA_FLUSH) && get_pages(sbi, F2FS_DIRTY_DATAS)) {
 		sync_dirty_inodes(sbi, FILE_INODE);
 		if (unlikely(f2fs_cp_error(sbi))) {
 			err = -EIO;
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
index 4d44732..ee1f0a8 100644
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -54,6 +54,7 @@
 #define F2FS_MOUNT_FASTBOOT		0x00001000
 #define F2FS_MOUNT_EXTENT_CACHE		0x00002000
 #define F2FS_MOUNT_FORCE_FG_GC		0x00004000
+#define F2FS_MOUNT_DATA_FLUSH		0x00008000
 
 #define clear_opt(sbi, option)	(sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
 #define set_opt(sbi, option)	(sbi->mount_opt.opt |= F2FS_MOUNT_##option)
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 051bce6..694e092 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -67,6 +67,7 @@ enum {
 	Opt_extent_cache,
 	Opt_noextent_cache,
 	Opt_noinline_data,
+	Opt_data_flush,
 	Opt_nodiscard,
 	Opt_err,
 };
@@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
 	{Opt_extent_cache, "extent_cache"},
 	{Opt_noextent_cache, "noextent_cache"},
 	{Opt_noinline_data, "noinline_data"},
+	{Opt_data_flush, "data_flush"},
 	{Opt_nodiscard, "nodiscard"},
 	{Opt_err, NULL},
 };
@@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
 		case Opt_noinline_data:
 			clear_opt(sbi, INLINE_DATA);
 			break;
+		case Opt_data_flush:
+			clear_opt(sbi, DATA_FLUSH);
+			break;
 		default:
 			f2fs_msg(sb, KERN_ERR,
 				"Unrecognized mount option \"%s\" or missing value",
@@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
 		seq_puts(seq, ",extent_cache");
 	else
 		seq_puts(seq, ",noextent_cache");
+	if (test_opt(sbi, DATA_FLUSH))
+		seq_puts(seq, ",data_flush");
 	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
 
 	return 0;
-- 
2.6.3


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1292312 — Re: [f2fs-dev] [PATCH 7/8] f2fs: introduce new option for controlling data flush

FromChao Yu <chao@kernel.org>
Date2015-12-15 17:10 +0100
SubjectRe: [f2fs-dev] [PATCH 7/8] f2fs: introduce new option for controlling data flush
Message-ID<qG0kN-6uB-5@gated-at.bofh.it>
In reply to#1291856
Hi Jaegeuk,

The 7, 8 patches could not be merged on current dev-test branch due to I
generate them on incorrect base line. I will rebase and resent them tomorrow,
sorry for the noisy.

Thanks,

On 12/15/15 1:35 PM, Chao Yu wrote:
> Add a new option 'data_flush' to enable/disable data flush functionality
> in checkpoint.
> 
> Signed-off-by: Chao Yu <chao2.yu@samsung.com>
> ---
>  Documentation/filesystems/f2fs.txt | 2 ++
>  fs/f2fs/checkpoint.c               | 2 +-
>  fs/f2fs/f2fs.h                     | 1 +
>  fs/f2fs/super.c                    | 7 +++++++
>  4 files changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/filesystems/f2fs.txt b/Documentation/filesystems/f2fs.txt
> index 8088bd9..727373e 100644
> --- a/Documentation/filesystems/f2fs.txt
> +++ b/Documentation/filesystems/f2fs.txt
> @@ -151,6 +151,8 @@ noextent_cache         Disable an extent cache based on rb-tree explicitly, see
>                         the above extent_cache mount option.
>  noinline_data          Disable the inline data feature, inline data feature is
>                         enabled by default.
> +data_flush             Enable data flushing during checkpoint in order to
> +                       persist data of regular and symlink.
>  
>  ================================================================================
>  DEBUGFS ENTRIES
> diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
> index a73909c..2fdf271 100644
> --- a/fs/f2fs/checkpoint.c
> +++ b/fs/f2fs/checkpoint.c
> @@ -855,7 +855,7 @@ static int block_operations(struct f2fs_sb_info *sbi)
>  
>  retry_flush_datas:
>  	/* write all the dirty data pages */
> -	if (get_pages(sbi, F2FS_DIRTY_DATAS)) {
> +	if (test_opt(sbi, DATA_FLUSH) && get_pages(sbi, F2FS_DIRTY_DATAS)) {
>  		sync_dirty_inodes(sbi, FILE_INODE);
>  		if (unlikely(f2fs_cp_error(sbi))) {
>  			err = -EIO;
> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> index 4d44732..ee1f0a8 100644
> --- a/fs/f2fs/f2fs.h
> +++ b/fs/f2fs/f2fs.h
> @@ -54,6 +54,7 @@
>  #define F2FS_MOUNT_FASTBOOT		0x00001000
>  #define F2FS_MOUNT_EXTENT_CACHE		0x00002000
>  #define F2FS_MOUNT_FORCE_FG_GC		0x00004000
> +#define F2FS_MOUNT_DATA_FLUSH		0x00008000
>  
>  #define clear_opt(sbi, option)	(sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
>  #define set_opt(sbi, option)	(sbi->mount_opt.opt |= F2FS_MOUNT_##option)
> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
> index 051bce6..694e092 100644
> --- a/fs/f2fs/super.c
> +++ b/fs/f2fs/super.c
> @@ -67,6 +67,7 @@ enum {
>  	Opt_extent_cache,
>  	Opt_noextent_cache,
>  	Opt_noinline_data,
> +	Opt_data_flush,
>  	Opt_nodiscard,
>  	Opt_err,
>  };
> @@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
>  	{Opt_extent_cache, "extent_cache"},
>  	{Opt_noextent_cache, "noextent_cache"},
>  	{Opt_noinline_data, "noinline_data"},
> +	{Opt_data_flush, "data_flush"},
>  	{Opt_nodiscard, "nodiscard"},
>  	{Opt_err, NULL},
>  };
> @@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
>  		case Opt_noinline_data:
>  			clear_opt(sbi, INLINE_DATA);
>  			break;
> +		case Opt_data_flush:
> +			clear_opt(sbi, DATA_FLUSH);
> +			break;
>  		default:
>  			f2fs_msg(sb, KERN_ERR,
>  				"Unrecognized mount option \"%s\" or missing value",
> @@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
>  		seq_puts(seq, ",extent_cache");
>  	else
>  		seq_puts(seq, ",noextent_cache");
> +	if (test_opt(sbi, DATA_FLUSH))
> +		seq_puts(seq, ",data_flush");
>  	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
>  
>  	return 0;
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1292587

FromJaegeuk Kim <jaegeuk@kernel.org>
Date2015-12-15 23:10 +0100
Message-ID<qG5Xc-1EX-17@gated-at.bofh.it>
In reply to#1291856
Hi,

On Tue, Dec 15, 2015 at 01:35:21PM +0800, Chao Yu wrote:
> Add a new option 'data_flush' to enable/disable data flush functionality
> in checkpoint.
> 
> Signed-off-by: Chao Yu <chao2.yu@samsung.com>
> ---
>  Documentation/filesystems/f2fs.txt | 2 ++
>  fs/f2fs/checkpoint.c               | 2 +-
>  fs/f2fs/f2fs.h                     | 1 +
>  fs/f2fs/super.c                    | 7 +++++++
>  4 files changed, 11 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/filesystems/f2fs.txt b/Documentation/filesystems/f2fs.txt
> index 8088bd9..727373e 100644
> --- a/Documentation/filesystems/f2fs.txt
> +++ b/Documentation/filesystems/f2fs.txt
> @@ -151,6 +151,8 @@ noextent_cache         Disable an extent cache based on rb-tree explicitly, see
>                         the above extent_cache mount option.
>  noinline_data          Disable the inline data feature, inline data feature is
>                         enabled by default.
> +data_flush             Enable data flushing during checkpoint in order to
> +                       persist data of regular and symlink.
>  
>  ================================================================================
>  DEBUGFS ENTRIES
> diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
> index a73909c..2fdf271 100644
> --- a/fs/f2fs/checkpoint.c
> +++ b/fs/f2fs/checkpoint.c
> @@ -855,7 +855,7 @@ static int block_operations(struct f2fs_sb_info *sbi)
>  
>  retry_flush_datas:
>  	/* write all the dirty data pages */
> -	if (get_pages(sbi, F2FS_DIRTY_DATAS)) {
> +	if (test_opt(sbi, DATA_FLUSH) && get_pages(sbi, F2FS_DIRTY_DATAS)) {
>  		sync_dirty_inodes(sbi, FILE_INODE);
>  		if (unlikely(f2fs_cp_error(sbi))) {
>  			err = -EIO;
> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> index 4d44732..ee1f0a8 100644
> --- a/fs/f2fs/f2fs.h
> +++ b/fs/f2fs/f2fs.h
> @@ -54,6 +54,7 @@
>  #define F2FS_MOUNT_FASTBOOT		0x00001000
>  #define F2FS_MOUNT_EXTENT_CACHE		0x00002000
>  #define F2FS_MOUNT_FORCE_FG_GC		0x00004000
> +#define F2FS_MOUNT_DATA_FLUSH		0x00008000
>  
>  #define clear_opt(sbi, option)	(sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
>  #define set_opt(sbi, option)	(sbi->mount_opt.opt |= F2FS_MOUNT_##option)
> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
> index 051bce6..694e092 100644
> --- a/fs/f2fs/super.c
> +++ b/fs/f2fs/super.c
> @@ -67,6 +67,7 @@ enum {
>  	Opt_extent_cache,
>  	Opt_noextent_cache,
>  	Opt_noinline_data,
> +	Opt_data_flush,

Need Opt_nodata_flush too.

Thanks,

>  	Opt_nodiscard,
>  	Opt_err,
>  };
> @@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
>  	{Opt_extent_cache, "extent_cache"},
>  	{Opt_noextent_cache, "noextent_cache"},
>  	{Opt_noinline_data, "noinline_data"},
> +	{Opt_data_flush, "data_flush"},
>  	{Opt_nodiscard, "nodiscard"},
>  	{Opt_err, NULL},
>  };
> @@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
>  		case Opt_noinline_data:
>  			clear_opt(sbi, INLINE_DATA);
>  			break;
> +		case Opt_data_flush:
> +			clear_opt(sbi, DATA_FLUSH);
> +			break;
>  		default:
>  			f2fs_msg(sb, KERN_ERR,
>  				"Unrecognized mount option \"%s\" or missing value",
> @@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
>  		seq_puts(seq, ",extent_cache");
>  	else
>  		seq_puts(seq, ",noextent_cache");
> +	if (test_opt(sbi, DATA_FLUSH))
> +		seq_puts(seq, ",data_flush");
>  	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
>  
>  	return 0;
> -- 
> 2.6.3
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1292708

FromChao Yu <chao2.yu@samsung.com>
Date2015-12-16 03:40 +0100
Message-ID<qGaau-4da-5@gated-at.bofh.it>
In reply to#1292587
Hi Jaegeuk,

> -----Original Message-----
> From: Jaegeuk Kim [mailto:jaegeuk@kernel.org]
> Sent: Wednesday, December 16, 2015 6:03 AM
> To: Chao Yu
> Cc: linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH 7/8] f2fs: introduce new option for controlling data flush
> 
> Hi,
> 
> On Tue, Dec 15, 2015 at 01:35:21PM +0800, Chao Yu wrote:
> > Add a new option 'data_flush' to enable/disable data flush functionality
> > in checkpoint.
> >
> > Signed-off-by: Chao Yu <chao2.yu@samsung.com>
> > ---
> >  Documentation/filesystems/f2fs.txt | 2 ++
> >  fs/f2fs/checkpoint.c               | 2 +-
> >  fs/f2fs/f2fs.h                     | 1 +
> >  fs/f2fs/super.c                    | 7 +++++++
> >  4 files changed, 11 insertions(+), 1 deletion(-)
> >
> > diff --git a/Documentation/filesystems/f2fs.txt b/Documentation/filesystems/f2fs.txt
> > index 8088bd9..727373e 100644
> > --- a/Documentation/filesystems/f2fs.txt
> > +++ b/Documentation/filesystems/f2fs.txt
> > @@ -151,6 +151,8 @@ noextent_cache         Disable an extent cache based on rb-tree explicitly,
> see
> >                         the above extent_cache mount option.
> >  noinline_data          Disable the inline data feature, inline data feature is
> >                         enabled by default.
> > +data_flush             Enable data flushing during checkpoint in order to
> > +                       persist data of regular and symlink.
> >
> >  ================================================================================
> >  DEBUGFS ENTRIES
> > diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c
> > index a73909c..2fdf271 100644
> > --- a/fs/f2fs/checkpoint.c
> > +++ b/fs/f2fs/checkpoint.c
> > @@ -855,7 +855,7 @@ static int block_operations(struct f2fs_sb_info *sbi)
> >
> >  retry_flush_datas:
> >  	/* write all the dirty data pages */
> > -	if (get_pages(sbi, F2FS_DIRTY_DATAS)) {
> > +	if (test_opt(sbi, DATA_FLUSH) && get_pages(sbi, F2FS_DIRTY_DATAS)) {
> >  		sync_dirty_inodes(sbi, FILE_INODE);
> >  		if (unlikely(f2fs_cp_error(sbi))) {
> >  			err = -EIO;
> > diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> > index 4d44732..ee1f0a8 100644
> > --- a/fs/f2fs/f2fs.h
> > +++ b/fs/f2fs/f2fs.h
> > @@ -54,6 +54,7 @@
> >  #define F2FS_MOUNT_FASTBOOT		0x00001000
> >  #define F2FS_MOUNT_EXTENT_CACHE		0x00002000
> >  #define F2FS_MOUNT_FORCE_FG_GC		0x00004000
> > +#define F2FS_MOUNT_DATA_FLUSH		0x00008000
> >
> >  #define clear_opt(sbi, option)	(sbi->mount_opt.opt &= ~F2FS_MOUNT_##option)
> >  #define set_opt(sbi, option)	(sbi->mount_opt.opt |= F2FS_MOUNT_##option)
> > diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
> > index 051bce6..694e092 100644
> > --- a/fs/f2fs/super.c
> > +++ b/fs/f2fs/super.c
> > @@ -67,6 +67,7 @@ enum {
> >  	Opt_extent_cache,
> >  	Opt_noextent_cache,
> >  	Opt_noinline_data,
> > +	Opt_data_flush,
> 
> Need Opt_nodata_flush too.

We need this unless we set data_flush as a default option. Is that right?

Thanks,

> 
> Thanks,
> 
> >  	Opt_nodiscard,
> >  	Opt_err,
> >  };
> > @@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
> >  	{Opt_extent_cache, "extent_cache"},
> >  	{Opt_noextent_cache, "noextent_cache"},
> >  	{Opt_noinline_data, "noinline_data"},
> > +	{Opt_data_flush, "data_flush"},
> >  	{Opt_nodiscard, "nodiscard"},
> >  	{Opt_err, NULL},
> >  };
> > @@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
> >  		case Opt_noinline_data:
> >  			clear_opt(sbi, INLINE_DATA);
> >  			break;
> > +		case Opt_data_flush:
> > +			clear_opt(sbi, DATA_FLUSH);
> > +			break;
> >  		default:
> >  			f2fs_msg(sb, KERN_ERR,
> >  				"Unrecognized mount option \"%s\" or missing value",
> > @@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
> >  		seq_puts(seq, ",extent_cache");
> >  	else
> >  		seq_puts(seq, ",noextent_cache");
> > +	if (test_opt(sbi, DATA_FLUSH))
> > +		seq_puts(seq, ",data_flush");
> >  	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
> >
> >  	return 0;
> > --
> > 2.6.3
> >

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1292709

FromJaegeuk Kim <jaegeuk@kernel.org>
Date2015-12-16 03:50 +0100
Message-ID<qGak9-4gu-1@gated-at.bofh.it>
In reply to#1292708
Hi Chao,

On Wed, Dec 16, 2015 at 10:38:27AM +0800, Chao Yu wrote:

...

> > > +++ b/fs/f2fs/super.c
> > > @@ -67,6 +67,7 @@ enum {
> > >  	Opt_extent_cache,
> > >  	Opt_noextent_cache,
> > >  	Opt_noinline_data,
> > > +	Opt_data_flush,
> > 
> > Need Opt_nodata_flush too.
> 
> We need this unless we set data_flush as a default option. Is that right?

I meant both of them.

Thanks,

> 
> Thanks,
> 
> > 
> > Thanks,
> > 
> > >  	Opt_nodiscard,
> > >  	Opt_err,
> > >  };
> > > @@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
> > >  	{Opt_extent_cache, "extent_cache"},
> > >  	{Opt_noextent_cache, "noextent_cache"},
> > >  	{Opt_noinline_data, "noinline_data"},
> > > +	{Opt_data_flush, "data_flush"},
> > >  	{Opt_nodiscard, "nodiscard"},
> > >  	{Opt_err, NULL},
> > >  };
> > > @@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
> > >  		case Opt_noinline_data:
> > >  			clear_opt(sbi, INLINE_DATA);
> > >  			break;
> > > +		case Opt_data_flush:
> > > +			clear_opt(sbi, DATA_FLUSH);
> > > +			break;
> > >  		default:
> > >  			f2fs_msg(sb, KERN_ERR,
> > >  				"Unrecognized mount option \"%s\" or missing value",
> > > @@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
> > >  		seq_puts(seq, ",extent_cache");
> > >  	else
> > >  		seq_puts(seq, ",noextent_cache");
> > > +	if (test_opt(sbi, DATA_FLUSH))
> > > +		seq_puts(seq, ",data_flush");
> > >  	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
> > >
> > >  	return 0;
> > > --
> > > 2.6.3
> > >
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1292717

FromChao Yu <chao2.yu@samsung.com>
Date2015-12-16 04:20 +0100
Message-ID<qGaNc-4Jx-7@gated-at.bofh.it>
In reply to#1292709
Hi Jaegeuk,

> -----Original Message-----
> From: Jaegeuk Kim [mailto:jaegeuk@kernel.org]
> Sent: Wednesday, December 16, 2015 10:49 AM
> To: Chao Yu
> Cc: linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH 7/8] f2fs: introduce new option for controlling data flush
> 
> Hi Chao,
> 
> On Wed, Dec 16, 2015 at 10:38:27AM +0800, Chao Yu wrote:
> 
> ...
> 
> > > > +++ b/fs/f2fs/super.c
> > > > @@ -67,6 +67,7 @@ enum {
> > > >  	Opt_extent_cache,
> > > >  	Opt_noextent_cache,
> > > >  	Opt_noinline_data,
> > > > +	Opt_data_flush,
> > >
> > > Need Opt_nodata_flush too.
> >
> > We need this unless we set data_flush as a default option. Is that right?
> 
> I meant both of them.

Yeah, I know that. But the point I meant was:
Normally we can detect user's mount option by test_opt(DATA_FLUSH), but if
data_flush option was set as a default option in f2fs, we need to introduce
nodata_flush to indicate whether user want to disable it or not, because we
can't disable data_flush option by mount without it since f2fs will set
data_flush by itself.

So it seems nodata_flush is redundant unless data_flush is set by default.

How do you think of it?

Thanks,

> 
> Thanks,
> 
> >
> > Thanks,
> >
> > >
> > > Thanks,
> > >
> > > >  	Opt_nodiscard,
> > > >  	Opt_err,
> > > >  };
> > > > @@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
> > > >  	{Opt_extent_cache, "extent_cache"},
> > > >  	{Opt_noextent_cache, "noextent_cache"},
> > > >  	{Opt_noinline_data, "noinline_data"},
> > > > +	{Opt_data_flush, "data_flush"},
> > > >  	{Opt_nodiscard, "nodiscard"},
> > > >  	{Opt_err, NULL},
> > > >  };
> > > > @@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
> > > >  		case Opt_noinline_data:
> > > >  			clear_opt(sbi, INLINE_DATA);
> > > >  			break;
> > > > +		case Opt_data_flush:
> > > > +			clear_opt(sbi, DATA_FLUSH);
> > > > +			break;
> > > >  		default:
> > > >  			f2fs_msg(sb, KERN_ERR,
> > > >  				"Unrecognized mount option \"%s\" or missing value",
> > > > @@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
> > > >  		seq_puts(seq, ",extent_cache");
> > > >  	else
> > > >  		seq_puts(seq, ",noextent_cache");
> > > > +	if (test_opt(sbi, DATA_FLUSH))
> > > > +		seq_puts(seq, ",data_flush");
> > > >  	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
> > > >
> > > >  	return 0;
> > > > --
> > > > 2.6.3
> > > >

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1293117

FromJaegeuk Kim <jaegeuk@kernel.org>
Date2015-12-16 18:00 +0100
Message-ID<qGnAN-4iQ-87@gated-at.bofh.it>
In reply to#1292717
On Wed, Dec 16, 2015 at 11:19:06AM +0800, Chao Yu wrote:
> Hi Jaegeuk,
> 
> > -----Original Message-----
> > From: Jaegeuk Kim [mailto:jaegeuk@kernel.org]
> > Sent: Wednesday, December 16, 2015 10:49 AM
> > To: Chao Yu
> > Cc: linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org
> > Subject: Re: [PATCH 7/8] f2fs: introduce new option for controlling data flush
> > 
> > Hi Chao,
> > 
> > On Wed, Dec 16, 2015 at 10:38:27AM +0800, Chao Yu wrote:
> > 
> > ...
> > 
> > > > > +++ b/fs/f2fs/super.c
> > > > > @@ -67,6 +67,7 @@ enum {
> > > > >  	Opt_extent_cache,
> > > > >  	Opt_noextent_cache,
> > > > >  	Opt_noinline_data,
> > > > > +	Opt_data_flush,
> > > >
> > > > Need Opt_nodata_flush too.
> > >
> > > We need this unless we set data_flush as a default option. Is that right?
> > 
> > I meant both of them.
> 
> Yeah, I know that. But the point I meant was:
> Normally we can detect user's mount option by test_opt(DATA_FLUSH), but if
> data_flush option was set as a default option in f2fs, we need to introduce
> nodata_flush to indicate whether user want to disable it or not, because we
> can't disable data_flush option by mount without it since f2fs will set
> data_flush by itself.
> 
> So it seems nodata_flush is redundant unless data_flush is set by default.
> 
> How do you think of it?

Ah, right. I simply thought the remount case, but indeed it always starts with 
default options. Default is off and turn on by user occasionally.

Thanks,

> 
> Thanks,
> 
> > 
> > Thanks,
> > 
> > >
> > > Thanks,
> > >
> > > >
> > > > Thanks,
> > > >
> > > > >  	Opt_nodiscard,
> > > > >  	Opt_err,
> > > > >  };
> > > > > @@ -92,6 +93,7 @@ static match_table_t f2fs_tokens = {
> > > > >  	{Opt_extent_cache, "extent_cache"},
> > > > >  	{Opt_noextent_cache, "noextent_cache"},
> > > > >  	{Opt_noinline_data, "noinline_data"},
> > > > > +	{Opt_data_flush, "data_flush"},
> > > > >  	{Opt_nodiscard, "nodiscard"},
> > > > >  	{Opt_err, NULL},
> > > > >  };
> > > > > @@ -411,6 +413,9 @@ static int parse_options(struct super_block *sb, char *options)
> > > > >  		case Opt_noinline_data:
> > > > >  			clear_opt(sbi, INLINE_DATA);
> > > > >  			break;
> > > > > +		case Opt_data_flush:
> > > > > +			clear_opt(sbi, DATA_FLUSH);
> > > > > +			break;
> > > > >  		default:
> > > > >  			f2fs_msg(sb, KERN_ERR,
> > > > >  				"Unrecognized mount option \"%s\" or missing value",
> > > > > @@ -694,6 +699,8 @@ static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
> > > > >  		seq_puts(seq, ",extent_cache");
> > > > >  	else
> > > > >  		seq_puts(seq, ",noextent_cache");
> > > > > +	if (test_opt(sbi, DATA_FLUSH))
> > > > > +		seq_puts(seq, ",data_flush");
> > > > >  	seq_printf(seq, ",active_logs=%u", sbi->active_logs);
> > > > >
> > > > >  	return 0;
> > > > > --
> > > > > 2.6.3
> > > > >
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web