lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 13 Nov 2018 08:00:39 +0800
From:   Gao Xiang <gaoxiang25@...wei.com>
To:     Cristian Sicilia <sicilia.cristian@...il.com>
CC:     Chao Yu <yuchao0@...wei.com>,
        Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        <linux-erofs@...ts.ozlabs.org>, <devel@...verdev.osuosl.org>,
        <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 3/3] staging: erofs: unzip_vle.c: Align parameter to the
 parentesis



On 2018/11/13 4:43, Cristian Sicilia wrote:
> Align parameters to the opened parentesis.
> 
> Signed-off-by: Cristian Sicilia <sicilia.cristian@...il.com>

Reviewed-by: Gao Xiang <gaoxiang25@...wei.com>

Thanks,
Gao Xiang

> ---
>  drivers/staging/erofs/unzip_vle.c | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/staging/erofs/unzip_vle.c b/drivers/staging/erofs/unzip_vle.c
> index 35add4e..6a283f6 100644
> --- a/drivers/staging/erofs/unzip_vle.c
> +++ b/drivers/staging/erofs/unzip_vle.c
> @@ -35,9 +35,10 @@ static inline int init_unzip_workqueue(void)
>  	 * we don't need too many threads, limiting threads
>  	 * could improve scheduling performance.
>  	 */
> -	z_erofs_workqueue = alloc_workqueue("erofs_unzipd",
> -		WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE,
> -		onlinecpus + onlinecpus / 4);
> +	z_erofs_workqueue =
> +		alloc_workqueue("erofs_unzipd",
> +				WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE,
> +				onlinecpus + onlinecpus / 4);
>  
>  	return z_erofs_workqueue ? 0 : -ENOMEM;
>  }
> @@ -46,8 +47,8 @@ int __init z_erofs_init_zip_subsystem(void)
>  {
>  	z_erofs_workgroup_cachep =
>  		kmem_cache_create("erofs_compress",
> -		Z_EROFS_WORKGROUP_SIZE, 0,
> -		SLAB_RECLAIM_ACCOUNT, NULL);
> +				  Z_EROFS_WORKGROUP_SIZE, 0,
> +				  SLAB_RECLAIM_ACCOUNT, NULL);
>  
>  	if (z_erofs_workgroup_cachep) {
>  		if (!init_unzip_workqueue())
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