Linux-EROFS Archive mirror
 help / color / mirror / Atom feed
* [PATCH] erofs: don't warn ztailpacking feature anymore
@ 2023-02-27  8:44 Yue Hu
  2023-02-27  9:42 ` Gao Xiang
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Yue Hu @ 2023-02-27  8:44 UTC (permalink / raw
  To: xiang, chao, linux-erofs; +Cc: Yue Hu, linux-kernel, zhangwen

From: Yue Hu <huyue2@coolpad.com>

The ztailpacking feature has been merged for a year, it has been mostly
stable now.

Signed-off-by: Yue Hu <huyue2@coolpad.com>
---
 fs/erofs/super.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/fs/erofs/super.c b/fs/erofs/super.c
index 19b1ae79cec4..733c22bcc3eb 100644
--- a/fs/erofs/super.c
+++ b/fs/erofs/super.c
@@ -417,8 +417,6 @@ static int erofs_read_superblock(struct super_block *sb)
 	/* handle multiple devices */
 	ret = erofs_scan_devices(sb, dsb);
 
-	if (erofs_sb_has_ztailpacking(sbi))
-		erofs_info(sb, "EXPERIMENTAL compressed inline data feature in use. Use at your own risk!");
 	if (erofs_is_fscache_mode(sb))
 		erofs_info(sb, "EXPERIMENTAL fscache-based on-demand read feature in use. Use at your own risk!");
 	if (erofs_sb_has_fragments(sbi))
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] erofs: don't warn ztailpacking feature anymore
  2023-02-27  8:44 [PATCH] erofs: don't warn ztailpacking feature anymore Yue Hu
@ 2023-02-27  9:42 ` Gao Xiang
  2023-02-27  9:52   ` Yue Hu
  2023-03-03  0:53 ` Gao Xiang
  2023-04-16 14:30 ` Chao Yu
  2 siblings, 1 reply; 5+ messages in thread
From: Gao Xiang @ 2023-02-27  9:42 UTC (permalink / raw
  To: Yue Hu, xiang, chao, linux-erofs; +Cc: Yue Hu, linux-kernel, zhangwen



On 2023/2/27 16:44, Yue Hu wrote:
> From: Yue Hu <huyue2@coolpad.com>
> 
> The ztailpacking feature has been merged for a year, it has been mostly
> stable now.
> 
> Signed-off-by: Yue Hu <huyue2@coolpad.com>

Let's update erofs-utils as well?

> ---
>   fs/erofs/super.c | 2 --
>   1 file changed, 2 deletions(-)
> 
> diff --git a/fs/erofs/super.c b/fs/erofs/super.c
> index 19b1ae79cec4..733c22bcc3eb 100644
> --- a/fs/erofs/super.c
> +++ b/fs/erofs/super.c
> @@ -417,8 +417,6 @@ static int erofs_read_superblock(struct super_block *sb)
>   	/* handle multiple devices */
>   	ret = erofs_scan_devices(sb, dsb);
>   
> -	if (erofs_sb_has_ztailpacking(sbi))
> -		erofs_info(sb, "EXPERIMENTAL compressed inline data feature in use. Use at your own risk!");
>   	if (erofs_is_fscache_mode(sb))
>   		erofs_info(sb, "EXPERIMENTAL fscache-based on-demand read feature in use. Use at your own risk!");
>   	if (erofs_sb_has_fragments(sbi))

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] erofs: don't warn ztailpacking feature anymore
  2023-02-27  9:42 ` Gao Xiang
