All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] erofs: do not prompt for risk any more when using big pcluster
@ 2022-04-07  5:01 Yue Hu
  2022-04-07  5:18   ` Gao Xiang
  0 siblings, 1 reply; 5+ messages in thread
From: Yue Hu @ 2022-04-07  5:01 UTC (permalink / raw)
  To: xiang, chao; +Cc: zbesathu, linux-erofs, linux-kernel, Yue Hu, zhangwen

[-- Attachment #1: Type: text/plain, Size: 771 bytes --]

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

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

diff --git a/fs/erofs/decompressor.c b/fs/erofs/decompressor.c
index 3efa686c7644..0f445f7e1df8 100644
--- a/fs/erofs/decompressor.c
+++ b/fs/erofs/decompressor.c
@@ -46,8 +46,6 @@ int z_erofs_load_lz4_config(struct super_block *sb,
 			erofs_err(sb, "too large lz4 pclusterblks %u",
 				  sbi->lz4.max_pclusterblks);
 			return -EINVAL;
-		} else if (sbi->lz4.max_pclusterblks >= 2) {
-			erofs_info(sb, "EXPERIMENTAL big pcluster feature in use. Use at your own risk!");
 		}
 	} else {
 		distance = le16_to_cpu(dsb->u1.lz4_max_distance);
-- 
2.17.1

[-- Attachment #2: Type: text/html, Size: 866 bytes --]

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

* Re: [PATCH] erofs: do not prompt for risk any more when using big pcluster
  2022-04-07  5:01 [PATCH] erofs: do not prompt for risk any more when using big pcluster Yue Hu
@ 2022-04-07  5:18   ` Gao Xiang
  0 siblings, 0 replies; 5+ messages in thread
From: Gao Xiang @ 2022-04-07  5:18 UTC (permalink / raw)
  To: Yue Hu; +Cc: xiang, chao, linux-erofs, linux-kernel, zbesathu, zhangwen

On Thu, Apr 07, 2022 at 01:01:23PM +0800, Yue Hu wrote:
> The big pluster feature has been merged for a year, it has been mostly
> stable now.
> 
> Signed-off-by: Yue Hu <huyue2@coolpad.com>

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

Thanks,
Gao Xiang

> ---
>  fs/erofs/decompressor.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/fs/erofs/decompressor.c b/fs/erofs/decompressor.c
> index 3efa686c7644..0f445f7e1df8 100644
> --- a/fs/erofs/decompressor.c
> +++ b/fs/erofs/decompressor.c
> @@ -46,8 +46,6 @@ int z_erofs_load_lz4_config(struct super_block *sb,
>  			erofs_err(sb, "too large lz4 pclusterblks %u",
>  				  sbi->lz4.max_pclusterblks);
>  			return -EINVAL;
> -		} else if (sbi->lz4.max_pclusterblks >= 2) {
> -			erofs_info(sb, "EXPERIMENTAL big pcluster feature in use. Use at your own risk!");
>  		}
>  	} else {
>  		distance = le16_to_cpu(dsb->u1.lz4_max_distance);
> -- 
> 2.17.1

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

* Re: [PATCH] erofs: do not prompt for risk any more when using big pcluster
@ 2022-04-07  5:18   ` Gao Xiang
  0 siblings, 0 replies; 5+ messages in thread
From: Gao Xiang @ 2022-04-07  5:18 UTC (permalink / raw)
  To: Yue Hu; +Cc: linux-kernel, zhangwen, zbesathu, linux-erofs

On Thu, Apr 07, 2022 at 01:01:23PM +0800, Yue Hu wrote:
> The big pluster feature has been merged for a year, it has been mostly
> stable now.
> 
> Signed-off-by: Yue Hu <huyue2@coolpad.com>

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

Thanks,
Gao Xiang

> ---
>  fs/erofs/decompressor.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/fs/erofs/decompressor.c b/fs/erofs/decompressor.c
> index 3efa686c7644..0f445f7e1df8 100644
> --- a/fs/erofs/decompressor.c
> +++ b/fs/erofs/decompressor.c
> @@ -46,8 +46,6 @@ int z_erofs_load_lz4_config(struct super_block *sb,
>  			erofs_err(sb, "too large lz4 pclusterblks %u",
>  				  sbi->lz4.max_pclusterblks);
>  			return -EINVAL;
> -		} else if (sbi->lz4.max_pclusterblks >= 2) {
> -			erofs_info(sb, "EXPERIMENTAL big pcluster feature in use. Use at your own risk!");
>  		}
>  	} else {
>  		distance = le16_to_cpu(dsb->u1.lz4_max_distance);
> -- 
> 2.17.1

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

* Re: [PATCH] erofs: do not prompt for risk any more when using big pcluster
  2022-04-07  5:18   ` Gao Xiang
@ 2022-05-17 14:53     ` Chao Yu
  -1 siblings, 0 replies; 5+ messages in thread
From: Chao Yu @ 2022-05-17 14:53 UTC (permalink / raw)
  To: Gao Xiang, Yue Hu
  Cc: xiang, chao, linux-erofs, linux-kernel, zbesathu, zhangwen

On 2022/4/7 13:18, Gao Xiang wrote:
> On Thu, Apr 07, 2022 at 01:01:23PM +0800, Yue Hu wrote:
>> The big pluster 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

* Re: [PATCH] erofs: do not prompt for risk any more when using big pcluster
@ 2022-05-17 14:53     ` Chao Yu
  0 siblings, 0 replies; 5+ messages in thread
From: Chao Yu @ 2022-05-17 14:53 UTC (permalink / raw)
  To: Gao Xiang, Yue Hu; +Cc: linux-kernel, zhangwen, zbesathu, linux-erofs

On 2022/4/7 13:18, Gao Xiang wrote:
> On Thu, Apr 07, 2022 at 01:01:23PM +0800, Yue Hu wrote:
>> The big pluster 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:[~2022-05-17 15:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-07  5:01 [PATCH] erofs: do not prompt for risk any more when using big pcluster Yue Hu
2022-04-07  5:18 ` Gao Xiang
2022-04-07  5:18   ` Gao Xiang
2022-05-17 14:53   ` Chao Yu
2022-05-17 14:53     ` Chao Yu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.