All of lore.kernel.org
 help / color / mirror / Atom feed
From: Cristian Sicilia <sicilia.cristian@gmail.com>
To: Gao Xiang <gaoxiang25@huawei.com>, Chao Yu <yuchao0@huawei.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-erofs@lists.ozlabs.org
Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
	Cristian Sicilia <sicilia.cristian@gmail.com>
Subject: [PATCH 3/3] staging: erofs: unzip_vle.c: Align parameter to the parentesis
Date: Mon, 12 Nov 2018 21:43:59 +0100	[thread overview]
Message-ID: <1542055439-24444-4-git-send-email-sicilia.cristian@gmail.com> (raw)
In-Reply-To: <1542055439-24444-1-git-send-email-sicilia.cristian@gmail.com>

Align parameters to the opened parentesis.

Signed-off-by: Cristian Sicilia <sicilia.cristian@gmail.com>
---
 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())
-- 
2.7.4


WARNING: multiple messages have this Message-ID (diff)
From: sicilia.cristian@gmail.com (Cristian Sicilia)
Subject: [PATCH 3/3] staging: erofs: unzip_vle.c: Align parameter to the parentesis
Date: Mon, 12 Nov 2018 21:43:59 +0100	[thread overview]
Message-ID: <1542055439-24444-4-git-send-email-sicilia.cristian@gmail.com> (raw)
In-Reply-To: <1542055439-24444-1-git-send-email-sicilia.cristian@gmail.com>

Align parameters to the opened parentesis.

Signed-off-by: Cristian Sicilia <sicilia.cristian at gmail.com>
---
 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())
-- 
2.7.4

  parent reply	other threads:[~2018-11-12 20:45 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-12 20:43 [PATCH 0/3] Clean up some syntax issue on unzip_vle.c Cristian Sicilia
2018-11-12 20:43 ` Cristian Sicilia
2018-11-12 20:43 ` [PATCH 1/3] staging: erofs: unzip_vle.c: Replace comparison to NULL Cristian Sicilia
2018-11-12 20:43   ` Cristian Sicilia
2018-11-12 22:46   ` Greg Kroah-Hartman
2018-11-12 22:46     ` Greg Kroah-Hartman
2018-11-12 23:31     ` Cristian Sicilia
2018-11-12 23:46       ` Greg Kroah-Hartman
2018-11-12 23:46         ` Greg Kroah-Hartman
2018-11-13  0:38         ` Gao Xiang
2018-11-13  0:38           ` Gao Xiang
2018-11-13  0:15   ` Gao Xiang
2018-11-13  0:15     ` Gao Xiang
2018-11-16  3:07   ` Chao Yu
2018-11-16  3:07     ` Chao Yu
2018-11-12 20:43 ` [PATCH 2/3] staging: erofs: unzip_vle.c: Constant in comparison on right side Cristian Sicilia
2018-11-12 20:43   ` Cristian Sicilia
2018-11-13  0:02   ` Gao Xiang
2018-11-13  0:02     ` Gao Xiang
2018-11-16  3:07   ` Chao Yu
2018-11-16  3:07     ` Chao Yu
2018-11-12 20:43 ` Cristian Sicilia [this message]
2018-11-12 20:43   ` [PATCH 3/3] staging: erofs: unzip_vle.c: Align parameter to the parentesis Cristian Sicilia
2018-11-13  0:00   ` Gao Xiang
2018-11-13  0:00     ` Gao Xiang
2018-11-16  3:07   ` Chao Yu
2018-11-16  3:07     ` Chao Yu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1542055439-24444-4-git-send-email-sicilia.cristian@gmail.com \
    --to=sicilia.cristian@gmail.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gaoxiang25@huawei.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-erofs@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=yuchao0@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.