@ 2023-02-27  9:52   ` Yue Hu
  0 siblings, 0 replies; 5+ messages in thread
From: Yue Hu @ 2023-02-27  9:52 UTC (permalink / raw
  To: Gao Xiang; +Cc: linux-kernel, zhangwen, Yue Hu, linux-erofs

On Mon, 27 Feb 2023 17:42:40 +0800
Gao Xiang <hsiangkao@linux.alibaba.com> wrote:

> On 2023/2/27 16:44, Yue Hu wrote:
> > From: Yue Hu <huyue2@coolpad.com>
> > 
> > The ztailpacking feature has been merged for a year, it has been mostly
> > stable now.
> > 
> > Signed-off-by: Yue Hu <huyue2@coolpad.com>  
> 
> Let's update erofs-utils as well?

Ok, I will update it later.

> 
> > ---
> >   fs/erofs/super.c | 2 --
> >   1 file changed, 2 deletions(-)
> > 
> > diff --git a/fs/erofs/super.c b/fs/erofs/super.c
> > index 19b1ae79cec4..733c22bcc3eb 100644
> > --- a/fs/erofs/super.c
> > +++ b/fs/erofs/super.c
> > @@ -417,8 +417,6 @@ static int erofs_read_superblock(struct super_block *sb)
> >   	/* handle multiple devices */
> >   	ret = erofs_scan_devices(sb, dsb);
> >   
> > -	if (erofs_sb_has_ztailpacking(sbi))
> > -		erofs_info(sb, "EXPERIMENTAL compressed inline data feature in use. Use at your own risk!");
> >   	if (erofs_is_fscache_mode(sb))
> >   		erofs_info(sb, "EXPERIMENTAL fscache-based on-demand read feature in use. Use at your own risk!");
> >   	if (erofs_sb_has_fragments(sbi))  


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] erofs: don't warn ztailpacking feature anymore
  2023-02-27  8:44 [PATCH] erofs: don't warn ztailpacking feature anymore Yue Hu
  2023-02-27  9:42 ` Gao Xiang
@ 2023-03-03  0:53 ` Gao Xiang
  2023-04-16 14:30 ` Chao Yu
  2 siblings, 0 replies; 5+ messages in thread
From: Gao Xiang @ 2023-03-03  0:53 UTC (permalink / raw
  To: Yue Hu, xiang, chao, linux-erofs; +Cc: Yue Hu, linux-kernel, zhangwen



On 2023/2/27 16:44, Yue Hu wrote:
> From: Yue Hu <huyue2@coolpad.com>
> 
> The ztailpacking feature has been merged for a year, it has been mostly
> stable now.
> 
> Signed-off-by: Yue Hu <huyue2@coolpad.com>

Reviewed-by: Gao Xiang <hsiangkao@linux.alibaba.com>

Thanks,
Gao Xiang

> ---
>   fs/erofs/super.c | 2 --
>   1 file changed, 2 deletions(-)
> 
> diff --git a/fs/erofs/super.c b/fs/erofs/super.c
> index 19b1ae79cec4..733c22bcc3eb 100644
> --- a/fs/erofs/super.c
> +++ b/fs/erofs/super.c
> @@ -417,8 +417,6 @@ static int erofs_read_superblock(struct super_block *sb)
>   	/* handle multiple devices */
>   	ret = erofs_scan_devices(sb, dsb);
>   
> -	if (erofs_sb_has_ztailpacking(sbi))
> -		erofs_info(sb, "EXPERIMENTAL compressed inline data feature in use. Use at your own risk!");
>   	if (erofs_is_fscache_mode(sb))
>   		erofs_info(sb, "EXPERIMENTAL fscache-based on-demand read feature in use. Use at your own risk!");
>   	if (erofs_sb_has_fragments(sbi))

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] erofs: don't warn ztailpacking feature anymore
  2023-02-27  8:44 [PATCH] erofs: don't warn ztailpacking feature anymore Yue Hu
  2023-02-27  9:42 ` Gao Xiang
  2023-03-03  0:53 ` Gao Xiang
@ 2023-04-16 14:30 ` Chao Yu
  2 siblings, 0 replies; 5+ messages in thread
From: Chao Yu @ 2023-04-16 14:30 UTC (permalink / raw
  To: Yue Hu, xiang, linux-erofs; +Cc: Yue Hu, linux-kernel, zhangwen

On 2023/2/27 16:44, Yue Hu wrote:
> From: Yue Hu <huyue2@coolpad.com>
> 
> The ztailpacking feature has been merged for a year, it has been mostly
> stable now.
> 
> Signed-off-by: Yue Hu <huyue2@coolpad.com>

Reviewed-by: Chao Yu <chao@kernel.org>

Thanks,

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-04-16 14:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-27  8:44 [PATCH] erofs: don't warn ztailpacking feature anymore Yue Hu
2023-02-27  9:42 ` Gao Xiang
2023-02-27  9:52   ` Yue Hu
2023-03-03  0:53 ` Gao Xiang
2023-04-16 14:30 ` Chao Yu

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 read-only IMAP folder(s) and NNTP newsgroup(s).